Apache SkyWalking release guide
If you’re a committer, you can learn how to release SkyWalking in The Apache Way and start the voting process by reading this document.
Set up your development environment
Follow the steps in the Apache maven deployment environment document to set gpg tool and encrypt passwords.
Use the following block as a template and place it in ~/.m2/settings.xml
.
<settings>
...
<servers>
<!-- To publish a snapshot of some part of Maven -->
<server>
<id>apache.snapshots.https</id>
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<password> <!-- YOUR APACHE LDAP PASSWORD (encrypted) --> </password>
</server>
<!-- To stage a release of some part of Maven -->
<server>
<id>apache.releases.https</id>
<username> <!-- YOUR APACHE LDAP USERNAME --> </username>
<password> <!-- YOUR APACHE LDAP PASSWORD (encrypted) --> </password>
</server>
...
</servers>
</settings>
Add your GPG public key
- Add your GPG public key into the SkyWalking GPG KEYS file. If you are a committer, use your Apache ID and password to log in this svn, and update the file. Don’t override the existing file.
- Upload your GPG public key to the public GPG site, such as MIT’s site. This site should be in the Apache maven staging repository checklist.
Test your settings
This step is only for testing purpose. If your env is correctly set, you don’t need to check every time.
./mvnw clean install -Pall (this will build artifacts, sources and sign)
Prepare for the release
- Set the version number that you are about to release.
export RELEASE_VERSION=x.y.z # (example: RELEASE_VERSION=10.1.0)
export NEXT_RELEASE_VERSION=x.y.z # (example: NEXT_RELEASE_VERSION=10.2.0)
- Create a new folder for the new release.
git clone https://github.com/apache/skywalking.git
cd skywalking
git checkout -b ${RELEASE_VERSION}-release # Create a branch for new release, such as 10.1.0-release
git submodule init
git submodule update
- Update the property
revision
inpom.xml
file, and commit it.
./mvnw versions:set-property -DgenerateBackupPoms=false -Dproperty=revision -DnewVersion=${RELEASE_VERSION}
git add pom.xml
git commit -m "Prepare for release ${RELEASE_VERSION}"
- Tag the commit and push it to the upstream.
git tag v${RELEASE_VERSION}
git push origin v${RELEASE_VERSION}
Stage the release
./mvnw flatten:flatten install deploy -DskipTests
This command will build, sign, and deploy the release to the Apache staging repository.
You should be prompted for your GPG passphrase during the deployment process.
If no prompt is present, you can set the passphrase in the environment variable MAVEN_GPG_PASSPHRASE
:
MAVEN_GPG_PASSPHRASE=<your-gpg-passphrase> ./mvnw flatten:flatten install deploy -DskipTests
- The release will be automatically inserted into a temporary staging repository.
apache-skywalking-apm-x.y.z.tar.gz
with its .asc
size could be found in https://repository.apache.org/ staging repo.
Create shasum through shasum -a 512 apache-skywalking-apm-x.y.z.tar.gz > apache-skywalking-apm-x.y.z.tar.gz.sha512
Build and sign the source code package
cd tools/releasing
bash create_source_release.sh
This script takes care of the following things:
- Use
v
+RELEASE_VERSION
as tag to clone the codes. - Complete
git submodule init/update
. - Exclude all unnecessary files in the target source tar, such as
.git
,.github
, and.gitmodules
. See the script for more details. - Execute
gpg
andshasum 512
.
apache-skywalking-apm-x.y.z-src.tgz
and files ending with .asc
and .sha512
may be found in the tools/releasing
folder.
Start the next iteration
Once the release is deployed to the staging repositories, you can start updating the version to the next number and open a pull request.
# Update the version to the next snapshot version still in the same branch, such as 10.1.0-release
./mvnw versions:set-property -DgenerateBackupPoms=false -Dproperty=revision -DnewVersion=${NEXT_RELEASE_VERSION}-SNAPSHOT
git add pom.xml
git commit -m "Start next iteration ${NEXT_RELEASE_VERSION}"
Update the change log files for the next iteration.
- Rename latest changes to
changes-{RELEASE_VERSION}.md
. - Reset the latest changes to the new version.
- Update Changelog in the
menu.yml
to link tochanges-{RELEASE_VERSION}.md
.
git push
gh pr create --fill # If you have gh cli installed and configured, or open the pull request in https://github.com/apache/skywalking/pulls
Locate and download the distribution package in Apache Nexus Staging repositories
- Use your Apache ID to log in to
https://repository.apache.org/
. - Go to
https://repository.apache.org/#stagingRepositories
. - Search
skywalking
and find your staging repository. - Close the repository and wait for all checks to pass. In this step, your GPG KEYS will be checked. See the set PGP document, if you haven’t done it before.
- Go to
{REPO_URL}/org/apache/skywalking/apache-skywalking-apm/x.y.z
. - Download
.tar.gz
and.zip
and files ending with.asc
and.sha1
.
Upload to Apache svn
- Use your Apache ID to log in to
https://dist.apache.org/repos/dist/dev/skywalking/
. - Create a folder and name it by the release version and round, such as:
x.y.z
- Upload the source code package to the folder with files ending with
.asc
and.sha512
.- Package name:
apache-skywalking-x.y.z-src.tar.gz
- See Section “Build and sign the source code package” for more details
- Package name:
- Upload the distribution package to the folder with files ending with
.asc
and.sha512
.- Package name:
apache-skywalking-bin-x.y.z.tar.gz
. - See Section “Locate and download the distribution package in Apache Nexus Staging repositories” for more details.
- Create a
.sha512
package:shasum -a 512 file > file.sha512
- Package name:
Call a vote in dev
Call a vote in dev@skywalking.apache.org
Mail title: [VOTE] Release Apache SkyWalking version x.y.z
Mail content:
Hi All,
This is a call for vote to release Apache SkyWalking version x.y.z.
Release notes:
* https://github.com/apache/skywalking/blob/master/docs/en/changes/changes-x.y.z.md
Release Candidate:
* https://dist.apache.org/repos/dist/dev/skywalking/xxxx
* sha512 checksums
- sha512xxxxyyyzzz apache-skywalking-apm-x.x.x-src.tgz
- sha512xxxxyyyzzz apache-skywalking-apm-bin-x.x.x.tar.gz
Maven 2 staging repository:
* https://repository.apache.org/content/repositories/xxxx/org/apache/skywalking/
Release Tag :
* (Git Tag) vx.y.z
Release CommitID :
* https://github.com/apache/skywalking/tree/(Git Commit ID)
* Git submodule
* skywalking-ui: https://github.com/apache/skywalking-booster-ui/tree/(Git Commit ID)
* apm-protocol/apm-network/src/main/proto: https://github.com/apache/skywalking-data-collect-protocol/tree/(Git Commit ID)
* oap-server/server-query-plugin/query-graphql-plugin/src/main/resources/query-protocol https://github.com/apache/skywalking-query-protocol/tree/(Git Commit ID)
Keys to verify the Release Candidate :
* https://dist.apache.org/repos/dist/release/skywalking/KEYS
Guide to build the release from source :
* https://github.com/apache/skywalking/blob/vx.y.z/docs/en/guides/How-to-build.md
Voting will start now (xxxx date) and will remain open for at least 72 hours, Request all PMC members to give their vote.
[ ] +1 Release this package.
[ ] +0 No opinion.
[ ] -1 Do not release this package because....
Vote Check
All PMC members and committers should check these before casting +1 votes.
- Features test.
- All artifacts in staging repository are published with
.asc
,.md5
, and*sha1
files. - Source code and distribution package (
apache-skywalking-x.y.z-src.tar.gz
,apache-skywalking-bin-x.y.z.tar.gz
,apache-skywalking-bin-x.y.z.zip
) are found inhttps://dist.apache.org/repos/dist/dev/skywalking/x.y.z
with.asc
and.sha512
. LICENSE
andNOTICE
are in the source code and distribution package.- Check
shasum -c apache-skywalking-apm-x.y.z-src.tgz.sha512
. - Check
gpg --verify apache-skywalking-apm-x.y.z-src.tgz.asc apache-skywalking-apm-x.y.z-src.tgz
- Build a distribution package from the source code package (
apache-skywalking-x.y.z-src.tar.gz
) by following this doc. - Check the Apache License Header. Run
docker run --rm -v $(pwd):/github/workspace apache/skywalking-eyes header check
. (No binaries in source codes)
The voting process is as follows:
- All PMC member votes are +1 binding, and all other votes are +1 but non-binding.
- If you obtain at least 3 (+1 binding) votes with more +1 than -1 votes within 72 hours, the release will be approved.
Publish the release
- Move source codes tar and distribution packages to
https://dist.apache.org/repos/dist/release/skywalking/
.
> export SVN_EDITOR=vim
> svn mv https://dist.apache.org/repos/dist/dev/skywalking/x.y.z https://dist.apache.org/repos/dist/release/skywalking
....
enter your apache password
....
- Release in the nexus staging repo.
- Public download source and distribution tar/zip are located in
http://www.apache.org/dyn/closer.cgi/skywalking/x.y.z/xxx
. The Apache mirror path is the only release information that we publish. - Public asc and sha512 are located in
https://www.apache.org/dist/skywalking/x.y.z/xxx
. - Public KEYS point to
https://www.apache.org/dist/skywalking/KEYS
. - Update the website download page. http://skywalking.apache.org/downloads/ . Add a new download source, distribution, sha512, asc, and document links. The links can be found following rules (3) to (6) above.
- Add a release event on the website homepage and event page. Announce the public release with changelog or key features.
- Send ANNOUNCE email to
dev@skywalking.apache.org
,announce@apache.org
. The sender should use the Apache email account.
Mail title: [ANNOUNCE] Apache SkyWalking x.y.z released
Mail content:
Hi all,
Apache SkyWalking Team is glad to announce the first release of Apache SkyWalking x.y.z.
SkyWalking: APM (application performance monitor) tool for distributed systems,
especially designed for microservices, cloud native and container-based architectures.
This release contains a number of new features, bug fixes and improvements compared to
version a.b.c(last release). The notable changes since x.y.z include:
(Highlight key changes)
1. ...
2. ...
3. ...
Please refer to the change log for the complete list of changes:
https://skywalking.apache.org/docs/main/vx.y.z/en/changes/changes/
Apache SkyWalking website:
http://skywalking.apache.org/
Downloads:
https://skywalking.apache.org/downloads/#SkyWalkingAPM
Twitter:
https://twitter.com/ASFSkyWalking
SkyWalking Resources:
- GitHub: https://github.com/apache/skywalking
- Issue: https://github.com/apache/skywalking/issues
- Mailing list: dev@skywalkiing.apache.org
- Apache SkyWalking Team
Publish the Docker images
We have a GitHub workflow to automatically publish the Docker images to
Docker Hub after you set the version from pre-release
to release
, all you need to do is to watch that workflow and see
whether it succeeds, if it fails, you can use the following steps to publish the Docker images in your local machine.
export SW_VERSION=x.y.z
git clone --depth 1 --branch v$SW_VERSION https://github.com/apache/skywalking.git
cd skywalking
svn co https://dist.apache.org/repos/dist/release/skywalking/$SW_VERSION release # (1)
export CONTEXT=release
export HUB=apache
export OAP_NAME=skywalking-oap-server
export UI_NAME=skywalking-ui
export TAG=$SW_VERSION
export DIST=<the binary package name inside (1), e.g. apache-skywalking-apm-8.8.0.tar.gz>
make docker.push
Clean up the old releases
Once the latest release has been published, you should clean up the old releases from the mirror system.
- Update the download links (source, dist, asc, and sha512) on the website to the archive repo (https://archive.apache.org/dist/skywalking).
- Remove previous releases from https://dist.apache.org/repos/dist/release/skywalking/.
Update the Quick Start Versions
We hosted the SkyWalking Quick Start script, which is a shell script that helps users to download and start SkyWalking quickly. The versions of OAP and BanyanDB are hard-coded in the script, so you need to update the versions in the script.
Update the versions here