Skip to content

chore(deps): bump the production-dependencies group with 2 updates - #146

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-814275837c
Open

chore(deps): bump the production-dependencies group with 2 updates#146
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-814275837c

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the production-dependencies group with 2 updates: @portabletext/react and @sanity/image-url.

Updates @portabletext/react from 3.2.4 to 7.0.1

Release notes

Sourced from @​portabletext/react's releases.

v7.0.1

Patch Changes

  • #336 282c73d Thanks @​stipsan! - Give default Portable Text components proper function names for React DevTools and React Compiler coverage.

v7.0.0

Major Changes

  • #333 87a9b1e Thanks @​stipsan! - <PortableText> now ships as two builds selected by export conditions: the default build is optimized with React Compiler auto-memoization, and an uncompiled build serves the react-server condition, since React Server Components refuse to load compiled output (facebook/react#31702):

    ".": {
      "types": "./dist/index.d.ts",
      "react-server": "./dist/index.react-server.js",
      "default": "./dist/index.js"
    }

    There are no API changes. Client components and SSR get the compiled build, with finer-grained memoization than the manual useMemo calls it replaces, and server components render the same source uncompiled — they render exactly once, so memoization can never pay off there.

    BREAKING: React 19 is now required (peerDependencies.react is ^19) — the compiled build loads react/compiler-runtime, which only exists in React 19. Stay on @portabletext/react@6 if you are on React 18.

v6.2.0

