-
Notifications
You must be signed in to change notification settings - Fork 938
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[KYUUBI #4020] remove incubating from kyuubi source code
### _Why are the changes needed?_ ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #4069 from lightning-L/kyuubi-4020. Closes #4020 97406ca [Tianlin Liao] [KYUUBI #4020] remove incubating from kyuubi source code Authored-by: Tianlin Liao <[email protected]> Signed-off-by: ulysses-you <[email protected]>
- Loading branch information
1 parent
2c6f17d
commit 8e8d8be
Showing
40 changed files
with
103 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ set -e | |
RELEASE_DIR="$(cd "$(dirname "$0")"/..; pwd)" | ||
|
||
######### Please modify the variables ########## | ||
# release version, e.g. 1.4.0-incubating | ||
# release version, e.g. 1.7.0 | ||
release_version=${release_version:-""} | ||
################################################ | ||
|
||
|
@@ -39,15 +39,15 @@ mkdir -p ${RELEASE_TEMP_DIR} | |
ANNOUNCE=${RELEASE_TEMP_DIR}/${release_version}_announce.temp | ||
|
||
cat >$ANNOUNCE<<EOF | ||
Title: [ANNOUNCE] Apache Kyuubi (Incubating) released ${release_version} | ||
Title: [ANNOUNCE] Apache Kyuubi released ${release_version} | ||
Content: | ||
Hi all, | ||
The Apache Kyuubi (Incubating) community is pleased to announce that | ||
Apache Kyuubi (Incubating) ${release_version} has been released! | ||
The Apache Kyuubi community is pleased to announce that | ||
Apache Kyuubi ${release_version} has been released! | ||
Apache Kyuubi (Incubating) is a distributed multi-tenant JDBC server for | ||
Apache Kyuubi is a distributed multi-tenant JDBC server for | ||
large-scale data processing and analytics, built on top of Apache Spark | ||
and designed to support more engines (i.e. Apache Flink). | ||
|
@@ -68,18 +68,18 @@ data security, high availability, high client concurrency, etc. | |
The full release notes and download links are available at: | ||
Release Notes: https://kyuubi.apache.org/release/${release_version}.html | ||
To learn more about Apache Kyuubi (Incubating), please see | ||
To learn more about Apache Kyuubi, please see | ||
https://kyuubi.apache.org/ | ||
Kyuubi Resources: | ||
- Issue: https://github.com/apache/incubator-kyuubi/issues | ||
- Issue: https://github.com/apache/kyuubi/issues | ||
- Mailing list: [email protected] | ||
We would like to thank all contributors of the Kyuubi community and Incubating | ||
community who made this release possible! | ||
We would like to thank all contributors of the Kyuubi community | ||
who made this release possible! | ||
Thanks, | ||
On behalf of Apache Kyuubi (Incubating) community | ||
On behalf of Apache Kyuubi community | ||
EOF | ||
|
||
echo "please Use [email protected], [email protected], [email protected], [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,13 +23,13 @@ set -e | |
RELEASE_DIR="$(cd "$(dirname "$0")"/..; pwd)" | ||
|
||
######### Please modify the variables ########## | ||
# release version, e.g. v1.4.0-incubating | ||
# release version, e.g. v1.7.0 | ||
release_version=${release_version:-""} | ||
# release candidate number, e.g. rc2 | ||
release_rc_no=${release_rc_no:-""} | ||
# previous release candidate number, e.g. rc1, could be empty if it is the first vote | ||
prev_release_rc_no=${prev_release_rc_no:-""} | ||
# previous release version, e.g. v1.3.0-incubating, this is used to generate change log | ||
# previous release version, e.g. v1.7.0, this is used to generate change log | ||
prev_release_version=${prev_release_version:-""} | ||
# staging repository number, check it under https://repository.apache.org/content/repositories | ||
repo_no=${repo_no:-""} | ||
|
@@ -66,7 +66,7 @@ if [[ ! -z "$prev_release_rc_no" ]]; then | |
prev_release_rc_tag=${release_version}-${prev_release_rc_no} | ||
change_from_pre_commit=" | ||
The commit list since the ${prev_release_rc_no}: | ||
https://github.com/apache/incubator-kyuubi/compare/${prev_release_rc_tag}...${release_rc_tag} | ||
https://github.com/apache/kyuubi/compare/${prev_release_rc_tag}...${release_rc_tag} | ||
" | ||
fi | ||
|
||
|
@@ -81,15 +81,15 @@ Content: | |
Hello Apache Kyuubi PPMC and Community, | ||
Please vote on releasing the following candidate as | ||
Apache Kyuubi (Incubating) version ${release_version}. | ||
Apache Kyuubi version ${release_version}. | ||
The VOTE will remain open for at least 72 hours. | ||
[ ] +1 Release this package as Apache Kyuubi ${release_version} | ||
[ ] +0 | ||
[ ] -1 Do not release this package because ... | ||
To learn more about Apache Kyuubi (Incubating), please see | ||
To learn more about Apache Kyuubi, please see | ||
https://kyuubi.apache.org/ | ||
The tag to be voted on is ${release_rc_tag} (commit ${git_commit_hash}): | ||
|
@@ -105,10 +105,10 @@ The staging repository for this release can be found at: | |
https://repository.apache.org/content/repositories/orgapachekyuubi-${repo_no}/ | ||
${change_from_pre_commit} | ||
The release note is available in: | ||
https://github.com/apache/incubator-kyuubi/compare/${prev_release_version}...${release_rc_tag} | ||
https://github.com/apache/kyuubi/compare/${prev_release_version}...${release_rc_tag} | ||
Thanks, | ||
On behalf of Apache Kyuubi(Incubating) community | ||
On behalf of Apache Kyuubi community | ||
EOF | ||
|
||
echo "please use [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,13 @@ set -e | |
|
||
RELEASE_DIR="$(cd "$(dirname "$0")"/..; pwd)" | ||
######### Please modify the variables ########## | ||
# release version, e.g. v1.4.0-incubating | ||
# release version, e.g. v1.7.0 | ||
release_version=${release_version:-""} | ||
# release candidate number, e.g. rc2 | ||
release_rc_no=${release_rc_no:-""} | ||
# previous release candidate number, e.g. rc1, could be empty if it is the first vote | ||
prev_release_rc_no=${prev_release_rc_no:-""} | ||
# previous release version, e.g. v1.3.0-incubating, this is used to generate change log | ||
# previous release version, e.g. v1.6.0, this is used to generate change log | ||
prev_release_version=${prev_release_version:-""} | ||
# staging repository number, check it under https://repository.apache.org/content/repositories | ||
repo_no=${repo_no:-""} | ||
|
@@ -88,13 +88,13 @@ mkdir -p ${RELEASE_TEMP_DIR} | |
GENERAL_VOTE=${RELEASE_TEMP_DIR}/${release_rc_tag}_general_vote.temp | ||
|
||
cat >$GENERAL_VOTE<<EOF | ||
Title: [VOTE] Release Apache Kyuubi(Incubating) ${release_version} ${release_rc_no} | ||
Title: [VOTE] Release Apache Kyuubi ${release_version} ${release_rc_no} | ||
Content: | ||
Hello Incubator Community, | ||
The Apache Kyuubi community has voted on and approved a proposal to release | ||
Apache Kyuubi(Incubating) version ${release_version} ${release_rc_no}. | ||
Apache Kyuubi version ${release_version} ${release_rc_no}. | ||
We now kindly request the Incubator PMC members review and vote on this | ||
incubator release. | ||
|
@@ -109,14 +109,14 @@ ${dev_kyuubi_vote_result_mail_address} | |
[ ] +0 | ||
[ ] -1 Do not release this package because ... | ||
To learn more about Apache Kyuubi (Incubating), please see | ||
To learn more about Apache Kyuubi, please see | ||
https://kyuubi.apache.org/ | ||
The tag to be voted on is ${release_rc_tag} (commit ${git_commit_hash}): | ||
https://github.com/apache/incubator-kyuubi/tree/${release_rc_tag} | ||
https://github.com/apache/kyuubi/tree/${release_rc_tag} | ||
The release files, including signatures, digests, etc. can be found at: | ||
https://dist.apache.org/repos/dist/dev/incubator/kyuubi/${release_rc_tag}/ | ||
https://dist.apache.org/repos/dist/dev/kyuubi/${release_rc_tag}/ | ||
Signatures used for Kyuubi RCs can be found in this file: | ||
https://downloads.apache.org/incubator/kyuubi/KEYS | ||
|
@@ -125,11 +125,11 @@ The staging repository for this release can be found at: | |
https://repository.apache.org/content/repositories/orgapachekyuubi-${repo_no}/ | ||
$change_from_pre_commit | ||
The release note is available in: | ||
https://github.com/apache/incubator-kyuubi/compare/${prev_release_version}...${release_rc_tag} | ||
https://github.com/apache/kyuubi/compare/${prev_release_version}...${release_rc_tag} | ||
Thanks, | ||
On behalf of Apache Kyuubi(Incubating) community | ||
On behalf of Apache Kyuubi community | ||
EOF | ||
|
||
echo "please use [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,10 +20,10 @@ | |
# Utility for creating well-formed pull request merges and pushing them to Kyuubi | ||
# For committers: | ||
# Please check your local git envs via `git remote -v` which should | ||
# apache [email protected]:apache/incubator-kyuubi.git (fetch) | ||
# apache [email protected]:apache/incubator-kyuubi.git (push) | ||
# origin [email protected]:[ YOUR GITHUB USER NAME ]/incubator-kyuubi.git (fetch) | ||
# origin [email protected]:[ YOUR GITHUB USER NAME ]/incubator-kyuubi.git (push) | ||
# apache [email protected]:apache/kyuubi.git (fetch) | ||
# apache [email protected]:apache/kyuubi.git (push) | ||
# origin [email protected]:[ YOUR GITHUB USER NAME ]/kyuubi.git (fetch) | ||
# origin [email protected]:[ YOUR GITHUB USER NAME ]/kyuubi.git (push) | ||
|
||
import json | ||
import os | ||
|
@@ -38,7 +38,7 @@ | |
PR_REMOTE_NAME = os.environ.get("PR_REMOTE_NAME", "apache") | ||
PUSH_REMOTE_NAME = os.environ.get("PUSH_REMOTE_NAME", "apache") | ||
GITHUB_OAUTH_KEY = os.environ.get("GITHUB_OAUTH_KEY") | ||
GITHUB_API_BASE = "https://api.github.com/repos/apache/incubator-kyuubi" | ||
GITHUB_API_BASE = "https://api.github.com/repos/apache/kyuubi" | ||
BRANCH_PREFIX = "PR_TOOL" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.