Introduction
The Syncope team uses the
Apache Nexus repository for releasing SNAPSHOT and release artifacts.
More details on
releasing Maven artifacts
at The Apache Software Foundation.
Prerequisites
GIT
Install GIT; binary packages for various platforms are available.
GPG
Install/Configure GPG - The artifacts that are deployed to the ASF central repository need to be signed. To do this you will need to have a public and private keypair. There is a very good guide that will walk you though this.
Apache Maven
Install Apache Maven 3.0.3 or higher; we strongly encourage our committers to install the latest Apache Maven version available.
Maven allows you to encrypt your servers' passwords. We highly recommend that you follow this guide to set your master password and use it to encrypt your ASF password in the next section.
ASF settings
Using the instructions from the previous step encrypt your Apache Nexus repository password and add the
following servers to your
~/.m2/settings.xml
file. You may already have other servers in this file, if not just create
the file.
<?xml version="1.0" encoding="UTF-8"?> <settings> ... <servers> <server> <id>apache.snapshots.https</id> <username>{put your ASF username here}</username> <password>{put your encrypted password here}</password> </server> <server> <id>apache.releases.https</id> <username>{put your ASF username here}</username> <password>{put your encrypted password here}</password> </server> </servers> ... <profiles> <profile> <id>apache</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <mavenExecutorId>forked-path</mavenExecutorId> <gpg.keyname>your-gpg-keyname</gpg.keyname> <!-- optional --> <gpg.passphrase>your-gpg-passphrase</gpg.passphrase> </properties> </profile> </profiles> ... </settings>
Release steps
In the following, read
-
$VERSION
-
the version being released
-
$SYNCOPE_RELEASE_DIR
-
the working directory containing the GIT clone repository for the branch under release
-
$SYNCOPE_SITE_DIR
-
the working directory containing the GIT clone repository for the branch for site management
Prepare the source for release
- Clean up JIRA so the Fix Version in issues resolved since the last release includes this release version correctly. Also, transition any Resolved issues to the Closed state.
-
From
$SYNCOPE_RELEASE_DIR
, update theCHANGES
file, based on the text release reports from JIRA, then commit and push:git commit -m "Updating CHANGES for release" CHANGES git push
-
From
$SYNCOPE_SITE_DIR
, update thesrc/site/xdoc/downloads.xml
site page by changing the relevant URLs, then commit and push:git commit -m "Updating downloads site page for release" src/site/xdoc/downloads.xml git push
Prepare the release
Perform the steps below from $SYNCOPE_RELEASE_DIR
.
-
Set release version
mvn -T 1C -P all,docker,skipTests versions:set -DnewVersion=$VERSION mvn -T 1C -P all,docker,skipTests versions:commit
-
In the root
pom.xml
, replacewith<tag>HEAD</tag>
then set<tag>syncope-$VERSION</tag>
to the current date and time (for reproducible builds).<project.build.outputTimestamp>2021-07-16T09:00:00Z</project.build.outputTimestamp>
-
Build artifacts for release
mvn -T 1C -P apache-release,all,docker,skipTests -DbuildNumber=syncope-$VERSION
-
Create release tag
git commit -a -m "prepare release syncope-$VERSION" git tag syncope-$VERSION -a -m "copy for tag syncope-$VERSION" git push --tags
-
Set next version
mvn -T 1C -P all,docker,skipTests versions:set -DnewVersion=$VERSION+1-SNAPSHOT mvn -T 1C -P all,docker,skipTests versions:commit
-
In the root
pom.xml
, replacewith<tag>syncope-$VERSION</tag>
<tag>HEAD</tag>
-
Finally
git commit -a -m "prepare for next development iteration"
-
Verify signatures: On Un*x platforms the following command can be executed:
You'll need to look at the output to ensure it contains only good signatures:
for file in `find . -type f -iname '*.asc'` do gpg --verify ${file} done
gpg: Good signature from ... gpg: Signature made ...
-
Create a
release.properties
file in the root directory, with content:scm.url=scm:git:https://gitbox.apache.org/repos/asf/syncope.git scm.tag=syncope-$VERSION
-
Backup (zip or tar) your local release candidate directory in case you need to rollback the release after
the next step is performed.
cd .. tar -czf $VERSION.tar.gz $VERSION/ cd $VERSION
Perform the release
-
Staging artifacts
svn co https://dist.apache.org/repos/dist/dev/syncope syncope-dist-dev cd syncope-dist-dev mkdir $VERSION cd $VERSION cp $SYNCOPE_RELEASE_DIR/target/syncope-*-source-release.zip . cp $SYNCOPE_RELEASE_DIR/target/syncope-*-source-release.zip.asc . cp $SYNCOPE_RELEASE_DIR/standalone/target/syncope-standalone-*-distribution.zip . cp $SYNCOPE_RELEASE_DIR/standalone/target/syncope-standalone-*-distribution.zip.asc . # only for 2_1_X cp $SYNCOPE_RELEASE_DIR/installer/target/syncope-installer-*-uber.jar . cp $SYNCOPE_RELEASE_DIR/installer/target/syncope-installer-*-uber.jar.asc . cp $SYNCOPE_RELEASE_DIR/deb/core/target/apache-syncope-*.deb . cp $SYNCOPE_RELEASE_DIR/deb/core/target/apache-syncope-*.deb.asc . cp $SYNCOPE_RELEASE_DIR/deb/console/target/apache-syncope-console-*.deb . cp $SYNCOPE_RELEASE_DIR/deb/console/target/apache-syncope-console-*.deb.asc . cp $SYNCOPE_RELEASE_DIR/deb/enduser/target/apache-syncope-enduser-*.deb . cp $SYNCOPE_RELEASE_DIR/deb/enduser/target/apache-syncope-enduser-*.deb.asc . cp $SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip . cp $SYNCOPE_RELEASE_DIR/client/cli/target/syncope-client-cli-*.zip.asc . cp $SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip . cp $SYNCOPE_RELEASE_DIR/ide/eclipse/releng/org.apache.syncope.ide.eclipse.site/target/org.apache.syncope.ide.eclipse.site-*.zip.asc . cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm . cp $SYNCOPE_RELEASE_DIR/ide/netbeans/target/syncope-ide-netbeans-*.nbm.asc . cp $SYNCOPE_RELEASE_DIR/core/upgrade/target/syncope-core-upgrade-*.zip . cp $SYNCOPE_RELEASE_DIR/core/upgrade/target/syncope-core-upgrade-*.zip.asc . for file in `find . -type f -iname '*.asc'` do gpg --verify ${file} done for file in `find . -name '*.deb' -or -name '*.jar' -or -name '*.zip' -or -name '*.nbm'`; do openssl sha512 $file | sed 's/.*= //' > $file.sha512 done cd .. svn add $VERSION svn commit -m "Staging artifacts for $VERSION vote"
-
Staging site
unzip $SYNCOPE_RELEASE_DIR/target/syncope-$VERSION-source-release.zip cd syncope-$VERSION mvn -PskipTests,all cd standalone/target/standalone/apache-tomcat-* && chmod 755 bin/*.sh && ./bin/startup.sh curl -o /tmp/openapi.json http://localhost:9080/syncope/rest/openapi.json ./bin/shutdown.sh && cd - cd syncope-$VERSION svn checkout https://svn.apache.org/repos/asf/syncope/site/ site cd $SYNCOPE_SITE_DIR mvn -P site -Dsite.deploymentBaseUrl=file:///<absolute path to/site>/$VERSION cd <absolute path to/site>/$VERSION # if releasing from 2_1_X mkdir -p rest/2.1 mv /tmp/openapi.json rest/2.1/ cp -r $SYNCOPE_RELEASE_DIR/ext/swagger-ui/target/swagger-ui/META-INF/resources/webjars/swagger-ui/*/* rest/2.1/ sed 's/..\/rest\/openapi.json/openapi.json/' $SYNCOPE_RELEASE_DIR/ext/swagger-ui/target/classes/META-INF/resources/swagger/index.html > rest/2.1/index.html mkdir -p docs/2.1 cp $SYNCOPE_SITE_DIR/target/generated-docs/getting-started.* docs/2.1/ cp $SYNCOPE_SITE_DIR/target/generated-docs/reference-guide.* docs/2.1/ cp -r $SYNCOPE_SITE_DIR/target/generated-docs/images docs/2.1/ cd docs ln -s 3.0/reference-guide.html . ln -s 3.0/getting-started.html . ln -s 3.0/images/ . cd ../.. svn add $VERSION svn copy apidocs/3.0 $VERSION/apidocs/ svn copy rest/3.0 $VERSION/rest/ svn copy docs/3.0 $VERSION/docs/ # else if releasing from 3_0_X mkdir -p rest/3.0 mv /tmp/openapi.json rest/3.0/ cp -r $SYNCOPE_RELEASE_DIR/core/starter/target/swagger-ui/META-INF/resources/webjars/swagger-ui/*/* rest/3.0/ sed 's/rest\/openapi.json/openapi.json/' $SYNCOPE_RELEASE_DIR/core/starter/target/classes/META-INF/resources/index.html > rest/3.0/index.html mkdir -p docs/3.0 cp $SYNCOPE_SITE_DIR/target/generated-docs/getting-started.* docs/3.0/ cp $SYNCOPE_SITE_DIR/target/generated-docs/reference-guide.* docs/3.0/ cp -r $SYNCOPE_SITE_DIR/target/generated-docs/images docs/3.0/ cd docs ln -s 3.0/reference-guide.html . ln -s 3.0/getting-started.html . ln -s 3.0/images/ . cd ../.. svn add $VERSION svn copy apidocs/2.1 $VERSION/apidocs/ svn copy rest/2.1 $VERSION/rest/ svn copy docs/2.1 $VERSION/docs/ svn commit -m "Staging site for release"
-
From
$SYNCOPE_RELEASE_DIR
execute (this step will create a maven staging repository):mvn -P apache-release release:perform -Darguments="-P all,docker,skipTests -DbuildNumber=syncope-$VERSION" [-Duser.name=<your_apache_uid>]
If your local OS userid doesn't match your Apache userid, then you'll have to also override the value provided by the OS to Maven for the site-deploy step to work. This is known to work for Linux, but not for Mac and unknown for Windows.
- Verify the staged artifacts in the Nexus repository:
- https://repository.apache.org/index.html
- Enterprise --> Staging
- Staging tab --> Name column --> org.apache.syncope
- Navigate through the artifact tree and make sure that all binary,
javadoc
,sources
, andtests
jars, as well aspoms
s, ... have.asc
(GPG signature) and files
Thesyncope-$VERSION-source-release.zip
should likewise have signature and checksum files.
- Close the Nexus staging repo:
- https://repository.apache.org/index.html
- Enterprise --> Staging
- Staging tab --> Name column --> org.apache.syncope
- Right click on the open
org.apache.syncope-XXX
staging repo and select Close.
- Verify the staged artifacts in the Nexus repository:
Vote the release
-
Create a
VOTE
email thread on syncope-dev to record votes as replies, e.g.:To: dev@syncope.apache.org Subject: [VOTE] Apache Syncope $VERSION I've created a $VERSION release, with the following artifacts up for a vote: GIT source tag (XXXXXXXXXXXXXXXX): https://gitbox.apache.org/repos/asf?p=syncope.git;a=tag;h=XXXXXXXXXXXXXXXX List of changes: https://gitbox.apache.org/repos/asf?p=syncope.git;a=blob_plain;f=CHANGES;h=XXXXXXXXXXXXXXXX;hb=YYYYYYYYYYYYYYYYYYYYY Staging artifacts: https://dist.apache.org/repos/dist/dev/syncope/$VERSION Maven staging repo: https://repository.apache.org/content/repositories/orgapachesyncope-ZZZZ/ Staging site: http://syncope.apache.org/$VERSION/ PGP release keys (signed using ABCDEFG): https://downloads.apache.org/syncope/KEYS Vote will be open for 72 hours. [ ] +1 approve [ ] +0 no opinion [ ] -1 disapprove (and reason why)
- Perform a review of the release and cast your vote; more details on Apache releases.
- A -1 vote does not necessarily mean that the vote must be redone, however it is usually a good idea to rollback the release if a -1 vote is received (see "Recovering from a vetoed release").
- After the vote has been open for at least 72 hours, has at least three
+1 PMC votes and no -1 votes, then post the results to the vote thread:
To: dev@syncope.apache.org Subject: [RESULT] [VOTE] Apache Syncope $VERSION Hi all, after 72 hours, the vote for Syncope $VERSION [1] *passes* with ... PMC + ... non-PMC votes. +1 (PMC / binding) * ... +1 (non binding) * ... (or <none>) 0 * ... (or <none>) -1 * ... (or <none>) Thanks to everyone participating. I will now copy this release to Syncope' dist directory and promote the artifacts to the central Maven repository. Best regards. [1] <link to syncope-dev ML archives for the related [VOTE] thread>
Finalize the release
- Promote the staged Nexus artifacts:
- https://repository.apache.org/index.html
- Enterprise --> Staging
- Staging tab --> Name column --> org.apache.syncope
- Right click on the closed
org.apache.syncope-XXX
staging repo and select Release.
-
Add the distribution artifacts to the distribution area
svn mv -m "Moving the voted release artifacts to dist/release" \ https://dist.apache.org/repos/dist/dev/syncope/$VERSION https://dist.apache.org/repos/dist/release/syncope/ svn co https://dist.apache.org/repos/dist/release/syncope syncope-dist-release cd syncope-dist-release svn rm <any older release artifact (if present)> svn commit -m "Cleaning up older releases"
- Add appropriate release notes to Releases wiki page based on the HTML release reports from JIRA
- Update the JIRA versions page to mark the version as Released, and set the date to the date that the release was approved. You may also need to make a new release entry for the next release.
-
Promote the staging site
svn co https://svn.apache.org/repos/asf/syncope/site/ cd site svn rm *.html apidocs rest css images img js fonts docs svn mv $VERSION/* . svn rm $VERSION svn commit -m "Promoting the staging site"
- Deploy the updated Docker images to DockerHub by adjusting the GIT tag name then running the dedicated Jenkins job.
Announce the release
After the mirrors have had time to update (24 hours to be on the safe side), make an announcement about the release on the user, dev, and announce@apache.org lists as per the Apache Announcement Mailing Lists pageRecovering from a vetoed release
-
Reply to the initial vote email prepending
[CANCELED]
to the original subject. -
Rollback the version upgrades in trunk by either:
-
restore the $VERSION.tar.gz and run
mvn -P apache-release release:rollback
- or manually revert the version numbers in the branch under release to the prior version and commit
-
restore the $VERSION.tar.gz and run
-
Delete the GIT tag created by the
release:perform
step:git tag -d $VERSION && git push origin
-
Delete the staging site:
svn remove https://svn.apache.org/repos/asf/syncope/site/$VERSION -m "Deleting staging site from rolled back release"
-
Drop the Nexus staging repo:
- https://repository.apache.org/index.html
- Enterprise --> Staging
- Staging tab --> Name column --> org.apache.syncope
- Right click on the closed
org.apache.syncope-XXX
staging repo and select Drop.
- Make the required updates that caused the vote to be canceled.
- Spin another release attempt!