Minor Changes

  • #309 575c9b4 Thanks @​stipsan! - TypeGen-aware Portable Text components

    <PortableText> now infers the shape of every component handler from the value prop. When you pass a value typed by Sanity TypeGen, components.types, components.marks, components.block, components.list, and components.listItem all receive precise value props for the exact content the query returned.

    Three new utility types ship with this feature:

    • InferComponents<T> - same inference as the inline components prop, for hoisting components out of JSX.
    • InferStrictComponents<T> - strict variant that requires a handler for every inferred custom type, mark, block style, and list style, and rejects handlers that aren't in the schema (and therefore not visible to TypeGen).
    • InferValue<T> - derives a Portable Text array value type from any TypeGen query result type, useful for re-usable wrapper components.

    Schema

    Every example below assumes the same sanity.config.ts:

    // sanity.config.ts
    import {
      defineArrayMember,
      defineConfig,
      defineField,
      defineType,
    } from "sanity";
    export default defineConfig({
    name: "default",

... (truncated)

Changelog

Sourced from @​portabletext/react's changelog.

7.0.1

Patch Changes

  • #336 282c73d Thanks @​stipsan! - Give default Portable Text components proper function names for React DevTools and React Compiler coverage.

7.0.0

Major Changes

  • #333 87a9b1e Thanks @​stipsan! - <PortableText> now ships as two builds selected by export conditions: the default build is optimized with React Compiler auto-memoization, and an uncompiled build serves the react-server condition, since React Server Components refuse to load compiled output (facebook/react#31702):

    ".": {
      "types": "./dist/index.d.ts",
      "react-server": "./dist/index.react-server.js",
      "default": "./dist/index.js"
    }

    There are no API changes. Client components and SSR get the compiled build, with finer-grained memoization than the manual useMemo calls it replaces, and server components render the same source uncompiled — they render exactly once, so memoization can never pay off there.

    BREAKING: React 19 is now required (peerDependencies.react is ^19) — the compiled build loads react/compiler-runtime, which only exists in React 19. Stay on @portabletext/react@6 if you are on React 18.

6.2.0

Minor Changes

  • #309 575c9b4 Thanks @​stipsan! - TypeGen-aware Portable Text components

    <PortableText> now infers the shape of every component handler from the value prop. When you pass a value typed by Sanity TypeGen, components.types, components.marks, components.block, components.list, and components.listItem all receive precise value props for the exact content the query returned.

    Three new utility types ship with this feature:

    • InferComponents<T> - same inference as the inline components prop, for hoisting components out of JSX.
    • InferStrictComponents<T> - strict variant that requires a handler for every inferred custom type, mark, block style, and list style, and rejects handlers that aren't in the schema (and therefore not visible to TypeGen).
    • InferValue<T> - derives a Portable Text array value type from any TypeGen query result type, useful for re-usable wrapper components.

    Schema

    Every example below assumes the same sanity.config.ts:

    // sanity.config.ts
    import {defineArrayMember, defineConfig, defineField, defineType} from 'sanity'
    export default defineConfig({
    name: 'default',
    projectId: 'abc123',
    dataset: 'production',

... (truncated)

Commits
  • 567ce07 Version Packages (#337)
  • 282c73d refactor: use named functions for all default components (#336)
  • 874f775 Version Packages (#334)
  • 87a9b1e feat!: compile with React Compiler, ship an uncompiled react-server build for...
  • 652d552 chore: enable react compiler linter (#332)
  • b705d5b chore(deps): lock file maintenance (#330)
  • b319ce2 chore(deps): update non-major (#331)
  • a64dd5d chore(deps): update dependency typescript to v7 (#329)
  • 14b6b07 chore(deps): update non-major (#328)
  • 9f2fa6b chore(deps): update dependency esbuild to v0.28.1 [security] (#319)
  • Additional commits viewable in compare view

Updates @sanity/image-url from 1.2.0 to 2.1.1

Release notes

Sourced from @​sanity/image-url's releases.

v2.1.1

Patch Changes

v2.1.0

Minor Changes

  • #97 25eefd4 Thanks @​rdunk! - Add support for clients configured with the resource property, mark ~experimental_resource as deprecated.

v2.0.3

Patch Changes

v2.0.2

Patch Changes

  • #93 f1cd12d Thanks @​rdunk! - Restore the legacy default builder export (marked deprecated) to maintain partial backwards compatibility.

v2.0.1

Patch Changes

  • #90 b1ebf65 Thanks @​rdunk! - Replaced the exported builder class instance types with public interfaces to avoid TS4094 errors and fixed the signed builder type export names

v2.0.0

Major Changes

  • #84 440e082 Thanks @​rdunk! - Export all public types from the main package entry point. Replaces type imports from internal /lib paths.

  • #84 440e082 Thanks @​rdunk! - Dropped CommonJS support. The package is now ESM only; use import syntax instead of require().

  • #84 440e082 Thanks @​rdunk! - Replaced the default export with a named export. Use createImageUrlBuilder instead of the default export.

Minor Changes

Changelog

Sourced from @​sanity/image-url's changelog.

2.1.1

Patch Changes

2.1.0

Minor Changes

  • #97 25eefd4 Thanks @​rdunk! - Add support for clients configured with the resource property, mark ~experimental_resource as deprecated.

2.0.3

Patch Changes

2.0.2

Patch Changes

  • #93 f1cd12d Thanks @​rdunk! - Restore the legacy default builder export (marked deprecated) to maintain partial backwards compatibility.

2.0.1

Patch Changes

  • #90 b1ebf65 Thanks @​rdunk! - Replaced the exported builder class instance types with public interfaces to avoid TS4094 errors and fixed the signed builder type export names

2.0.0

Major Changes

  • #84 440e082 Thanks @​rdunk! - Export all public types from the main package entry point. Replaces type imports from internal /lib paths.

  • #84 440e082 Thanks @​rdunk! - Dropped CommonJS support. The package is now ESM only; use import syntax instead of require().

  • #84 440e082 Thanks @​rdunk! - Replaced the default export with a named export. Use createImageUrlBuilder instead of the default export.

Minor Changes

Commits
  • 58b230e Version Packages (#104)
  • 135943c fix: read dataset and canvas resources (#103)
  • f346fd2 chore(deps): update actions/setup-node action to v6 (#101)
  • a0935f4 Version Packages (#98)
  • 67569a6 chore(deps): update actions/setup-node action to v5 (#100)
  • 8424247 chore(deps): update actions/checkout action to v6 (#99)
  • 25eefd4 feat: add support for client resource property over deprecated ~experimental_...
  • ac41888 Version Packages (#96)
  • ee18507 fix: enforce expiry parameter when signing (#95)
  • cee1fad Version Packages (#94)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 2 updates: [@portabletext/react](https://github.com/portabletext/react-portabletext) and [@sanity/image-url](https://github.com/sanity-io/image-url).


Updates `@portabletext/react` from 3.2.4 to 7.0.1
- [Release notes](https://github.com/portabletext/react-portabletext/releases)
- [Changelog](https://github.com/portabletext/react-portabletext/blob/main/CHANGELOG.md)
- [Commits](portabletext/react-portabletext@v3.2.4...v7.0.1)

Updates `@sanity/image-url` from 1.2.0 to 2.1.1
- [Release notes](https://github.com/sanity-io/image-url/releases)
- [Changelog](https://github.com/sanity-io/image-url/blob/main/CHANGELOG.md)
- [Commits](sanity-io/image-url@v1.2.0...v2.1.1)

---
updated-dependencies:
- dependency-name: "@portabletext/react"
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@sanity/image-url"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 3, 2026
@vercel

vercel Bot commented Aug 3, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
therugbypanda Ready Ready Preview Aug 3, 2026 5:16am

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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants