[KYUUBI #6769] [RELEASE] Bump 1.11.0-SNAPSHOT
# 🔍 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 🔖 - [ ] 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 ⚰️ #### Behavior With This Pull Request 🎉 #### 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 <liangbowen@gf.com.cn> Signed-off-by: Bowen Liang <liangbowen@gf.com.cn>
This commit is contained in:
parent
8862767827
commit
d3520ddbce
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -234,7 +234,9 @@ def main():
|
|||||||
branches = get_json("%s/branches" % GITHUB_API_BASE)
|
branches = get_json("%s/branches" % GITHUB_API_BASE)
|
||||||
branch_names = list(filter(lambda x: x.startswith("branch-"), [x['name'] for x in branches]))
|
branch_names = list(filter(lambda x: x.startswith("branch-"), [x['name'] for x in branches]))
|
||||||
# Assumes branch names can be sorted lexicographically
|
# 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_num = input("Which pull request would you like to merge? (e.g. 34): ")
|
||||||
pr = get_json("%s/pulls/%s" % (GITHUB_API_BASE, pr_num))
|
pr = get_json("%s/pulls/%s" % (GITHUB_API_BASE, pr_num))
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
|
|
||||||
</parent>
|
</parent>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
|
|
||||||
</parent>
|
</parent>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../pom.xml</relativePath>
|
<relativePath>../../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-chat-engine/pom.xml
vendored
2
externals/kyuubi-chat-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-download/pom.xml
vendored
2
externals/kyuubi-download/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-flink-sql-engine/pom.xml
vendored
2
externals/kyuubi-flink-sql-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-hive-sql-engine/pom.xml
vendored
2
externals/kyuubi-hive-sql-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-jdbc-engine/pom.xml
vendored
2
externals/kyuubi-jdbc-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-spark-sql-engine/pom.xml
vendored
2
externals/kyuubi-spark-sql-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
2
externals/kyuubi-trino-engine/pom.xml
vendored
2
externals/kyuubi-trino-engine/pom.xml
vendored
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>integration-tests</artifactId>
|
<artifactId>integration-tests</artifactId>
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-hive-beeline</artifactId>
|
<artifactId>kyuubi-hive-beeline</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-hive-jdbc-shaded</artifactId>
|
<artifactId>kyuubi-hive-jdbc-shaded</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-hive-jdbc</artifactId>
|
<artifactId>kyuubi-hive-jdbc</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-metrics_${scala.binary.version}</artifactId>
|
<artifactId>kyuubi-metrics_${scala.binary.version}</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-rest-client</artifactId>
|
<artifactId>kyuubi-rest-client</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-server_${scala.binary.version}</artifactId>
|
<artifactId>kyuubi-server_${scala.binary.version}</artifactId>
|
||||||
|
|||||||
4
kyuubi-server/web-ui/package-lock.json
generated
4
kyuubi-server/web-ui/package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "kyuubi-ui",
|
"name": "kyuubi-ui",
|
||||||
"version": "1.10.0-SNAPSHOT",
|
"version": "1.11.0-SNAPSHOT",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "kyuubi-ui",
|
"name": "kyuubi-ui",
|
||||||
"version": "1.10.0-SNAPSHOT",
|
"version": "1.11.0-SNAPSHOT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@element-plus/icons-vue": "^2.0.9",
|
"@element-plus/icons-vue": "^2.0.9",
|
||||||
"axios": "^1.7.4",
|
"axios": "^1.7.4",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "kyuubi-ui",
|
"name": "kyuubi-ui",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.10.0-SNAPSHOT",
|
"version": "1.11.0-SNAPSHOT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vue-tsc --noEmit && vite --port 9090",
|
"dev": "vue-tsc --noEmit && vite --port 9090",
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-util-scala_${scala.binary.version}</artifactId>
|
<artifactId>kyuubi-util-scala_${scala.binary.version}</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-util</artifactId>
|
<artifactId>kyuubi-util</artifactId>
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kyuubi-zookeeper_${scala.binary.version}</artifactId>
|
<artifactId>kyuubi-zookeeper_${scala.binary.version}</artifactId>
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<groupId>org.apache.kyuubi</groupId>
|
<groupId>org.apache.kyuubi</groupId>
|
||||||
<artifactId>kyuubi-parent</artifactId>
|
<artifactId>kyuubi-parent</artifactId>
|
||||||
<version>1.10.0-SNAPSHOT</version>
|
<version>1.11.0-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<name>Kyuubi Project Parent</name>
|
<name>Kyuubi Project Parent</name>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user