Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2025

This PR contains the following updates:

Package Change Age Confidence
@sanity/pkg-utils (source) ^8.1.21^10.4.4 age confidence

Release Notes

sanity-io/pkg-utils (@​sanity/pkg-utils)

v10.4.4

Compare Source

Patch Changes

v10.4.3

Compare Source

Patch Changes

v10.4.2

Compare Source

Patch Changes

v10.4.1

Compare Source

Patch Changes

v10.4.0

Compare Source

Minor Changes
  • #​2538 a7bd216 Thanks @​copilot-swe-agent! - Auto-enable styled-components compiler when detected as peer dependency. If styled-components is in peerDependencies and babel-plugin-styled-components is in devDependencies, the babel plugin is automatically enabled without requiring explicit configuration. Users can disable this behavior by setting babel: { styledComponents: false } in package.config.ts.
Patch Changes

v10.3.5

Compare Source

Patch Changes

v10.3.4

Compare Source

Patch Changes

v10.3.3

Compare Source

Patch Changes

v10.3.2

Compare Source

Patch Changes

v10.3.1

Compare Source

Patch Changes

v10.3.0

Compare Source

Minor Changes
Patch Changes

v10.2.6

Compare Source

Patch Changes

v10.2.5

Compare Source

Patch Changes

v10.2.4

Compare Source

Patch Changes

v10.2.3

Compare Source

Patch Changes

v10.2.2

Compare Source

Patch Changes

v10.2.1

Compare Source

Patch Changes

v10.2.0

Compare Source

Minor Changes
Patch Changes

v10.1.3

Compare Source

Patch Changes

v10.1.2

Compare Source

Patch Changes

v10.1.1

Patch Changes

v10.1.0

Minor Changes
Patch Changes

v10.0.0

Major Changes
  • #​2329 c5b81e7 Thanks @​stipsan! - The tsconfig presets have moved to a new package, pnpm install --save-dev @​sanity/tsconfig and update your imports in tsconfig.json files:

    • @sanity/pkg-utils/tsconfig/recommended.json -> @sanity/tsconfig/recommended
      {
      -  "extends": "@​sanity/pkg-utils/tsconfig/recommended.json"
      +  "extends": "@​sanity/tsconfig/recommended"
      }
    • @sanity/pkg-utils/tsconfig/strict.json -> @sanity/tsconfig/strict
      {
      -  "extends": "@​sanity/pkg-utils/tsconfig/strict.json"
      +  "extends": "@​sanity/tsconfig/strict"
      }
    • @sanity/pkg-utils/tsconfig/strictest.json -> @sanity/tsconfig/strictest
      {
      -  "extends": "@​sanity/pkg-utils/tsconfig/strictest.json"
      +  "extends": "@​sanity/tsconfig/strictest"
      }
    • @sanity/pkg-utils/tsconfig/isolated-declarations.json -> @sanity/tsconfig/isolated-declarations
      {
      -  "extends": ["@​sanity/pkg-utils/tsconfig/strictest.json", "@​sanity/pkg-utils/tsconfig/isolated-declarations.json"]
      +  "extends": ["@​sanity/tsconfig/strictest", "@​sanity/tsconfig/isolated-declarations"]
      }
  • #​2332 c99d52f Thanks @​stipsan! - Removed internal exports:

    import {
      build,
      check,
      createLogger,
      getExtractMessagesConfig,
      init,
      loadPkg,
      loadPkgWithReporting,
      parseExports,
      parseStrictOptions,
      watch,
    } from '@​sanity/pkg-utils'
  • #​2331 ae7b51c Thanks @​stipsan! - Removed noPackageJsonMain and noPackageJsonModule rules

v9.2.3

Compare Source

Patch Changes

v9.2.2

Compare Source

Patch Changes

v9.2.1

Compare Source

Patch Changes

v9.2.0

Compare Source

Minor Changes

v9.1.5

Compare Source

Patch Changes

v9.1.4

Compare Source

Patch Changes

v9.1.3

Compare Source

Patch Changes

v9.1.2

Compare Source

Patch Changes

v9.1.1

Compare Source

Patch Changes

v9.1.0

Compare Source

