Skip to content

⬆️ (repo) [NO-ISSUE]: Bump the changesets group across 1 directory with 3 updates - #1745

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/changesets-a531d77d9a
Open

dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/changesets-a531d77d9a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the changesets group with 3 updates in the / directory: @changesets/changelog-github, @changesets/cli and @changesets/parse.

Updates @changesets/changelog-github from 0.5.1 to 1.0.1

Release notes

Sourced from @​changesets/changelog-github's releases.

@​changesets/changelog-github@​1.0.1

Patch Changes

  • Updated dependencies [4d7b4fb]:
    • @​changesets/get-github-info@​1.0.1

@​changesets/changelog-github@​1.0.0

Major Changes

Minor Changes

  • #2059 070f531 Thanks @​jycouet! - Add an opt-in, experimental template option to render changelog lines from tokens ({summary}, {ref}, {pull}, {commit}, {authors}). Default output is unchanged. The token syntax may change in a patch release; pin the version if you rely on it.

  • #1871 dfefc4e Thanks @​mihkeleidast! - Use GITHUB_REPOSITORY as the default repo when no repo option is configured

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

@​changesets/changelog-github@​1.0.0-next.9

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

@​changesets/changelog-github@​1.0.0-next.3

Major Changes

Minor Changes

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

... (truncated)

Changelog

Sourced from @​changesets/changelog-github's changelog.

1.0.1

Patch Changes

  • Updated dependencies [4d7b4fb]:
    • @​changesets/get-github-info@​1.0.1

1.0.0

Major Changes

Minor Changes

  • #2059 070f531 Thanks @​jycouet! - Add an opt-in, experimental template option to render changelog lines from tokens ({summary}, {ref}, {pull}, {commit}, {authors}). Default output is unchanged. The token syntax may change in a patch release; pin the version if you rely on it.

  • #1871 dfefc4e Thanks @​mihkeleidast! - Use GITHUB_REPOSITORY as the default repo when no repo option is configured

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

1.0.0-next.9

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

1.0.0-next.8

Patch Changes

  • Updated dependencies [b5e1762]:
    • @​changesets/types@​7.0.0-next.8

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​changesets/changelog-github since your current version.


Updates @changesets/cli from 2.29.6 to 3.0.3

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​3.0.3

Patch Changes

  • #2297 3f163da Thanks @​Andarist! - Fixed semver ranges (such as >=1.0.0 <2.0.0) getting cut off (>=2.0.0) when updating internal dependencies.

  • #2276 ca9d110 Thanks @​Andarist! - Fixed pnpm 10 compatibility with npm 12 when reading registry information, packing, and publishing packages.

  • Updated dependencies [3f163da, bfe9050, e522996]:

    • @​changesets/apply-release-plan@​8.1.1
    • @​changesets/config@​4.0.1

@​changesets/cli@​3.0.2

Patch Changes

@​changesets/cli@​3.0.1

Patch Changes

@​changesets/cli@​3.0.0

Major Changes

  • #2128 7113c01 Thanks @​Andarist! - Renamed the changeset tag command to changeset git-tag.

  • #2074 3599e47 Thanks @​bluwy! - Set supported package manager versions in "engines" field, including npm >=10.9.0, pnpm >=10.0.0, and yarn >=4.5.2.

  • #1860 92b1c1b Thanks @​mixelburg! - changeset version now exits with code 1 when there are no unreleased changesets, instead of silently exiting with code 0.

    This makes it easier to detect when a version step is a no-op — for example, to prevent accidentally publishing packages with incorrect version tags when using --snapshot mode.

  • #1482 df424a4 Thanks @​Andarist! - Bumped supported Node versions to ^22.11 || ^24 || >=26

  • #1994 062530b Thanks @​bluwy! - The prettier option in .changeset/config.json has been removed in favor of format. format supports "auto", "prettier", "oxfmt", "deno", and "dprint", and false disables formatting. If you previously used prettier: false, migrate to format: false or remove the option to use automatic formatter detection.

  • #2190 96b65ee Thanks @​bluwy! - Move versioned prerelease changesets to .changeset/pre/ folder instead of accumulating in the root and tracking the versioned changeset ids in the .changeset/pre.json file. Existing pre.json will auto-migrate to this new structure on the next run of changeset version or when calling changeset status.

    This change allows easier management of versioned prerelease changesets (for the final stable release) and current queued changesets (for the next prerelease). Changesets in .changeset/pre/ can be edited or deleted depending if it's still relevant for the final stable release of a package. There's no need to synchronize the changeset ids in pre.json if certain changesets are deleted.

  • #2145 f5887ff Thanks @​Andarist! - Removed Yarn Classic support

  • #2097 8c88f6a Thanks @​Andarist! - Packages with only prerelease versions published will now be published with the prerelease tag in the prerelease mode if the target registry doesn't auto-assign latest tag. npm registry itself does that and such packages will continue to be released with latest tag (and not with the configured prerelease tag).

  • #1879 c76b232 Thanks @​beeequeue! - Removed warning messages about using v1 configs. They will now be silently ignored.

