Release Guide¶
This guide details the process of performing a GeoTools release.
Before you start¶
Notify developer list¶
It is good practice to notify the GeoTools developer list of the intention to make the release a few days in advance, even though the release date has been agreed upon before hand.
Prerequisites¶
The following are necessary to perform a GeoTools release:
Commit access to the GeoTools Git repository
Build access to Jenkins
Edit access to the GeoTools Blog
Administration rights to GeoTools JIRA
Release/file management privileges in SourceForge
Versions and revisions¶
When performing a release we don’t require a “code freeze” in which no developers can commit to the repository. Instead we release from a revision that is known to pass all tests, including unit/integration tests on the GeoServer side. These instructions are valid in case you are making a release in combination with GeoServer. If you are making a stand alone release, it’s up to you to choose the proper GIT revision number for the GeoTools released to be picked from.
To obtain the GeoServer, GWC and GeoTools revisions that have passed testing, navigate to geoserver.org/download > Development, find the correct series (e.g. 2.17.x) and download a “binary” nightly build. From the download check the src/target/VERSION.txt
file. For example:
version = 2.17-SNAPSHOT
git revision = 1ee183d9af205080f1543dc94616bbe3b3e4f890
git branch = origin/2.17.x
build date = 19-Jul-2020 04:41
geotools version = 23-SNAPSHOT
geotools revision = 3bde6940610d228e01aec9de7c222823a2638664
geowebcache version = 1.17-SNAPSHOT
geowebcache revision = 27eec3fb31b8b4064ce8cc0894fa84d0ff97be61/27eec
hudson build = -1
Since we don’t make any release from main, ensure you select the right nightly download page to obtain the right revision.
To obtain information about the current environment:
ant -f build/build.xml info
[echo] version: '27-SNAPSHOT'
[echo] date: 'September 10 2021'
[echo] series: 'latest' (used for url references)
[echo]
[echo] The `release` target requires next release version:
[echo] ant release -Drelease='27.0'
[echo]
[echo] The `latest` target requires next snapshot version:
[echo] ant latest -Drelease='28-SNAPSHOT'
Release in JIRA¶
Navigate to the GeoTools project page in JIRA.
Add a new version for the next version to be released after the current release. For example, if you are releasing GeoTools 27.1, create version 27.2. Enter the current date as the Start Date and use the date from the release schedule for the Release Date.
Click in the Actions column for the version you are releasing and select Release. Update the Release Date to the current date when prompted. If there are still unsolved issues remaining in this release, you will be prompted to move them to an unreleased version. If so, choose the new version you created in step 2 above.
If you are cutting the first RC of a series, create the stable branch¶
Note
The RC is the first release of a series, released prior to the .0 release.
When creating the first release candidate of a series, there are some extra steps to create the new stable branch and update the version on main.
Checkout the main branch and make sure it is up to date and that there are no changes in your local workspace:
git checkout main git pull git status
Create the new stable branch and push it to GitHub; for example, if main is
27-SNAPSHOT
and the remote for the official GeoTools is calledupstream
:git checkout -b 27.x git push --set-upstream upstream 27.x
GitHub branch protection uses wild cards to protect the new branch (so no further configuration is required).
Checkout the main branch and use branch.xml to update the version in all
pom.xml
files and a few miscellaneous files; for example, if changing main from27-SNAPSHOT
to28-SNAPSHOT
:git checkout main ant -f build/build.xml latest -Drelease=28-SNAPSHOT
Edit the Dependabot configuration file, .github/dependabot.yml, increasing the 2 numbered target branches by one (eg. 27.x -> 28.x and 26.x -> 27.x) (leaving main)
- package-ecosystem: 'github-actions' directory: '/' schedule: interval: 'monthly' target-branch: '27.x' open-pull-requests-limit: 10
There is no need to edit the file in other branches, as the configuration is inherited from the main branch.
Commit the changes and push to the main branch on GitHub:
git commit -am "Update version to 28-SNAPSHOT" git push geotools main
Create the new release candidate version in JIRA for issues on main; for example, if main branch is now
28-SNAPSHOT
, create a Jira version28-RC1
for the first release of the28.x
seriesCreate the new
GeoTools $VER Releases
(e.g.GeoTools 27 Releases
) folder in SourceForgeUpdate the jobs on build.geoserver.org:
Disable the previous maintenance jobs, and remove them from the geotools view.
Even if you wish to continue build prior branches please disable the documentation builds.
For the new stable branch create new jobs, duplicate from the two existing
stable
jobs (geotools-27.x and geotools-27.x-docs), editing branch specifier to the new branch (e.g. 27.x -> 28.x)
Announce on the developer mailing list that the new stable branch has been created.
This is the time to update the README.md, README.html and documentation links
For the new stable (old main) branch, (and assuming the remote for the official GeoTools is called
upstream
):git checkout 28.x git pull ant -f build/build.xml stable git add . git commit -m "Change 28.x to stable branch" git push upstream 28.x
For the new maintenance (old stable) branch:
git checkout 27.x git pull ant -f build/build.xml maintenance git add . git commit -m "Change 27.x to maintenance branch" git push upstream 27.x
For the old maintenance (now archive) branch:
git checkout 26.x git pull ant -f build/build.xml archive git add . git commit -m "Change 26.x to archive branch" git push upstream 26.x
This change will update the pom.xml series used to determine where documentation from the branch is published (or not published, if we ever have to create an emergency release for archived branches - so that the correct maintenance docs are not overwritten.)
Build the Release¶
Run the geotools-release job in Jenkins. The job takes the following parameters:
BRANCH
The branch to release from, “8.x”, “9.x”, etc… This must be a stable branch. Releases are not performed from main.
REV
The Git revision number to release from. eg, “24ae10fe662c….”. If left blank the latest revision (i.e. HEAD) on the
BRANCH
being released is used.
VERSION
The version/name of the release to build, “8.5”, “9.1”, etc…
GIT_USER
The Git username to use for the release.
GIT_EMAIL
The Git email to use for the release.
This job will checkout the specified branch/revision and build the GeoTools release artifacts. When successfully complete all release artifacts will be uploaded to the following location:
https://build.geoserver.org/view/release/job/geotools-release/<JOB-NO>
There is also a link at the top of the completed job page.
Test the Artifacts¶
Download and try out some of the artifacts from the above location and do a quick smoke test that there are no issues. Engage other developers to help test on the developer list.
It is important to test the artifacts using the minimum supported version of Java (currently Java 11 in September 2023).
Source download: The Jenkins job will perform a build of the source artifacts on an empty Maven repository to make sure any random user out there can do the same. If you want you can still manually test the artifacts by:
Unpacking the sources
Temporarily moving the
$HOME/.m2/repository
to a different location, so that Maven will be forced to build from an empty repo.Do a full build using
mvn install -Dall -T1C
On a successful build, delete
$HOME/.m2/repository
and restore the old maven repository backed up at the beginning
If you don’t want to fiddle with your main repo just use
mvn -Dmaven.repo.local=/tmp/m2 install -Dall -T1C
where it points to any empty directory.
Userguide: Open and check the tutorial -> quickstart -> eclipse guide, search for geotools.version, which should reference the correct release tag and snapshot tag.
Binary download:
Checking the README.html links go to the correct stable or maintenance user guide
Check library loads:
java --version java -cp "lib/*" org.geotools.util.factory.GeoTools
Run quickstart:
mkdir bin javac -cp "lib/*" -d bin src/org/geotools/tutorial/quickstart/Quickstart.java java -cp "lib/*:bin" org.geotools.tutorial.quickstart.Quickstart
Note, for testing on Windows, replace the
:
classpath separator in the last line above with;
i.e."lib/*;bin"
Publish the Release¶
Run the geotools-release-publish in Jenkins. The job takes the following parameters:
VERSION
The version being released. The same value specified for
VERSION
when running thegeotools-release
job.
BRANCH
The branch being released from. The same value specified for
BRANCH
when running thegeotools-release
job.
GIT_USER
The Git username to use for the release.
GIT_EMAIL
The Git email to use for the release.
This job will rsync all the artifacts located at:
https://build.geoserver.org/geotools/release/<RELEASE>
to the SourceForge FRS server, and also deploy the artifacts to the public geotools maven repository.
Navigate to Sourceforge and verify that the artifacts have been uploaded properly.
If this is the latest stable release, make its
-bin.zip
the default download for all platforms (use the “i” button).
Release notes¶
Publish release notes to github tag:
Select the correct release from JIRA Releases page.
From the release page, locate the Release notes button at the top of the page to open the release notes edit
Generate release notes as markdown:
Select format Markdown
Layout: Issue key with link
Issue types: All
Change the heading from Release notes - GeoTools - Version 26.1 to Release notes, and apply the change with Done.
Use Copy to clipboard to obtain the markdown, similar to the following:
# Release notes ### Bug [GEOT-7001](https://osgeo-org.atlassian.net/browse/GEOT-7001) XmlComplexFeatureParser gives wrong name for ComplexAttribute ### Improvement [GEOT-7020](https://osgeo-org.atlassian.net/browse/GEOT-7020) Add ProjectionHandler for orthographic [GEOT-7007](https://osgeo-org.atlassian.net/browse/GEOT-7007) Shapefile set files search may take very long on big shapefile directories
Navigate to github tags https://github.com/geotools/geotools/tags
Locate the new tag from the list, and use
Release title: GeoTools 26.1
Write: Paste the markdown from Jira release notes editor
Set as the latest release: only tick this for stable releases, leave unticked for maintenance and support releases
Use Publish release button to publish the release notes.
Announce the Release¶
Announce on GeoTools Blog¶
Navigate to Blogger and sign in: https://www.blogger.com/
Select the GeoTools blog from the list (if not listed, get someone to add you)
Create a new blog post announcing your release; copy and paste a previous blog post preserving series information unless this is the first of a new series
You will need to correct the following information:
Update the Sourceforge links above to reflect the release
Update the Release Notes with link to GitHub release URL: https://github.com/geotools/geotools/releases/tag/26.1
Paste the Release Notes hyperlinks from Jira, after using a tool like https://www.htmlwasher.com/ to clean up the HTML.
For a new stable series, be sure to thank those involved with the release (testing, completed proposals, docs, and so on)
The public entry point will be here: https://geotoolsnews.blogspot.com/
Tell the World¶
After the list has had a chance to try things out - make an announcement.
Cut and paste from the blog post to the following:
geotools-devel@lists.sourceforge.net
Subject: 26.1 Released
geotools-gt2-users@lists.sourceforge.net
Let the user list know:
Subject: GeoTools 26.1 Released
Open Source Geospatial Foundation
Only to be used for “significant” releases (Major release only, not for milestone or point releases)
Post a message to the osgeo news email list (you are subscribed right?)
Subject: GeoTools 26.1 Released