When releasing a new minor version of the driver (i.e. X.Y.0
), create a new
maintenance branch named vX.Y
from the default branch. Then, update the
version information in the default branch to the next minor release:
$ ./bin/update-release-version.php to-next-minor-dev
Commit and push the resulting changes:
$ git commit -m "Master is now X.Y-dev" phongo_version.h
$ git push mongodb
Before starting the release process, make sure that all open merge-up pull requests containing changes from the release branch have been merged. Handling the merge conflicts resulting from the version updates will be much more difficult if other changes need merging.
All issues associated with the release version should be in the "Closed" state and have a resolution of "Fixed". Issues with other resolutions (e.g. "Duplicate", "Works as Designed") should be removed from the release version so that they do not appear in the release notes.
Check the corresponding ".x" fix version to see if it contains any issues that are resolved as "Fixed" and should be included in this release version.
Update the version's release date and status from the Manage Versions page.
Releases are done automatically through a GitHub Action. Visit the corresponding
Release New Version
workflow page to trigger a new build. Select the correct branch (e.g. v1.18
)
and trigger a new run using the "Run workflow" button. In the following prompt,
enter the version number and the corresponding JIRA version ID for the release.
This version ID can be obtained from a link in the "Version" column on the
PHPC releases page.
The automation will create and push the necessary commits and tag, create a draft release, trigger the packaging builds for the newly created tag, and publish all required SSDLC assets. The release is created in a draft state and can be published once the release notes have been updated.
Pre-releases (alpha, beta and RC stability) can be released using the automation
as well. When entering a pre-release version number, make sure to not include a
dash before the stability, e.g. 1.20.0beta1
not 1.20.0-beta1
. PECL versions
do not include a dash before the stability. GitHub Releases for pre-release
versions will be marked as such and will not be marked as "latest" release.
Examples for valid pre-release versions include:
1.20.0alpha1
1.20.0beta2
1.20.0RC1
(note the upper-caseRC
suffix)
The GitHub release notes are created as a draft, and without any release highlights. Fill in release highlights and publish the release notes once the entire release workflow has completed.
Once the packaging workflow has finished creating the PECL package, it will be published as a build artifact of the package workflow, as well as a release asset in the draft release. This package may be published via the Release Upload form. You will have one chance to confirm the package information after uploading.
Note
If downloading the package from the build artifacts, be aware that these are always provided as zip files. You'll have to unpack the tgz archive prior to uploading it to PECL. This is not the case when downloading the release asset.
For minor releases, create a DOCSP ticket indicating whether there are changes to MongoDB Server or PHP version compatibility. The compatibility tables in the MongoDB documentation must be updated to account for new releases. Make sure to update both MongoDB and Language compatibility tables, as shown in this pull request.
Significant release announcements should also be posted in the MongoDB Product & Driver Announcements: Driver Releases forum.