Skip to content

Bump the patch-minor group across 1 directory with 40 updates#620

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-minor-9f5e7c45e9
Open

Bump the patch-minor group across 1 directory with 40 updates#620
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-minor-9f5e7c45e9

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the patch-minor group with 40 updates in the / directory:

Package From To
@portabletext/react 6.0.3 6.2.0
@sanity/client 7.16.0 7.22.0
@sanity/code-input 7.0.11 7.1.0
@sanity/core-loader 2.0.6 2.0.9
@sanity/image-url 2.0.3 2.1.1
@sanity/preview-url-secret 4.0.3 4.0.6
@sanity/react-loader 2.0.7 2.0.10
@sanity/ui 3.1.13 3.2.0
@sanity/vision 5.13.0 5.24.0
@sanity/visual-editing 5.3.0 5.3.4
@shopify/hydrogen 2026.1.1 2026.4.2
@shopify/hydrogen-react 2026.1.1 2026.4.2
@shopify/mini-oxygen 4.0.1 4.1.0
@shopify/remix-oxygen 3.0.2 3.0.3
@vercel/stega 1.0.0 1.1.0
graphql 16.13.1 16.14.0
groq 5.13.0 5.24.0
isbot 5.1.35 5.1.40
lodash 4.17.23 4.18.1
motion 12.35.1 12.38.0
nanoid 5.1.6 5.1.11
react 19.2.4 19.2.6
react-dom 19.2.4 19.2.6
react-router 7.13.1 7.15.0
sanity 5.13.0 5.24.0
sanity-plugin-media 4.1.1 4.2.0
styled-components 6.3.11 6.4.1
tailwind-merge 3.5.0 3.6.0
@eslint/compat 2.0.3 2.1.0
@react-router/dev 7.13.1 7.15.0
@react-router/fs-routes 7.13.1 7.15.0
@tailwindcss/vite 4.2.1 4.3.0
@typescript-eslint/eslint-plugin 8.56.1 8.59.2
@typescript-eslint/parser 8.56.1 8.59.2
eslint-plugin-jest 29.15.0 29.15.2
hydrogen-sanity 6.1.1 6.3.0
prettier 3.8.1 3.8.3
prettier-plugin-tailwindcss 0.7.2 0.8.0
tailwindcss 4.2.1 4.3.0
type-fest 5.4.4 5.6.0

Updates @portabletext/react from 6.0.3 to 6.2.0

Release notes