Minor Changes
  • #​2202 207f489 Thanks @​copilot-swe-agent! - feat: Add configurable strict checks for legacy package.json fields

    Added new strict options to warn about deprecated package.json fields that are no longer needed with modern Node.js and bundlers:

    • noPackageJsonMain - Warns when main field is present (use exports instead)
    • noPackageJsonModule - Warns when module field is present (use exports instead)
    • noPackageJsonBrowser - Warns when browser field is present (use browser condition in exports)
    • noPackageJsonTypesVersions - Warns when typesVersions field is present (TypeScript supports types condition in exports)
    • preferModuleType - Warns when type field is missing or set to commonjs (future versions will require "type": "module")

    All new checks default to warn level and are configurable via strictOptions in package.config.ts.

    BREAKING CHANGES:

    • Removed alwaysPackageJsonMain strict option (conflicted with the new noPackageJsonMain option)
    • The top-level types field is still required for npm package listings to show TypeScript support
  • #​2221 107c8a6 Thanks @​stipsan! - Update @microsoft/api-extractor to ^7.55.0 and @microsoft/tsdoc-config to ^0.18.0

Patch Changes

v9.0.9

Compare Source

Patch Changes

v9.0.8

Compare Source

Patch Changes

v9.0.6

Compare Source

Patch Changes

v9.0.5

Compare Source

Patch Changes

v9.0.4

Compare Source

Bug Fixes

v9.0.3

Compare Source

Bug Fixes

v9.0.2

Compare Source

Bug Fixes

v9.0.1

Compare Source

Bug Fixes

v9.0.0

Compare Source

⚠ BREAKING CHANGES
  • resolve package.config.ts as ESM when supported. This means that if the package.json has "type": "commonjs" then the package.config.ts can no longer use import/export keywords. If you're unable to start using "type": "module" you'll either have to rename to package.config.mts, or use require/module.exports instead.
Bug Fixes
Code Refactoring
  • resolve package.config.ts as ESM when supported. This means that if the package.json has "type": "commonjs" then the package.config.ts can no longer use import/export keywords. If you're unable to start using "type": "module" you'll either have to rename to package.config.mts, or use require/module.exports instead. (2c65e63)

v8.1.29

Compare Source

Bug Fixes

v8.1.28

Compare Source

Bug Fixes

v8.1.27

Compare Source

Bug Fixes

v8.1.26

Compare Source

Bug Fixes

v8.1.25

Compare Source

Bug Fixes

v8.1.24

Compare Source

Bug Fixes

v8.1.23

Compare Source

Bug Fixes

v8.1.22

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), 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 has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

@changeset-bot
Copy link

changeset-bot bot commented Dec 3, 2025

⚠️ No Changeset found

Latest commit: b3d0a43

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.

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

@vercel
Copy link

vercel bot commented Dec 3, 2025

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

Project Deployment Actions Updated (UTC)
icons Ready Ready Preview, Comment Feb 3, 2026 11:26pm

Request Review

@socket-security
Copy link

socket-security bot commented Dec 3, 2025

@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 94e166a to a7699d4 Compare December 4, 2025 09:02
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from a7699d4 to 7d2d020 Compare December 4, 2025 09:13
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 7d2d020 to bacf7e2 Compare December 8, 2025 10:53
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from bacf7e2 to e7b922c Compare December 12, 2025 12:07
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from e7b922c to 98eccc6 Compare December 15, 2025 15:08
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 98eccc6 to 104416f Compare December 15, 2025 18:59
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 104416f to 6185acb Compare December 18, 2025 23:30
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 6185acb to 4be78af Compare December 19, 2025 16:33
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 4be78af to 8117d50 Compare December 30, 2025 10:32
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 8117d50 to d00f3e2 Compare December 31, 2025 18:24
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from d00f3e2 to c663b7b Compare January 6, 2026 19:03
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from c663b7b to 364c329 Compare January 8, 2026 21:25
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 364c329 to 2a1e87d Compare January 9, 2026 14:59
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 2a1e87d to 2088e2d Compare January 12, 2026 19:05
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 2088e2d to 0f38418 Compare January 19, 2026 20:15
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 0f38418 to 6177667 Compare January 20, 2026 10:52
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 6177667 to 6ac2343 Compare January 23, 2026 21:27
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 6ac2343 to 46fb2b5 Compare January 28, 2026 12:12
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 46fb2b5 to 73848ab Compare January 28, 2026 22:56
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from 73848ab to abe7290 Compare January 30, 2026 11:07
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from abe7290 to eb7cb8d Compare February 2, 2026 11:32
@renovate renovate bot force-pushed the renovate/sanity-pkg-utils-10.x branch from eb7cb8d to a10e532 Compare February 3, 2026 11:12
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