Skip to content

Bump the patch-minor group across 1 directory with 43 updates#623

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

Bump the patch-minor group across 1 directory with 43 updates#623
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/patch-minor-40972d811a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
@portabletext/react 6.0.3 6.2.0
@sanity/client 7.16.0 7.22.1
@sanity/code-input 7.0.11 7.1.2
@sanity/core-loader 2.0.6 2.0.12
@sanity/image-url 2.0.3 2.1.1
@sanity/preview-url-secret 4.0.3 4.0.7
@sanity/react-loader 2.0.7 2.0.13
@sanity/ui 3.1.13 3.2.0
@sanity/vision 5.13.0 5.30.0
@sanity/visual-editing 5.3.0 5.4.3
@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.1
groq 5.13.0 5.30.0
isbot 5.1.35 5.1.41
lodash 4.17.23 4.18.1
motion 12.35.1 12.40.0
nanoid 5.1.6 5.1.11
react 19.2.4 19.2.7
@types/react 19.2.14 19.2.17
react-dom 19.2.4 19.2.7
react-router 7.13.1 7.17.0
sanity 5.13.0 5.30.0
sanity-plugin-media 4.1.1 4.3.0
styled-components 6.3.11 6.4.2
tailwind-merge 3.5.0 3.6.0
@eslint/compat 2.0.3 2.1.0
@react-router/dev 7.13.1 7.17.0
@react-router/fs-routes 7.13.1 7.17.0
@tailwindcss/vite 4.2.1 4.3.0
@typescript-eslint/eslint-plugin 8.56.1 8.60.1
@typescript-eslint/parser 8.56.1 8.60.1
eslint-import-resolver-typescript 4.4.4 4.4.5
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.7.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.1

Release notes

Sourced from @​sanity/client's releases.

v7.22.1

7.22.1 (2026-05-28)

Bug Fixes

  • live: verify CORS via /check/cors (credentials-aware) before reporting CorsOriginError (#1219) (566e1b5)

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)

... (truncated)

Changelog

Sourced from @​sanity/client's changelog.

7.22.1 (2026-05-28)

