This document outlines how to create a new release of RDF4J.
The script scripts/release.sh
is a shell-script that (almost) fully automates the handling of releases. It creates branches, sets correct version numbers, builds and uploads artifacts, etc. It gives you several prompts along the way to guide you through the process.
The release script should always be run from the main
branch.
If for whatever reason, you wish to manually create a release instead, the following sections detail the manual process.
Patch releases are created by branching the main
branch into a release branch, and
when complete, tagging this release branch with the version number before
release deployment. Once release deployment is complete, the release branch
is deleted.
IMPORTANT: the main
branch is always in a release ready state (build
passes, no new features, docs are up to date), so a patch release from the
main
branch can be done in an ad-hoc fashion, without the need for a formal
review.
Plans to do a patch release are announced by the project lead on the
rdf4j-dev@eclipse.org mailinglist,
usually about a week in advance, with an open invitation for contributors to
propose additional fixes to include, which are done as Pull Requests to the
main
branch.
Any fixes to be included in a patch release must be merged into the main
branch first. A patch release branch should differ from the main
branch,
at the time of release, only by the version number - a patch release branch has
a patch number version, while the main
branch has a SNAPSHOT version. To
create a patch release branch, follow these steps:
Check out the main
branch.
E.g. if we’re preparing a release 2.2.1, the main
branch will have the version 2.2.1-SNAPSHOT:
git checkout main
Create a new release branch, named releases/<version>
:
git checkout -b releases/2.2.1
Fix maven version numbers in the release branch. We need to set the project version to 2.2.1
by using:
mvn versions:set
This will ask for the new version number. Enter 2.2.1
to indicate that this is the 2.2.1 release.
After this is done, execute
mvn versions:commit
which will remove backup files.
Finally, commit the version number changes:
git commit -s -a -m "release 2.2.1"
Tag the version and push tag and branch upstream:
git tag 2.2.1
git push -u origin releases/2.2.1
git push origin 2.2.1
Prepare the release branch for the next iteration:
mvn versions:set
and enter 2.2.2-SNAPSHOT
as the new snapshot number
mvn versions:commit
git commit -s -a -m "next development iteration"
git push
Finally, create a pull request to merge the release branch back into main. Like branch sync PRs, this PR will be merged by means of a merge-commit, rather than the default ‘squash and merge’, so as not to lose the version-tagged commit.
Hotfix release are patch releases that target a prior minor version (not the latest stable release). These are needed when a critical bug was found in a production deployment using an earlier version.
A hotfix release use a preceding release as its basis. This means we need to create a release branch not by simply branching from the current main
branch, but by branching from a specific release tag. To create a patch release branch, follow these steps:
Check out the tag of the previous release. E.g. if we’re preparing a release 2.1.6, the preceding release is 2.1.5, so we do:
git checkout 2.1.5
Create a new release branch, named releases/<version>
:
git branch releases/2.1.6
Fix maven version numbers in the release branch. We need to set the project version to 2.1.6-SNAPSHOT
by using:
mvn versions:set
This will ask for the new version number. Enter 2.1.6-SNAPSHOT
to indicate that this is the development branch for the upcoming 2.1.6 release. After this is done, execute
mvn versions:commit
which will remove backup files. Finally, commit the version number changes:
git commit -s -a -m "release branch for 2.1.6"
Push the newly created branch, as follows:
git push origin releases/2.1.6
Bug fixes are typically added to a hotfix release branch by cherry-picking the relevant commits from the main
branch.
This works as follows:
Check out the patch release branch.
In the git commit history, identify the commit for the fix you wish to add to the release. You can usually easily find this by looking at git commit message, which should start with the issue nmber.
Add this fix to the release branch by executing the following command:
git cherry-pick <commit-SHA>
Once all fixes are applied to the release branch, and the build is stable (NB verify by executing mvn clean verify
), we can tag and finalize the release:
Set the maven pom version numbers. We need to set the project version to from 2.1.6-SNAPSHOT
to 2.1.6
by using:
mvn versions:set
This will ask for the new version number. Enter 2.1.6
to indicate that this is the actual code for 2.1.6 release. After this is done, execute
mvn versions:commit
which will remove backup files. Finally, commit the changes and push:
git commit -s -a -m "patch release 2.1.6"
git push
Tag the version and push the tag upstream:
git tag 2.1.6
git push origin 2.1.6
Once the release is complete, the hotfix branch can to be deleted. Although this can of course be done from the command line, it is cumbersome, and we recommend using a decent Git client (like SourceTree) that can do this for you.
Note that, although the branch is deleted, the release tag is still in place, for future use of further hotfix releases.
RDF4J has two separate distributions:
RDF4J has four separate announcements:
We use the Eclipse RDF4J Jenkins CI instance to build and deploy new releases to the Central Repository, as well as building and deploying the SDK archive and the onejar to the Eclipse download mirrors.
To do this, log in to Jenkins, and start the job named rdf4j-deploy-release-sdk
.
The job will ask for the github release tag as an input parameters, e.g. ‘2.2.1’. It will automatically check out the release tag, build the project, and upload the SDK zip file and the onejar to the Eclipse download mirrors.
After successful completion, it will kick off a second job:
rdf4j-deploy-release-ossrh
. This job will build all Maven artifacts and
upload them to OSS Sonatype. After successful
upload, it will also automatically invoke synchronization with the Central
Repository. Note that after successful completion, the artifacts may not be
available on the Central Repository for several hours.
At least once a year, the Eclipse Foundation requires a formal release review. We typically try to use a major or minor release for such a review.
We plan a reviewed release about 8 weeks in advance. At this stage, the final feature set is not etched in stone but a number of priority features/improvements is identified (via discussion on the mailinglist and/or via issue tracker comments and PRs) and scheduled. A first draft of a release plan is created by the project lead on the Eclipse RDF4J project site, and the necessary milestones are created in the issue tracker.
Eclipse release review are announced in regular cycles, and always complete on the first or third Wednesday of each month. For this reason, we schedule our reviewed releases to happen on a first or third Thursday.
A release review runs for a week. Although mostly a formality, it does need some careful preparation and planning. It needs to be formally applied for, and this application in turn requires that several pieces of documentation are in order:
Typical review documentation can be a simple reiteration of the most important new features, a link to the issue tracker/release notes and documentation, and a remark about compatibility (if applicable). Once the review documentation is up, a mail needs to be sent to technology-pmc@eclipse.org
to ask for approval. Here’s an example of such a message, which was to get approval for the RDF4J 2.2 release:
Dear PMC members,
Can I get your approval for RDF4J release 2.2, scheduled for February 2.
Release review info: https://projects.eclipse.org/projects/technology.rdf4j/reviews/2.2-release-review
Issue tracking the release: https://bugs.eclipse.org/bugs/show_bug.cgi?id=510577
Kind regards,
Jeen Broekstra
When IP log approval and review approval have been given, the review can be scheduled. To do this, emo@eclipse.org needs to be notified. This can happen through the eclipse project governance page (accessible through the project site), which will show a link at the top of the page for the planned release.
For more detailed information about the release review process, see the Eclipse Project Handbook.
Prior to a minor release, the develop
branch is merged into the main
branch
(along with the develop
branch’s version). This will increment the main
version to the latest major/minor SNAPSHOT version.
IMPORTANT: It is important that only features and fixes that have already been scheduled
for release (via PR milestone labels) be merged into the develop
branch, so
that there is no confusion as to what will be included in the next minor release.
Once a minor release is published the develop
minor version should be incremented to the next SNAPSHOT version and any approved features that are scheduled for this next minor
version should be merged into develop
branch.
The docker images on hub.docker.com are stored as part of the Eclipse organizational account.
Since this account is managed separately by the Eclipse Foundation, only a limited number of committers will be granted access by the EMO.
Build the SDK ZIP file and docker image using the docker/build.sh
script.
Both the Workbench and the server will be part of the same image.
Log into hub.docker.com:
docker login --username=yourhubusername
Push the image:
docker push eclipse/rdf4j-workbench:VERSION_TAG
VERSION_TAG
is the version (tag) you want to push, e.g. 4.3.0
Note that hub.docker.com does not update the latest
tag automatically,
the newly created image has also to be tagged latest
and pushed to hub.docker.com.
Since the base image being used is available for multiple architectures, it is quite easy to build a multi-platform image. Currently the Workbench/Server image is made available for 64-bit AMD/Intel and ARM v8.
Check if Docker Buildx is installed on your system.
Build the SDK ZIP file using the docker/build.sh
script mentioned above,
or download the SDK from https://rdf4j.org/download/ and store the ZIP as ignore/rdf4j.zip
.
Log into hub.docker.com:
docker login --username=yourhubusername
Build and push the image (note the .
at the end of the command):
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag eclipse/rdf4j-workbench:VERSION_TAG .
VERSION_TAG
is the version (tag) you want to push, e.g. 4.3.0
Table of Contents