-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 Plan for 2024.22.0 #24447
Comments
|
General Notes
All dates should align with VS Code's iteration and endgame plans.
Feature freeze is Monday @ 17:00 America/Vancouver, December 02. At that point, commits to
main
should only be in response to bugs found during endgame testing until the release candidate is ready.Release Primary and Secondary Assignments for the 2024 Calendar Year
JanuaryEleanorKarthikFebruaryKartikAnthonyMarchKarthikEleanorAprilPaulaEleanorMayAnthonyKarthikJuneKarthikEleanorPaula: 3 primary, 2 secondary
Eleanor: 3 primary (2 left), 3 secondary (2 left)
Anthony: 2 primary, 3 secondary (2 left)
Karthik: 2 primary (1 left), 4 secondary (3 left)
Release candidate (Monday, December 09)
NOTE: Third Party Notices are automatically added by our build pipelines using https://tools.opensource.microsoft.com/notice.
NOTE: the number of this release is in the issue title and can be substituted in wherever you see [YYYY.minor].
Step 1:
Bump the version of
main
to be a release candidate (also updating third party notices, and package-lock.json).❄️ (steps with ❄️ will dictate this step happens while main is frozen 🥶)main
on your local machine and rungit fetch
to ensure your local is up to date with the remote repo.bump-release-[YYYY.minor]
.pet
:main
and latestrelease/*
branch. If there are new changes inmain
then create a branch calledrelease/YYYY.minor
(matching python extension releasemajor.minor
).build\azure-pipeline.stable.yml
to point to the latestrelease/YYYY.minor
forpython-environment-tools
.package.json
to the next even number and switch the-dev
to-rc
. (🤖)npm install
to make surepackage-lock.json
is up-to-date (you should now see changes to thepackage.json
andpackage-lock.json
at this point which update the version number only). (🤖)ThirdPartyNotices-Repository.txt
as appropriate. You can check by looking at the commit history and scrolling through to see if there's anything listed there which might have pulled in some code directly into the repository from somewhere else. If you are still unsure you can check with the team.bump-release-[YYYY.minor]
tomain
. Add the"no change-log"
tag to the PR so it does not show up on the release notes before merging it.NOTE: this PR will fail the test in our internal release pipeline called
VS Code (pre-release)
because the version specified inmain
is (temporarily) an invalid pre-release version. This is expected as this will be resolved below.Step 2: Creating your release branch ❄️
release/YYYY.minor
branch frommain
. This branch is now the candidate for our release which will be the base from which we will release.NOTE: If there are release branches that are two versions old you can delete them at this time.
Step 3 Create a draft GitHub release for the release notes (🤖) ❄️
YYYY.minor.0
.target
for the github release be your release branch calledrelease/YYYY.minor
.Generate release notes
. Quickly check that it only contain notes from what is new in this release.Save draft
.Step 4: Return
main
to dev and unfreeze (❄️ ➡ 💧)NOTE: The purpose of this step is ensuring that main always is on a dev version number for every night's 🌃 pre-release. Therefore it is imperative that you do this directly after the previous steps to reset the version in main to a dev version before a pre-release goes out.
bump-dev-version-YYYY.[minor+1]
.package.json
to the nextYYYY.[minor+1]
which will be an odd number, and switch the-rc
to-dev
.(🤖)npm install
to make surepackage-lock.json
is up-to-date (you should now see changes to thepackage.json
andpackage-lock.json
only relating to the new version number) . (🤖)main
and merge it.NOTE: this PR should make all CI relating to
main
be passing again (such as the failures stemming from step 1).Step 5: Notifications and Checks on External Release Factors
main
is open again.Release (Wednesday, December 11)
Step 6: Take the release branch from a candidate to the finalized release
release/YYYY.minor
branch have been merged.release/YYYY.minor
calledfinalized-release-[YYYY.minor]
.package.json
to remove the-rc
(🤖) from the version.npm install
to make surepackage-lock.json
is up-to-date (the only update should be the version number ifpackage-lock.json
has been kept up-to-date). (🤖)ThirdPartyNotices-Repository.txt
manually if necessary.finalized-release-[YYYY.minor]
againstrelease/YYYY.minor
and merge it.Step 7: Execute the Release
release/YYYY.minor
release branch (🤖).release/YYYY.minor
branch.run pipeline
.branch/tag
select the release branch which isrelease/YYYY.minor
.release/YYYY.minor
back intomain
. (This step is only required if changes were merged into the release branch. If the only change made on the release branch is the version, this is not necessary. Overall you need to ensure you DO NOT overwrite the version on themain
branch.)Steps for Point Release (if necessary)
main
on your local machine and rungit fetch
to ensure your local is up to date with the remote repo.release/YYY.minor
and check to make sure all necessary changes for the point release have been cherry-picked into the release branch. If not, contact the owner of the changes to do so.release/YYYY.minor
calledrelease-[YYYY.minor.point]
.package.json
to the nextYYYY.minor.point
npm install
to make surepackage-lock.json
is up-to-date (you should now see changes to thepackage.json
andpackage-lock.json
only relating to the new version number) . (🤖)pet
. Updatebuild\azure-pipeline.stable.yml
to point to the branchrelease/YYYY.minor
forpython-environment-tools
with the fix or decided by the team.release/YYYY.minor
vYYYY.minor.point
.target
for the github release be your release branch calledrelease/YYYY.minor
.vYYYY.minor
for the last stable release and clickGenerate release notes
.Save draft
.release/YYYY.minor
release branch (🤖).release/YYYY.minor
branch.run pipeline
.branch/tag
select the release branch which isrelease/YYYY.minor
.Steps for contributing to a point release
Prep for the next release
The text was updated successfully, but these errors were encountered: