From 8425dab3ce9c306a93da41276acc962b47567e5f Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 09:47:25 +0200 Subject: [PATCH 01/10] chmod executable jar on copy otherwise, this modifies again the same file, and duplicates it in layer --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7bd81465b0178..e7b2d9d8c1324 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,7 +8,7 @@ ARG JMX_PROMETHEUS_JAVAAGENT_VERSION=0.20.0 ENV PRESTO_HOME="/opt/presto-server" COPY $PRESTO_PKG . -COPY $PRESTO_CLI_JAR /opt/presto-cli +COPY --chmod=755 $PRESTO_CLI_JAR /opt/presto-cli RUN dnf install -y java-11-openjdk less procps python3 \ && ln -s $(which python3) /usr/bin/python \ @@ -17,7 +17,6 @@ RUN dnf install -y java-11-openjdk less procps python3 \ && mv ./presto-server-$PRESTO_VERSION $PRESTO_HOME \ && rm -rf $PRESTO_PKG \ && rm -rf ./presto-server-$PRESTO_VERSION \ - && chmod +x /opt/presto-cli \ && ln -s /opt/presto-cli /usr/local/bin/ \ # clean cache jobs && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak \ From 2645fcd9196d1539d14e03dc91cba06c6b7f1509 Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 09:53:45 +0200 Subject: [PATCH 02/10] cache dnf installer --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e7b2d9d8c1324..b0d9f1b5b3109 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,8 @@ ENV PRESTO_HOME="/opt/presto-server" COPY $PRESTO_PKG . COPY --chmod=755 $PRESTO_CLI_JAR /opt/presto-cli -RUN dnf install -y java-11-openjdk less procps python3 \ +RUN --mount=type=cache,target=/var/cache/dnf \ + dnf install -y java-11-openjdk less procps python3 \ && ln -s $(which python3) /usr/bin/python \ # Download Presto and move \ && tar -zxf $PRESTO_PKG \ @@ -20,7 +21,6 @@ RUN dnf install -y java-11-openjdk less procps python3 \ && ln -s /opt/presto-cli /usr/local/bin/ \ # clean cache jobs && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak \ - && dnf clean all \ # mkdir for config && mkdir -p $PRESTO_HOME/etc \ && mkdir -p $PRESTO_HOME/etc/catalog \ From 855f53f3d239a8ce456b745136dda94b3afe4191 Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 09:55:11 +0200 Subject: [PATCH 03/10] create folder recursive, create data volume --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b0d9f1b5b3109..8530fd192a129 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -22,7 +22,6 @@ RUN --mount=type=cache,target=/var/cache/dnf \ # clean cache jobs && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak \ # mkdir for config - && mkdir -p $PRESTO_HOME/etc \ && mkdir -p $PRESTO_HOME/etc/catalog \ && mkdir -p /var/lib/presto/data \ && mkdir -p /usr/lib/presto/utils \ @@ -37,4 +36,6 @@ COPY entrypoint.sh /opt EXPOSE 8080 +VOLUME ["/var/lib/presto/data"] + ENTRYPOINT ["/opt/entrypoint.sh"] From 7365d0c6fe1d34ca033d38121c7b0efdb9bd6395 Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 09:57:56 +0200 Subject: [PATCH 04/10] reorder layers to install base apps first --- docker/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8530fd192a129..2c4e887244efb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,20 +7,22 @@ ARG JMX_PROMETHEUS_JAVAAGENT_VERSION=0.20.0 ENV PRESTO_HOME="/opt/presto-server" -COPY $PRESTO_PKG . -COPY --chmod=755 $PRESTO_CLI_JAR /opt/presto-cli - RUN --mount=type=cache,target=/var/cache/dnf \ dnf install -y java-11-openjdk less procps python3 \ && ln -s $(which python3) /usr/bin/python \ + # clean cache jobs + && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak + +COPY $PRESTO_PKG . +COPY --chmod=755 $PRESTO_CLI_JAR /opt/presto-cli + +RUN \ # Download Presto and move \ - && tar -zxf $PRESTO_PKG \ + tar -zxf $PRESTO_PKG \ && mv ./presto-server-$PRESTO_VERSION $PRESTO_HOME \ && rm -rf $PRESTO_PKG \ && rm -rf ./presto-server-$PRESTO_VERSION \ && ln -s /opt/presto-cli /usr/local/bin/ \ - # clean cache jobs - && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak \ # mkdir for config && mkdir -p $PRESTO_HOME/etc/catalog \ && mkdir -p /var/lib/presto/data \ From 9ded1b08ef922bbc2bff01049fae2d7ffe09bbef Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 10:47:35 +0200 Subject: [PATCH 05/10] mount installer package instead of copy avoids adding the copy file into the image and saves space --- docker/Dockerfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2c4e887244efb..6e3588db48381 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,15 +13,12 @@ RUN --mount=type=cache,target=/var/cache/dnf \ # clean cache jobs && mv /etc/yum/protected.d/systemd.conf /etc/yum/protected.d/systemd.conf.bak -COPY $PRESTO_PKG . COPY --chmod=755 $PRESTO_CLI_JAR /opt/presto-cli -RUN \ +RUN --mount=type=bind,source=$PRESTO_PKG,target=/$PRESTO_PKG \ # Download Presto and move \ - tar -zxf $PRESTO_PKG \ - && mv ./presto-server-$PRESTO_VERSION $PRESTO_HOME \ - && rm -rf $PRESTO_PKG \ - && rm -rf ./presto-server-$PRESTO_VERSION \ + mkdir -p "$PRESTO_HOME" && \ + tar --strip-components=1 -C "$PRESTO_HOME" -zxf /$PRESTO_PKG \ && ln -s /opt/presto-cli /usr/local/bin/ \ # mkdir for config && mkdir -p $PRESTO_HOME/etc/catalog \ From aa7d196be475316b01922b20a643f1e0a981f8b2 Mon Sep 17 00:00:00 2001 From: duhow Date: Thu, 3 Jul 2025 11:22:40 +0200 Subject: [PATCH 06/10] pass TERM signal to application --- docker/entrypoint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index d4df39e601fb9..a991cee68b7e0 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -1,5 +1,8 @@ #!/bin/sh set -e +trap 'kill -TERM $app 2>/dev/null' TERM -$PRESTO_HOME/bin/launcher run +$PRESTO_HOME/bin/launcher run & +app=$! +wait $app From bc3f55e8ce3bead5b5914e607d6faf78e2de7502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Gir=C3=B3n?= Date: Tue, 8 Jul 2025 09:19:15 +0200 Subject: [PATCH 07/10] lock sharing dnf cache --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 6e3588db48381..97215ce404d8b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ ARG JMX_PROMETHEUS_JAVAAGENT_VERSION=0.20.0 ENV PRESTO_HOME="/opt/presto-server" -RUN --mount=type=cache,target=/var/cache/dnf \ +RUN --mount=type=cache,target=/var/cache/dnf,sharing=locked \ dnf install -y java-11-openjdk less procps python3 \ && ln -s $(which python3) /usr/bin/python \ # clean cache jobs From 437941eb38af7addcebf75f35d07e89c0dfb448a Mon Sep 17 00:00:00 2001 From: prestodb-ci Date: Thu, 10 Jul 2025 07:09:13 +0000 Subject: [PATCH 08/10] [maven-release-plugin] prepare release 0.294 --- pom.xml | 4 ++-- presto-accumulo/pom.xml | 2 +- presto-analyzer/pom.xml | 2 +- presto-atop/pom.xml | 2 +- presto-base-arrow-flight/pom.xml | 2 +- presto-base-jdbc/pom.xml | 2 +- presto-benchmark-driver/pom.xml | 2 +- presto-benchmark-runner/pom.xml | 2 +- presto-benchmark/pom.xml | 2 +- presto-benchto-benchmarks/pom.xml | 2 +- presto-bigquery/pom.xml | 2 +- presto-blackhole/pom.xml | 2 +- presto-bytecode/pom.xml | 2 +- presto-cache/pom.xml | 2 +- presto-cassandra/pom.xml | 2 +- presto-cli/pom.xml | 2 +- presto-clickhouse/pom.xml | 2 +- presto-client/pom.xml | 2 +- presto-cluster-ttl-providers/pom.xml | 2 +- presto-common/pom.xml | 2 +- presto-delta/pom.xml | 2 +- presto-docs/pom.xml | 2 +- presto-druid/pom.xml | 2 +- presto-elasticsearch/pom.xml | 2 +- presto-example-http/pom.xml | 2 +- presto-expressions/pom.xml | 2 +- presto-function-namespace-managers-common/pom.xml | 2 +- presto-function-namespace-managers/pom.xml | 2 +- presto-function-server/pom.xml | 2 +- presto-geospatial-toolkit/pom.xml | 2 +- presto-google-sheets/pom.xml | 2 +- presto-grpc-api/pom.xml | 2 +- presto-grpc-testing-udf-server/pom.xml | 2 +- presto-hana/pom.xml | 2 +- presto-hdfs-core/pom.xml | 2 +- presto-hive-common/pom.xml | 2 +- presto-hive-function-namespace/pom.xml | 2 +- presto-hive-hadoop2/pom.xml | 2 +- presto-hive-metastore/pom.xml | 2 +- presto-hive/pom.xml | 2 +- presto-hudi/pom.xml | 2 +- presto-i18n-functions/pom.xml | 2 +- presto-iceberg/pom.xml | 2 +- presto-jdbc/pom.xml | 2 +- presto-jmx/pom.xml | 2 +- presto-kafka/pom.xml | 2 +- presto-kudu/pom.xml | 2 +- presto-lark-sheets/pom.xml | 2 +- presto-local-file/pom.xml | 2 +- presto-main-base/pom.xml | 2 +- presto-main/pom.xml | 2 +- presto-matching/pom.xml | 2 +- presto-memory-context/pom.xml | 2 +- presto-memory/pom.xml | 2 +- presto-ml/pom.xml | 2 +- presto-mongodb/pom.xml | 2 +- presto-mysql/pom.xml | 2 +- presto-native-execution/pom.xml | 2 +- presto-native-sidecar-plugin/pom.xml | 6 +++--- presto-native-tests/pom.xml | 2 +- presto-node-ttl-fetchers/pom.xml | 2 +- presto-open-telemetry/pom.xml | 2 +- presto-openapi/pom.xml | 2 +- presto-oracle/pom.xml | 2 +- presto-orc/pom.xml | 2 +- presto-parquet/pom.xml | 2 +- presto-parser/pom.xml | 2 +- presto-password-authenticators/pom.xml | 2 +- presto-pinot-toolkit/pom.xml | 2 +- presto-pinot/pom.xml | 2 +- presto-plan-checker-router-plugin/pom.xml | 4 ++-- presto-plugin-toolkit/pom.xml | 2 +- presto-postgresql/pom.xml | 2 +- presto-product-tests/pom.xml | 2 +- presto-prometheus/pom.xml | 2 +- presto-proxy/pom.xml | 2 +- presto-rcfile/pom.xml | 2 +- presto-record-decoder/pom.xml | 2 +- presto-redis/pom.xml | 2 +- presto-redshift/pom.xml | 2 +- presto-resource-group-managers/pom.xml | 2 +- presto-router-example-plugin-scheduler/pom.xml | 4 ++-- presto-router/pom.xml | 2 +- presto-server/pom.xml | 2 +- presto-session-property-managers/pom.xml | 2 +- presto-singlestore/pom.xml | 2 +- presto-spark-base/pom.xml | 2 +- presto-spark-classloader-interface/pom.xml | 2 +- presto-spark-common/pom.xml | 2 +- presto-spark-launcher/pom.xml | 2 +- presto-spark-package/pom.xml | 2 +- presto-spark-testing/pom.xml | 2 +- presto-spark/pom.xml | 2 +- presto-spi/pom.xml | 2 +- presto-sqlserver/pom.xml | 2 +- presto-teradata-functions/pom.xml | 2 +- presto-test-coverage/pom.xml | 2 +- presto-testing-docker/pom.xml | 2 +- presto-testing-server-launcher/pom.xml | 2 +- presto-testng-services/pom.xml | 2 +- presto-tests/pom.xml | 2 +- presto-thrift-api/pom.xml | 2 +- presto-thrift-connector/pom.xml | 2 +- presto-thrift-spec/pom.xml | 2 +- presto-thrift-testing-server/pom.xml | 2 +- presto-thrift-testing-udf-server/pom.xml | 2 +- presto-tpcds/pom.xml | 2 +- presto-tpch/pom.xml | 2 +- presto-ui/pom.xml | 2 +- presto-verifier/pom.xml | 2 +- redis-hbo-provider/pom.xml | 2 +- 111 files changed, 116 insertions(+), 116 deletions(-) diff --git a/pom.xml b/pom.xml index 00555f8531584..d76d90ccbb253 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 pom presto-root @@ -30,7 +30,7 @@ scm:git:git://github.com/prestodb/presto.git https://github.com/prestodb/presto - HEAD + 0.294 diff --git a/presto-accumulo/pom.xml b/presto-accumulo/pom.xml index 7b7d7ac63baee..891d4ec5a21b3 100644 --- a/presto-accumulo/pom.xml +++ b/presto-accumulo/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-accumulo diff --git a/presto-analyzer/pom.xml b/presto-analyzer/pom.xml index 4235cab079cf9..4c4a52c03b92b 100644 --- a/presto-analyzer/pom.xml +++ b/presto-analyzer/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-analyzer diff --git a/presto-atop/pom.xml b/presto-atop/pom.xml index d9c86ad51210d..60f3dfc2c0981 100644 --- a/presto-atop/pom.xml +++ b/presto-atop/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-atop diff --git a/presto-base-arrow-flight/pom.xml b/presto-base-arrow-flight/pom.xml index 1ae8b087050b0..35259bbe072b2 100644 --- a/presto-base-arrow-flight/pom.xml +++ b/presto-base-arrow-flight/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-base-arrow-flight diff --git a/presto-base-jdbc/pom.xml b/presto-base-jdbc/pom.xml index e1ca899ecd3a3..82a94ff8fb63b 100644 --- a/presto-base-jdbc/pom.xml +++ b/presto-base-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-base-jdbc diff --git a/presto-benchmark-driver/pom.xml b/presto-benchmark-driver/pom.xml index 9993320fd15fd..68180a25a4b97 100644 --- a/presto-benchmark-driver/pom.xml +++ b/presto-benchmark-driver/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-benchmark-driver diff --git a/presto-benchmark-runner/pom.xml b/presto-benchmark-runner/pom.xml index a284e063e945a..1ec0c90b3a2bf 100644 --- a/presto-benchmark-runner/pom.xml +++ b/presto-benchmark-runner/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-benchmark-runner diff --git a/presto-benchmark/pom.xml b/presto-benchmark/pom.xml index 1dacb5a2dc586..e44e2fef9f6ba 100644 --- a/presto-benchmark/pom.xml +++ b/presto-benchmark/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-benchmark diff --git a/presto-benchto-benchmarks/pom.xml b/presto-benchto-benchmarks/pom.xml index 2d6e17f48fd9f..bab2850da2e7c 100644 --- a/presto-benchto-benchmarks/pom.xml +++ b/presto-benchto-benchmarks/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-benchto-benchmarks diff --git a/presto-bigquery/pom.xml b/presto-bigquery/pom.xml index 7224ac7d815a9..6e77fec1b0b83 100644 --- a/presto-bigquery/pom.xml +++ b/presto-bigquery/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-bigquery diff --git a/presto-blackhole/pom.xml b/presto-blackhole/pom.xml index b830cc037edb7..45022bd64096c 100644 --- a/presto-blackhole/pom.xml +++ b/presto-blackhole/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-blackhole diff --git a/presto-bytecode/pom.xml b/presto-bytecode/pom.xml index dcb28ba9daf36..0bedf25183691 100644 --- a/presto-bytecode/pom.xml +++ b/presto-bytecode/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-bytecode diff --git a/presto-cache/pom.xml b/presto-cache/pom.xml index b5e21ff666572..63265bf7b52f0 100644 --- a/presto-cache/pom.xml +++ b/presto-cache/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-cache diff --git a/presto-cassandra/pom.xml b/presto-cassandra/pom.xml index 2bbaf0c908cd6..47d6026db5769 100644 --- a/presto-cassandra/pom.xml +++ b/presto-cassandra/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-cassandra diff --git a/presto-cli/pom.xml b/presto-cli/pom.xml index e777cd7f9ec10..1d2a1a14b8761 100644 --- a/presto-cli/pom.xml +++ b/presto-cli/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-cli diff --git a/presto-clickhouse/pom.xml b/presto-clickhouse/pom.xml index f29e4c00fa131..f617ab13d0df1 100755 --- a/presto-clickhouse/pom.xml +++ b/presto-clickhouse/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-clickhouse diff --git a/presto-client/pom.xml b/presto-client/pom.xml index b9ad140464626..94f569e7578bc 100644 --- a/presto-client/pom.xml +++ b/presto-client/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-client diff --git a/presto-cluster-ttl-providers/pom.xml b/presto-cluster-ttl-providers/pom.xml index 13cca1be09776..676a1684926c4 100644 --- a/presto-cluster-ttl-providers/pom.xml +++ b/presto-cluster-ttl-providers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-common/pom.xml b/presto-common/pom.xml index 44d3fca2e7713..7aa8617dadd7d 100644 --- a/presto-common/pom.xml +++ b/presto-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-common diff --git a/presto-delta/pom.xml b/presto-delta/pom.xml index c2f3a14f92c95..d8fed3cb9e3bc 100644 --- a/presto-delta/pom.xml +++ b/presto-delta/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-delta diff --git a/presto-docs/pom.xml b/presto-docs/pom.xml index a3fb539a35bb5..0c7be4e192656 100644 --- a/presto-docs/pom.xml +++ b/presto-docs/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-docs diff --git a/presto-druid/pom.xml b/presto-druid/pom.xml index 8301aa7f22ac3..4a73d7d23b1da 100644 --- a/presto-druid/pom.xml +++ b/presto-druid/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-druid diff --git a/presto-elasticsearch/pom.xml b/presto-elasticsearch/pom.xml index 24aa90c84e766..a530136f9cabb 100644 --- a/presto-elasticsearch/pom.xml +++ b/presto-elasticsearch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-elasticsearch Presto - Elasticsearch Connector diff --git a/presto-example-http/pom.xml b/presto-example-http/pom.xml index 29b9c95e64c5c..2f07e3d1af9ac 100644 --- a/presto-example-http/pom.xml +++ b/presto-example-http/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-example-http diff --git a/presto-expressions/pom.xml b/presto-expressions/pom.xml index f2eb436d46c4f..adeb3656ca703 100644 --- a/presto-expressions/pom.xml +++ b/presto-expressions/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-expressions diff --git a/presto-function-namespace-managers-common/pom.xml b/presto-function-namespace-managers-common/pom.xml index 5a3847f622ec0..3bf6960c61768 100644 --- a/presto-function-namespace-managers-common/pom.xml +++ b/presto-function-namespace-managers-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 diff --git a/presto-function-namespace-managers/pom.xml b/presto-function-namespace-managers/pom.xml index b38a0bfb0fb03..96cace9c77a7b 100644 --- a/presto-function-namespace-managers/pom.xml +++ b/presto-function-namespace-managers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-function-server/pom.xml b/presto-function-server/pom.xml index 0abd6ffa2073e..461acf5096690 100644 --- a/presto-function-server/pom.xml +++ b/presto-function-server/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-function-server diff --git a/presto-geospatial-toolkit/pom.xml b/presto-geospatial-toolkit/pom.xml index d52dd35ba9936..a3166ff0fc4f1 100644 --- a/presto-geospatial-toolkit/pom.xml +++ b/presto-geospatial-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-geospatial-toolkit diff --git a/presto-google-sheets/pom.xml b/presto-google-sheets/pom.xml index 092cc07b6d453..dfb8c7f579b69 100644 --- a/presto-google-sheets/pom.xml +++ b/presto-google-sheets/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-google-sheets diff --git a/presto-grpc-api/pom.xml b/presto-grpc-api/pom.xml index 7cb5c5eaae464..4ade17071f4c7 100644 --- a/presto-grpc-api/pom.xml +++ b/presto-grpc-api/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-grpc-testing-udf-server/pom.xml b/presto-grpc-testing-udf-server/pom.xml index ca7dbc4e05d59..7a04f8408e28c 100644 --- a/presto-grpc-testing-udf-server/pom.xml +++ b/presto-grpc-testing-udf-server/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-hana/pom.xml b/presto-hana/pom.xml index 5f49aee9a0a58..5d249fa29e54b 100644 --- a/presto-hana/pom.xml +++ b/presto-hana/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-hana diff --git a/presto-hdfs-core/pom.xml b/presto-hdfs-core/pom.xml index 01f8e994d5deb..395341cb12bbb 100644 --- a/presto-hdfs-core/pom.xml +++ b/presto-hdfs-core/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 diff --git a/presto-hive-common/pom.xml b/presto-hive-common/pom.xml index 854d59f6a4b8c..4b0dd74426934 100644 --- a/presto-hive-common/pom.xml +++ b/presto-hive-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 diff --git a/presto-hive-function-namespace/pom.xml b/presto-hive-function-namespace/pom.xml index 158e091fb8d58..5dc2f6341124f 100644 --- a/presto-hive-function-namespace/pom.xml +++ b/presto-hive-function-namespace/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-hive-function-namespace diff --git a/presto-hive-hadoop2/pom.xml b/presto-hive-hadoop2/pom.xml index 27a7df95b685b..b147405c5a751 100644 --- a/presto-hive-hadoop2/pom.xml +++ b/presto-hive-hadoop2/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-hive-hadoop2 diff --git a/presto-hive-metastore/pom.xml b/presto-hive-metastore/pom.xml index 804312a3c0567..a67290b32e865 100644 --- a/presto-hive-metastore/pom.xml +++ b/presto-hive-metastore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-hive-metastore diff --git a/presto-hive/pom.xml b/presto-hive/pom.xml index f234abf4508fe..7c2b2a5867f1d 100644 --- a/presto-hive/pom.xml +++ b/presto-hive/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-hive diff --git a/presto-hudi/pom.xml b/presto-hudi/pom.xml index c63e52671e117..0924714897183 100644 --- a/presto-hudi/pom.xml +++ b/presto-hudi/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-hudi Presto - Hudi Connector diff --git a/presto-i18n-functions/pom.xml b/presto-i18n-functions/pom.xml index a2161270e9379..b116a964187fb 100644 --- a/presto-i18n-functions/pom.xml +++ b/presto-i18n-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-i18n-functions diff --git a/presto-iceberg/pom.xml b/presto-iceberg/pom.xml index e836bbc2c6772..2761348151a62 100644 --- a/presto-iceberg/pom.xml +++ b/presto-iceberg/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-iceberg Presto - Iceberg Connector diff --git a/presto-jdbc/pom.xml b/presto-jdbc/pom.xml index 16e79b7bb77c0..231767c3c1239 100644 --- a/presto-jdbc/pom.xml +++ b/presto-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-jdbc diff --git a/presto-jmx/pom.xml b/presto-jmx/pom.xml index 8041c7d9d27f9..2b8f53992baa3 100644 --- a/presto-jmx/pom.xml +++ b/presto-jmx/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-jmx diff --git a/presto-kafka/pom.xml b/presto-kafka/pom.xml index 4b3483a5c5b9e..7fb8ec1c7e36c 100644 --- a/presto-kafka/pom.xml +++ b/presto-kafka/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-kafka diff --git a/presto-kudu/pom.xml b/presto-kudu/pom.xml index 5d6755ac23f92..4d0bbdc2c9c4c 100644 --- a/presto-kudu/pom.xml +++ b/presto-kudu/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-kudu diff --git a/presto-lark-sheets/pom.xml b/presto-lark-sheets/pom.xml index dfbba4c89f81c..b1af4123d23ca 100644 --- a/presto-lark-sheets/pom.xml +++ b/presto-lark-sheets/pom.xml @@ -3,7 +3,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-local-file/pom.xml b/presto-local-file/pom.xml index 59a2674e16a9e..544c02c08eaf7 100644 --- a/presto-local-file/pom.xml +++ b/presto-local-file/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-local-file diff --git a/presto-main-base/pom.xml b/presto-main-base/pom.xml index a0d05d6c23f02..943161f4519d7 100644 --- a/presto-main-base/pom.xml +++ b/presto-main-base/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-main-base diff --git a/presto-main/pom.xml b/presto-main/pom.xml index 4f1989b31fc75..134e20a92b66d 100644 --- a/presto-main/pom.xml +++ b/presto-main/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-main diff --git a/presto-matching/pom.xml b/presto-matching/pom.xml index 623c64487eb7d..aad7e9444b98d 100644 --- a/presto-matching/pom.xml +++ b/presto-matching/pom.xml @@ -18,7 +18,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-matching diff --git a/presto-memory-context/pom.xml b/presto-memory-context/pom.xml index eef59a7ffa24b..7c7e9f8e67d61 100644 --- a/presto-memory-context/pom.xml +++ b/presto-memory-context/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-memory-context diff --git a/presto-memory/pom.xml b/presto-memory/pom.xml index 0bb8a137fc103..aed35dcee0ff6 100644 --- a/presto-memory/pom.xml +++ b/presto-memory/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-memory diff --git a/presto-ml/pom.xml b/presto-ml/pom.xml index 37c6263547a60..10f7d286e4c39 100644 --- a/presto-ml/pom.xml +++ b/presto-ml/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-ml diff --git a/presto-mongodb/pom.xml b/presto-mongodb/pom.xml index 4d7fbaab9dcfd..16aadba2e84c2 100644 --- a/presto-mongodb/pom.xml +++ b/presto-mongodb/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-mongodb diff --git a/presto-mysql/pom.xml b/presto-mysql/pom.xml index b1c233059f2a7..1804f3c807627 100644 --- a/presto-mysql/pom.xml +++ b/presto-mysql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-mysql diff --git a/presto-native-execution/pom.xml b/presto-native-execution/pom.xml index cc69d2dd26e9c..e36b4b88f5b72 100644 --- a/presto-native-execution/pom.xml +++ b/presto-native-execution/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-native-execution diff --git a/presto-native-sidecar-plugin/pom.xml b/presto-native-sidecar-plugin/pom.xml index 8473f10f08332..9de9e1845a535 100644 --- a/presto-native-sidecar-plugin/pom.xml +++ b/presto-native-sidecar-plugin/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-native-sidecar-plugin @@ -158,7 +158,7 @@ presto-tests test test-jar - 0.294-SNAPSHOT + 0.294 @@ -172,7 +172,7 @@ presto-native-execution test test-jar - 0.294-SNAPSHOT + 0.294 diff --git a/presto-native-tests/pom.xml b/presto-native-tests/pom.xml index 9909b80cb9f47..cac9d072c0a05 100644 --- a/presto-native-tests/pom.xml +++ b/presto-native-tests/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-native-tests diff --git a/presto-node-ttl-fetchers/pom.xml b/presto-node-ttl-fetchers/pom.xml index 0d99e3cec2034..9cb67df521fa2 100644 --- a/presto-node-ttl-fetchers/pom.xml +++ b/presto-node-ttl-fetchers/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-node-ttl-fetchers diff --git a/presto-open-telemetry/pom.xml b/presto-open-telemetry/pom.xml index 73050a87914c8..4b11cd2b23e7d 100644 --- a/presto-open-telemetry/pom.xml +++ b/presto-open-telemetry/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-open-telemetry diff --git a/presto-openapi/pom.xml b/presto-openapi/pom.xml index 980e2c3f1c1ab..cb5d79d2870b3 100644 --- a/presto-openapi/pom.xml +++ b/presto-openapi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-openapi diff --git a/presto-oracle/pom.xml b/presto-oracle/pom.xml index 1ca9195a23158..197b38d3222bd 100644 --- a/presto-oracle/pom.xml +++ b/presto-oracle/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-oracle diff --git a/presto-orc/pom.xml b/presto-orc/pom.xml index f096bcb41c567..e0caa26aa62fd 100644 --- a/presto-orc/pom.xml +++ b/presto-orc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-orc diff --git a/presto-parquet/pom.xml b/presto-parquet/pom.xml index fff2a5f761e91..58fc388eaf18b 100644 --- a/presto-parquet/pom.xml +++ b/presto-parquet/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-parquet diff --git a/presto-parser/pom.xml b/presto-parser/pom.xml index 98723b452ffe6..b12f44244c606 100644 --- a/presto-parser/pom.xml +++ b/presto-parser/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-parser diff --git a/presto-password-authenticators/pom.xml b/presto-password-authenticators/pom.xml index 4ba330776b95d..fdc9033db1023 100644 --- a/presto-password-authenticators/pom.xml +++ b/presto-password-authenticators/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-password-authenticators diff --git a/presto-pinot-toolkit/pom.xml b/presto-pinot-toolkit/pom.xml index 4cc64de9260bb..d53b851089754 100644 --- a/presto-pinot-toolkit/pom.xml +++ b/presto-pinot-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-pinot-toolkit diff --git a/presto-pinot/pom.xml b/presto-pinot/pom.xml index 774ef37f59f43..81812520b7e91 100644 --- a/presto-pinot/pom.xml +++ b/presto-pinot/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-pinot diff --git a/presto-plan-checker-router-plugin/pom.xml b/presto-plan-checker-router-plugin/pom.xml index b94c4c15ea5e1..f06d371b48c2e 100644 --- a/presto-plan-checker-router-plugin/pom.xml +++ b/presto-plan-checker-router-plugin/pom.xml @@ -5,12 +5,12 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 com.facebook.presto.router presto-plan-checker-router-plugin - 0.294-SNAPSHOT + 0.294 jar presto-plan-checker-router-plugin Presto plan checker router plugin diff --git a/presto-plugin-toolkit/pom.xml b/presto-plugin-toolkit/pom.xml index c37ceb896b904..a9726e362a834 100644 --- a/presto-plugin-toolkit/pom.xml +++ b/presto-plugin-toolkit/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-plugin-toolkit diff --git a/presto-postgresql/pom.xml b/presto-postgresql/pom.xml index 250295c650f6d..eedf0b726b079 100644 --- a/presto-postgresql/pom.xml +++ b/presto-postgresql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-postgresql diff --git a/presto-product-tests/pom.xml b/presto-product-tests/pom.xml index 92d107619fae2..cd12116eec982 100644 --- a/presto-product-tests/pom.xml +++ b/presto-product-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-product-tests diff --git a/presto-prometheus/pom.xml b/presto-prometheus/pom.xml index 9e27c2489575f..a7d41bdd97e75 100644 --- a/presto-prometheus/pom.xml +++ b/presto-prometheus/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-prometheus diff --git a/presto-proxy/pom.xml b/presto-proxy/pom.xml index 48aed211f6008..c0254731a6bd0 100644 --- a/presto-proxy/pom.xml +++ b/presto-proxy/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-proxy diff --git a/presto-rcfile/pom.xml b/presto-rcfile/pom.xml index 6fd7b6894e15a..3bfd210e9bf14 100644 --- a/presto-rcfile/pom.xml +++ b/presto-rcfile/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-rcfile diff --git a/presto-record-decoder/pom.xml b/presto-record-decoder/pom.xml index 88d018ee5a53c..bfb9ebec7b63d 100644 --- a/presto-record-decoder/pom.xml +++ b/presto-record-decoder/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-record-decoder diff --git a/presto-redis/pom.xml b/presto-redis/pom.xml index 7092a63f83736..3dc321bc29389 100644 --- a/presto-redis/pom.xml +++ b/presto-redis/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-redis diff --git a/presto-redshift/pom.xml b/presto-redshift/pom.xml index 2afcbb4b20eab..4592ea93b8134 100644 --- a/presto-redshift/pom.xml +++ b/presto-redshift/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-redshift diff --git a/presto-resource-group-managers/pom.xml b/presto-resource-group-managers/pom.xml index a9a4ea1cbf158..3871d7e1f6ae8 100644 --- a/presto-resource-group-managers/pom.xml +++ b/presto-resource-group-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-resource-group-managers diff --git a/presto-router-example-plugin-scheduler/pom.xml b/presto-router-example-plugin-scheduler/pom.xml index 28b2fa3902c5c..012c976b29c45 100644 --- a/presto-router-example-plugin-scheduler/pom.xml +++ b/presto-router-example-plugin-scheduler/pom.xml @@ -5,12 +5,12 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 com.facebook.presto.router presto-router-example-plugin-scheduler - 0.294-SNAPSHOT + 0.294 jar presto-router-example-plugin-scheduler Presto-router example custom plugin scheduler diff --git a/presto-router/pom.xml b/presto-router/pom.xml index 55e3c614fc634..0e7454ad966cf 100755 --- a/presto-router/pom.xml +++ b/presto-router/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-router diff --git a/presto-server/pom.xml b/presto-server/pom.xml index 0b9822851e903..ce15e9d38f6c5 100644 --- a/presto-server/pom.xml +++ b/presto-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-server diff --git a/presto-session-property-managers/pom.xml b/presto-session-property-managers/pom.xml index 8aa3847c0bfe9..c3928eb5a2423 100644 --- a/presto-session-property-managers/pom.xml +++ b/presto-session-property-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-session-property-managers diff --git a/presto-singlestore/pom.xml b/presto-singlestore/pom.xml index 7cf58669d9fe0..8213ef613cd74 100644 --- a/presto-singlestore/pom.xml +++ b/presto-singlestore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-singlestore diff --git a/presto-spark-base/pom.xml b/presto-spark-base/pom.xml index f87490571a6d9..ddf5bd5c380e5 100644 --- a/presto-spark-base/pom.xml +++ b/presto-spark-base/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-spark-classloader-interface/pom.xml b/presto-spark-classloader-interface/pom.xml index eecde0fa81386..484532f2f6e72 100644 --- a/presto-spark-classloader-interface/pom.xml +++ b/presto-spark-classloader-interface/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-spark-common/pom.xml b/presto-spark-common/pom.xml index a350ec18bbb84..1b363fadb7170 100644 --- a/presto-spark-common/pom.xml +++ b/presto-spark-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-spark-common diff --git a/presto-spark-launcher/pom.xml b/presto-spark-launcher/pom.xml index ade39abbac0b1..c1323233ec72a 100644 --- a/presto-spark-launcher/pom.xml +++ b/presto-spark-launcher/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-spark-package/pom.xml b/presto-spark-package/pom.xml index e3fd312cc17a0..6c03c6b7e3821 100644 --- a/presto-spark-package/pom.xml +++ b/presto-spark-package/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-spark-package diff --git a/presto-spark-testing/pom.xml b/presto-spark-testing/pom.xml index a4a0a522aadc8..12c393e33a95c 100644 --- a/presto-spark-testing/pom.xml +++ b/presto-spark-testing/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-spark/pom.xml b/presto-spark/pom.xml index b5fcde4bd9445..6f364f79b66ce 100644 --- a/presto-spark/pom.xml +++ b/presto-spark/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-spi/pom.xml b/presto-spi/pom.xml index 3ce1ae4f0a676..d50c052afb85b 100644 --- a/presto-spi/pom.xml +++ b/presto-spi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-spi diff --git a/presto-sqlserver/pom.xml b/presto-sqlserver/pom.xml index 411b60c8ae78a..c1c58644e26a3 100644 --- a/presto-sqlserver/pom.xml +++ b/presto-sqlserver/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 4.0.0 diff --git a/presto-teradata-functions/pom.xml b/presto-teradata-functions/pom.xml index 4e1d8417090e4..e7b4015726976 100644 --- a/presto-teradata-functions/pom.xml +++ b/presto-teradata-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-teradata-functions diff --git a/presto-test-coverage/pom.xml b/presto-test-coverage/pom.xml index 4cdbe1fd9c2e8..aed4ef0a7cb26 100644 --- a/presto-test-coverage/pom.xml +++ b/presto-test-coverage/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-test-coverage diff --git a/presto-testing-docker/pom.xml b/presto-testing-docker/pom.xml index 2805590bf864f..bc5c90219478a 100644 --- a/presto-testing-docker/pom.xml +++ b/presto-testing-docker/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-testing-docker diff --git a/presto-testing-server-launcher/pom.xml b/presto-testing-server-launcher/pom.xml index e1d311ca29079..ff046c177a3c3 100644 --- a/presto-testing-server-launcher/pom.xml +++ b/presto-testing-server-launcher/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-testing-server-launcher diff --git a/presto-testng-services/pom.xml b/presto-testng-services/pom.xml index a5c52e7da414e..c13b762a78945 100644 --- a/presto-testng-services/pom.xml +++ b/presto-testng-services/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-testng-services diff --git a/presto-tests/pom.xml b/presto-tests/pom.xml index 3877a9654b5b3..4764a7b822185 100644 --- a/presto-tests/pom.xml +++ b/presto-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 presto-tests diff --git a/presto-thrift-api/pom.xml b/presto-thrift-api/pom.xml index f1ed911244cf9..b5e7e510d89ef 100644 --- a/presto-thrift-api/pom.xml +++ b/presto-thrift-api/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-thrift-api diff --git a/presto-thrift-connector/pom.xml b/presto-thrift-connector/pom.xml index d0cb107d80e3a..fb996bbfafb1c 100644 --- a/presto-thrift-connector/pom.xml +++ b/presto-thrift-connector/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-thrift-connector diff --git a/presto-thrift-spec/pom.xml b/presto-thrift-spec/pom.xml index dd940450f1433..1033540344c37 100644 --- a/presto-thrift-spec/pom.xml +++ b/presto-thrift-spec/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-thrift-spec diff --git a/presto-thrift-testing-server/pom.xml b/presto-thrift-testing-server/pom.xml index a62df0d45dd91..5ae22d3c1a84a 100644 --- a/presto-thrift-testing-server/pom.xml +++ b/presto-thrift-testing-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-thrift-testing-server diff --git a/presto-thrift-testing-udf-server/pom.xml b/presto-thrift-testing-udf-server/pom.xml index 186c06a7f8b24..bc6cd165a802b 100644 --- a/presto-thrift-testing-udf-server/pom.xml +++ b/presto-thrift-testing-udf-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-thrift-testing-udf-server diff --git a/presto-tpcds/pom.xml b/presto-tpcds/pom.xml index 597393e03f8e5..17b4608987ec8 100644 --- a/presto-tpcds/pom.xml +++ b/presto-tpcds/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-tpcds diff --git a/presto-tpch/pom.xml b/presto-tpch/pom.xml index f7746bfd8c59c..a012399dbee5a 100644 --- a/presto-tpch/pom.xml +++ b/presto-tpch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-tpch diff --git a/presto-ui/pom.xml b/presto-ui/pom.xml index 0b9349ae0a35f..e82e03e260ec6 100644 --- a/presto-ui/pom.xml +++ b/presto-ui/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-ui diff --git a/presto-verifier/pom.xml b/presto-verifier/pom.xml index 4075332ac8910..714627b680eb7 100644 --- a/presto-verifier/pom.xml +++ b/presto-verifier/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294-SNAPSHOT + 0.294 presto-verifier diff --git a/redis-hbo-provider/pom.xml b/redis-hbo-provider/pom.xml index 7c5fd34a88b94..d0c093e2b98d0 100644 --- a/redis-hbo-provider/pom.xml +++ b/redis-hbo-provider/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294-SNAPSHOT + 0.294 From e5cfba8827b3eff16408f9f3fb20a7361c57295b Mon Sep 17 00:00:00 2001 From: prestodb-ci Date: Thu, 10 Jul 2025 07:09:14 +0000 Subject: [PATCH 09/10] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- presto-accumulo/pom.xml | 2 +- presto-analyzer/pom.xml | 2 +- presto-atop/pom.xml | 2 +- presto-base-arrow-flight/pom.xml | 2 +- presto-base-jdbc/pom.xml | 2 +- presto-benchmark-driver/pom.xml | 2 +- presto-benchmark-runner/pom.xml | 2 +- presto-benchmark/pom.xml | 2 +- presto-benchto-benchmarks/pom.xml | 2 +- presto-bigquery/pom.xml | 2 +- presto-blackhole/pom.xml | 2 +- presto-bytecode/pom.xml | 2 +- presto-cache/pom.xml | 2 +- presto-cassandra/pom.xml | 2 +- presto-cli/pom.xml | 2 +- presto-clickhouse/pom.xml | 2 +- presto-client/pom.xml | 2 +- presto-cluster-ttl-providers/pom.xml | 2 +- presto-common/pom.xml | 2 +- presto-delta/pom.xml | 2 +- presto-docs/pom.xml | 2 +- presto-druid/pom.xml | 2 +- presto-elasticsearch/pom.xml | 2 +- presto-example-http/pom.xml | 2 +- presto-expressions/pom.xml | 2 +- presto-function-namespace-managers-common/pom.xml | 2 +- presto-function-namespace-managers/pom.xml | 2 +- presto-function-server/pom.xml | 2 +- presto-geospatial-toolkit/pom.xml | 2 +- presto-google-sheets/pom.xml | 2 +- presto-grpc-api/pom.xml | 2 +- presto-grpc-testing-udf-server/pom.xml | 2 +- presto-hana/pom.xml | 2 +- presto-hdfs-core/pom.xml | 2 +- presto-hive-common/pom.xml | 2 +- presto-hive-function-namespace/pom.xml | 2 +- presto-hive-hadoop2/pom.xml | 2 +- presto-hive-metastore/pom.xml | 2 +- presto-hive/pom.xml | 2 +- presto-hudi/pom.xml | 2 +- presto-i18n-functions/pom.xml | 2 +- presto-iceberg/pom.xml | 2 +- presto-jdbc/pom.xml | 2 +- presto-jmx/pom.xml | 2 +- presto-kafka/pom.xml | 2 +- presto-kudu/pom.xml | 2 +- presto-lark-sheets/pom.xml | 2 +- presto-local-file/pom.xml | 2 +- presto-main-base/pom.xml | 2 +- presto-main/pom.xml | 2 +- presto-matching/pom.xml | 2 +- presto-memory-context/pom.xml | 2 +- presto-memory/pom.xml | 2 +- presto-ml/pom.xml | 2 +- presto-mongodb/pom.xml | 2 +- presto-mysql/pom.xml | 2 +- presto-native-execution/pom.xml | 2 +- presto-native-sidecar-plugin/pom.xml | 6 +++--- presto-native-tests/pom.xml | 2 +- presto-node-ttl-fetchers/pom.xml | 2 +- presto-open-telemetry/pom.xml | 2 +- presto-openapi/pom.xml | 2 +- presto-oracle/pom.xml | 2 +- presto-orc/pom.xml | 2 +- presto-parquet/pom.xml | 2 +- presto-parser/pom.xml | 2 +- presto-password-authenticators/pom.xml | 2 +- presto-pinot-toolkit/pom.xml | 2 +- presto-pinot/pom.xml | 2 +- presto-plan-checker-router-plugin/pom.xml | 4 ++-- presto-plugin-toolkit/pom.xml | 2 +- presto-postgresql/pom.xml | 2 +- presto-product-tests/pom.xml | 2 +- presto-prometheus/pom.xml | 2 +- presto-proxy/pom.xml | 2 +- presto-rcfile/pom.xml | 2 +- presto-record-decoder/pom.xml | 2 +- presto-redis/pom.xml | 2 +- presto-redshift/pom.xml | 2 +- presto-resource-group-managers/pom.xml | 2 +- presto-router-example-plugin-scheduler/pom.xml | 4 ++-- presto-router/pom.xml | 2 +- presto-server/pom.xml | 2 +- presto-session-property-managers/pom.xml | 2 +- presto-singlestore/pom.xml | 2 +- presto-spark-base/pom.xml | 2 +- presto-spark-classloader-interface/pom.xml | 2 +- presto-spark-common/pom.xml | 2 +- presto-spark-launcher/pom.xml | 2 +- presto-spark-package/pom.xml | 2 +- presto-spark-testing/pom.xml | 2 +- presto-spark/pom.xml | 2 +- presto-spi/pom.xml | 2 +- presto-sqlserver/pom.xml | 2 +- presto-teradata-functions/pom.xml | 2 +- presto-test-coverage/pom.xml | 2 +- presto-testing-docker/pom.xml | 2 +- presto-testing-server-launcher/pom.xml | 2 +- presto-testng-services/pom.xml | 2 +- presto-tests/pom.xml | 2 +- presto-thrift-api/pom.xml | 2 +- presto-thrift-connector/pom.xml | 2 +- presto-thrift-spec/pom.xml | 2 +- presto-thrift-testing-server/pom.xml | 2 +- presto-thrift-testing-udf-server/pom.xml | 2 +- presto-tpcds/pom.xml | 2 +- presto-tpch/pom.xml | 2 +- presto-ui/pom.xml | 2 +- presto-verifier/pom.xml | 2 +- redis-hbo-provider/pom.xml | 2 +- 111 files changed, 116 insertions(+), 116 deletions(-) diff --git a/pom.xml b/pom.xml index d76d90ccbb253..86b8658d44718 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT pom presto-root @@ -30,7 +30,7 @@ scm:git:git://github.com/prestodb/presto.git https://github.com/prestodb/presto - 0.294 + HEAD diff --git a/presto-accumulo/pom.xml b/presto-accumulo/pom.xml index 891d4ec5a21b3..69c013d831842 100644 --- a/presto-accumulo/pom.xml +++ b/presto-accumulo/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-accumulo diff --git a/presto-analyzer/pom.xml b/presto-analyzer/pom.xml index 4c4a52c03b92b..9f7701eb7b329 100644 --- a/presto-analyzer/pom.xml +++ b/presto-analyzer/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-analyzer diff --git a/presto-atop/pom.xml b/presto-atop/pom.xml index 60f3dfc2c0981..c8070fa5253aa 100644 --- a/presto-atop/pom.xml +++ b/presto-atop/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-atop diff --git a/presto-base-arrow-flight/pom.xml b/presto-base-arrow-flight/pom.xml index 35259bbe072b2..0dac0755fcd06 100644 --- a/presto-base-arrow-flight/pom.xml +++ b/presto-base-arrow-flight/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-base-arrow-flight diff --git a/presto-base-jdbc/pom.xml b/presto-base-jdbc/pom.xml index 82a94ff8fb63b..31fc572dcaeed 100644 --- a/presto-base-jdbc/pom.xml +++ b/presto-base-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-base-jdbc diff --git a/presto-benchmark-driver/pom.xml b/presto-benchmark-driver/pom.xml index 68180a25a4b97..7af8a14ae9d7c 100644 --- a/presto-benchmark-driver/pom.xml +++ b/presto-benchmark-driver/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-benchmark-driver diff --git a/presto-benchmark-runner/pom.xml b/presto-benchmark-runner/pom.xml index 1ec0c90b3a2bf..58cfab2984565 100644 --- a/presto-benchmark-runner/pom.xml +++ b/presto-benchmark-runner/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-benchmark-runner diff --git a/presto-benchmark/pom.xml b/presto-benchmark/pom.xml index e44e2fef9f6ba..690e6659f1118 100644 --- a/presto-benchmark/pom.xml +++ b/presto-benchmark/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-benchmark diff --git a/presto-benchto-benchmarks/pom.xml b/presto-benchto-benchmarks/pom.xml index bab2850da2e7c..120b775ac3942 100644 --- a/presto-benchto-benchmarks/pom.xml +++ b/presto-benchto-benchmarks/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-benchto-benchmarks diff --git a/presto-bigquery/pom.xml b/presto-bigquery/pom.xml index 6e77fec1b0b83..22b581a0c4f7c 100644 --- a/presto-bigquery/pom.xml +++ b/presto-bigquery/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-bigquery diff --git a/presto-blackhole/pom.xml b/presto-blackhole/pom.xml index 45022bd64096c..8990b311c8043 100644 --- a/presto-blackhole/pom.xml +++ b/presto-blackhole/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-blackhole diff --git a/presto-bytecode/pom.xml b/presto-bytecode/pom.xml index 0bedf25183691..e287dbb45985e 100644 --- a/presto-bytecode/pom.xml +++ b/presto-bytecode/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-bytecode diff --git a/presto-cache/pom.xml b/presto-cache/pom.xml index 63265bf7b52f0..97cfa14a3964e 100644 --- a/presto-cache/pom.xml +++ b/presto-cache/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-cache diff --git a/presto-cassandra/pom.xml b/presto-cassandra/pom.xml index 47d6026db5769..67815513be8ca 100644 --- a/presto-cassandra/pom.xml +++ b/presto-cassandra/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-cassandra diff --git a/presto-cli/pom.xml b/presto-cli/pom.xml index 1d2a1a14b8761..f87cd6835062e 100644 --- a/presto-cli/pom.xml +++ b/presto-cli/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-cli diff --git a/presto-clickhouse/pom.xml b/presto-clickhouse/pom.xml index f617ab13d0df1..5ff87642387c6 100755 --- a/presto-clickhouse/pom.xml +++ b/presto-clickhouse/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-clickhouse diff --git a/presto-client/pom.xml b/presto-client/pom.xml index 94f569e7578bc..28510e1b098c0 100644 --- a/presto-client/pom.xml +++ b/presto-client/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-client diff --git a/presto-cluster-ttl-providers/pom.xml b/presto-cluster-ttl-providers/pom.xml index 676a1684926c4..023de343b199f 100644 --- a/presto-cluster-ttl-providers/pom.xml +++ b/presto-cluster-ttl-providers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-common/pom.xml b/presto-common/pom.xml index 7aa8617dadd7d..53fa83d4fb464 100644 --- a/presto-common/pom.xml +++ b/presto-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-common diff --git a/presto-delta/pom.xml b/presto-delta/pom.xml index d8fed3cb9e3bc..d6b28387e5480 100644 --- a/presto-delta/pom.xml +++ b/presto-delta/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-delta diff --git a/presto-docs/pom.xml b/presto-docs/pom.xml index 0c7be4e192656..2ee36b2cdfbb1 100644 --- a/presto-docs/pom.xml +++ b/presto-docs/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-docs diff --git a/presto-druid/pom.xml b/presto-druid/pom.xml index 4a73d7d23b1da..53bab79fa16d2 100644 --- a/presto-druid/pom.xml +++ b/presto-druid/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-druid diff --git a/presto-elasticsearch/pom.xml b/presto-elasticsearch/pom.xml index a530136f9cabb..b912fbd7b9032 100644 --- a/presto-elasticsearch/pom.xml +++ b/presto-elasticsearch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-elasticsearch Presto - Elasticsearch Connector diff --git a/presto-example-http/pom.xml b/presto-example-http/pom.xml index 2f07e3d1af9ac..649f61366f329 100644 --- a/presto-example-http/pom.xml +++ b/presto-example-http/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-example-http diff --git a/presto-expressions/pom.xml b/presto-expressions/pom.xml index adeb3656ca703..ae3a0b39d275f 100644 --- a/presto-expressions/pom.xml +++ b/presto-expressions/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-expressions diff --git a/presto-function-namespace-managers-common/pom.xml b/presto-function-namespace-managers-common/pom.xml index 3bf6960c61768..883946534b835 100644 --- a/presto-function-namespace-managers-common/pom.xml +++ b/presto-function-namespace-managers-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT diff --git a/presto-function-namespace-managers/pom.xml b/presto-function-namespace-managers/pom.xml index 96cace9c77a7b..e99f9d2c4f224 100644 --- a/presto-function-namespace-managers/pom.xml +++ b/presto-function-namespace-managers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-function-server/pom.xml b/presto-function-server/pom.xml index 461acf5096690..26bfc4671fb9a 100644 --- a/presto-function-server/pom.xml +++ b/presto-function-server/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-function-server diff --git a/presto-geospatial-toolkit/pom.xml b/presto-geospatial-toolkit/pom.xml index a3166ff0fc4f1..4d16132cb460d 100644 --- a/presto-geospatial-toolkit/pom.xml +++ b/presto-geospatial-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-geospatial-toolkit diff --git a/presto-google-sheets/pom.xml b/presto-google-sheets/pom.xml index dfb8c7f579b69..e83a73c69999b 100644 --- a/presto-google-sheets/pom.xml +++ b/presto-google-sheets/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-google-sheets diff --git a/presto-grpc-api/pom.xml b/presto-grpc-api/pom.xml index 4ade17071f4c7..001bfd79d8e39 100644 --- a/presto-grpc-api/pom.xml +++ b/presto-grpc-api/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-grpc-testing-udf-server/pom.xml b/presto-grpc-testing-udf-server/pom.xml index 7a04f8408e28c..d39607c07ff74 100644 --- a/presto-grpc-testing-udf-server/pom.xml +++ b/presto-grpc-testing-udf-server/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-hana/pom.xml b/presto-hana/pom.xml index 5d249fa29e54b..83612c37676de 100644 --- a/presto-hana/pom.xml +++ b/presto-hana/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-hana diff --git a/presto-hdfs-core/pom.xml b/presto-hdfs-core/pom.xml index 395341cb12bbb..edd929f778868 100644 --- a/presto-hdfs-core/pom.xml +++ b/presto-hdfs-core/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT diff --git a/presto-hive-common/pom.xml b/presto-hive-common/pom.xml index 4b0dd74426934..7d4ce3782a500 100644 --- a/presto-hive-common/pom.xml +++ b/presto-hive-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT diff --git a/presto-hive-function-namespace/pom.xml b/presto-hive-function-namespace/pom.xml index 5dc2f6341124f..9deee7af907a5 100644 --- a/presto-hive-function-namespace/pom.xml +++ b/presto-hive-function-namespace/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-hive-function-namespace diff --git a/presto-hive-hadoop2/pom.xml b/presto-hive-hadoop2/pom.xml index b147405c5a751..cfb700918ab81 100644 --- a/presto-hive-hadoop2/pom.xml +++ b/presto-hive-hadoop2/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-hive-hadoop2 diff --git a/presto-hive-metastore/pom.xml b/presto-hive-metastore/pom.xml index a67290b32e865..d7e118017ab1f 100644 --- a/presto-hive-metastore/pom.xml +++ b/presto-hive-metastore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-hive-metastore diff --git a/presto-hive/pom.xml b/presto-hive/pom.xml index 7c2b2a5867f1d..28d002ed6ee34 100644 --- a/presto-hive/pom.xml +++ b/presto-hive/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-hive diff --git a/presto-hudi/pom.xml b/presto-hudi/pom.xml index 0924714897183..73e3420911b56 100644 --- a/presto-hudi/pom.xml +++ b/presto-hudi/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-hudi Presto - Hudi Connector diff --git a/presto-i18n-functions/pom.xml b/presto-i18n-functions/pom.xml index b116a964187fb..03b33af1cdba7 100644 --- a/presto-i18n-functions/pom.xml +++ b/presto-i18n-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-i18n-functions diff --git a/presto-iceberg/pom.xml b/presto-iceberg/pom.xml index 2761348151a62..195a32f6bb98f 100644 --- a/presto-iceberg/pom.xml +++ b/presto-iceberg/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-iceberg Presto - Iceberg Connector diff --git a/presto-jdbc/pom.xml b/presto-jdbc/pom.xml index 231767c3c1239..0874168b47043 100644 --- a/presto-jdbc/pom.xml +++ b/presto-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-jdbc diff --git a/presto-jmx/pom.xml b/presto-jmx/pom.xml index 2b8f53992baa3..0f9d281a7e2dd 100644 --- a/presto-jmx/pom.xml +++ b/presto-jmx/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-jmx diff --git a/presto-kafka/pom.xml b/presto-kafka/pom.xml index 7fb8ec1c7e36c..d7091f38fd46d 100644 --- a/presto-kafka/pom.xml +++ b/presto-kafka/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-kafka diff --git a/presto-kudu/pom.xml b/presto-kudu/pom.xml index 4d0bbdc2c9c4c..20ca847cf4a0a 100644 --- a/presto-kudu/pom.xml +++ b/presto-kudu/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-kudu diff --git a/presto-lark-sheets/pom.xml b/presto-lark-sheets/pom.xml index b1af4123d23ca..4a9b5f42726cb 100644 --- a/presto-lark-sheets/pom.xml +++ b/presto-lark-sheets/pom.xml @@ -3,7 +3,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-local-file/pom.xml b/presto-local-file/pom.xml index 544c02c08eaf7..e2cfa76dd90e4 100644 --- a/presto-local-file/pom.xml +++ b/presto-local-file/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-local-file diff --git a/presto-main-base/pom.xml b/presto-main-base/pom.xml index 943161f4519d7..d6015d585090f 100644 --- a/presto-main-base/pom.xml +++ b/presto-main-base/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-main-base diff --git a/presto-main/pom.xml b/presto-main/pom.xml index 134e20a92b66d..7ab36a666ddcf 100644 --- a/presto-main/pom.xml +++ b/presto-main/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-main diff --git a/presto-matching/pom.xml b/presto-matching/pom.xml index aad7e9444b98d..46d1641407842 100644 --- a/presto-matching/pom.xml +++ b/presto-matching/pom.xml @@ -18,7 +18,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-matching diff --git a/presto-memory-context/pom.xml b/presto-memory-context/pom.xml index 7c7e9f8e67d61..c749c5576ff61 100644 --- a/presto-memory-context/pom.xml +++ b/presto-memory-context/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-memory-context diff --git a/presto-memory/pom.xml b/presto-memory/pom.xml index aed35dcee0ff6..0c41b83037579 100644 --- a/presto-memory/pom.xml +++ b/presto-memory/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-memory diff --git a/presto-ml/pom.xml b/presto-ml/pom.xml index 10f7d286e4c39..8a27c1b2d094b 100644 --- a/presto-ml/pom.xml +++ b/presto-ml/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-ml diff --git a/presto-mongodb/pom.xml b/presto-mongodb/pom.xml index 16aadba2e84c2..e41b9d88f91e5 100644 --- a/presto-mongodb/pom.xml +++ b/presto-mongodb/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-mongodb diff --git a/presto-mysql/pom.xml b/presto-mysql/pom.xml index 1804f3c807627..3eeff9dc1ee1d 100644 --- a/presto-mysql/pom.xml +++ b/presto-mysql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-mysql diff --git a/presto-native-execution/pom.xml b/presto-native-execution/pom.xml index e36b4b88f5b72..9c198484e2b8a 100644 --- a/presto-native-execution/pom.xml +++ b/presto-native-execution/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-native-execution diff --git a/presto-native-sidecar-plugin/pom.xml b/presto-native-sidecar-plugin/pom.xml index 9de9e1845a535..284bb52623ce1 100644 --- a/presto-native-sidecar-plugin/pom.xml +++ b/presto-native-sidecar-plugin/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-native-sidecar-plugin @@ -158,7 +158,7 @@ presto-tests test test-jar - 0.294 + 0.295-SNAPSHOT @@ -172,7 +172,7 @@ presto-native-execution test test-jar - 0.294 + 0.295-SNAPSHOT diff --git a/presto-native-tests/pom.xml b/presto-native-tests/pom.xml index cac9d072c0a05..8ee879c6e3803 100644 --- a/presto-native-tests/pom.xml +++ b/presto-native-tests/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-native-tests diff --git a/presto-node-ttl-fetchers/pom.xml b/presto-node-ttl-fetchers/pom.xml index 9cb67df521fa2..718cb207a1223 100644 --- a/presto-node-ttl-fetchers/pom.xml +++ b/presto-node-ttl-fetchers/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-node-ttl-fetchers diff --git a/presto-open-telemetry/pom.xml b/presto-open-telemetry/pom.xml index 4b11cd2b23e7d..441020127e2c0 100644 --- a/presto-open-telemetry/pom.xml +++ b/presto-open-telemetry/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-open-telemetry diff --git a/presto-openapi/pom.xml b/presto-openapi/pom.xml index cb5d79d2870b3..f98756b3b6cc2 100644 --- a/presto-openapi/pom.xml +++ b/presto-openapi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-openapi diff --git a/presto-oracle/pom.xml b/presto-oracle/pom.xml index 197b38d3222bd..8b2c897f1fff0 100644 --- a/presto-oracle/pom.xml +++ b/presto-oracle/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-oracle diff --git a/presto-orc/pom.xml b/presto-orc/pom.xml index e0caa26aa62fd..ead647e3b93f8 100644 --- a/presto-orc/pom.xml +++ b/presto-orc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-orc diff --git a/presto-parquet/pom.xml b/presto-parquet/pom.xml index 58fc388eaf18b..fc1c5beb487cc 100644 --- a/presto-parquet/pom.xml +++ b/presto-parquet/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-parquet diff --git a/presto-parser/pom.xml b/presto-parser/pom.xml index b12f44244c606..899b89f64915a 100644 --- a/presto-parser/pom.xml +++ b/presto-parser/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-parser diff --git a/presto-password-authenticators/pom.xml b/presto-password-authenticators/pom.xml index fdc9033db1023..804c590891211 100644 --- a/presto-password-authenticators/pom.xml +++ b/presto-password-authenticators/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-password-authenticators diff --git a/presto-pinot-toolkit/pom.xml b/presto-pinot-toolkit/pom.xml index d53b851089754..2b306101e0f81 100644 --- a/presto-pinot-toolkit/pom.xml +++ b/presto-pinot-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-pinot-toolkit diff --git a/presto-pinot/pom.xml b/presto-pinot/pom.xml index 81812520b7e91..1da6659136c18 100644 --- a/presto-pinot/pom.xml +++ b/presto-pinot/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-pinot diff --git a/presto-plan-checker-router-plugin/pom.xml b/presto-plan-checker-router-plugin/pom.xml index f06d371b48c2e..ca2876789d9db 100644 --- a/presto-plan-checker-router-plugin/pom.xml +++ b/presto-plan-checker-router-plugin/pom.xml @@ -5,12 +5,12 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT com.facebook.presto.router presto-plan-checker-router-plugin - 0.294 + 0.295-SNAPSHOT jar presto-plan-checker-router-plugin Presto plan checker router plugin diff --git a/presto-plugin-toolkit/pom.xml b/presto-plugin-toolkit/pom.xml index a9726e362a834..b3af5b98f01fd 100644 --- a/presto-plugin-toolkit/pom.xml +++ b/presto-plugin-toolkit/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-plugin-toolkit diff --git a/presto-postgresql/pom.xml b/presto-postgresql/pom.xml index eedf0b726b079..e9b4ec55b24aa 100644 --- a/presto-postgresql/pom.xml +++ b/presto-postgresql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-postgresql diff --git a/presto-product-tests/pom.xml b/presto-product-tests/pom.xml index cd12116eec982..a9ffa317fda2f 100644 --- a/presto-product-tests/pom.xml +++ b/presto-product-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-product-tests diff --git a/presto-prometheus/pom.xml b/presto-prometheus/pom.xml index a7d41bdd97e75..8ce657629669f 100644 --- a/presto-prometheus/pom.xml +++ b/presto-prometheus/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-prometheus diff --git a/presto-proxy/pom.xml b/presto-proxy/pom.xml index c0254731a6bd0..71d8b314953cc 100644 --- a/presto-proxy/pom.xml +++ b/presto-proxy/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-proxy diff --git a/presto-rcfile/pom.xml b/presto-rcfile/pom.xml index 3bfd210e9bf14..96da04cb80df1 100644 --- a/presto-rcfile/pom.xml +++ b/presto-rcfile/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-rcfile diff --git a/presto-record-decoder/pom.xml b/presto-record-decoder/pom.xml index bfb9ebec7b63d..be1d5d7b477ef 100644 --- a/presto-record-decoder/pom.xml +++ b/presto-record-decoder/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-record-decoder diff --git a/presto-redis/pom.xml b/presto-redis/pom.xml index 3dc321bc29389..56bcc3888a03d 100644 --- a/presto-redis/pom.xml +++ b/presto-redis/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-redis diff --git a/presto-redshift/pom.xml b/presto-redshift/pom.xml index 4592ea93b8134..c4fd045f9a237 100644 --- a/presto-redshift/pom.xml +++ b/presto-redshift/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-redshift diff --git a/presto-resource-group-managers/pom.xml b/presto-resource-group-managers/pom.xml index 3871d7e1f6ae8..7d2e0cb0bb339 100644 --- a/presto-resource-group-managers/pom.xml +++ b/presto-resource-group-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-resource-group-managers diff --git a/presto-router-example-plugin-scheduler/pom.xml b/presto-router-example-plugin-scheduler/pom.xml index 012c976b29c45..3377ca423f854 100644 --- a/presto-router-example-plugin-scheduler/pom.xml +++ b/presto-router-example-plugin-scheduler/pom.xml @@ -5,12 +5,12 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT com.facebook.presto.router presto-router-example-plugin-scheduler - 0.294 + 0.295-SNAPSHOT jar presto-router-example-plugin-scheduler Presto-router example custom plugin scheduler diff --git a/presto-router/pom.xml b/presto-router/pom.xml index 0e7454ad966cf..dbfa6d1bf179f 100755 --- a/presto-router/pom.xml +++ b/presto-router/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-router diff --git a/presto-server/pom.xml b/presto-server/pom.xml index ce15e9d38f6c5..bc19364baf70d 100644 --- a/presto-server/pom.xml +++ b/presto-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-server diff --git a/presto-session-property-managers/pom.xml b/presto-session-property-managers/pom.xml index c3928eb5a2423..c576e99bf6527 100644 --- a/presto-session-property-managers/pom.xml +++ b/presto-session-property-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-session-property-managers diff --git a/presto-singlestore/pom.xml b/presto-singlestore/pom.xml index 8213ef613cd74..9bdd431b8ea55 100644 --- a/presto-singlestore/pom.xml +++ b/presto-singlestore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-singlestore diff --git a/presto-spark-base/pom.xml b/presto-spark-base/pom.xml index ddf5bd5c380e5..f85df42dbc65c 100644 --- a/presto-spark-base/pom.xml +++ b/presto-spark-base/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-spark-classloader-interface/pom.xml b/presto-spark-classloader-interface/pom.xml index 484532f2f6e72..a91291f4d1a21 100644 --- a/presto-spark-classloader-interface/pom.xml +++ b/presto-spark-classloader-interface/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-spark-common/pom.xml b/presto-spark-common/pom.xml index 1b363fadb7170..94657e653ec0f 100644 --- a/presto-spark-common/pom.xml +++ b/presto-spark-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-spark-common diff --git a/presto-spark-launcher/pom.xml b/presto-spark-launcher/pom.xml index c1323233ec72a..8d55fece3e680 100644 --- a/presto-spark-launcher/pom.xml +++ b/presto-spark-launcher/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-spark-package/pom.xml b/presto-spark-package/pom.xml index 6c03c6b7e3821..4ba3bd2c9c70c 100644 --- a/presto-spark-package/pom.xml +++ b/presto-spark-package/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-spark-package diff --git a/presto-spark-testing/pom.xml b/presto-spark-testing/pom.xml index 12c393e33a95c..de4db24f6adb2 100644 --- a/presto-spark-testing/pom.xml +++ b/presto-spark-testing/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-spark/pom.xml b/presto-spark/pom.xml index 6f364f79b66ce..ce7af67899b33 100644 --- a/presto-spark/pom.xml +++ b/presto-spark/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-spi/pom.xml b/presto-spi/pom.xml index d50c052afb85b..694817922ad20 100644 --- a/presto-spi/pom.xml +++ b/presto-spi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-spi diff --git a/presto-sqlserver/pom.xml b/presto-sqlserver/pom.xml index c1c58644e26a3..1474457fe9fde 100644 --- a/presto-sqlserver/pom.xml +++ b/presto-sqlserver/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT 4.0.0 diff --git a/presto-teradata-functions/pom.xml b/presto-teradata-functions/pom.xml index e7b4015726976..de602b281cedb 100644 --- a/presto-teradata-functions/pom.xml +++ b/presto-teradata-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-teradata-functions diff --git a/presto-test-coverage/pom.xml b/presto-test-coverage/pom.xml index aed4ef0a7cb26..cd28a2768531a 100644 --- a/presto-test-coverage/pom.xml +++ b/presto-test-coverage/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-test-coverage diff --git a/presto-testing-docker/pom.xml b/presto-testing-docker/pom.xml index bc5c90219478a..07a9f23ec34e1 100644 --- a/presto-testing-docker/pom.xml +++ b/presto-testing-docker/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-testing-docker diff --git a/presto-testing-server-launcher/pom.xml b/presto-testing-server-launcher/pom.xml index ff046c177a3c3..46375e02c304a 100644 --- a/presto-testing-server-launcher/pom.xml +++ b/presto-testing-server-launcher/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-testing-server-launcher diff --git a/presto-testng-services/pom.xml b/presto-testng-services/pom.xml index c13b762a78945..a2b6c06ebc1ee 100644 --- a/presto-testng-services/pom.xml +++ b/presto-testng-services/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-testng-services diff --git a/presto-tests/pom.xml b/presto-tests/pom.xml index 4764a7b822185..531235ff0ebcc 100644 --- a/presto-tests/pom.xml +++ b/presto-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT presto-tests diff --git a/presto-thrift-api/pom.xml b/presto-thrift-api/pom.xml index b5e7e510d89ef..7f4010f500721 100644 --- a/presto-thrift-api/pom.xml +++ b/presto-thrift-api/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-thrift-api diff --git a/presto-thrift-connector/pom.xml b/presto-thrift-connector/pom.xml index fb996bbfafb1c..1dd7f23d6485e 100644 --- a/presto-thrift-connector/pom.xml +++ b/presto-thrift-connector/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-thrift-connector diff --git a/presto-thrift-spec/pom.xml b/presto-thrift-spec/pom.xml index 1033540344c37..884507f59a9d6 100644 --- a/presto-thrift-spec/pom.xml +++ b/presto-thrift-spec/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-thrift-spec diff --git a/presto-thrift-testing-server/pom.xml b/presto-thrift-testing-server/pom.xml index 5ae22d3c1a84a..b8c169e8c4bab 100644 --- a/presto-thrift-testing-server/pom.xml +++ b/presto-thrift-testing-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-thrift-testing-server diff --git a/presto-thrift-testing-udf-server/pom.xml b/presto-thrift-testing-udf-server/pom.xml index bc6cd165a802b..115950c2be050 100644 --- a/presto-thrift-testing-udf-server/pom.xml +++ b/presto-thrift-testing-udf-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-thrift-testing-udf-server diff --git a/presto-tpcds/pom.xml b/presto-tpcds/pom.xml index 17b4608987ec8..a58b2d6a6f0d1 100644 --- a/presto-tpcds/pom.xml +++ b/presto-tpcds/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-tpcds diff --git a/presto-tpch/pom.xml b/presto-tpch/pom.xml index a012399dbee5a..126b987a37fd1 100644 --- a/presto-tpch/pom.xml +++ b/presto-tpch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-tpch diff --git a/presto-ui/pom.xml b/presto-ui/pom.xml index e82e03e260ec6..3f759a7137f31 100644 --- a/presto-ui/pom.xml +++ b/presto-ui/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-ui diff --git a/presto-verifier/pom.xml b/presto-verifier/pom.xml index 714627b680eb7..28d3b592ce10d 100644 --- a/presto-verifier/pom.xml +++ b/presto-verifier/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.294 + 0.295-SNAPSHOT presto-verifier diff --git a/redis-hbo-provider/pom.xml b/redis-hbo-provider/pom.xml index d0c093e2b98d0..451b171b57758 100644 --- a/redis-hbo-provider/pom.xml +++ b/redis-hbo-provider/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.294 + 0.295-SNAPSHOT From 9115beb9c296ec439c11113543fff9175ce463da Mon Sep 17 00:00:00 2001 From: prestodb-ci Date: Thu, 10 Jul 2025 07:10:14 +0000 Subject: [PATCH 10/10] Add release notes for 0.294 --- presto-docs/src/main/sphinx/release.rst | 1 + .../src/main/sphinx/release/release-0.294.rst | 112 ++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 presto-docs/src/main/sphinx/release/release-0.294.rst diff --git a/presto-docs/src/main/sphinx/release.rst b/presto-docs/src/main/sphinx/release.rst index 7d4aa77f92e0b..6f140b0bb5a35 100644 --- a/presto-docs/src/main/sphinx/release.rst +++ b/presto-docs/src/main/sphinx/release.rst @@ -5,6 +5,7 @@ Release Notes .. toctree:: :maxdepth: 1 + Release-0.294 [2025-07-10] Release-0.293 [2025-05-29] Release-0.292 [2025-03-28] Release-0.291 [2025-01-27] diff --git a/presto-docs/src/main/sphinx/release/release-0.294.rst b/presto-docs/src/main/sphinx/release/release-0.294.rst new file mode 100644 index 0000000000000..9fb11e04f17c4 --- /dev/null +++ b/presto-docs/src/main/sphinx/release/release-0.294.rst @@ -0,0 +1,112 @@ +============= +Release 0.294 +============= + +**Highlights** +============== + +**Details** +=========== + +General Changes +_______________ +* Fix PushdownSubfields optimizer to enable subfield pushdown for maps which is accessed with negative keys. `#25445 `_ +* Fix error classification for unsupported array comparison with null elements, converting it as a user error. `#25187 `_ +* Fix subfield pushdown arg index for scalar functions to support selecting whole struct column. `#25471 `_ +* Fix: Revert the Write mapping support. `#25369 `_ +* Fix: Revert the move of boostrap fromm presto-main to presto-bytecode. `#25260 `_ +* Improve `MinMaxByToWindowFunction` optimizer to cover cases where aggregation is on both map/array and non map/array types. `#25435 `_ +* Improve query resource usage by enabling subfield pushdown for :func:`map_filter` when selected keys are constants. `#25451 `_ +* Improve query resource usage by enabling subfield pushdown for :func:`map_subset` when the input array is a constant array. `#25394 `_ +* Improve remove map cast rule to cover map_subset function. `#25395 `_ +* Improve semi join performance for large filtering tables. `#25236 `_ +* Add a function to Constraint to return the input arguments for the predicate. `#25248 `_ +* Add a new optimization `MinMaxByToWindowFunction` to rewrite min_by/max_by aggregations with row_number window function. `#25190 `_ +* Add a session property to disable the ReplicateSemiJoinInDelete optimizer. `#25256 `_ +* Add a session property to have HBO estimate plan node output size using individual variables. `#25400 `_ +* Add an optimizer to add distinct aggregation on build side of semi join. `#25238 `_ +* Add mixed case support for schema and table names. `#24551 `_ +* Add property ```native_query_memory_reclaimer_priority``` which controls which queries are killed first when a worker is running low on memory. Higher value means lower priority to be consistent with velox memory reclaimer's convention. `#25325 `_ +* Add pushdownSubfieldArgIndex parameter to ComplexTypeFunctionDescriptor for subfield optimization during query planning. `#25175 `_ +* Adds aggregation tests from ``presto-tests`` to run with native query runner in ``presto-native-tests``. `#24809 `_ +* Replace the parameters in router schedulers to use `RouterRequestInfo` to get the URL destination. `#25244 `_ +* ... `#25223 `_ +* ... `#25223 `_ +* Extend MergePartialAggregationsWithFilter to work for queries where all aggregations have mask. `#25171 `_ +* Move UnnestNode to SPI, make it available in collector optimizer. `#25317 `_ +* Update ProtocolToThrift files to be generated for cpp thrift serde. `#25162 `_ +* Update router UI to eliminate vulnerabilities. `#25206 `_ + +General Change Changes +______________________ +* Improve memory usage in writer by feeing unused buffers. `#23724 `_ + +Prestissimo (Native Execution) Changes +______________________________________ +* Fix Native Plan Checker for CTAS and Insert queries. `#25115 `_ +* Fix PrestoExchangeSource 400 Bad Request by adding the "Host" header. `#25272 `_ + +Prestissimo (native Execution) Changes +______________________________________ +* Improve memory usage in PartitionAndSerialize Operator by pre-determine the serialized byte size of a given sort key at 'rowId'. This allows PartitionAndSerialize Operator to pre-allocated the exact output buffer size needed for serialization, avoid wasted memory allocation. User should expect lower memory usage and up to 20% runtime increase when serializing a sort key. `#25393 `_ +* Add BinarySortableSerializer::serializedSizeInBytes method that returns the serialized byte size of a given input row at 'rowId'. This allows us to pre-allocated the exact output buffer size needed for serialization, avoiding wasted memory space. `#25359 `_ +* Add sidecar in presto-native-tests module. `#25174 `_ + +Security Changes +________________ +* Upgrade commons-beanutils dependency to address 'CVE-2025-48734 '. `#25235 `_ +* Upgrade kafka to 3.9.1 in response to `CVE-2025-27817 `_. :pr:`25312`. `#25312 `_ + +JDBC Driver Changes +___________________ +* Improve type mapping API to add WriteMapping functionality. `#25124 `_ +* Add mixed case support related catalog property in JDBC connector ``case-sensitive-name-matching``. `#24551 `_ + +Hive Connector Changes +______________________ +* Fix an issue while accessing Symlink tables. `#25307 `_ +* Fix incorrectly ignoring computed table statistics in `ANALYZE`. `#24973 `_ +* Update default value of `hive.copy-on-first-write-configuration-enabled` to false (:issue:`25404`). `#25420 `_ + +Iceberg Connector Changes +_________________________ +* Fix error querying ``$data_sequence_number`` metadata column for table with equality deletes. `#25293 `_ +* Fix the remove_orphan_files procedure after deletion operations. `#25220 `_ +* Add ``iceberg.delete-as-join-rewrite-max-delete-columns`` configuration property and ``delete_as_join_rewrite_max_delete_columns`` session property to control when equality delete as join optimization is applied. The optimization is now only applied when the number of equality delete columns is less than or equal to this threshold (default: 400). Setting this to 0 disables the optimization. See :doc:`/connector/iceberg` for details. `#25462 `_ +* Add support for ``$delete_file_path`` metadata column. `#25280 `_ +* Add support for ``$deleted`` metadata column. `#25280 `_ +* Add support of ``rename view`` for Iceberg connector when configured with ``REST`` and ``NESSIE``. `#25202 `_ +* Deprecate ``iceberg.delete-as-join-rewrite-enabled`` configuration property and ``delete_as_join_rewrite_enabled`` session property. Use ``iceberg.delete-as-join-rewrite-max-delete-columns`` instead. `#25462 `_ + +JDBC Connector Changes +______________________ +* Add skippable-schemas config option for jdbc connectors. `#24994 `_ + +Mongodb Connector Changes +_________________________ +* Add support for Json type in MongoDB. `#25089 `_ + +Mysql Connector Changes +_______________________ +* Add support for mixed-case in MySQL. It can be enabled by setting ``case-sensitive-name-matching=true`` configuration in the catalog configuration. `#24551 `_ + +Redshift Connector Changes +__________________________ +* Fix Redshift connector runtime failure due to missing dependency on ``com.amazonaws.util.StringUtils``. Add ``aws-java-sdk-core`` as a runtime dependency to support Redshift JDBC driver (v2.1.0.32) which relies on this class for metadata operations. `#25265 `_ + +Documentation Changes +_____________________ +* Add :ref:`connector/hive:Avro Configuration Properties` to Hive Connector documentation. `#25311 `_ + +Arrow Flight Connector Template Changes +_______________________________________ +* Added support for mTLS authentication in Arrow Flight client. `#25179 `_ + +Router Changes +______________ +* Add a new custom router scheduler plugin, the `Presto Plan Checker Router Scheduler Plugin `_. `#25035 `_ + +**Credits** +=========== + +Ajay Kharat, Amit Dutta, Anant Aneja, Andrew Xie, Andrii Rosa, Arjun Gupta, Auden Woolfson, Beinan, Chandra Vankayalapati, Chandrashekhar Kumar Singh, Chen Yang, Christian Zentgraf, Deepak Majeti, Denodo Research Labs, Elbin Pallimalil, Emily (Xuetong) Sun, Facebook Community Bot, Feilong Liu, Gary Helmling, Hazmi, HeidiHan0000, Henry Edwin Dikeman, Jalpreet Singh Nanda (:imjalpreet), Jialiang Tan, Joe Abraham, Ke Wang, Kevin Tang, Li Zhou, Mahadevuni Naveen Kumar, Mariam Almesfer, Natasha Sehgal, NivinCS, Ping Liu, Pramod Satya, Pratik Joseph Dabre, Rebecca Schlussel, Sebastiano Peluso, Sergey Pershin, Sergii Druzkin, Shahim Sharafudeen, Shakyan Kushwaha, Shang Ma, Shelton Cai, Soumya Duriseti, Steve Burnett, Thanzeel Hassan, Timothy Meehan, Wei He, XiaoDu, Xiaoxuan, Yihong Wang, Ying, Zac Blanco, Zac Wen, Zhichen Xu, Zhiying Liang, Zoltan Arnold Nagy, aditi-pandit, jay.narale, lingbin, martinsander00, mima0000, mohsaka, namya28, pratyakshsharma, vhsu14, wangd