Bug Fixes

  • live: verify CORS via /check/cors (credentials-aware) before reporting CorsOriginError (#1219) (566e1b5)

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

... (truncated)

Commits
  • ca9edfc chore(main): release 7.22.1 (#1222)
  • 566e1b5 fix(live): verify CORS via /check/cors (credentials-aware) before reporting C...
  • 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)
  • Additional commits viewable in compare view

Updates @sanity/code-input from 7.0.11 to 7.1.2

Release notes

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

@​sanity/code-input@​7.1.2

Patch Changes

  • #903 2f03c8d Thanks @​bjoerge! - Widen sanity peer-dependency range to ^5 || ^6.0.0-0 to support Sanity Studio v6 (including v6 pre-releases).

@​sanity/code-input@​7.1.1

Patch Changes

@​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.2

Patch Changes

  • #903 2f03c8d Thanks @​bjoerge! - Widen sanity peer-dependency range to ^5 || ^6.0.0-0 to support Sanity Studio v6 (including v6 pre-releases).

7.1.1

Patch Changes

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

Release notes

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

@​sanity/core-loader@​2.0.12

Patch Changes

@​sanity/core-loader@​2.0.11

Patch Changes

@​sanity/core-loader@​2.0.10

Patch Changes

  • #3417 4b9f4e0 Thanks @​copilot-swe-agent! - Add publishConfig.exports to improve package resolution for consumers by stripping the source export condition from published builds

@​sanity/core-loader@​2.0.8

Patch Changes

Changelog

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

2.0.12

Patch Changes

2.0.11

Patch Changes

2.0.10

Patch Changes

  • #3417 4b9f4e0 Thanks @​copilot-swe-agent! - Add publishConfig.exports to improve package resolution for consumers by stripping the source export condition from published builds

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

... (truncated)

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

Release notes

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

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

Patch Changes

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

Patch Changes

Changelog

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

4.0.7

Patch Changes

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

Release notes

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

@​sanity/react-loader@​2.0.13

Patch Changes

@​sanity/react-loader@​2.0.12

Patch Changes

@​sanity/react-loader@​2.0.11

Patch Changes

  • #3417 4b9f4e0 Thanks @​copilot-swe-agent! - Add publishConfig.exports to improve package resolution for consumers by stripping the source export condition from published builds

  • Updated dependencies [4b9f4e0]:

    • @​sanity/core-loader@​2.0.10

@​sanity/react-loader@​2.0.9

Patch Changes

Changelog

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

2.0.13

Patch Changes

2.0.12

Patch Changes

2.0.11

Patch Changes

  • #3417 4b9f4e0 Thanks @​copilot-swe-agent! - Add publishConfig.exports to improve package resolution for consumers by stripping the source export condition from published builds

  • Updated dependencies [4b9f4e0]:

    • @​sanity/core-loader@​2.0.10

2.0.10

Patch Changes

2.0.9

Patch Changes

... (truncated)

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

Release notes

Sourced from @​sanity/vision's releases.

v5.30.0

Sanity Studio v5.30.0

This release includes various improvements and bug fixes.

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

Install or upgrade Sanity StudioDescription has been truncated

Bumps the patch-minor group with 42 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.1` |
| [@sanity/code-input](https://github.com/sanity-io/plugins/tree/HEAD/plugins/@sanity/code-input) | `7.0.11` | `7.1.2` |
| [@sanity/core-loader](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/core-loader) | `2.0.6` | `2.0.12` |
| [@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.7` |
| [@sanity/react-loader](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/react-loader) | `2.0.7` | `2.0.13` |
| [@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.30.0` |
| [@sanity/visual-editing](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/visual-editing) | `5.3.0` | `5.4.3` |
| [@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.1` |
| [groq](https://github.com/sanity-io/sanity/tree/HEAD/packages/groq) | `5.13.0` | `5.30.0` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.35` | `5.1.41` |
| [lodash](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [motion](https://github.com/motiondivision/motion) | `12.35.1` | `12.40.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.7` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.17` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.7` |
| [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) | `7.13.1` | `7.17.0` |
| [sanity](https://github.com/sanity-io/sanity/tree/HEAD/packages/sanity) | `5.13.0` | `5.30.0` |
| [sanity-plugin-media](https://github.com/sanity-io/sanity-plugin-media) | `4.1.1` | `4.3.0` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.3.11` | `6.4.2` |
| [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.17.0` |
| [@react-router/fs-routes](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-fs-routes) | `7.13.1` | `7.17.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.60.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.60.1` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `4.4.4` | `4.4.5` |
| [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.7.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.1
- [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.1)

Updates `@sanity/code-input` from 7.0.11 to 7.1.2
- [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.2/plugins/@sanity/code-input)

Updates `@sanity/core-loader` from 2.0.6 to 2.0.12
- [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/@sanity/core-loader@2.0.12/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.7
- [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/@sanity/preview-url-secret@4.0.7/packages/preview-url-secret)

Updates `@sanity/react-loader` from 2.0.7 to 2.0.13
- [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/@sanity/react-loader@2.0.13/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.30.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.30.0/packages/@sanity/vision)

Updates `@sanity/visual-editing` from 5.3.0 to 5.4.3
- [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.4.3/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.1
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.13.1...v16.14.1)

Updates `groq` from 5.13.0 to 5.30.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.30.0/packages/groq)

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

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.40.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.35.1...v12.40.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 `radix-ui` from 1.4.3 to 1.5.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui)

Updates `react` from 19.2.4 to 19.2.7
- [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.7/packages/react)

Updates `@types/react` from 19.2.14 to 19.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.2.4 to 19.2.7
- [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.7/packages/react-dom)

Updates `react-router` from 7.13.1 to 7.17.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.17.0/packages/react-router)

Updates `sanity` from 5.13.0 to 5.30.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.30.0/packages/sanity)

Updates `sanity-plugin-media` from 4.1.1 to 4.3.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.3.0)

Updates `styled-components` from 6.3.11 to 6.4.2
- [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.2)

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.17.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.17.0/packages/react-router-dev)

Updates `@react-router/fs-routes` from 7.13.1 to 7.17.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.17.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 `@types/react` from 19.2.14 to 19.2.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.60.1
- [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.60.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.56.1 to 8.60.1
- [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.60.1/packages/parser)

Updates `eslint-import-resolver-typescript` from 4.4.4 to 4.4.5
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v4.4.4...v4.4.5)

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.7.0
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v5.4.4...v5.7.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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/code-input"
  dependency-version: 7.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/core-loader"
  dependency-version: 2.0.12
  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.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/react-loader"
  dependency-version: 2.0.13
  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.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/visual-editing"
  dependency-version: 5.4.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: groq
  dependency-version: 5.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: isbot
  dependency-version: 5.1.41
  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.40.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: radix-ui
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: react-router
  dependency-version: 7.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sanity
  dependency-version: 5.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sanity-plugin-media
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: styled-components
  dependency-version: 6.4.2
  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.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@react-router/fs-routes"
  dependency-version: 7.17.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: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.60.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.60.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: eslint-import-resolver-typescript
  dependency-version: 4.4.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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.7.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 Jun 8, 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