Release Process
Introduction¶
This page walks you through the release process of the Ranger project. Here you can read about the release process in general for an Apache project.
Decisions about releases are made by three groups:
- Release Manager: Does the work of creating the release, signing it, counting votes, announcing the release and so on.
- The Community: Performs the discussion of whether it is the right time to create a release and what that release should contain. The community can also cast non-binding votes on the release.
- PMC: Gives binding votes on the release.
This page describes the procedures that the release manager and voting PMC members take during the release process.
Prerequisite¶
The release manager should have a gpg key setup to sign the artifacts. For more details, please see
Setup for first time release managers¶
# create a key
gpg --gen-key
# If you have multiple keys present, select the key id you want to use, let's say it is - your_gpg_key_id then do:
export CODESIGNINGKEY=your_gpg_key_id
gpg --list-keys ${CODESIGNINGKEY}
# to upload the key to a key server
gpg --keyserver hkp://keyserver.ubuntu.com --send-key ${CODESIGNINGKEY}
Publish your key¶
The key is supposed to be published together with the release. If it doesn't exist already, append it to the end of keys file.
svn co https://dist.apache.org/repos/dist/release/ranger
cd ranger
gpg --list-sigs $CODESIGNINGKEY >> KEYS
gpg --armor --export $CODESIGNINGKEY >> KEYS
svn commit -m "Adding key of XXXX to the KEYS"
Note
In case you are a Committer and not a PMC member, you can add your key to the dev KEYS file and a PMC member can move it to the final destination.
svn co https://dist.apache.org/repos/dist/dev/ranger
cd ranger
gpg --list-sigs $CODESIGNINGKEY >> KEYS
gpg --armor --export $CODESIGNINGKEY >> KEYS
svn commit -m "Adding key of XXXX to the KEYS"
Pre-Vote¶
Create a parent Jira for the release¶
This provides visibility into the progress of the release for the community. Tasks mentioned in this guide like changing snapshot versions, updating the Ranger website, publishing the artifacts, publishing the docker image, etc can be added as subtasks. Here is an example: RANGER-5098
Notify the community in advance of the release¶
The below details should be included when sending out an email to: dev@ranger.apache.org
- The release branch to be used for the release.
- The release branch lockdown date, the branch will be closed for commits after this date. Commits after this date will require approval from PMC Members.
- Tentative date for the availability of release-candidate #0, after which voting begins. A minimum of 72 hours needs to pass before the voting can close.
- Tentative release date.
Branching¶
A release branch should already be available as a post-release activity from the previous release. All release related changes will go to this branch until the release is complete.
- Ensure that there is no
OPENJira associated with the release.
Update the versions¶
# Use below command or use IDE to replace "${RANGER_VERSION}-SNAPSHOT" with "${RANGER_VERSION}".
export RANGER_VERSION="2.7.0"
mvn versions:set -DnewVersion=${RANGER_VERSION} -DgenerateBackupPoms=false
# Also, manually update versions in:
# - dev-support/ranger-docker/.env
# - docs/pom.xml
# - unixauthnative/pom.xml
# - ranger-trino-plugin-shim/pom.xml
Commit the changes¶
export RANGER_VERSION="2.7.0" # Set to the version of Ranger being released.
git commit -am "RANGER-XXXX: Updated version from ${RANGER_VERSION}-SNAPSHOT to ${RANGER_VERSION}"
git push origin
# for ex: https://github.com/apache/ranger/commit/81f3d2f
git tag -a release-${RANGER_VERSION}-rc${RANGER_RC} -m "Ranger ${RANGER_VERSION}-rc${RANGER_RC} release"
# example: git tag -a release-2.6.0-rc0 -m "Ranger 2.6.0-rc0 release"
# and then push to the release branch like this
git push origin release-${RANGER_VERSION}-rc${RANGER_RC}
Build and Publish Source Artifacts¶
Set up local environment¶
It is probably best to clone a fresh Ranger repository locally to work on the release, and leave your existing repository intact for dev tasks you may be working on simultaneously.
After cloning, make sure the apache/ranger upstream repo is named origin.
This is required for release build metadata to be correctly populated.
Assume all following commands are executed from within this repo with your release branch checked out.
export RANGER_RC=0 # Set to the number of the current release candidate, starting at 0.
export CODESIGNINGKEY=your_gpg_key_id
Reset the git repository¶
git reset --hard
git clean -dfx
Create the release artifacts¶
# run with unit tests
mvn clean install -Dmaven.javadoc.skip=true
- Verify
LICENSEandNOTICEfiles for the release are updated based on changes in the release. - Go through all commits in this particular release and create Release Notes. for example: Apache Ranger 2.6.0 - Release Notes
- Also, ensure the fix versions are appropriately added for all the jiras related to the commits.
Calculate the checksum and sign the artifacts¶
export GPG_TTY=$(tty)
ant -f release-build.xml -Dranger-release-version=${RANGER_VERSION} -Dsigning-key=${CODESIGNINGKEY}
# on successful run, the above command generates 4 files in target:
# - apache-ranger-${RANGER_VERSION}.tar.gz
# - apache-ranger-${RANGER_VERSION}.tar.gz.asc
# - apache-ranger-${RANGER_VERSION}.tar.gz.sha512
# - apache-ranger-${RANGER_VERSION}.tar.gz.sha256
# verify the signed tarball and checksum file using below command
cd target
gpg --verify apache-ranger-${RANGER_VERSION}.tar.gz.asc apache-ranger-${RANGER_VERSION}.tar.gz
sha512sum -c apache-ranger-${RANGER_VERSION}.tar.gz.sha512
sha256sum -c apache-ranger-${RANGER_VERSION}.tar.gz.sha256
Publish source artifacts to dev¶
svn co https://dist.apache.org/repos/dist/dev/ranger ranger-dev
mkdir ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}
cp target/apache-ranger-${RANGER_VERSION}.tar.gz ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}/
cp target/apache-ranger-${RANGER_VERSION}.tar.gz.asc ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}/
cp target/apache-ranger-${RANGER_VERSION}.tar.gz.sha256 ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}/
cp target/apache-ranger-${RANGER_VERSION}.tar.gz.sha512 ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}/
svn add ${RANGER_VERSION}-rc${RANGER_RC}
svn commit -m "RANGER-XXXX: Upload ${RANGER_VERSION}-rc${RANGER_RC}" # requires ASF authentication
Vote¶
Send the voting email as described below¶
-
Send release voting request to
dev@ranger.apache.organdprivate@ranger.apache.orgwith the subject[VOTE] Release Apache Ranger ${RANGER_VERSION} ${RANGER_RC} -
Include the following in the email:
- Link to a Jira query showing all resolved issues for this release. Something like this.
- Link to the release candidate tag on GitHub.
- Location of the source and binary tarballs. This link will look something like https://dist.apache.org/repos/dist/dev/ranger/2.6.0-rc0/
- Link to the public key used to sign the artifacts. This should always be in the keys file.
- The vote will be open for at least 72 hours or until necessary votes are reached.
[] +1 approve [] +0 no opinion [] -1 disapprove (and reason why) - Review release-policy for the ASF wide release voting policy.
Note
Note what is required of binding voters, and that binding votes can only come from PMC members. Check https://people.apache.org/committer-index.html, users whose group membership includes ranger-pmc can cast binding votes.
- If VOTE did not go through:
- Apply fixes to the release branch and repeat the steps starting from tagging the commit for the release candidate with the
$RANGER_RCvariable incremented by 1 for all steps.
- Apply fixes to the release branch and repeat the steps starting from tagging the commit for the release candidate with the
- Once voting is finished, email
dev@ranger.apache.organdprivate@ranger.apache.orgsummarizing the results with subject:Include names of all PMC members, followed by committers/contributors who cast their votes. Here is a reference link.[RESULT] [VOTE] Apache Ranger ${RANGER_VERSION} ${RANGER_RC}
Post-Vote¶
Publish the source artifacts to dist.apache.org¶
You should commit the artifacts to the SVN repository. If you are not a PMC member you can commit it to the dev ranger first and ask a PMC member for the final move. PMC members can move it to the final location:
svn co https://dist.apache.org/repos/dist/dev/ranger ranger-dev && cd ranger-dev
svn co https://dist.apache.org/repos/dist/release/ranger ranger-release && cd ranger-release
mkdir ranger-release/${RANGER_VERSION}
cp ranger-dev/${RANGER_VERSION}-rc${RANGER_RC}/* ranger-release/${RANGER_VERSION} # copy release artifacts from dev to release
cd ranger-release
svn add ${RANGER_VERSION}
svn commit -m "Uploading Apache Ranger ${RANGER_VERSION} release src artifacts" ${RANGER_VERSION}
.tar.gz artifact should have an associated .asc file, .sha512 and .sha256 file at the destination, so a total of 4 files.
Publish the source artifacts to Maven Central¶
- Setup
~/.m2/settings-security.xmlas per the guidelines. - Encrypt your Apache account password using above guidelines, and enter it in
~/.m2/settings.xmlin the following entryUpdate settings.xml<server> <id>apache.staging.https</id> <username>username</username> <password>encrypted_password</password> </server> - Run the following:
checkout and deploy
# checkout the relevant git tag git checkout release-ranger-${RANGER_VERSION} # eg: git checkout release-ranger-2.6.0 # deploy the release mvn clean deploy -Papache-release -DskipTests -DskipDocs - Go to https://repository.apache.org/ and log in using your Apache account.
- Click on
Staging Repositorieson the left-hand side. - Select the entry that starts with orgapacheranger and click on
close. - Verify via the URL that should appear after refresh that the artifacts look as expected.
- After approval, click on
release.
Publish build artifacts¶
# build ranger from the release branch
# create parent directory before build
RELEASE_DIR=/tmp/release-${RANGER_VERSION}
mkdir -p ${RELEASE_DIR} && cd ${RELEASE_DIR}
git clone https://github.com/apache/ranger.git && cd ranger
git checkout release-ranger-${RANGER_VERSION}
# after successful build, artifacts should be present in target
mvn clean package -DskipTests
# checkout svn repo
cd ~
svn co https://dist.apache.org/repos/dist/dev/ranger ranger-dev && cd ranger-dev
cd ${RANGER_VERSION}-rc${RANGER_RC}
cp ${RELEASE_DIR}/ranger/target/ranger-* .
# generate signature and checksums for all
for file in `find . -name "ranger-*"`
do
gpg --armor --output ${file}.asc --detach-sig ${file} && sha512sum ${file} > ${file}.sha512
done
svn add ranger-*
svn commit -m "upload build artifacts for ${RANGER_RELEASE} release"
# PMC Members may selectively move these artifacts to https://dist.apache.org/repos/dist/release/ranger/${RANGER_RELEASE} under respective directories
Add the final git tag and push it¶
git checkout "release-${RANGER_VERSION}-rc${RANGER_RC}"
git tag -a "release-ranger-${RANGER_VERSION}" -m "Apache Ranger $RANGER_VERSION"
git push origin "release-ranger-${RANGER_VERSION}"
Create a sub-page in Confluence¶
Add a sub-page under Release Folders for this release and add links for the following:
- Link to the release notes
- Link to the release artifacts
- Link to the release tag
Something like this.
Update the Ranger website¶
- Create a PR targeted for master branch to update the docs with the new release.
- Update the ranger website with the release artifacts (use master branch to do this!) and push the changes in the master branch.
Publish docker images for the release¶
Build the following docker images:
- ranger
- ranger-db
- ranger-solr
- ranger-zk
with the release checked out and upload them to DockerHub.
Instructions to build the images can be found here.
# tag the images
docker tag ranger:latest apache/ranger:${RANGER_VERSION}
docker tag ranger-db:latest apache/ranger-db:${RANGER_VERSION}
docker tag ranger-solr:latest apache/ranger-solr:${RANGER_VERSION}
docker tag ranger-zk:latest apache/ranger-zk:${RANGER_VERSION}
# do docker login
docker login
# push the images
docker push apache/ranger:${RANGER_VERSION}
docker push apache/ranger-db:${RANGER_VERSION}
docker push apache/ranger-solr:${RANGER_VERSION}
docker push apache/ranger-zk:${RANGER_VERSION}
Send an announcement mail¶
to dev@ranger.apache.org, user@ranger.apache.org, announce@apache.org. Something like this.
Subject: [ANNOUNCE] Apache Ranger ${RANGER_VERSION}
Note
Only PMC members can send the email to announce@apache.org
- Include the following in the email:
- Download link
- Release notes: example - Apache Ranger 2.6.0 - Release Notes
- When downloading binaries from the site, please remember to verify the downloads using signatures at: KEYS
Branching¶
Create a new release branch, for ex: ranger-2.7 from ranger-2.6. In this release branch, do the following and commit it.
NEXT_RANGER_VERSION=2.7.0-SNAPSHOT
mvn versions:set -DnewVersion=${NEXT_RANGER_VERSION}
git commit -am "RANGER-XXXX: Updated version from ${RANGER_VERSION} to ${NEXT_RANGER_VERSION}"
# Also, manually update versions in:
# - dev-support/ranger-docker/.env
# - docs/pom.xml
git push origin
NEXT_RANGER_VERSION="2.6.1-SNAPSHOT"
mvn versions:set -DnewVersion=${NEXT_RANGER_VERSION}
git commit -am "RANGER-XXXX: Updated version from ${RANGER_VERSION} to ${NEXT_RANGER_VERSION}"
# Also, manually update versions in:
# - dev-support/ranger-docker/.env
# - docs/pom.xml
git push origin
Other Tasks¶
- In Apache JIRA admin, mark the release as complete and create a next version for tracking the changes to the next (major|minor) version
- Update release data in https://reporter.apache.org/?ranger
Note
Only PMC members can do this step.
- If the release resolved any CVE
- update Vulnerabilities Found
- send notification to
security@apache.orgoss-security@lists.openwall.comdev@ranger.apache.orguser@ranger.apache.orgprivate@ranger.apache.org
- Follow https://www.apache.org/security/committers.html for publishing the CVE