Skip to content

Commit d9a9274

Browse files
Update changelog for new branching strategy (opensearch-project#17618)
* Update changelog for new branching strategy The two file approach is no longer needed now that we are not maintaining the main branch as the next major version. This updates the changelog and the verifier workflow accordingly. Signed-off-by: Andrew Ross <[email protected]> * Remove documentation about two changelog files Signed-off-by: Andrew Ross <[email protected]> * Update changelog_verifier.yml --------- Signed-off-by: Andrew Ross <[email protected]> Co-authored-by: Peter Zhu <[email protected]>
1 parent 14d740f commit d9a9274

File tree

4 files changed

+2
-69
lines changed

4 files changed

+2
-69
lines changed

.github/workflows/changelog_verifier.yml

-37
Original file line numberDiff line numberDiff line change
@@ -14,42 +14,5 @@ jobs:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
- uses: dangoslen/changelog-enforcer@v3
17-
id: verify-changelog-3x
1817
with:
1918
skipLabels: "autocut, skip-changelog"
20-
changeLogPath: 'CHANGELOG-3.0.md'
21-
continue-on-error: true
22-
- uses: dangoslen/changelog-enforcer@v3
23-
id: verify-changelog
24-
with:
25-
skipLabels: "autocut, skip-changelog"
26-
changeLogPath: 'CHANGELOG.md'
27-
continue-on-error: true
28-
- run: |
29-
# The check was possibly skipped leading to success for both the jobs
30-
has_backport_label=${{ contains(join(github.event.pull_request.labels.*.name, ', '), 'backport')}}
31-
has_breaking_label=${{ contains(join(github.event.pull_request.labels.*.name, ', '), '>breaking')}}
32-
if [[ $has_breaking_label == true && $has_backport_label == true ]]; then
33-
echo "error: Please make sure that the PR does not have a backport label associated with it when making breaking changes"
34-
exit 1
35-
fi
36-
37-
if [[ ${{ steps.verify-changelog-3x.outcome }} == 'success' && ${{ steps.verify-changelog.outcome }} == 'success' ]]; then
38-
exit 0
39-
fi
40-
41-
if [[ ${{ steps.verify-changelog-3x.outcome }} == 'failure' && ${{ steps.verify-changelog.outcome }} == 'failure' ]]; then
42-
echo "error: Please ensure a changelog entry exists in CHANGELOG.md or CHANGELOG-3.0.md"
43-
exit 1
44-
fi
45-
46-
# Concatenates the labels and checks if the string contains "backport"
47-
if [[ ${{ steps.verify-changelog.outcome }} == 'success' && $has_backport_label == false ]]; then
48-
echo "error: Please make sure that the PR has a backport label associated with it when making an entry to the CHANGELOG.md file"
49-
exit 1
50-
fi
51-
52-
if [[ ${{ steps.verify-changelog-3x.outcome }} == 'success' && $has_backport_label == true ]]; then
53-
echo "error: Please make sure that the PR does not have a backport label associated with it when making an entry to the CHANGELOG-3.0.md file"
54-
exit 1
55-
fi

CHANGELOG-3.0.md

-21
This file was deleted.

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project are documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). See the [CONTRIBUTING guide](./CONTRIBUTING.md#Changelog) for instructions on how to add changelog entries.
55

6-
## [Unreleased 2.x]
6+
## [Unreleased 3.x]
77
### Added
88
- Change priority for scheduling reroute during timeout([#16445](https://github.com/opensearch-project/OpenSearch/pull/16445))
99
- Renaming the node role search to warm ([#17573](https://github.com/opensearch-project/OpenSearch/pull/17573))
@@ -23,4 +23,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2323

2424
### Security
2525

26-
[Unreleased 2.x]: https://github.com/opensearch-project/OpenSearch/compare/2.19...2.x
26+
[Unreleased 2.x]: https://github.com/opensearch-project/OpenSearch/compare/f58d846f...main

CONTRIBUTING.md

-9
Original file line numberDiff line numberDiff line change
@@ -146,15 +146,6 @@ Adding in the change is two step process:
146146
1. Add your changes to the corresponding section within the CHANGELOG file with dummy pull request information, publish the PR
147147
2. Update the entry for your change in [`CHANGELOG.md`](CHANGELOG.md) and make sure that you reference the pull request there.
148148

149-
### Where should I put my CHANGELOG entry?
150-
Please review the [branching strategy](https://github.com/opensearch-project/.github/blob/main/RELEASING.md#opensearch-branching) document. The changelog on the `main` branch will contain **two files**: `CHANGELOG.md` which corresponds to unreleased changes intended for the _next minor_ release and `CHANGELOG-3.0.md` which correspond to unreleased changes intended for the _next major_ release. Your entry should go into file corresponding to the version it is intended to be released in. In practice, most changes to `main` will be backported to the next minor release so most entries will be in the `CHANGELOG.md` file.
151-
152-
The following examples assume the _next major_ release on main is 3.0, then _next minor_ release is 2.5, and the _current_ release is 2.4.
153-
154-
- **Add a new feature to release in next minor:** Add a changelog entry to `[Unreleased 2.x]` in CHANGELOG.md on main, then backport to 2.x (including the changelog entry).
155-
- **Introduce a breaking API change to release in next major:** Add a changelog entry to `[Unreleased 3.0]` to CHANGELOG-3.0.md on main, do not backport.
156-
- **Upgrade a dependency to fix a CVE:** Add a changelog entry to `[Unreleased 2.x]` on main, then backport to 2.x (including the changelog entry), then backport to 2.4 and ensure the changelog entry is added to `[Unreleased 2.4.1]`.
157-
158149
## Review Process
159150

160151
We deeply appreciate everyone who takes the time to make a contribution. We will review all contributions as quickly as possible. As a reminder, [opening an issue](https://github.com/opensearch-project/OpenSearch/issues/new/choose) discussing your change before you make it is the best way to smooth the PR process. This will prevent a rejection because someone else is already working on the problem, or because the solution is incompatible with the architectural direction.

0 commit comments

Comments
 (0)