Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 5.08 KB

RELEASING.md

File metadata and controls

43 lines (36 loc) · 5.08 KB

Releasing

  1. If this is a new minor (not patch) release, rename the 'akka-http-x.x-stable' reporting project in WhiteSource accordingly
  2. Communicate that a release is about to be released in Gitter Akka Dev Channel, so that no new Pull Requests are merged
  3. Add a release notes entry in docs/src/main/paradox/scala/http/release-notes.md. As a helper run scripts/commits-for-release-notes.sh <last-version-tag> which will output a list of commits grouped by submodule, and the closed issues for this milestone.
  4. Create a news item on https://github.com/akka/akka.github.com, using the milestones and scripts/authors.scala previousVersion thisVersion
  5. Once the release notes have been merged, create a new release with the next tag version (e.g. v13.3.7), title and release description linking to announcement, release notes and milestone.
  6. Travis CI will start a CI build for the new tag and publish artifacts to Bintray.
  7. Checkout the newly created tag and run sbt -Dakka.genjavadoc.enabled=true "++2.12.6 deployRsync akkarepo@gustav.akka.io" to deploy API and reference documentation.
  8. Go to https://bintray.com/akka/maven/com.typesafe.akka:akka-http_2.11 and select the just released version
  9. Go to the Maven Central tab and sync with Sonatype
    • (Optional, should happen automatically if selected in Bintray) Log in to Sonatype to Close the staging repository
    • Run a test against the staging repository to make sure the release went well, for example by using https://github.com/akka/akka-http-scala-seed.g8 and adding the sonatype staging repo with resolvers += "Staging Repo" at "https://oss.sonatype.org/content/repositories/comtypesafe-xxx"
    • Release the staging repository to Maven Central.
  10. Create a new milestone for the next version at https://github.com/akka/akka-http/milestones , move all unclosed issues there and close the version you're releasing
  11. Add the released version to project/MiMa.scala to the mimaPreviousArtifacts key.
  12. Send a release notification to akka-user and tweet using the akka account (or ask someone to) about the new release
  13. Log into gustav.akka.io as akkarepo and update the current links on repo.akka.io to point to the latest version with ln -nsf <latestversion> www/docs/akka-http/current; ln -nsf <latestversion> www/api/akka-http/current; ln -nsf <latestversion> www/japi/akka-http/current.

Follow up steps

  1. Update Akka HTTP dependency on akka.io website: https://github.com/akka/akka.github.com/blob/master/_config.yml
  2. Update Akka HTTP dependency in akka-http seed templates (scala & java)
  3. Update Akka HTTP dependency in akka-management
  4. Update Akka HTTP reference in reactive-platform-docs

Under the Travis hood

Here is what happens in detail when Travis CI is building a git tagged commit:

  1. According to the .travis.yml file deploy section it first runs a +publish task:
  2. Because of the + a the start of the task, all of these actions are repeated for every scala version defined in crossScalaVersions.
  3. Because of the bintray-sbt plugin, publish builds and uploads artifacts to Bintray.
  4. By default all projects have BintrayPlugin enabled. Projects that have disablePlugins(BintrayPlugin) are not built.
  5. Artifacts are uploaded to https://bintray.com/$bintrayOrganization/$bintrayRepository/$bintrayPackage which in this case is https://bintray.com/akka/maven/akka-http.
  6. Credentials for the publish task are read from the BINTRAY_USER and BINTRAY_PASS environment variables which are stored encrypted on the .travis.yml file. The user under these credentials must be part of the Akka team on Bintray.

Pushing to Maven Central

This could be done automatically via .travis.yml in deploy by adding section is akka-http/bintraySyncMavenCentral, however we prefer to run this step manually after confirming a release is valid.

  1. This task syncs all of the artifacts under the Akka Http package in Bintray to Maven Central. For the sync to be successful, the package first needs to be added to JCenter repository. This must be done through Bintray Web interface, and only once when the package is created.
  2. This task is only run for one project, because all Akka Http projects are published to a single package on Bintray.
  3. Credentials for the bintraySyncMavenCentral task are read from the SONATYPE_USER and SONATYPE_PASS environment variables which are stored encrypted on the .travis.yml file. The user under these credentials must have the rights to publish artifacts to the Maven Central under the com.typesafe.akka organization name.