From d3520ddbcea96ec55c525600126047c44c7adb35 Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Wed, 23 Oct 2024 17:10:56 +0800 Subject: [PATCH] [KYUUBI #6769] [RELEASE] Bump 1.11.0-SNAPSHOT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description ## Issue References ๐Ÿ”— This pull request fixes # ## Describe Your Solution ๐Ÿ”ง Preparing v1.11.0-SNAPSHOT after branch-1.10 cut ```shell build/mvn versions:set -DgenerateBackupPoms=false -DnewVersion="1.11.0-SNAPSHOT" (cd kyuubi-server/web-ui && npm version "1.11.0-SNAPSHOT") ``` ## Types of changes :bookmark: - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐Ÿงช #### Behavior Without This Pull Request :coffin: #### Behavior With This Pull Request :tada: #### Related Unit Tests --- # Checklist ๐Ÿ“ - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6769 from bowenliang123/bump-1.11. Closes #6769 6db219d28 [Bowen Liang] get latest_branch by sorting version in branch name 465276204 [Bowen Liang] update package.json 81f2865e5 [Bowen Liang] bump Authored-by: Bowen Liang Signed-off-by: Bowen Liang --- dev/kyuubi-codecov/pom.xml | 2 +- dev/kyuubi-tpcds/pom.xml | 2 +- dev/merge_kyuubi_pr.py | 4 +++- extensions/flink/kyuubi-flink-token-provider/pom.xml | 2 +- extensions/server/kyuubi-server-plugin/pom.xml | 2 +- extensions/spark/kyuubi-extension-spark-3-3/pom.xml | 2 +- extensions/spark/kyuubi-extension-spark-3-4/pom.xml | 2 +- extensions/spark/kyuubi-extension-spark-3-5/pom.xml | 2 +- extensions/spark/kyuubi-extension-spark-jdbc-dialect/pom.xml | 2 +- extensions/spark/kyuubi-spark-authz-shaded/pom.xml | 2 +- extensions/spark/kyuubi-spark-authz/pom.xml | 2 +- extensions/spark/kyuubi-spark-connector-common/pom.xml | 2 +- extensions/spark/kyuubi-spark-connector-hive/pom.xml | 2 +- extensions/spark/kyuubi-spark-connector-tpcds/pom.xml | 2 +- extensions/spark/kyuubi-spark-connector-tpch/pom.xml | 2 +- extensions/spark/kyuubi-spark-jvm-quake/pom.xml | 2 +- extensions/spark/kyuubi-spark-lineage/pom.xml | 2 +- externals/kyuubi-chat-engine/pom.xml | 2 +- externals/kyuubi-download/pom.xml | 2 +- externals/kyuubi-flink-sql-engine/pom.xml | 2 +- externals/kyuubi-hive-sql-engine/pom.xml | 2 +- externals/kyuubi-jdbc-engine/pom.xml | 2 +- externals/kyuubi-spark-sql-engine/pom.xml | 2 +- externals/kyuubi-trino-engine/pom.xml | 2 +- integration-tests/kyuubi-flink-it/pom.xml | 2 +- integration-tests/kyuubi-gluten-it/pom.xml | 2 +- integration-tests/kyuubi-hive-it/pom.xml | 2 +- integration-tests/kyuubi-jdbc-it/pom.xml | 2 +- integration-tests/kyuubi-kubernetes-it/pom.xml | 2 +- integration-tests/kyuubi-trino-it/pom.xml | 2 +- integration-tests/kyuubi-zookeeper-it/pom.xml | 2 +- integration-tests/pom.xml | 2 +- kyuubi-assembly/pom.xml | 2 +- kyuubi-common/pom.xml | 2 +- kyuubi-ctl/pom.xml | 2 +- kyuubi-events/pom.xml | 2 +- kyuubi-ha/pom.xml | 2 +- kyuubi-hive-beeline/pom.xml | 2 +- kyuubi-hive-jdbc-shaded/pom.xml | 2 +- kyuubi-hive-jdbc/pom.xml | 2 +- kyuubi-metrics/pom.xml | 2 +- kyuubi-rest-client/pom.xml | 2 +- kyuubi-server/pom.xml | 2 +- kyuubi-server/web-ui/package-lock.json | 4 ++-- kyuubi-server/web-ui/package.json | 2 +- kyuubi-util-scala/pom.xml | 2 +- kyuubi-util/pom.xml | 2 +- kyuubi-zookeeper/pom.xml | 2 +- pom.xml | 2 +- 49 files changed, 52 insertions(+), 50 deletions(-) diff --git a/dev/kyuubi-codecov/pom.xml b/dev/kyuubi-codecov/pom.xml index 4e3a0b81fc7..9a69531fa1a 100644 --- a/dev/kyuubi-codecov/pom.xml +++ b/dev/kyuubi-codecov/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/dev/kyuubi-tpcds/pom.xml b/dev/kyuubi-tpcds/pom.xml index ddc6a3c4a2b..11601bfc366 100644 --- a/dev/kyuubi-tpcds/pom.xml +++ b/dev/kyuubi-tpcds/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/dev/merge_kyuubi_pr.py b/dev/merge_kyuubi_pr.py index fe889374867..5894ebdf212 100755 --- a/dev/merge_kyuubi_pr.py +++ b/dev/merge_kyuubi_pr.py @@ -234,7 +234,9 @@ def main(): branches = get_json("%s/branches" % GITHUB_API_BASE) branch_names = list(filter(lambda x: x.startswith("branch-"), [x['name'] for x in branches])) # Assumes branch names can be sorted lexicographically - latest_branch = sorted(branch_names, reverse=True)[0] + def sort_by_version(branch_name): + return tuple(map(int, branch_name.split('-')[1].split('.'))) + latest_branch = sorted(branch_names, key=sort_by_version, reverse=True)[0] pr_num = input("Which pull request would you like to merge? (e.g. 34): ") pr = get_json("%s/pulls/%s" % (GITHUB_API_BASE, pr_num)) diff --git a/extensions/flink/kyuubi-flink-token-provider/pom.xml b/extensions/flink/kyuubi-flink-token-provider/pom.xml index 61d93682ae9..f7c377ccedc 100644 --- a/extensions/flink/kyuubi-flink-token-provider/pom.xml +++ b/extensions/flink/kyuubi-flink-token-provider/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/server/kyuubi-server-plugin/pom.xml b/extensions/server/kyuubi-server-plugin/pom.xml index 6c3790c48aa..22e433d7cd8 100644 --- a/extensions/server/kyuubi-server-plugin/pom.xml +++ b/extensions/server/kyuubi-server-plugin/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-extension-spark-3-3/pom.xml b/extensions/spark/kyuubi-extension-spark-3-3/pom.xml index de7fe9bde33..b1f945d15b1 100644 --- a/extensions/spark/kyuubi-extension-spark-3-3/pom.xml +++ b/extensions/spark/kyuubi-extension-spark-3-3/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-extension-spark-3-4/pom.xml b/extensions/spark/kyuubi-extension-spark-3-4/pom.xml index 37d33671e7b..edd9d7b0855 100644 --- a/extensions/spark/kyuubi-extension-spark-3-4/pom.xml +++ b/extensions/spark/kyuubi-extension-spark-3-4/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-extension-spark-3-5/pom.xml b/extensions/spark/kyuubi-extension-spark-3-5/pom.xml index 113a815d5fc..c4d7eb6e420 100644 --- a/extensions/spark/kyuubi-extension-spark-3-5/pom.xml +++ b/extensions/spark/kyuubi-extension-spark-3-5/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-extension-spark-jdbc-dialect/pom.xml b/extensions/spark/kyuubi-extension-spark-jdbc-dialect/pom.xml index 64773fa1a45..8ea8aa2d6e5 100644 --- a/extensions/spark/kyuubi-extension-spark-jdbc-dialect/pom.xml +++ b/extensions/spark/kyuubi-extension-spark-jdbc-dialect/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-authz-shaded/pom.xml b/extensions/spark/kyuubi-spark-authz-shaded/pom.xml index 6777ce46774..f9c4adf9f45 100644 --- a/extensions/spark/kyuubi-spark-authz-shaded/pom.xml +++ b/extensions/spark/kyuubi-spark-authz-shaded/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-authz/pom.xml b/extensions/spark/kyuubi-spark-authz/pom.xml index b3970cc2c89..6d072a8db36 100644 --- a/extensions/spark/kyuubi-spark-authz/pom.xml +++ b/extensions/spark/kyuubi-spark-authz/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-connector-common/pom.xml b/extensions/spark/kyuubi-spark-connector-common/pom.xml index 880a29f1206..a75f78bc3bd 100644 --- a/extensions/spark/kyuubi-spark-connector-common/pom.xml +++ b/extensions/spark/kyuubi-spark-connector-common/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-connector-hive/pom.xml b/extensions/spark/kyuubi-spark-connector-hive/pom.xml index c80c020e800..1d094783363 100644 --- a/extensions/spark/kyuubi-spark-connector-hive/pom.xml +++ b/extensions/spark/kyuubi-spark-connector-hive/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-connector-tpcds/pom.xml b/extensions/spark/kyuubi-spark-connector-tpcds/pom.xml index 6d27d01eef5..6654483d2ca 100644 --- a/extensions/spark/kyuubi-spark-connector-tpcds/pom.xml +++ b/extensions/spark/kyuubi-spark-connector-tpcds/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-connector-tpch/pom.xml b/extensions/spark/kyuubi-spark-connector-tpch/pom.xml index 458df4bdcab..3fc9c853235 100644 --- a/extensions/spark/kyuubi-spark-connector-tpch/pom.xml +++ b/extensions/spark/kyuubi-spark-connector-tpch/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-jvm-quake/pom.xml b/extensions/spark/kyuubi-spark-jvm-quake/pom.xml index 32ee20afaf9..c634000f35a 100644 --- a/extensions/spark/kyuubi-spark-jvm-quake/pom.xml +++ b/extensions/spark/kyuubi-spark-jvm-quake/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/extensions/spark/kyuubi-spark-lineage/pom.xml b/extensions/spark/kyuubi-spark-lineage/pom.xml index bddfb0fe638..7e09042da03 100644 --- a/extensions/spark/kyuubi-spark-lineage/pom.xml +++ b/extensions/spark/kyuubi-spark-lineage/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../../pom.xml diff --git a/externals/kyuubi-chat-engine/pom.xml b/externals/kyuubi-chat-engine/pom.xml index b04936a3294..422f36b9a9f 100644 --- a/externals/kyuubi-chat-engine/pom.xml +++ b/externals/kyuubi-chat-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-download/pom.xml b/externals/kyuubi-download/pom.xml index 60fbe1e5b13..83cb44d12bf 100644 --- a/externals/kyuubi-download/pom.xml +++ b/externals/kyuubi-download/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-flink-sql-engine/pom.xml b/externals/kyuubi-flink-sql-engine/pom.xml index 77da3baa962..7edbf0f79d1 100644 --- a/externals/kyuubi-flink-sql-engine/pom.xml +++ b/externals/kyuubi-flink-sql-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-hive-sql-engine/pom.xml b/externals/kyuubi-hive-sql-engine/pom.xml index ac42040d7dd..b0a3e265d19 100644 --- a/externals/kyuubi-hive-sql-engine/pom.xml +++ b/externals/kyuubi-hive-sql-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-jdbc-engine/pom.xml b/externals/kyuubi-jdbc-engine/pom.xml index dd0bd129037..a69b55c4064 100644 --- a/externals/kyuubi-jdbc-engine/pom.xml +++ b/externals/kyuubi-jdbc-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-spark-sql-engine/pom.xml b/externals/kyuubi-spark-sql-engine/pom.xml index 9dd0f9e09b5..08cadcc50d2 100644 --- a/externals/kyuubi-spark-sql-engine/pom.xml +++ b/externals/kyuubi-spark-sql-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/externals/kyuubi-trino-engine/pom.xml b/externals/kyuubi-trino-engine/pom.xml index 5b0d9e3f0c7..c4af1c995eb 100644 --- a/externals/kyuubi-trino-engine/pom.xml +++ b/externals/kyuubi-trino-engine/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../../pom.xml diff --git a/integration-tests/kyuubi-flink-it/pom.xml b/integration-tests/kyuubi-flink-it/pom.xml index 01018c00c16..415cefa5370 100644 --- a/integration-tests/kyuubi-flink-it/pom.xml +++ b/integration-tests/kyuubi-flink-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-gluten-it/pom.xml b/integration-tests/kyuubi-gluten-it/pom.xml index be72e129b98..80ca234aa99 100644 --- a/integration-tests/kyuubi-gluten-it/pom.xml +++ b/integration-tests/kyuubi-gluten-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-hive-it/pom.xml b/integration-tests/kyuubi-hive-it/pom.xml index de48b1d94cb..c7bf3ff2aec 100644 --- a/integration-tests/kyuubi-hive-it/pom.xml +++ b/integration-tests/kyuubi-hive-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-jdbc-it/pom.xml b/integration-tests/kyuubi-jdbc-it/pom.xml index 1279f3e8dd3..a63a9639a39 100644 --- a/integration-tests/kyuubi-jdbc-it/pom.xml +++ b/integration-tests/kyuubi-jdbc-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-kubernetes-it/pom.xml b/integration-tests/kyuubi-kubernetes-it/pom.xml index 84e4b586a28..095bd29a365 100644 --- a/integration-tests/kyuubi-kubernetes-it/pom.xml +++ b/integration-tests/kyuubi-kubernetes-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-trino-it/pom.xml b/integration-tests/kyuubi-trino-it/pom.xml index d5d479d0165..47e6a91bd24 100644 --- a/integration-tests/kyuubi-trino-it/pom.xml +++ b/integration-tests/kyuubi-trino-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/kyuubi-zookeeper-it/pom.xml b/integration-tests/kyuubi-zookeeper-it/pom.xml index cd1b7142b13..14b87dc36e4 100644 --- a/integration-tests/kyuubi-zookeeper-it/pom.xml +++ b/integration-tests/kyuubi-zookeeper-it/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi integration-tests - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 1c5e1be80b1..f02362cbc58 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT integration-tests diff --git a/kyuubi-assembly/pom.xml b/kyuubi-assembly/pom.xml index 1733f12aebd..f72d2a95ba2 100644 --- a/kyuubi-assembly/pom.xml +++ b/kyuubi-assembly/pom.xml @@ -22,7 +22,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/kyuubi-common/pom.xml b/kyuubi-common/pom.xml index 57c5a27fdf7..cb592948df0 100644 --- a/kyuubi-common/pom.xml +++ b/kyuubi-common/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/kyuubi-ctl/pom.xml b/kyuubi-ctl/pom.xml index 2f7877f3eaf..38479002c1d 100644 --- a/kyuubi-ctl/pom.xml +++ b/kyuubi-ctl/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/kyuubi-events/pom.xml b/kyuubi-events/pom.xml index 8d2e0a542c3..491cfc1ed5d 100644 --- a/kyuubi-events/pom.xml +++ b/kyuubi-events/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/kyuubi-ha/pom.xml b/kyuubi-ha/pom.xml index 749ab063266..2ad1ed59b90 100644 --- a/kyuubi-ha/pom.xml +++ b/kyuubi-ha/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT ../pom.xml diff --git a/kyuubi-hive-beeline/pom.xml b/kyuubi-hive-beeline/pom.xml index cdb45d67092..dafae95099c 100644 --- a/kyuubi-hive-beeline/pom.xml +++ b/kyuubi-hive-beeline/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-hive-beeline diff --git a/kyuubi-hive-jdbc-shaded/pom.xml b/kyuubi-hive-jdbc-shaded/pom.xml index 6546c6c1852..9a21334912d 100644 --- a/kyuubi-hive-jdbc-shaded/pom.xml +++ b/kyuubi-hive-jdbc-shaded/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-hive-jdbc-shaded diff --git a/kyuubi-hive-jdbc/pom.xml b/kyuubi-hive-jdbc/pom.xml index 6ce0d1017a2..798b49ac670 100644 --- a/kyuubi-hive-jdbc/pom.xml +++ b/kyuubi-hive-jdbc/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-hive-jdbc diff --git a/kyuubi-metrics/pom.xml b/kyuubi-metrics/pom.xml index 10c79464bcb..a8ca957bf77 100644 --- a/kyuubi-metrics/pom.xml +++ b/kyuubi-metrics/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-metrics_${scala.binary.version} diff --git a/kyuubi-rest-client/pom.xml b/kyuubi-rest-client/pom.xml index 7c1be83b2f5..cb4dab13d54 100644 --- a/kyuubi-rest-client/pom.xml +++ b/kyuubi-rest-client/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-rest-client diff --git a/kyuubi-server/pom.xml b/kyuubi-server/pom.xml index 2b0d0d8863a..638dcbda64e 100644 --- a/kyuubi-server/pom.xml +++ b/kyuubi-server/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-server_${scala.binary.version} diff --git a/kyuubi-server/web-ui/package-lock.json b/kyuubi-server/web-ui/package-lock.json index e5c0a9423fb..67216520132 100644 --- a/kyuubi-server/web-ui/package-lock.json +++ b/kyuubi-server/web-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "kyuubi-ui", - "version": "1.10.0-SNAPSHOT", + "version": "1.11.0-SNAPSHOT", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "kyuubi-ui", - "version": "1.10.0-SNAPSHOT", + "version": "1.11.0-SNAPSHOT", "dependencies": { "@element-plus/icons-vue": "^2.0.9", "axios": "^1.7.4", diff --git a/kyuubi-server/web-ui/package.json b/kyuubi-server/web-ui/package.json index 0a897018cb1..351ca1ed7ff 100644 --- a/kyuubi-server/web-ui/package.json +++ b/kyuubi-server/web-ui/package.json @@ -1,7 +1,7 @@ { "name": "kyuubi-ui", "private": true, - "version": "1.10.0-SNAPSHOT", + "version": "1.11.0-SNAPSHOT", "type": "module", "scripts": { "dev": "vue-tsc --noEmit && vite --port 9090", diff --git a/kyuubi-util-scala/pom.xml b/kyuubi-util-scala/pom.xml index 365c0c9d969..3a081c55a31 100644 --- a/kyuubi-util-scala/pom.xml +++ b/kyuubi-util-scala/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-util-scala_${scala.binary.version} diff --git a/kyuubi-util/pom.xml b/kyuubi-util/pom.xml index fcb3498b103..50ea67397f6 100644 --- a/kyuubi-util/pom.xml +++ b/kyuubi-util/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-util diff --git a/kyuubi-zookeeper/pom.xml b/kyuubi-zookeeper/pom.xml index 4987adf9e07..30e543a9bc4 100644 --- a/kyuubi-zookeeper/pom.xml +++ b/kyuubi-zookeeper/pom.xml @@ -21,7 +21,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT kyuubi-zookeeper_${scala.binary.version} diff --git a/pom.xml b/pom.xml index 18eb69ef126..0005d54c1e6 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.apache.kyuubi kyuubi-parent - 1.10.0-SNAPSHOT + 1.11.0-SNAPSHOT pom Kyuubi Project Parent