Sourced from @​portabletext/react's releases.

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",
    projectId: "abc123",
    dataset: "production",
    schema: {
    types: [
    defineType({
    name: "post",
    type: "document",
    fields: [
    defineField({ name: "title", type: "string" }),
    defineField({
    name: "content",
    type: "array",
    of: [
    defineArrayMember({ type: "block" }),
    defineArrayMember({
    type: "image",
    options: { hotspot: true },
    fields: [defineField({ name: "alt", type: "string" })],
    }),
    ],
    }),
    ],

... (truncated)

Changelog

Sourced from @​portabletext/react's changelog.

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",
    schema: {
    types: [
    defineType({
    name: "post",
    type: "document",
    fields: [
    defineField({ name: "title", type: "string" }),
    defineField({
    name: "content",
    type: "array",
    of: [
    defineArrayMember({ type: "block" }),
    defineArrayMember({
    type: "image",
    options: { hotspot: true },
    fields: [defineField({ name: "alt", type: "string" })],
    }),
    ],
    }),

... (truncated)

Commits

Updates @sanity/client from 7.16.0 to 7.22.0

Release notes

Sourced from @​sanity/client's releases.

v7.22.0

7.22.0 (2026-04-24)

Features

  • error: expose trace id from backend responses (#1212) (47fa1fe)

v7.21.0

7.21.0 (2026-04-10)

Features

  • live: add waitFor option to defer events until Sanity Function processing (#1209) (3251113)
  • support intercepting requests via internal requestHandler config (#1208) (4d794f6)

Bug Fixes

v7.20.0

7.20.0 (2026-03-20)

Features

  • add more query options to listing projects (#1205) (e193fcb)

v7.19.0

7.19.0 (2026-03-20)

Features

  • types: add VideoSubtitleInfo types to playback info (#1191) (7c55974)

v7.18.0

7.18.0 (2026-03-19)

Features

  • types: add VideoRenditionInfo types with typed resolution (#1186) (6d9e85e)

Bug Fixes

  • stega: allow zero-width space characters in content (#1204) (3dcfca9)

... (truncated)

Changelog

Sourced from @​sanity/client's changelog.

7.22.0 (2026-04-24)

Features

  • error: expose trace id from backend responses (#1212) (47fa1fe)

7.21.0 (2026-04-10)

Features

  • live: add waitFor option to defer events until Sanity Function processing (#1209) (3251113)
  • support intercepting requests via internal requestHandler config (#1208) (4d794f6)

Bug Fixes

7.20.0 (2026-03-20)

Features

  • add more query options to listing projects (#1205) (e193fcb)

7.19.0 (2026-03-20)

Features

  • types: add VideoSubtitleInfo types to playback info (#1191) (7c55974)

7.18.0 (2026-03-19)

Features

  • types: add VideoRenditionInfo types with typed resolution (#1186) (6d9e85e)

Bug Fixes

  • stega: allow zero-width space characters in content (#1204) (3dcfca9)

7.17.0 (2026-03-10)

Features

... (truncated)

Commits
  • df7f14e chore(main): release 7.22.0 (#1214)
  • 47fa1fe feat(error): expose trace id from backend responses (#1212)
  • 711f891 chore(main): release 7.21.0 (#1210)
  • 3251113 feat(live): add waitFor option to defer events until Sanity Function processi...
  • ad4fa50 fix(deps): update get-it to v8.7.2 (#1211)
  • 4d794f6 feat: support intercepting requests via internal requestHandler config (#1208)
  • ff20c13 chore(main): release 7.20.0 (#1207)
  • e193fcb feat: add more query options to listing projects (#1205)
  • 58f2dd2 chore(main): release 7.19.0 (#1206)
  • 7c55974 feat(types): add VideoSubtitleInfo types to playback info (#1191)
  • Additional commits viewable in compare view

Updates @sanity/code-input from 7.0.11 to 7.1.0

Release notes

Sourced from @​sanity/code-input's releases.

@​sanity/code-input@​7.1.0

Minor Changes

  • #798 ad6ff98 Thanks @​rexxars! - Use dedicated GROQ grammar for syntax highlighting instead of falling back to JavaScript

@​sanity/code-input@​7.0.12

Patch Changes

Changelog

Sourced from @​sanity/code-input's changelog.

7.1.0

Minor Changes

  • #798 ad6ff98 Thanks @​rexxars! - Use dedicated GROQ grammar for syntax highlighting instead of falling back to JavaScript

7.0.12

Patch Changes

Commits

Updates @sanity/core-loader from 2.0.6 to 2.0.9

Release notes

Sourced from @​sanity/core-loader's releases.

@​sanity/core-loader@​2.0.8

Patch Changes

Changelog

Sourced from @​sanity/core-loader's changelog.

2.0.9

Patch Changes

2.0.8

Patch Changes

2.0.7 (2026-03-19)

Bug Fixes

  • deps: upgrade @sanity/client to v7.18.0 (f8bbe8e)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/visual-editing-csm bumped to 3.0.6
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​sanity/core-loader since your current version.


Updates @sanity/image-url from 2.0.3 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.
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.
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_...
  • See full diff in compare view

Updates @sanity/preview-url-secret from 4.0.3 to 4.0.6

Release notes

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

@​sanity/preview-url-secret@​4.0.5

Patch Changes

Changelog

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

4.0.6

Patch Changes

4.0.5

Patch Changes

4.0.4 (2026-03-19)

Bug Fixes

  • deps: upgrade @sanity/client to v7.18.0 (f8bbe8e)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​sanity/preview-url-secret since your current version.


Updates @sanity/react-loader from 2.0.7 to 2.0.10

Release notes

Sourced from @​sanity/react-loader's releases.

@​sanity/react-loader@​2.0.9

Patch Changes

Changelog

Sourced from @​sanity/react-loader's changelog.

2.0.10

Patch Changes

2.0.9

Patch Changes

2.0.8 (2026-03-19)

Bug Fixes

  • deps: upgrade @sanity/client to v7.18.0 (f8bbe8e)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 2.0.7
      • @​sanity/visual-editing-csm bumped to 3.0.6
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​sanity/react-loader since your current version.


Updates @sanity/ui from 3.1.13 to 3.2.0

Changelog

Sourced from @​sanity/ui's changelog.

3.2.0 (2026-05-04)

Features

  • space, columns, rows and box grid item deprecation warnings (#2182) (2e2013e), closes #2184

3.1.14 (2026-03-16)

Bug Fixes

  • useDelayedState: cancel timeouts on unmount (#2181) (ec8beba)
Commits
  • d78fd8f chore(release): 3.2.0 [skip ci]
  • 2e2013e feat: space, columns, rows and box grid item deprecation warnings (#2182)
  • 628c5df Revert "Create setup-trusted-publish.yml"
  • 5771bca Create setup-trusted-publish.yml
  • 91a75b4 chore(release): 3.1.14 [skip ci]
  • ec8beba fix(useDelayedState): cancel timeouts on unmount (#2181)
  • See full diff in compare view

Updates @sanity/vision from 5.13.0 to 5.24.0

Release notes

Sourced from @​sanity/vision's releases.

v5.24.0

Sanity Studio v5.24.0

This release includes various improvements and bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/studio-NS4yMy4w

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

To initiate a new Sanity Studio project or learn more about upgrading, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

📓 Full changelog

Author Message Commit
@​jordanl17 feat(core): make document action keys extensible via declaration merging (#12768) eebdb17d97bba5a3ea793d20e7a1aa57f67f59c6
@​bjoerge chore: replace pnpx with pnpm and add pkg-pr-new dependency (#12783) 3d66c1fb7a43f35bddab609336c39804344cf4a9
@​bjoerge chore(turbo): remove unused env var (#12781) f8111fce700584f23572f5956d991c7a2e34ebda
@​bjoerge chore(ci): use pnpm whoami instead of npm whoami (#12780) 2308d145b94a9484817253850ff929f65bf3d81f
@​RitaDias test: add tests for createCallbackResolver (#12779) 5625f37c276b7717396cba145f5ebf4f98fd6650
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^6.5.0 (#12778) f3d306c7bacfc0c2d95d5ff3cf8fd4efc2daf020
@​bjoerge fix: restore workspace hidden property (#12775) 8f4e6b0f4f1b761b240ec15d0314e3d54d388659
@​pedrobonamin fix(core): add version into documentEvents observable (#12772) b511ef939d0ae031505208d45f0f8f6e8ae5fb54
@​bjoerge chore(ci): switch to package build for lefthook (#12767) 838e3556fe1637c2da8a32fce6286f709fb87eae
@​bjoerge chore: remove pre-commit husky hook (#12766) 752aaf67457c91d2a7c0564eb38bc528a8ddb161
@​bjoerge chore: replace husky + lint staged with lefthook (#12755) fcbdbdb66d51bc92507b1fd1131e2311a2d2a729
@​bjoerge chore: upgrade pnpm to 11.0.0 (#12759) 50a185bc76c2df32d112b9a75915f0cb2b37b2c2
@​bjoerge chore(ci): drop node 20 from test matrix (#12760) 8bc9911c100dac9cf679714075bff01d93af3be9
squiggler-app[bot] chore(deps): update dependency @​tanstack/react-virtual to ^3.13.24 (#12657) c4954c51a626b5dbd8ebd6bf0a399b3754d48e63
@​jordanl17 chore: adding telemetry to track when feedback dialog is opened and closed (#12749) 6b16652d7c67e8b10f05112f7978d93126cf7748
@​pedrobonamin fix(core): reset calendar focused date when setting to current time (#12753) ff8a7d492affa4aebd531e1ce0363940115461a9
@​pedrobonamin chore(core): cleanup decision parameters schema (#12751) aa8980b861c73a9f243e26eec71c0f0b18559d24

v5.23.0

Sanity Studio v5.23.0

This release includes various improvements and bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/studio-NS4yMi4w

Install or upgrade Sanity Studio

... (truncated)

Changelog

Sourced from @​sanity/vision's changelog.

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.23.0 (2026-04-29)

Features

5.21.0 (2026-04-15)

Features

5.18.0 (2026-03-24)

Note: Version bump only for package @​sanity/vision

5.17.1 (2026-03-17)

Note: Version bump only for package @​sanity/vision

5.17.0 (2026-03-17)

Note: Version bump only for package @​sanity/vision

5.16.0 (2026-03-14)

Note: Version bump only for package @​sanity/vision

5.15.0 (2026-03-12)

Features

5.14.1 (2026-03-10)

Note: Version bump only for package @​sanity/vision

5.14.0 (2026-03-10)

Note: Version bump only for package @​sanity/vision

Commits
Attestation changes

This version has no provenance attestation, while the previous version (5.13.0) was attested. Review the package versions before updating.


Updates @sanity/visual-editing from 5.3.0 to 5.3.4

Release notes

Sourced from @​sanity/visual-editing's releases.

@​sanity/visual-editing@​5.3.4

Patch Changes

Changelog

Sourced from @​sanity/visual-editing's changelog.

5.3.4

Patch Changes

5.3.3 (2026-03-25)

Bug Fixes

  • move onPerspectiveChange to event handler instead of useEffect (4821bfb)

5.3.2 (2026-03-25)

Bug Fixes

  • only call onPerspectiveChange once the perspective is known (01fb825)

5.3.1 (2026-03-19)

Bug Fixes

  • deps: upgrade @sanity/client to v7.18.0 (f8bbe8e)
  • stega: fails decoding content containing zero width space chars (#3380) (0cd1d9f)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/preview-url-secret bumped to 4.0.4
      • @​sanity/visual-editing-csm bumped to 3.0.6
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​sanity/visual-editing since your current version.


Updates @shopify/hydrogen from 2026.1.1 to 2026.4.2

Release notes

Sourced from @​shopify/hydrogen's releases.

@​shopify/hydrogen-react@​2026.4.2

Minor Changes

  • Add support for Vite 7 and Vite 8. Hydrogen remains backwards-compatible with Vite 5+. (#3617) by @​frandiox

    Mini Oxygen's dev ...

    Description has been truncated

Bumps the patch-minor group with 40 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@portabletext/react](https://github.com/portabletext/react-portabletext) | `6.0.3` | `6.2.0` |
| [@sanity/client](https://github.com/sanity-io/client) | `7.16.0` | `7.22.0` |
| [@sanity/code-input](https://github.com/sanity-io/plugins/tree/HEAD/plugins/@sanity/code-input) | `7.0.11` | `7.1.0` |
| [@sanity/core-loader](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/core-loader) | `2.0.6` | `2.0.9` |
| [@sanity/image-url](https://github.com/sanity-io/image-url) | `2.0.3` | `2.1.1` |
| [@sanity/preview-url-secret](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/preview-url-secret) | `4.0.3` | `4.0.6` |
| [@sanity/react-loader](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/react-loader) | `2.0.7` | `2.0.10` |
| [@sanity/ui](https://github.com/sanity-io/ui) | `3.1.13` | `3.2.0` |
| [@sanity/vision](https://github.com/sanity-io/sanity/tree/HEAD/packages/@sanity/vision) | `5.13.0` | `5.24.0` |
| [@sanity/visual-editing](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/visual-editing) | `5.3.0` | `5.3.4` |
| [@shopify/hydrogen](https://github.com/Shopify/hydrogen/tree/HEAD/packages/hydrogen) | `2026.1.1` | `2026.4.2` |
| [@shopify/hydrogen-react](https://github.com/Shopify/hydrogen/tree/HEAD/packages/hydrogen-react) | `2026.1.1` | `2026.4.2` |
| [@shopify/mini-oxygen](https://github.com/Shopify/hydrogen/tree/HEAD/packages/mini-oxygen) | `4.0.1` | `4.1.0` |
| [@shopify/remix-oxygen](https://github.com/Shopify/hydrogen/tree/HEAD/packages/remix-oxygen) | `3.0.2` | `3.0.3` |
| @vercel/stega | `1.0.0` | `1.1.0` |
| [graphql](https://github.com/graphql/graphql-js) | `16.13.1` | `16.14.0` |
| [groq](https://github.com/sanity-io/sanity/tree/HEAD/packages/groq) | `5.13.0` | `5.24.0` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.35` | `5.1.40` |
| [lodash](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [motion](https://github.com/motiondivision/motion) | `12.35.1` | `12.38.0` |
| [nanoid](https://github.com/ai/nanoid) | `5.1.6` | `5.1.11` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.6` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.6` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.15.0` |
| [sanity](https://github.com/sanity-io/sanity/tree/HEAD/packages/sanity) | `5.13.0` | `5.24.0` |
| [sanity-plugin-media](https://github.com/sanity-io/sanity-plugin-media) | `4.1.1` | `4.2.0` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.3.11` | `6.4.1` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.5.0` | `3.6.0` |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `2.0.3` | `2.1.0` |
| [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) | `7.13.1` | `7.15.0` |
| [@react-router/fs-routes](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-fs-routes) | `7.13.1` | `7.15.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.1` | `4.3.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.59.2` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.59.2` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `29.15.0` | `29.15.2` |
| [hydrogen-sanity](https://github.com/sanity-io/hydrogen-sanity/tree/HEAD/packages/hydrogen-sanity) | `6.1.1` | `6.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.7.2` | `0.8.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.1` | `4.3.0` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `5.4.4` | `5.6.0` |



Updates `@portabletext/react` from 6.0.3 to 6.2.0
- [Release notes](https://github.com/portabletext/react-portabletext/releases)
- [Changelog](https://github.com/portabletext/react-portabletext/blob/main/CHANGELOG.md)
- [Commits](portabletext/react-portabletext@v6.0.3...v6.2.0)

Updates `@sanity/client` from 7.16.0 to 7.22.0
- [Release notes](https://github.com/sanity-io/client/releases)
- [Changelog](https://github.com/sanity-io/client/blob/main/CHANGELOG.md)
- [Commits](sanity-io/client@v7.16.0...v7.22.0)

Updates `@sanity/code-input` from 7.0.11 to 7.1.0
- [Release notes](https://github.com/sanity-io/plugins/releases)
- [Changelog](https://github.com/sanity-io/plugins/blob/main/plugins/@sanity/code-input/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/plugins/commits/@sanity/code-input@7.1.0/plugins/@sanity/code-input)

Updates `@sanity/core-loader` from 2.0.6 to 2.0.9
- [Release notes](https://github.com/sanity-io/visual-editing/releases)
- [Changelog](https://github.com/sanity-io/visual-editing/blob/main/packages/core-loader/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/visual-editing/commits/svelte-loader-v2.0.9/packages/core-loader)

Updates `@sanity/image-url` from 2.0.3 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@v2.0.3...v2.1.1)

Updates `@sanity/preview-url-secret` from 4.0.3 to 4.0.6
- [Release notes](https://github.com/sanity-io/visual-editing/releases)
- [Changelog](https://github.com/sanity-io/visual-editing/blob/main/packages/preview-url-secret/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/visual-editing/commits/HEAD/packages/preview-url-secret)

Updates `@sanity/react-loader` from 2.0.7 to 2.0.10
- [Release notes](https://github.com/sanity-io/visual-editing/releases)
- [Changelog](https://github.com/sanity-io/visual-editing/blob/main/packages/react-loader/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/visual-editing/commits/svelte-loader-v2.0.10/packages/react-loader)

Updates `@sanity/ui` from 3.1.13 to 3.2.0
- [Release notes](https://github.com/sanity-io/ui/releases)
- [Changelog](https://github.com/sanity-io/ui/blob/main/CHANGELOG.md)
- [Commits](sanity-io/ui@v3.1.13...v3.2.0)

Updates `@sanity/vision` from 5.13.0 to 5.24.0
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Changelog](https://github.com/sanity-io/sanity/blob/main/packages/@sanity/vision/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/sanity/commits/v5.24.0/packages/@sanity/vision)

Updates `@sanity/visual-editing` from 5.3.0 to 5.3.4
- [Release notes](https://github.com/sanity-io/visual-editing/releases)
- [Changelog](https://github.com/sanity-io/visual-editing/blob/main/packages/visual-editing/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/visual-editing/commits/@sanity/visual-editing@5.3.4/packages/visual-editing)

Updates `@shopify/hydrogen` from 2026.1.1 to 2026.4.2
- [Release notes](https://github.com/Shopify/hydrogen/releases)
- [Changelog](https://github.com/Shopify/hydrogen/blob/main/packages/hydrogen/CHANGELOG.md)
- [Commits](https://github.com/Shopify/hydrogen/commits/@shopify/hydrogen@2026.4.2/packages/hydrogen)

Updates `@shopify/hydrogen-react` from 2026.1.1 to 2026.4.2
- [Release notes](https://github.com/Shopify/hydrogen/releases)
- [Changelog](https://github.com/Shopify/hydrogen/blob/main/packages/hydrogen-react/CHANGELOG.md)
- [Commits](https://github.com/Shopify/hydrogen/commits/@shopify/hydrogen-react@2026.4.2/packages/hydrogen-react)

Updates `@shopify/mini-oxygen` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/Shopify/hydrogen/releases)
- [Changelog](https://github.com/Shopify/hydrogen/blob/main/packages/mini-oxygen/CHANGELOG.md)
- [Commits](https://github.com/Shopify/hydrogen/commits/@shopify/mini-oxygen@4.1.0/packages/mini-oxygen)

Updates `@shopify/remix-oxygen` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/Shopify/hydrogen/releases)
- [Changelog](https://github.com/Shopify/hydrogen/blob/main/packages/remix-oxygen/CHANGELOG.md)
- [Commits](https://github.com/Shopify/hydrogen/commits/@shopify/remix-oxygen@3.0.3/packages/remix-oxygen)

Updates `@vercel/stega` from 1.0.0 to 1.1.0

Updates `graphql` from 16.13.1 to 16.14.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.13.1...v16.14.0)

Updates `groq` from 5.13.0 to 5.24.0
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Changelog](https://github.com/sanity-io/sanity/blob/main/packages/groq/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/sanity/commits/v5.24.0/packages/groq)

Updates `isbot` from 5.1.35 to 5.1.40
- [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md)
- [Commits](https://github.com/omrilotan/isbot/commits/v5.1.40)

Updates `lodash` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.23...4.18.1)

Updates `motion` from 12.35.1 to 12.38.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.35.1...v12.38.0)

Updates `nanoid` from 5.1.6 to 5.1.11
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@5.1.6...5.1.11)

Updates `react` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `react-dom` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

Updates `react-router` from 7.13.1 to 7.15.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.15.0/packages/react-router)

Updates `sanity` from 5.13.0 to 5.24.0
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Changelog](https://github.com/sanity-io/sanity/blob/main/packages/sanity/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/sanity/commits/v5.24.0/packages/sanity)

Updates `sanity-plugin-media` from 4.1.1 to 4.2.0
- [Release notes](https://github.com/sanity-io/sanity-plugin-media/releases)
- [Changelog](https://github.com/sanity-io/sanity-plugin-media/blob/main/CHANGELOG.md)
- [Commits](sanity-io/sanity-plugin-media@v4.1.1...v4.2.0)

Updates `styled-components` from 6.3.11 to 6.4.1
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](https://github.com/styled-components/styled-components/compare/styled-components@6.3.11...styled-components@6.4.1)

Updates `tailwind-merge` from 3.5.0 to 3.6.0
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0)

Updates `@eslint/compat` from 2.0.3 to 2.1.0
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/compat-v2.1.0/packages/compat)

Updates `@react-router/dev` from 7.13.1 to 7.15.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/dev@7.15.0/packages/react-router-dev)

Updates `@react-router/fs-routes` from 7.13.1 to 7.15.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-fs-routes/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/fs-routes@7.15.0/packages/react-router-fs-routes)

Updates `@tailwindcss/vite` from 4.2.1 to 4.3.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-vite)

Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.59.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.2/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.56.1 to 8.59.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.2/packages/parser)

Updates `eslint-plugin-jest` from 29.15.0 to 29.15.2
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v29.15.0...v29.15.2)

Updates `hydrogen-sanity` from 6.1.1 to 6.3.0
- [Release notes](https://github.com/sanity-io/hydrogen-sanity/releases)
- [Changelog](https://github.com/sanity-io/hydrogen-sanity/blob/main/packages/hydrogen-sanity/CHANGELOG.md)
- [Commits](https://github.com/sanity-io/hydrogen-sanity/commits/v6.3.0/packages/hydrogen-sanity)

Updates `prettier` from 3.8.1 to 3.8.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.1...3.8.3)

Updates `prettier-plugin-tailwindcss` from 0.7.2 to 0.8.0
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.7.2...v0.8.0)

Updates `tailwindcss` from 4.2.1 to 4.3.0
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss)

Updates `type-fest` from 5.4.4 to 5.6.0
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v5.4.4...v5.6.0)

---
updated-dependencies:
- dependency-name: "@portabletext/react"
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/client"
  dependency-version: 7.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/code-input"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/core-loader"
  dependency-version: 2.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/image-url"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/preview-url-secret"
  dependency-version: 4.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/react-loader"
  dependency-version: 2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/ui"
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/vision"
  dependency-version: 5.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/visual-editing"
  dependency-version: 5.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen"
  dependency-version: 2026.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen-react"
  dependency-version: 2026.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/mini-oxygen"
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/remix-oxygen"
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@vercel/stega"
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: graphql
  dependency-version: 16.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: groq
  dependency-version: 5.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: isbot
  dependency-version: 5.1.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: lodash
  dependency-version: 4.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: motion
  dependency-version: 12.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: nanoid
  dependency-version: 5.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: react-router
  dependency-version: 7.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sanity
  dependency-version: 5.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sanity-plugin-media
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: styled-components
  dependency-version: 6.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: tailwind-merge
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@eslint/compat"
  dependency-version: 2.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@react-router/dev"
  dependency-version: 7.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@react-router/fs-routes"
  dependency-version: 7.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.59.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.59.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: eslint-plugin-jest
  dependency-version: 29.15.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: hydrogen-sanity
  dependency-version: 6.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: tailwindcss
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: type-fest
  dependency-version: 5.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
...

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 May 11, 2026
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