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: release 10.6.0 #7368

Merged
merged 1 commit into from Apr 25, 2024
Merged

chore: release 10.6.0 #7368

merged 1 commit into from Apr 25, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 11, 2024

🤖 I have created a release beep boop

10.6.0

10.6.0 (2024-04-25)

Features

Bug Fixes

Documentation

Dependencies

Chores

arborist: 7.5.0

7.5.0 (2024-04-25)

Features

Bug Fixes

Dependencies

Chores

config: 8.3.0

8.3.0 (2024-04-25)

Features

Bug Fixes

Dependencies

libnpmaccess: 8.0.4

8.0.4 (2024-04-25)

Dependencies

libnpmdiff: 6.1.0

6.1.0 (2024-04-25)

Features

Bug Fixes

Dependencies

libnpmexec: 8.0.0

8.0.0 (2024-04-25)

⚠️ BREAKING CHANGES

  • libnpmexec now emits an output event on process instead of invoking the output function passed in

Features

Dependencies

libnpmfund: 5.0.8

5.0.8 (2024-04-25)

Dependencies

libnpmhook: 10.0.3

10.0.3 (2024-04-25)

Dependencies

libnpmorg: 6.0.4

6.0.4 (2024-04-25)

Dependencies

libnpmpack: 7.0.0

7.0.0 (2024-04-25)

⚠️ BREAKING CHANGES

  • libnpmpack no longer takes a silent option to suppress output from @npmcli/run-script. That output is now emitted via an output event on process.

Features

Bug Fixes

Dependencies

libnpmpublish: 9.0.6

9.0.6 (2024-04-25)

Dependencies

libnpmsearch: 7.0.3

7.0.3 (2024-04-25)

Dependencies

libnpmteam: 6.0.3

6.0.3 (2024-04-25)

Dependencies

libnpmversion: 6.0.0

6.0.0 (2024-04-25)

⚠️ BREAKING CHANGES

  • libnpmversion no longer takes a silent option to suppress output from @npmcli/run-script. That output is now emitted via an output event on process.

Features

Bug Fixes

Dependencies


This PR was generated with Release Please. See documentation.

@github-actions github-actions bot requested a review from a team as a code owner April 11, 2024 16:19
Copy link
Contributor Author

github-actions bot commented Apr 11, 2024

Release Manager

Release workflow run: https://github.com/npm/cli/actions/runs/8836089933

