This is an automated email from the ASF dual-hosted git repository. prozsa pushed a commit to branch branch-4.5.0 in repository https://gitbox.apache.org/repos/asf/impala.git
commit 01bc47c917688769bf10ce0ca1d526efcf422403 Author: Peter Rozsa <pro...@cloudera.com> AuthorDate: Wed Jan 29 11:06:35 2025 +0100 Release 4.5.0 Change-Id: Idb2fe419f645415cb1768095a0c537de75add13d --- bin/impala-config.sh | 2 +- bin/save-version.sh | 2 +- fe/pom.xml | 2 +- java/TableFlattener/pom.xml | 2 +- java/calcite-planner/pom.xml | 6 +++--- java/datagenerator/pom.xml | 2 +- java/executor-deps/pom.xml | 2 +- java/ext-data-source/api/pom.xml | 2 +- java/ext-data-source/jdbc/pom.xml | 2 +- java/ext-data-source/pom.xml | 2 +- java/ext-data-source/sample/pom.xml | 2 +- java/ext-data-source/test/pom.xml | 2 +- java/external-frontend/pom.xml | 4 ++-- java/pom.xml | 2 +- java/puffin-data-generator/pom.xml | 2 +- java/query-event-hook-api/pom.xml | 2 +- java/shaded-deps/hive-exec/pom.xml | 2 +- java/shaded-deps/s3a-aws-sdk/pom.xml | 2 +- java/test-corrupt-hive-udfs/pom.xml | 2 +- java/test-hive-udfs/pom.xml | 2 +- java/yarn-extras/pom.xml | 2 +- 21 files changed, 24 insertions(+), 24 deletions(-) diff --git a/bin/impala-config.sh b/bin/impala-config.sh index d7d0fdf36..904870533 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -70,7 +70,7 @@ fi # WARNING: If changing this value, also run these commands: # cd ${IMPALA_HOME}/java # mvn versions:set -DnewVersion=YOUR_NEW_VERSION -export IMPALA_VERSION=4.5.0-SNAPSHOT +export IMPALA_VERSION=4.5.0-RELEASE # Whether to build the backend on Avro C++ library or C. # This is added temporarily to help transitioning from Avro C to C++ library. diff --git a/bin/save-version.sh b/bin/save-version.sh index 85e5f899e..aff4b3ee3 100755 --- a/bin/save-version.sh +++ b/bin/save-version.sh @@ -22,7 +22,7 @@ # "-INTERNAL" appended. Parts of the code will look for this to distinguish # between released and internal versions. VERSION=${IMPALA_VERSION} -GIT_HASH=$(git rev-parse HEAD 2> /dev/null) +GIT_HASH=da16bcd0fa14e91c9400dc8db79a02e396dd14d4 if [ -z $GIT_HASH ] then GIT_HASH="Could not obtain git hash" diff --git a/fe/pom.xml b/fe/pom.xml index 450f27280..05f5b0a58 100644 --- a/fe/pom.xml +++ b/fe/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> <relativePath>../java/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/TableFlattener/pom.xml b/java/TableFlattener/pom.xml index b7d0d28d0..7c5abaaa5 100644 --- a/java/TableFlattener/pom.xml +++ b/java/TableFlattener/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>nested-table-flattener</artifactId> diff --git a/java/calcite-planner/pom.xml b/java/calcite-planner/pom.xml index e00925046..a97d53b67 100644 --- a/java/calcite-planner/pom.xml +++ b/java/calcite-planner/pom.xml @@ -22,12 +22,12 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>calcite-planner</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> <packaging>jar</packaging> <name>calcite-planner</name> @@ -36,7 +36,7 @@ under the License. <dependency> <groupId>org.apache.impala</groupId> <artifactId>impala-frontend</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </dependency> <dependency> <groupId>org.apache.calcite</groupId> diff --git a/java/datagenerator/pom.xml b/java/datagenerator/pom.xml index b6e8f3b3f..d34b16b0f 100644 --- a/java/datagenerator/pom.xml +++ b/java/datagenerator/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/executor-deps/pom.xml b/java/executor-deps/pom.xml index 62a31d54d..6c6c3c958 100644 --- a/java/executor-deps/pom.xml +++ b/java/executor-deps/pom.xml @@ -34,7 +34,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.impala</groupId> diff --git a/java/ext-data-source/api/pom.xml b/java/ext-data-source/api/pom.xml index 32c4b8a4c..8ec23cdbd 100644 --- a/java/ext-data-source/api/pom.xml +++ b/java/ext-data-source/api/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-data-source</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <artifactId>impala-data-source-api</artifactId> <name>Apache Impala External Data Source API</name> diff --git a/java/ext-data-source/jdbc/pom.xml b/java/ext-data-source/jdbc/pom.xml index 6b39daf96..f9658cba0 100644 --- a/java/ext-data-source/jdbc/pom.xml +++ b/java/ext-data-source/jdbc/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-data-source</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <artifactId>impala-data-source-jdbc</artifactId> <name>Apache Impala External Data Source JDBC Library</name> diff --git a/java/ext-data-source/pom.xml b/java/ext-data-source/pom.xml index 87e25f207..16797631a 100644 --- a/java/ext-data-source/pom.xml +++ b/java/ext-data-source/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>impala-data-source</artifactId> diff --git a/java/ext-data-source/sample/pom.xml b/java/ext-data-source/sample/pom.xml index 6f3860a4f..6148e1a45 100644 --- a/java/ext-data-source/sample/pom.xml +++ b/java/ext-data-source/sample/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-data-source</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <artifactId>impala-data-source-sample</artifactId> <name>Apache Impala External Data Source Sample</name> diff --git a/java/ext-data-source/test/pom.xml b/java/ext-data-source/test/pom.xml index a25728e03..292fc447f 100644 --- a/java/ext-data-source/test/pom.xml +++ b/java/ext-data-source/test/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-data-source</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <artifactId>impala-data-source-test</artifactId> <name>Apache Impala External Data Source Test Library</name> diff --git a/java/external-frontend/pom.xml b/java/external-frontend/pom.xml index 2b46b8a8c..416eb26d3 100644 --- a/java/external-frontend/pom.xml +++ b/java/external-frontend/pom.xml @@ -22,7 +22,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> @@ -36,7 +36,7 @@ under the License. <dependency> <groupId>org.apache.impala</groupId> <artifactId>impala-frontend</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </dependency> </dependencies> diff --git a/java/pom.xml b/java/pom.xml index ae5752532..89a126a22 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -21,7 +21,7 @@ under the License. <modelVersion>4.0.0</modelVersion> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> <packaging>pom</packaging> <name>Apache Impala Parent POM</name> diff --git a/java/puffin-data-generator/pom.xml b/java/puffin-data-generator/pom.xml index 9688b1f6f..5d4780768 100644 --- a/java/puffin-data-generator/pom.xml +++ b/java/puffin-data-generator/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/query-event-hook-api/pom.xml b/java/query-event-hook-api/pom.xml index ce74b4391..510f44058 100644 --- a/java/query-event-hook-api/pom.xml +++ b/java/query-event-hook-api/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>query-event-hook-api</artifactId> diff --git a/java/shaded-deps/hive-exec/pom.xml b/java/shaded-deps/hive-exec/pom.xml index 18be87df6..d8c8e2547 100644 --- a/java/shaded-deps/hive-exec/pom.xml +++ b/java/shaded-deps/hive-exec/pom.xml @@ -27,7 +27,7 @@ the same dependencies <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/shaded-deps/s3a-aws-sdk/pom.xml b/java/shaded-deps/s3a-aws-sdk/pom.xml index 26e6995fa..511e86bfe 100644 --- a/java/shaded-deps/s3a-aws-sdk/pom.xml +++ b/java/shaded-deps/s3a-aws-sdk/pom.xml @@ -25,7 +25,7 @@ though some of them might not be necessary. The exclusions are sorted alphabetic <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/test-corrupt-hive-udfs/pom.xml b/java/test-corrupt-hive-udfs/pom.xml index d78274ab4..cf6b1c3e3 100644 --- a/java/test-corrupt-hive-udfs/pom.xml +++ b/java/test-corrupt-hive-udfs/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/test-hive-udfs/pom.xml b/java/test-hive-udfs/pom.xml index 5120c46d7..24ea139e3 100644 --- a/java/test-hive-udfs/pom.xml +++ b/java/test-hive-udfs/pom.xml @@ -22,7 +22,7 @@ under the License. <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/yarn-extras/pom.xml b/java/yarn-extras/pom.xml index 2dfb3f051..740b1eaf8 100644 --- a/java/yarn-extras/pom.xml +++ b/java/yarn-extras/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.impala</groupId> <artifactId>impala-parent</artifactId> - <version>4.5.0-SNAPSHOT</version> + <version>4.5.0-RELEASE</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>yarn-extras</artifactId>