-
Notifications
You must be signed in to change notification settings - Fork 97
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
Release: 0.41.0-rc1 #8106
Release: 0.41.0-rc1 #8106
Conversation
Signed-off-by: Brooke Hamilton <[email protected]>
Release Information
Change logs
|
@@ -46,7 +46,7 @@ Follow the steps below to create an RC release. | |||
|
|||
```bash | |||
git checkout main | |||
git checkout -b <USERNAME>/<BRANCHNAME> | |||
git checkout -b release/<MAJOR.MINOR> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The release branch gets created as part of the process so we don't want to update this to the release branch:
echo "Creating release branch ${RELEASE_BRANCH_NAME}..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may also want to reopen the PR under a different branch name. Since this is the name of the release branch that gets created as part of the release process, we may be adding unintentional commits to the release branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK thank you - I will recreate the PR with a different branch name and delete this one.
Unit Tests 1 files ±0 286 suites ±0 14m 40s ⏱️ + 9m 31s For more details on these failures, see this check. Results for commit 624e46e. ± Comparison against base commit 03254be. This pull request removes 4 and adds 1 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8106 +/- ##
==========================================
+ Coverage 59.27% 59.29% +0.02%
==========================================
Files 580 580
Lines 38983 38983
==========================================
+ Hits 23106 23115 +9
+ Misses 14224 14218 -6
+ Partials 1653 1650 -3 ☔ View full report in Codecov by Sentry. |
Closing to fix the branch name to avoid collision with the non-RC release. |
Description
Releasing v0.41.0-rc1
This pull request includes changes to the release process documentation and the
versions.yaml
file to reflect the new release candidate version.Updates to release process documentation:
docs/contributing/contributing-releases/README.md
: Changed the branch naming convention in the release process instructions from<USERNAME>/<BRANCHNAME>
torelease/<MAJOR.MINOR>
.Updates to version tracking:
versions.yaml
: Added a new release candidate versionv0.41.0-rc1
under the supported channels.Type of change