Skip to content

Commit

Permalink
Basic policy about backporting (#883)
Browse files Browse the repository at this point in the history
Basic policy about backporting

SUMMARY
Suggested basic policy about backporting.
ISSUE TYPE

Docs Pull Request

COMPONENT NAME
docs/docsite/rst/dev_guidelines.rst
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis <None>
Reviewed-by: Mark Chappell <None>
Reviewed-by: Markus Bergholz <[email protected]>
  • Loading branch information
tremble authored Jun 24, 2022
1 parent ea405a5 commit a6891e0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/docsite/rst/dev_guidelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,28 @@ used by boto3)
if module.params.get('scope') == 'managed':
module.require_botocore_at_least('1.23.23', reason='to list managed rules')
.. _ansible_collections.amazon.aws.docsite.dev_backports:

Release policy and backporting merged PRs
-----------------------------------------

All amazon.aws and community.aws PRs must be merged to the ``main`` branch first. After a PR has
been accepted and merged to the ``main`` branch they can be backported to the stable branches.

The ``main`` branch is a staging location for the next major version (X+1) of the collections and
may include breaking changes.

General backport policy:

- New features, deprecations and minor changes can be backported to the latest stable release.
- Bugfixes can be backported to the 2 latest stable releases.
- Security fixes should be backported to at least the 2 latest stable releases.

Where necessary, additional CI related changes may be introduced to older stable branches to
ensure CI continues to function.

The simplest mechanism for backporting PRs is by adding the ``backport-Y`` label to a PR. Once the
PR has been merged the patchback bot will attempt to automatically create a backport PR.

.. _ansible_collections.amazon.aws.docsite.dev_module_create:

Expand Down

0 comments on commit a6891e0

Please sign in to comment.