Skip to content

Release Process

Filip Hanik edited this page Oct 1, 2019 · 27 revisions

For Versions 5+

Perform a Milestone, RC or GA Release

NOTE: This release process uses the spring-build-conventions gradle plug-in.

Process Overview

  1. Update dependencies
  2. Update release version
  3. Build Locally
  4. Push the release commit
  5. Announce the release on Slack
  6. Tag the release
  7. Update to next development version
  8. Update version on project page
  9. Close / Create Milestone
  10. Announce the release on other channels

Detailed Steps

1. Update dependencies

  • Dependencies are declared in gradle/dependency-management.gradle
  • Update Spring Framework and Spring Data at a minimum
  • Then find dependencies that need updating by running the update-dependencies.sh script:
./scripts/update-dependencies.sh

Prerequisites: The build directory has to exist to store the file build/updates.txt. This directory gets created when a new build is run, but is not present on a fresh git clone.

2. Update release version

  • Update the version number in gradle.properties for the release, for example, 5.1.0.M1, 5.1.0.RC1, 5.1.0.RELEASE

3. Build Locally

  • Run the build locally with:
./gradlew check

4. Push the release commit

  • Push the release commit and Jenkins will build and deploy the artifacts
  • If you are pushing to Maven Central, then you can get notified when it's uploaded by running the following:
./scripts/release/wait-for-done.sh 5.2.0.RELEASE

5. Announce the release on Slack

  • Announce via Slack on #spring-security, including the keyword spring-security-release in the message. Something like:
spring-security-release 5.2.0.RC1 is out!

6. Tag the release

  • Tag the release and then push the tag
git tag 5.2.0.RC1
git push origin 5.2.0.RC1

7. Update to next development version

  • Update release version to next BUILD-SNAPSHOT version and then push

8. Update version on project page

9. Close / Create Milestone

  • In GitHub Milestones, create a new milestone for the next release version and move any open issues from the existing milestone you just released to the new milestone and then close the milestone for the release.
  • Update the Github Release notes with auto generated content

10. Announce the release on other channels

For Spring Security 4.2.x

Latest Build

  • Click the arrow on the left hand side below the details

Left-hand Arrow

  • Click on Default Job

Default Job Link

  • Click on Artifactory Release & Promotion

Artifactory Release & Promotion Link

  • Fill out the form with the correct values. Use the screenshot below for an example

Staging Release Configuration

  • Click Build and Release to Artifactory
  • A build will start for the release. When it completes (will have "Manual run by ..." next to it) click on the build number

Build Completed

  • Click on Artifactory Release & Promotion again
  • Fill out form for release

Release form

  • Click Update. Wait for it to complete.

Release Promotion completed

  • Click on Artifactory Build Info
  • Invoke the the scripts in scripts/release/ to release with necessary arguments. Get all the secrets from LastPass
$ ./scripts/release/push-to-spring-distributions.sh $BUILD_NUMBER_FROM_BAMBOO
$ ./scripts/release/sync-to-central.sh $RELEASE_VERSION $BINTRAY_API_KEY $SONATYPE_USER_TOKEN $SONATYPE_TOKEN_PWD
$ ./scripts/release/wait-for-done.sh $RELEASE_VERSION

You will get a notification when the release is done.

NOTE: wait-for-done only works if you have spd-say installed.