Release Checklist for v10.6.0

  • 1. Checkout the release branch

    Ensure git status is not dirty on this branch after resetting deps. If it is, then something is probably wrong with the automated release process.

    gh pr checkout 7368 --force
    npm run resetdeps
    node scripts/git-dirty.js
  • 2. Check CI status

    gh pr checks --watch
  • 3. Publish the CLI and workspaces

    Warning:
    This will publish all updated workspaces to latest, prerelease or backport depending on their version, and will publish the CLI with the dist-tag set to next-10.

    Note:
    The --test argument can optionally be omitted to run the publish process without running any tests locally.

    node scripts/publish.js --test
  • 4. Optionally install and test npm@10.6.0 locally

    npm i -g npm@10.6.0
    npm --version
    npm whoami
    npm help install
    # etc
  • 5. Set latest dist-tag to newly published version

    Warning:
    NOT FOR PRERELEASE: Do not run this step for prereleases or if 10 is not being set to latest.

    node . dist-tag add npm@10.6.0 latest
  • 6. Trigger docs.npmjs.com update

    gh workflow run update-cli.yml --repo npm/documentation
  • 7. Merge release PR

    gh pr merge --rebase
    git checkout latest
    git fetch
    git reset --hard origin/latest
    node . run resetdeps
  • 8. Wait For Release Tags

    Warning:
    The remaining steps all require the GitHub tags and releases to be created first. These are done once this PR has been labelled with autorelease: tagged.

    Release Please will run on the just merged release commit and create GitHub releases and tags for each package. The release bot will will comment on this PR when the releases and tags are created.

    Note:
    The release workflow also includes the Node integration tests which do not need to finish before continuing.

    You can watch the release workflow in your terminal with the following command:

    gh run watch `gh run list -R npm/cli -w release -b latest -L 1 --json databaseId -q ".[0].databaseId"`
    
  • 9. Mark GitHub Release as latest

    Warning:
    You must wait for CI to create the release tags before running this step. These are done once this PR has been labelled with autorelease: tagged.

    Release Please will make GitHub Releases for the CLI and all workspaces, but GitHub has UI affordances for which release should appear as the "latest", which should always be the CLI. To mark the CLI release as latest run this command:

    gh release -R npm/cli edit v10.6.0 --latest
  • 10. Open nodejs/node PR to update npm to latest

    Warning:
    You must wait for CI to create the release tags before running this step. These are done once this PR has been labelled with autorelease: tagged.

    Trigger the Create Node PR action. This will open a PR on nodejs/node to the main branch.

    Note:
    The resulting PR may need to be labelled if it is not intended to land on old Node versions.

    First, sync our fork of node with the upstream source:

    gh repo sync npm/node --source nodejs/node --force

    Then, if we are opening a PR against the latest version of node:

    gh workflow run create-node-pr.yml -f spec=next-10

    If the PR should be opened on a different branch (such as when doing backports) then run it with -f branch=<BRANCH_NAME>. There is also a shortcut to target a specific Node version by specifying a major version number with -f branch=18 (or similar).

    For example, this will create a PR on nodejs/node to the v16.x-staging branch:

    gh workflow run create-node-pr.yml -f spec=next-10 -f branch=16
  • 11. Label and fast-track nodejs/node PR

    Note:
    This requires being a nodejs collaborator. Currently @lukekarrys is so ping them to do these steps!

    • Thumbs-up reaction on the Fast-track comment
    • Add an LGTM / Approval
    • Add request-ci label to get it running CI
    • Add commit-queue label once everything is green

@github-actions github-actions bot force-pushed the release-please--branches--latest branch 3 times, most recently from 3319e14 to b6b2045 Compare April 12, 2024 17:57
@github-actions github-actions bot changed the title chore: release 10.5.3 chore: release 10.6.0 Apr 12, 2024
@github-actions github-actions bot force-pushed the release-please--branches--latest branch 16 times, most recently from 35b1a7b to b8609d3 Compare April 19, 2024 01:14
@github-actions github-actions bot force-pushed the release-please--branches--latest branch 7 times, most recently from 2c978ef to adb6008 Compare April 23, 2024 20:39
@github-actions github-actions bot force-pushed the release-please--branches--latest branch 7 times, most recently from b978a01 to e7f2387 Compare April 25, 2024 16:27
@github-actions github-actions bot force-pushed the release-please--branches--latest branch from e7f2387 to 69881d9 Compare April 25, 2024 16:27
@wraithgar
Copy link
Member

Test failures in 18.x have to do w/ the test suite, not w/ an actual bug. Tests work in isolation and if coverage is disabled. We still want to track this down but it shouldn't block the release.

@wraithgar wraithgar merged commit 9fea383 into latest Apr 25, 2024
20 of 22 checks passed
@wraithgar wraithgar deleted the release-please--branches--latest branch April 25, 2024 17:31
Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/v10.6.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/arborist-v7.5.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/config-v8.3.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmaccess-v8.0.4 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmdiff-v6.1.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmexec-v8.0.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmfund-v5.0.8 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmhook-v10.0.3 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmorg-v6.0.4 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmpack-v7.0.0 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmpublish-v9.0.6 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmsearch-v7.0.3 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmteam-v6.0.3 🌻

Copy link
Contributor Author

🤖 Release is at https://github.com/npm/cli/releases/tag/libnpmversion-v6.0.0 🌻

@wraithgar
Copy link
Member

Node.js PR is at nodejs/node#52691

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant