主仓库发布指南
更新发布公告
按照如下格式更新发布公告:
## ${PUBLISH.VERSION}
### New Features
1. xxx
1. xxx
...
### API Changes
1. xxx
1. xxx
...
### Enhancement
1. xxx
1. xxx
...
### Refactor
1. xxx
1. xxx
...
### Bug Fix
1. xxx
1. xxx
...
创 建 GPG KEY
每个发布经理只在第一次发布时创建 GPG KEY,以后发布可复用此 KEY。
1. 创建 KEY
安装 GnuPG。
按照 OpenPGP KEY Management [1] 的说明创建 KEY:
gpg --full-gen-key
创建步骤(以下内容来自控制台输出):
gpg (GnuPG) 2.2.4; Copyright (C) 2017 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Please select what kind of key you want:
(1) RSA and RSA (default)
(2) DSA and Elgamal
(3) DSA (sign only)
(4) RSA (sign only)
Your selection? 1
RSA keys may be between 1024 and 4096 bits long.
What keysize do you want? (2048) 4096
Requested keysize is 4096 bits
Please specify how long the key should be valid.
0 = key does not expire
<n> = key expires in n days
<n>w = key expires in n weeks
<n>m = key expires in n months
<n>y = key expires in n years
Key is valid for? (0)
Key does not expire at all
Is this correct? (y/N) y
GnuPG needs to construct a user ID to identify your key.
Real name: (设置用户名)(使用apache id)
Email address: (设置邮件地址)(使用apache邮箱)
Comment: (填写注释)
You selected this USER-ID:
"用户名 (注释) <邮件地址>"
Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? O
You need a Passphrase to protect your secret key. (设置密码)
2. 检查 KEY
按照 Operational GPG Commands [2] 的说明检查 KEY:
gpg --list-keys
命令输出:
pub rsa4096 2019-03-11 [SC]
095E0D21BC28CFC7A8B8076DF7DF28D237A8048C
uid 用户名 (注释) <邮件地址>
sub rsa4096 2019-03-11 [E]
公钥为 095E0D21BC28CFC7A8B8076DF7DF28D237A8048C。
3. 上传公钥
按照 Dirmngr Options [3] 的说明上传公钥:
gpg --send-key 095E0D21BC28CFC7A8B8076DF7DF28D237A8048C
发布到 Maven 预发仓库
1. 配置 settings.xml
根据 publishing maven artifacts [4] 的说明配置 settings.xml。
2. 使用新分支发布
下载并安装 Git。
创建并切换到 ${PUBLISH.VERSION}-release 分支。
git clone https://github.com/apache/shenyu.git ~/shenyu
cd ~/shenyu/
git checkout -b ${PUBLISH.VERSION}-release
git push origin ${PUBLISH.VERSION}-release
3. 发布预检
下载并安装 Maven。
根据 publishing maven artifacts [4] 的说明进行发布预检。
mvn release:prepare -Prelease -Darguments="-DskipTests" -DautoVersionSubmodules=true -DdryRun=true -Dusername=(填写GitHub用户名)
4. 准备发布
根据 publishing maven artifacts [4] 的说明准备发布。
mvn release:clean
mvn release:prepare -Prelease -Darguments="-DskipTests" -DautoVersionSubmodules=true -DpushChanges=false -Dusername=(填写GitHub用户名)
提交更新版本号后的代码和新标签。
git push origin ${PUBLISH.VERSION}-release
git push origin --tags
5. 执行发布
根据 publishing maven artifacts [4] 的说明执行发布。
mvn release:perform -Prelease -Darguments="-DskipTests" -DautoVersionSubmodules=true -Dusername=(填写GitHub用户名)
此时,发行版被发布到 预发仓库,找到发布的版本,即 ${STAGING.RELEASE}, 并点击 Close。
发布到 SVN 预发仓库
下载并安装SVN。
1. 更新 KEYS 文 件
如果发布经理还没有将自己的公钥追加到 KEYS 文件中,请执行以下操作。否则,跳过此步骤。
根据 signing basics [5] 的说明更新 KEYS 文件。
mkdir -p ~/keys/release/
cd ~/keys/release/
svn --username=${LDAP ID} co https://dist.apache.org/repos/dist/release/shenyu
cd ~/keys/release/shenyu
gpg -a --export ${GPG 用户名} >> KEYS
svn --username=${LDAP ID} commit -m "append to KEYS"
2. 添加源码包和二进制文件包
根据 Uploading packages [6] 的说明添加源码包和二进制文件包。
mkdir -p ~/svn_release/dev/
cd ~/svn_release/dev/
svn --username=${LDAP ID} co https://dist.apache.org/repos/dist/dev/shenyu
mkdir -p ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
cd ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
cp -f ~/shenyu/shenyu-dist/shenyu-src-dist/target/*.zip* ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
cp -f ~/shenyu/shenyu-dist/shenyu-bootstrap-dist/target/*.tar.gz* ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
cp -f ~/shenyu/shenyu-dist/shenyu-admin-dist/target/*.tar.gz* ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
3. 提交新版本
cd ~/svn_release/dev/shenyu
svn add ${PUBLISH.VERSION}/
svn --username=${LDAP ID} commit -m "release ${PUBLISH.VERSION}"
预发版本验证
1. 验证 sha512 校验和
根据 Checking Hashes [8] 的说明验证 sha512 校验和。
shasum -c apache-shenyu-${PUBLISH.VERSION}-src.zip.sha512
shasum -c apache-shenyu-${PUBLISH.VERSION}-bootstrap-bin.tar.gz.sha512
shasum -c apache-shenyu-${PUBLISH.VERSION}-admin-bin.tar.gz.sha512
2. 验证 GPG 签名
根据 Checking Signatures [9] 的说明验证 GPG 签名。
curl https://downloads.apache.org/shenyu/KEYS >> KEYS
gpg --import KEYS
cd ~/svn_release/dev/shenyu/${PUBLISH.VERSION}
gpg --verify apache-shenyu-${PUBLISH.VERSION}-src.zip.asc apache-shenyu-${PUBLISH.VERSION}-src.zip
gpg --verify apache-shenyu-${PUBLISH.VERSION}-bootstrap-bin.tar.gz.asc apache-shenyu-${PUBLISH.VERSION}-bootstrap-bin.tar.gz
gpg --verify apache-shenyu-${PUBLISH.VERSION}-admin-bin.tar.gz.asc apache-shenyu-${PUBLISH.VERSION}-admin-bin.tar.gz
3. 确保 SVN 与 GitHub 源码一致
根据 Incubator Release Checklist [10] 的说明确保 SVN 与 GitHub 源码一致。
wget https://github.com/apache/shenyu/archive/v${PUBLISH.VERSION}.zip
unzip v${PUBLISH.VERSION}.zip
unzip apache-shenyu-${PUBLISH.VERSION}-src.zip
diff -r -x "shenyu-dashboard" -x "shenyu-examples" -x "shenyu-integrated-test" -x "static" apache-shenyu-${PUBLISH.VERSION}-src shenyu-${PUBLISH.VERSION}
4. 检查源码包
根据 Incubator Release Checklist [10] 的说明检查源码包。
- 存在
LICENSE和NOTICE文件 NOTICE文件中的年份正确- 所有文件的开头都有 ASF 许可证
- 不存在未依赖软件的
LICENSE和NOTICE - 不存在不符合预期的二进制文件
- 编译通过 (./mvnw install) (目前支持 JAVA 8)
- 如果存在第三方代码依赖:
- 第三方代码依赖的许可证兼容
- 所有第三方代码依赖的许可证都在
LICENSE文件中声名 - 第三方代码依赖许可证的完整版全部在
license目录 - 如果依赖的是 Apache 许可证并且有
NOTICE文件,那么这些NOTICE文件需要加入到项目的NOTICE文件中
5. 检查二进制包
根据 Binary distributions [11] 的说明检查二进制包。
- 存在
LICENSE和NOTICE文件 NOTICE文件中的年份正确- 所有文本文件开头都有 ASF 许可证
- 不存在未依赖软件的
LICENSE和NOTICE - 如果存在第三方代码依赖:
- 第三方代码依赖的许可证兼容
- 所有第三方代码依赖的许可证都在
LICENSE文件中声名 - 第三方代码依赖许可证的完整版全部在
license目录 - 如果依赖的是 Apache 许可证并且有
NOTICE文件,那么这些NOTICE文件需要加入到项目的NOTICE文件中
投票流程
根据 RELEASE APPROVAL [12], Releases [13], voting [14] 的说明进行社区投票。
ShenYu 社区投票
1. 投票持续至少 72 小时并获得 3 个+1 binding票
发送至:
dev@shenyu.apache.org
标题:
[VOTE] Release Apache ShenYu ${PUBLISH.VERSION}
正文:
Hello ShenYu Community,
This is a call for vote to release Apache ShenYu version ${PUBLISH.VERSION}
Release notes:
https://github.com/apache/shenyu/blob/master/RELEASE-NOTES.md
The release candidates:
https://dist.apache.org/repos/dist/dev/shenyu/${PUBLISH.VERSION}/
Maven 2 staging repository:
https://repository.apache.org/content/repositories/staging/org/apache/shenyu/shenyu/${STAGING.RELEASE}/
Git tag for the release:
https://github.com/apache/shenyu/tree/v${PUBLISH.VERSION}/
Release Commit ID:
https://github.com/apache/shenyu/commit/xxxxxxxxxxxxxxxxxxxxxxx
Keys to verify the Release Candidate:
https://downloads.apache.org/shenyu/KEYS
Look at here for how to verify this release candidate:
https://shenyu.apache.org/community/release-guide/#check-release
The vote will be open for at least 72 hours or until necessary number of votes are reached.
Please vote accordingly:
[ ] +1 approve
[ ] +0 no opinion
[ ] -1 disapprove with the reason
Checklist for reference:
[ ] Download links are valid.
[ ] Checksums and PGP signatures are valid.
[ ] Source code distributions have correct names matching the current release.
[ ] LICENSE and NOTICE files are correct for each ShenYu repo.
[ ] All files have license headers if necessary.
[ ] No compiled archives bundled in source archive.
2. 宣布投票结果
发送至:
dev@shenyu.apache.org
标题:
[RESULT][VOTE] Release Apache ShenYu ${PUBLISH.VERSION}