The purpose of this page is describing module release practical procedures. Mainly these steps are based on general "Release Procedure" but contains some of refinements found in the process of recent release procedures.
...
14) Annonce in Slack about a new release in the #release
thread (example of message):
`edge-oai-pmh 2.2.1`
has been released https://github.com/folio-org/edge-oai-pmh/releases/tag/v2.2.1
...
- Creates a long-live/release branch from mainline, if not exists before. For mentioned
release 19.3.0
it wasb19.3
branch. - Prepare temporary release branch, tmp-release-19.3.0 for example, and do all release steps mentioned above there.
- After merging PR of temporary release branch (
tmp-release-19.3.0
in our example) into the long-live/release -b19.3
branch we needs to update version in mainline. - Create a temporary branch like the
tmp_post-release_19.3.0
from master branch and increase version in pom file to the next number, in our example it will be the19.3.1-SNAPSHOT
. - Merge PR of
tmp_post-release_19.3.0
into the mainline.
2.
...
Bugfix/Hoitfix Releases.
This kind of release require creation (if none) or reuse as named "long-live" branch, which contains only chnages prepared for this partucular release. Those branches has the name kind b19.2
. In this description we goind to prepare build number 19.2.3
into the "long-live" branch b19.2
(needs to be create if not exists yet).
...
2) Create a release branch from there, for example: MODINVSTOR-524/release-19.2.3
(<release_ticket>/<release_branch_name>):
git checkout -b MODINVSTOR-524/release-19.2.3
3) Cherry pick into prevoiusly created release branch all needed commits from mainstream development branch, i.e. master
. Make any extra fixes, if any changes needed, and commit them into previously created release branch*.
git cherry-pick <commit_hash>
*Don't forget to back porting extra fixes into mainstream development branch, i.e. master
, if these changes valuable not only for particular bugfix release.
...
7) mvn --batch-mode -DautoVersionSubmodules=true release:clean release:prepare
(runs maven release buld process. Here release number and rest of data set up automatically without any dialogs, based on version's set from previous step);
8) git push origin MODINVSTOR-524/release-19.2.3 && git push --tags
origin MODINVSTOR-524/release-19.2.3
(pushing local changes, release notes in this case, with tags to remote stash. These changes are pushed to remote "long-live" branch b19.2
)
9) Go to the module's repository on GitHub and create a new "Pull request
" of pushed relaese branch (MODINVSTOR-524/release-19.2.3
) into the "long-live release branch - b19.2
in or case,
...
`mod-inventory-storage 19.2.3`
has been released https://github.com/folio-org/mod-inventory-storage/releases/tag/v19.2.3