Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: make branch release-v12 the latest #2506

Merged
merged 3 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
"branches": [
{
"name": "master",
"channel": "rc",
"prerelease": "rc"
"channel": "latest"
},
{
"name": "release-v11",
"name": "release-v12",
MartinCupela marked this conversation as resolved.
Show resolved Hide resolved
"channel": "latest"
},
{
"name": "release-v11",
"channel": "v11",
"range": "11.x"
},
{
"name": "release-v10",
"channel": "v10",
Expand Down
9 changes: 8 additions & 1 deletion developers/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ The `stream-chat-react` package follows semantic versioning and the release is t

In order to get the above generated outputs, each contributor should follow [Angular's Commit Message Format rules](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-format).

## Major version release preparations

We need to:
1. Convert the current latest branch to a version branch by creating a PR with adjusted `.releaserc.json`. Example PR: https://github.com/GetStream/stream-chat-react/pull/2507

2. Configure the `master` branch back from `prerelease` to `latest` and add a config for the next version branch also designated as `latest`. Example PR: https://github.com/GetStream/stream-chat-react/pull/2506.

## Required steps

At the moment these manual actions have to be taken to achieve a successfull release:
At the moment these manual actions have to be taken to achieve a successful release:

1. make sure that all the new required features and bug fixes in peer dependency repositories `@stream-io/stream-chat-css` and `stream-chat-js` are released
2. make sure that the peer dependencies `@stream-io/stream-chat-css` and `stream-chat-js` are installed at their latest version (see `package.json`, `yarn.lock`) (if applicable)
Expand Down
Loading