Skip to content

chore(deps): update dependency @changesets/config to v4 - #130

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/changesets-config-4.x
Open

chore(deps): update dependency @changesets/config to v4#130
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/changesets-config-4.x

Conversation

@renovate

@renovate renovate Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@changesets/config (source) ^3.1.3^4.0.0 age confidence

Release Notes

changesets/changesets (@​changesets/config)

v4.0.0

Compare Source

Major Changes
  • #​1994 062530b Thanks @​bluwy! - Replaced the prettier config option with format. format supports "auto", "prettier", "oxfmt", "deno", "dprint", and false. If you previously used prettier: false, migrate to format: false.

  • #​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"));
    }
  • #​1482 df424a4 Thanks @​Andarist! - Bumped supported Node versions to ^22.11 || ^24 || >=26

  • #​1655 db46911 Thanks @​bluwy! - Update @manypkg/get-packages which drops support for detecting packages in Bolt monorepos and adds support for npm monorepos

  • #​1650 b83787f Thanks @​bluwy! - Change the defaultWrittenConfig baseBranch value from "master" to "main"

  • #​1482 df424a4 Thanks @​Andarist! - From now on this package is going to be published as ES module.

  • #​1652 a0b5326 Thanks @​bluwy! - Remove support for the deprecated ___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH.useCalculatedVersionForSnapshots config. The snapshot.useCalculatedVersion config should be used instead.

  • #​2186 3910adf Thanks @​Andarist! - Private packages are no longer versioned by default. Set privatePackages to true to opt into versioning and tagging them, or set privatePackages.version to true to version them without tagging.

Minor Changes
Patch Changes

v3.1.4

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested review from a team and Adammatthiesen as code owners August 17, 2026 01:00
@changeset-bot

changeset-bot Bot commented Aug 17, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: c7800f5

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@pkg-pr-new

pkg-pr-new Bot commented Aug 17, 2026

Copy link
Copy Markdown
css-js-gen

npm i https://pkg.pr.new/css-js-gen@130

expressive-code-twoslash

npm i https://pkg.pr.new/expressive-code-twoslash@130

@ec-ts/twoslash

npm i https://pkg.pr.new/@ec-ts/twoslash@130

@ec-ts/twoslash-vue

npm i https://pkg.pr.new/@ec-ts/twoslash-vue@130

@ec-ts/vfs

npm i https://pkg.pr.new/@ec-ts/vfs@130

commit: c7800f5

@apollo-git-bot

apollo-git-bot Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

Allure Report Summary

Name Duration Stats New Flaky Retry Report
css-js-gen Tests 14ms Passed tests 37 94 0 0
@ec-ts/twoslash Tests 22s 546ms Passed tests 29 94 0 0
@ec-ts/twoslash-vue Tests 4s 781ms Passed tests 7 94 0 0
@ec-ts/vfs Tests 7s 296ms Passed tests 21 94 0 0

@renovate
renovate Bot force-pushed the renovate/changesets-config-4.x branch from b1ea28e to eab3823 Compare August 26, 2026 16:47
@renovate
renovate Bot force-pushed the renovate/changesets-config-4.x branch from eab3823 to c7800f5 Compare September 3, 2026 00:44
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.

0 participants