Skip to content

Version Packages (next) - #2122

Merged
Andarist merged 1 commit into
mainfrom
changeset-release/main
Jul 1, 2026
Merged

Version Packages (next)#2122
Andarist merged 1 commit into
mainfrom
changeset-release/main

Conversation

@changesets-org-version-bot

@changesets-org-version-bot changesets-org-version-bot Bot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@changesets/assemble-release-plan@7.0.0-next.7

Major Changes

  • #2117 813bbf3 Thanks @bluwy! - Remove the pre.json initialVersions property and handling as it's unused internally

  • #2090 3aae903 Thanks @beeequeue! - Peer dependencies now bump packages that depend on them by patch instead of major.

    This means a peer dependency update is no longer assumed (forced) to be a breaking change.

    If the dependent package is not compatible with the peer's new release you should manually add a major changeset describing why and how to migrate.

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6
    • @changesets/get-dependents-graph@3.0.0-next.6
    • @changesets/should-skip-package@1.0.0-next.6

@changesets/cli@3.0.0-next.7

Major Changes

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

  • #2117 813bbf3 Thanks @bluwy! - Remove the pre.json initialVersions property and handling as it's unused internally

  • #2090 3aae903 Thanks @beeequeue! - Peer dependencies now bump packages that depend on them by patch instead of major.

    This means a peer dependency update is no longer assumed (forced) to be a breaking change.

    If the dependent package is not compatible with the peer's new release you should manually add a major changeset describing why and how to migrate.

Minor Changes

  • #1121 ce2095d Thanks @Sh031224! - Added new --major, --minor, --patch flags to the add command.

  • #2087 edc30c8 Thanks @trueberryless! - Made the init command interactive. Running changeset init will now guide you through a set of intuitive prompts to configure your changelog generator, commit preferences, publish access, and base branch, rather than silently writing the default configuration file.

  • #2129 369eb0b Thanks @Andarist! - Commands supporting --output (such as status and publish-plan) can now be invoked with CHANGESETS_OUTPUT=path/to/file environment variable. This has the same effect as calling them with --output=path/to/file

  • #2136 2f9ca42 Thanks @bluwy! - Remove confirmation prompt when adding a changeset. It will always add a changeset instead, and if the changeset is not desired, the user can edit or delete the file directly.

  • #2129 369eb0b Thanks @Andarist! - changeset publish and changeset tag can now be invoked with CHANGESETS_OUTPUT=path/to/file environment variable. They produce output in the NDJSON format.

  • #2130 18bc470 Thanks @beeequeue! - Allow unmatched glob patterns in the ignore config option.

Patch Changes

  • #2065 0598e83 Thanks @Andarist! - Improved changeset publish auth handling by removing the preflight OTP requirement check and falling back to interactive auth when the package manager reports that authentication is required.

  • #2065 0598e83 Thanks @Andarist! - changeset publish now reads initial OTP values from npm and pnpm environment variables.

  • #2065 0598e83 Thanks @Andarist! - The generated publish-plan.json no longer includes a registry field on publish entries.

  • #584 6c79210 Thanks @Andarist! - Avoid an infinite loop when git commands fail to execute when Changesets try to retrieve commits that added files.

  • Updated dependencies [4c26f2f, 813bbf3, 6c79210, 18bc470, 3aae903]:

    • @changesets/types@7.0.0-next.6
    • @changesets/assemble-release-plan@7.0.0-next.7
    • @changesets/pre@3.0.0-next.6
    • @changesets/git@4.0.0-next.6
    • @changesets/config@4.0.0-next.6
    • @changesets/apply-release-plan@8.0.0-next.7
    • @changesets/changelog-git@1.0.0-next.6
    • @changesets/get-dependents-graph@3.0.0-next.6
    • @changesets/read@1.0.0-next.7
    • @changesets/should-skip-package@1.0.0-next.6
    • @changesets/write@1.0.0-next.6

@changesets/get-github-info@1.0.0-next.3