... (truncated)

Changelog

Sourced from @​changesets/cli's changelog.

3.0.3

Patch Changes

  • #2297 3f163da Thanks @​Andarist! - Fixed semver ranges (such as >=1.0.0 <2.0.0) getting cut off (>=2.0.0) when updating internal dependencies.

  • #2276 ca9d110 Thanks @​Andarist! - Fixed pnpm 10 compatibility with npm 12 when reading registry information, packing, and publishing packages.

  • Updated dependencies [3f163da, bfe9050, e522996]:

    • @​changesets/apply-release-plan@​8.1.1
    • @​changesets/config@​4.0.1

3.0.2

Patch Changes

3.0.1

Patch Changes

3.0.0

Major Changes

  • #2128 7113c01 Thanks @​Andarist! - Renamed the changeset tag command to changeset git-tag.

  • #2074 3599e47 Thanks @​bluwy! - Set supported package manager versions in "engines" field, including npm >=10.9.0, pnpm >=10.0.0, and yarn >=4.5.2.

  • #1860 92b1c1b Thanks @​mixelburg! - changeset version now exits with code 1 when there are no unreleased changesets, instead of silently exiting with code 0.

    This makes it easier to detect when a version step is a no-op — for example, to prevent accidentally publishing packages with incorrect version tags when using --snapshot mode.

  • #1482 df424a4 Thanks @​Andarist! - Bumped supported Node versions to ^22.11 || ^24 || >=26

  • #1994 062530b Thanks @​bluwy! - The prettier option in .changeset/config.json has been removed in favor of format. format supports "auto", "prettier", "oxfmt", "deno", and "dprint", and false disables formatting. If you previously used prettier: false, migrate to format: false or remove the option to use automatic formatter detection.

  • #2190 96b65ee Thanks @​bluwy! - Move versioned prerelease changesets to .changeset/pre/ folder instead of accumulating in the root and tracking the versioned changeset ids in the .changeset/pre.json file. Existing pre.json will auto-migrate to this new structure on the next run of changeset version or when calling changeset status.

    This change allows easier management of versioned prerelease changesets (for the final stable release) and current queued changesets (for the next prerelease). Changesets in .changeset/pre/ can be edited or deleted depending if it's still relevant for the final stable release of a package. There's no need to synchronize the changeset ids in pre.json if certain changesets are deleted.

  • #2145 f5887ff Thanks @​Andarist! - Removed Yarn Classic support

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​changesets/cli since your current version.


Updates @changesets/parse from 0.4.1 to 1.0.0

Release notes

Sourced from @​changesets/parse's releases.

@​changesets/parse@​1.0.0

Major Changes

Minor Changes

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

@​changesets/parse@​1.0.0-next.10

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

@​changesets/parse@​1.0.0-next.6

Patch Changes

@​changesets/parse@​1.0.0-next.3

Major Changes

Minor Changes

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

@​changesets/parse@​1.0.0-next.2

Patch Changes

... (truncated)

Changelog

Sourced from @​changesets/parse's changelog.

1.0.0

Major Changes

Minor Changes

  • #1969 2c7c043 Thanks @​marcalexiei! - Add a named export that mirrors the current default export

    The default export is slated for removal in the next major release, so this ensures a smoother transition path.

Patch Changes

1.0.0-next.10

Patch Changes

  • Updated dependencies [96b65ee]:
    • @​changesets/types@​7.0.0-next.9

1.0.0-next.9

Patch Changes

  • Updated dependencies [b5e1762]:
    • @​changesets/types@​7.0.0-next.8

1.0.0-next.8

Patch Changes

  • #2160 162419d Thanks @​beeequeue! - Added or modified the files property in the manifest. This should not change any behavior.
  • Updated dependencies [162419d]:
    • @​changesets/types@​7.0.0-next.7

1.0.0-next.7

Patch Changes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​changesets/parse since your current version.


Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 16, 2026
Copilot AI lite review requested due to automatic review settings August 16, 2026 11:53
@dependabot
dependabot Bot requested a review from a team as a code owner August 16, 2026 11:53
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 16, 2026
@vercel

vercel Bot commented Aug 16, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
device-sdk-ts-sample Error Error Sep 20, 2026 11:54am UTC
doc-device-management-kit Error Error Sep 20, 2026 11:54am UTC

Request Review

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Updates Changesets-related dependencies in the pnpm workspace catalog to newer major versions.

Changes:

  • Bump @changesets/changelog-github from 0.5.1 to 1.0.0
  • Bump @changesets/cli from 2.29.6 to 3.0.0
  • Bump @changesets/parse from 0.4.1 to 1.0.0

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread pnpm-workspace.yaml
catalog:
'@babel/core': ^7.25.2
'@babel/preset-env': ^7.25.3
'@babel/runtime': ^7.28.3
@dependabot dependabot Bot changed the title ⬆️ (repo) [NO-ISSUE]: Bump the changesets group with 3 updates ⬆️ (repo) [NO-ISSUE]: Bump the changesets group across 1 directory with 3 updates Aug 18, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from 4316e7c to b589d59 Compare August 18, 2026 12:46
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from b589d59 to 8e43fef Compare August 21, 2026 14:34
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from 8e43fef to a577ffd Compare August 23, 2026 11:54
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from a577ffd to f6b52f4 Compare August 24, 2026 15:38
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from f6b52f4 to d611958 Compare August 27, 2026 15:45
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from d611958 to e33ce4c Compare August 30, 2026 11:54
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from e33ce4c to b90cc40 Compare September 2, 2026 08:46
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from b90cc40 to c2451f4 Compare September 2, 2026 15:15
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from c2451f4 to 77eb86c Compare September 4, 2026 09:06
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from 77eb86c to 4ea1543 Compare September 6, 2026 11:53
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from 4ea1543 to ac40efb Compare September 7, 2026 13:54
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/changesets-a531d77d9a branch from ac40efb to fd349a0 Compare September 13, 2026 11:53
@aussedatlo
aussedatlo force-pushed the develop branch 2 times, most recently from fba843e to 5ed072b Compare September 18, 2026 09:14
…th 3 updates

Bumps the changesets group with 3 updates in the / directory: [@changesets/changelog-github](https://github.com/changesets/changesets/tree/HEAD/packages/changelog-github), [@changesets/cli](https://github.com/changesets/changesets/tree/HEAD/packages/cli) and [@changesets/parse](https://github.com/changesets/changesets/tree/HEAD/packages/parse).


Updates `@changesets/changelog-github` from 0.5.1 to 1.0.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/changelog-github/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/changelog-github@1.0.1/packages/changelog-github)

Updates `@changesets/cli` from 2.29.6 to 3.0.3
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/cli@3.0.3/packages/cli)

Updates `@changesets/parse` from 0.4.1 to 1.0.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/parse/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/parse@1.0.0/packages/parse)

---
updated-dependencies:
- dependency-name: "@changesets/changelog-github"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: changesets
- dependency-name: "@changesets/cli"
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: changesets
- dependency-name: "@changesets/parse"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: changesets
...

Signed-off-by: dependabot[bot] <support@github.com>

This branch had an error being deployed

2 failed deployments
Preview – device-sdk-ts-sample 94be4849 Deployed Sep 20, 2026 by vercel[bot]
Preview – doc-device-management-kit 94be4849 Deployed Sep 20, 2026 by vercel[bot]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant