Skip to content

Version Packages (next)#2036

Open
github-actions[bot] wants to merge 1 commit into
nextfrom
changeset-release/next
Open

Version Packages (next)#2036
github-actions[bot] wants to merge 1 commit into
nextfrom
changeset-release/next

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented May 26, 2026

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

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

next 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 next.

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

Releases

@changesets/[email protected]

Major Changes

  • #2015 6a05002 Thanks @beeequeue! - Removed read and parse functions in favor of readConfig, which returns { config, warnings, errors } instead of throwing on issues.

    // before.ts
    import { parse } from "@changesets/config";
    import { getPackages } from "@manypkg/get-packages";
    
    const config = parse({ commit: true }, await getPackages());
    
    try {
      return parse({ commit: true }, packages);
    } catch (err) {
      if (err instanceof ValidationError) {
        console.error(`Invalid config: ${err.message}`);
      } else {
        throw err;
      }
    }
    
    // after.ts
    import { readConfig } from "@changesets/config";
    import { getPackages } from "@manypkg/get-packages";
    
    // both arguments are optional
    const { config, warnings, errors } = readConfig(
      process.cwd(),
      await getPackages(),
    );
    
    if (warnings.length !== 0) {
      console.warn(warnings.join("\n"));
    }
    if (config == null) {
      console.error(errors.join("\n"));
    }

Minor Changes

Patch Changes

@changesets/[email protected]

Major Changes

Minor Changes

  • #2015 6a05002 Thanks @beeequeue! - Added cause option to ExitError to help surface the cause behind exiting.

@changesets/[email protected]

Major Changes

  • #2040 88f2abb Thanks @bluwy! - Use stricter types for the options parameter for CommitFunctions, ChangelogFunctions, Config & WrittenConfig's commit and changelog properties, to null | Record<string, unknown> instead of any or Record<string, any>

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@changesets/[email protected]

Patch Changes

@github-actions github-actions Bot force-pushed the changeset-release/next branch 2 times, most recently from 1d2bc3a to b2ab05a Compare May 26, 2026 10:05
@codecov
Copy link
Copy Markdown

codecov Bot commented May 28, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 80.59%. Comparing base (88f2abb) to head (c7bcce6).

Additional details and impacted files
@@           Coverage Diff           @@
##             next    #2036   +/-   ##
=======================================
  Coverage   80.59%   80.59%           
=======================================
  Files          61       61           
  Lines        2319     2319           
  Branches      636      638    +2     
=======================================
  Hits         1869     1869           
  Misses        398      398           
  Partials       52       52           

☔ View full report in Codecov by Sentry.
📢 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.

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.

0 participants