Major Changes

  • #2121 dae394c Thanks @bluwy! - Rename getInfo to getCommitInfo, and getInfoFromPullRequest to getPullRequestInfo. They may now return undefined if the commit or pull request is not found in the GitHub repository.

    The return types are also slightly changed but should contain the same information as before. To migrate:

    const info = await getCommitInfo({ commit, repo });
    if (info == null) return;
    
    // Before:
    const authorLogin = info.user;
    const authorLink = info.links.author;
    
    const pullNumber = info.pull;
    const pullLink = info.links.pull;
    
    const commitLink = info.links.commit;
    
    // After:
    const authorLogin = info.author.login;
    const authorLink = info.author.markdownLink;
    
    const pullNumber = info.pull.number;
    const pullLink = info.pull.markdownLink;
    
    const commitLink = info.commit.markdownLink;

    getPullRequestInfo also has a similar migration path.

Minor Changes

  • #2121 dae394c Thanks @bluwy! - Improve data fetching by using GraphQL fragments to reduce the query size, and set a maximum batch size of 50 to avoid hitting rate limits

@changesets/pre@3.0.0-next.6

Major Changes

  • #2117 813bbf3 Thanks @bluwy! - Remove the pre.json initialVersions property and handling as it's unused internally

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/types@7.0.0-next.6

Major Changes

  • #2133 4c26f2f Thanks @bluwy! - Remove "private" type support for WrittenConfig.access. Only "public" and "restricted" are valid values. This change was also already made in #2015 in the runtime.

  • #2117 813bbf3 Thanks @bluwy! - Remove the pre.json initialVersions property and handling as it's unused internally

@changesets/changelog-github@1.0.0-next.6

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

Patch Changes

@changesets/config@4.0.0-next.6

Minor Changes

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6
    • @changesets/get-dependents-graph@3.0.0-next.6
    • @changesets/should-skip-package@1.0.0-next.6

@changesets/apply-release-plan@8.0.0-next.7

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3, 6c79210, 18bc470]:
    • @changesets/types@7.0.0-next.6
    • @changesets/git@4.0.0-next.6
    • @changesets/config@4.0.0-next.6
    • @changesets/should-skip-package@1.0.0-next.6

@changesets/changelog-git@1.0.0-next.6

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/get-dependents-graph@3.0.0-next.6

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/get-release-plan@5.0.0-next.7

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3, 18bc470, 3aae903]:
    • @changesets/types@7.0.0-next.6
    • @changesets/assemble-release-plan@7.0.0-next.7
    • @changesets/pre@3.0.0-next.6
    • @changesets/config@4.0.0-next.6
    • @changesets/read@1.0.0-next.7

@changesets/git@4.0.0-next.6

Patch Changes

  • #584 6c79210 Thanks @Andarist! - Avoid an infinite loop when git commands fail to execute when Changesets try to retrieve commits that added files.
  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/parse@1.0.0-next.7

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/read@1.0.0-next.7

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3, 6c79210]:
    • @changesets/types@7.0.0-next.6
    • @changesets/git@4.0.0-next.6
    • @changesets/parse@1.0.0-next.7

@changesets/release-utils@1.0.0-next.7

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6
    • @changesets/pre@3.0.0-next.6
    • @changesets/read@1.0.0-next.7

@changesets/should-skip-package@1.0.0-next.6

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@changesets/write@1.0.0-next.6

Patch Changes

  • Updated dependencies [4c26f2f, 813bbf3]:
    • @changesets/types@7.0.0-next.6

@codecov

codecov Bot commented Jun 24, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 87.44%. Comparing base (2f9ca42) to head (69b5d3f).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2122   +/-   ##
=======================================
  Coverage   87.44%   87.44%           
=======================================
  Files          72       72           
  Lines        2596     2596           
  Branches      691      691           
=======================================
  Hits         2270     2270           
  Misses        301      301           
  Partials       25       25           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@changesets-org-version-bot
changesets-org-version-bot Bot force-pushed the changeset-release/main branch 13 times, most recently from d5cd3d0 to 58c4eb7 Compare July 1, 2026 07:29
@Andarist
Andarist enabled auto-merge July 1, 2026 07:32
@Andarist
Andarist added this pull request to the merge queue Jul 1, 2026
Merged via the queue into main with commit c35c350 Jul 1, 2026
12 checks passed
@Andarist
Andarist deleted the changeset-release/main branch July 1, 2026 07:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant