Description
Introduction
This issue describes how and when community.general is released, and to announce updates to the release/versioning schedule. The next section (Next releases) is always updated to contain the next versions to be released. Other changes to this first post are always announced by separate posts in this issue.
Next releases
Release | When | Min ansible-core | Notes |
---|---|---|---|
10.3.0 | around Jan 27th | 2.15+ | |
9.5.4 | around Jan 27th | 2.13+ | |
8.6.10 | when necessary | 2.13+ |
Check Python minimum requirements for ansible-core.
Releasing schedule for major and minor versions
- 2020-06-20: 0.2.0 (a couple of days after ansible-base 2.10 beta 1 is out; released from
master
branch) - last week of 2020-07: 1.0.0 major release
From then on:
- release minor versions shortly before Ansible x.y.0 releases, i.e. roughly every four weeks
- major versions every 6 months (release how-to).
The precise dates will be announced on time. Before Ansible releases we might introduce additional minor releases to fix issues.
If no new commit has been merged for a minor release, it must be skipped. Major versions must not be skipped.
The schedule for minor versions might be adjusted in the future (maybe once per month, maybe something else). The release schedule for patch versions (see below) would be adjusted.
Releasing schedule for patch versions
- Patch versions
x.y.z
until the last minor release of a major release branch will only be released when necessary. The intended frequency is never, they are reserved for packaging failures, or fixing major breakage / security problems. - Once the last minor release of a major release branch (usually
x.2.0
, generallyx.Y.0
) has been released, there will be bugfix releasesx.Y.z
. - These releases will happen regularly and when necessary.
Versioning
galaxy.yml
in themaster
branch will always contain the version of the next major or minor release. It will be updated right after a release.version_added
needs to be used for every new feature and module/plugin, and needs to coincide with the next minor/major release version. (This will eventually be enforced by CI.)
Branching
- Releasing minor and major releases is done from
stable-x
branches.- Shortly (usually a few hours) before a new major release,
stable-x
is branched.
- Shortly (usually a few hours) before a new major release,
- New features can be backported to the current
stable-x
release branch afterx.0.0
, and until the last minor release forstable-x
has been released.- Once a new major version is released, there will be no more minor releases for previous
stable-x
branches. - From then on, only bugfixes are allowed for ~6 months (backporting to the current two major releases).
- After that, only major bugfixes security fixes are allowed for another ~6 months (backporting to the current three major releases).
- This means that next to the
main
branch, the three lateststable-x
branches receive backports. - New features must not break backwards compatibility!
- Once a new major version is released, there will be no more minor releases for previous
- Backporting process:
- Until
x.2.0
, maintainers can merge backports themselves via bot. The bot will hopefully also allow to create backports automatically (if possible without conflicts). (We hope that they know the rules: no breaking of backwards compatibility!) - From
x.2.0
on, only RM will merge backports.
- Until
Deprecation
- Deprecations are done by version number (not by date).
- New deprecations can be added during every minor release, under the condition that they do not break backwards compatibility.
- Deprecations are expected to have a deprecation cycle of at least 2 major versions (i.e. ~1 year). Maintainers can use a longer deprecation cycle if they want to support the old code for that long.
Changelogs
- Every change that does not only affect docs or tests must have a changelog fragment.
- Exception: fixing/extending a feature that already has a changelog fragment and has not yet been released. Such PRs must always link to the original PR(s) they update.
- Use your common sense!
- (This might change later. The
trivial
category should then be used to document changes which are not important enough to end up in the text version of the changelog.) - Fragments must not be added for new module PRs and new plugin PRs. The only exception are test and filter plugins: these are not automatically documented yet.
- The
(x+1).0.0
changelog continues thex.0.0
changelog.- A
x.y.0
changelog withy > 0
is not part of a changelog of a laterX.*.*
(withX > x
) orx,Y,*
(withY > y
) release. - A
x.y.z
changelog withz > 0
is not part of a changelog of a later(x+1).*.*
orx.Y.z
(withY > y
) release. - Since everything adding to the minor/patch changelogs are backports, the same changelog fragments of these minor/patch releases will be in the next major release's changelog. (This is the same behavior as in ansible/ansible.)
- A
- Changelogs do not contain previous major releases, and only use the
ancestor
feature (inchangelogs/changelog.yaml
) to point to the previous major release. - Changelog fragments are removed after a release is made.
Ansible-core support
For every new major release of community.general, the collection drops support for all ansible-core versions that have been End of Life for at least a couple of weeks before the release date.