Skip to content

Bump the patch-minor group across 1 directory with 39 updates#624

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-03b5a98a96
Closed

Bump the patch-minor group across 1 directory with 39 updates#624
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-03b5a98a96

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
@portabletext/react 6.0.3 6.2.0
@sanity/client 7.16.0 7.23.0
@sanity/code-input 7.0.11 7.2.0
@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/uuid 3.0.2 3.0.3
@sanity/visual-editing 5.3.0 5.4.4
@shopify/hydrogen 2026.1.1 2026.4.4
@shopify/hydrogen-react 2026.1.1 2026.4.3
@shopify/mini-oxygen 4.0.1 4.1.0
@shopify/remix-oxygen 3.0.2 3.0.4
@vercel/stega 1.0.0 1.1.0
graphql-tag 2.12.6 2.12.7
isbot 5.1.35 5.1.44
lodash 4.17.23 4.18.1
motion 12.35.1 12.42.0
nanoid 5.1.6 5.1.16
react 19.2.4 19.2.7
@types/react 19.2.14 19.2.17
react-dom 19.2.4 19.2.7
react-use 17.6.0 17.6.1
styled-components 6.3.11 6.4.3
tailwind-merge 3.5.0 3.6.0
@eslint/compat 2.0.3 2.1.0
@tailwindcss/typography 0.5.19 0.5.20
@tailwindcss/vite 4.2.1 4.3.2
@typescript-eslint/eslint-plugin 8.56.1 8.62.1
@typescript-eslint/parser 8.56.1 8.62.1
eslint-import-resolver-typescript 4.4.4 4.4.5
eslint-plugin-jest 29.15.0 29.15.4
hydrogen-sanity 6.1.1 6.3.0
prettier 3.8.1 3.9.4
prettier-plugin-tailwindcss 0.7.2 0.8.0
tailwindcss 4.2.1 4.3.2
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.23.0

Release notes

Sourced from @​sanity/client's releases.

v7.23.0

7.23.0 (2026-06-17)

Features

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)

... (truncated)

Changelog

Sourced from @​sanity/client's changelog.

7.23.0 (2026-06-17)

Features

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)

... (truncated)

Commits
  • 2e4f5b9 chore(main): release 7.23.0
  • 7c0406a feat: add documentsExists for batch existence checks (#1215)
  • d3aad14 feat: improve get-it HTTP stacktraces (#1184)
  • 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)
  • Additional commits viewable in compare view

Updates @sanity/code-input from 7.0.11 to 7.2.0

Release notes

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

@​sanity/code-input@​7.2.0

Minor Changes

  • #1433 1ca8564 Thanks @​nuotsu! - Add an "Expand editor" button that expands the code editor to fill the document pane. Use the new disableFullscreen field option to hide it.

Patch Changes

@​sanity/code-input@​7.1.6

Patch Changes

  • a1aca4c Thanks @​stipsan! - Stop publishing the assets directory to npm and reference README images via absolute GitHub URLs

@​sanity/code-input@​7.1.5

Patch Changes

@​sanity/code-input@​7.1.4

Patch Changes

Changelog

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

7.2.0

Minor Changes

  • #1433 1ca8564 Thanks @​nuotsu! - Add an "Expand editor" button that expands the code editor to fill the document pane. Use the new disableFullscreen field option to hide it.

Patch Changes

7.1.6

Patch Changes

  • a1aca4c Thanks @​stipsan! - Stop publishing the assets directory to npm and reference README images via absolute GitHub URLs

7.1.5

Patch Changes

7.1.4

Patch Changes

7.1.3

Patch Changes

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

... (truncated)

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"Description has been truncated

Bumps the patch-minor group with 38 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.23.0` |
| [@sanity/code-input](https://github.com/sanity-io/plugins/tree/HEAD/plugins/@sanity/code-input) | `7.0.11` | `7.2.0` |
| [@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/uuid](https://github.com/sanity-io/uuid) | `3.0.2` | `3.0.3` |
| [@sanity/visual-editing](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/visual-editing) | `5.3.0` | `5.4.4` |
| [@shopify/hydrogen](https://github.com/Shopify/hydrogen/tree/HEAD/packages/hydrogen) | `2026.1.1` | `2026.4.4` |
| [@shopify/hydrogen-react](https://github.com/Shopify/hydrogen/tree/HEAD/packages/hydrogen-react) | `2026.1.1` | `2026.4.3` |
| [@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.4` |
| @vercel/stega | `1.0.0` | `1.1.0` |
| [graphql-tag](https://github.com/apollographql/graphql-tag) | `2.12.6` | `2.12.7` |
| [isbot](https://github.com/omrilotan/isbot) | `5.1.35` | `5.1.44` |
| [lodash](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [motion](https://github.com/motiondivision/motion) | `12.35.1` | `12.42.0` |
| [nanoid](https://github.com/ai/nanoid) | `5.1.6` | `5.1.16` |
| [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-use](https://github.com/streamich/react-use) | `17.6.0` | `17.6.1` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.3.11` | `6.4.3` |
| [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` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.19` | `0.5.20` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.1` | `4.3.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.62.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.62.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.4` |
| [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.9.4` |
| [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.2` |
| [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.23.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.23.0)

Updates `@sanity/code-input` from 7.0.11 to 7.2.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.2.0/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/uuid` from 3.0.2 to 3.0.3
- [Commits](https://github.com/sanity-io/uuid/commits)

Updates `@sanity/visual-editing` from 5.3.0 to 5.4.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.4.4/packages/visual-editing)

Updates `@shopify/hydrogen` from 2026.1.1 to 2026.4.4
- [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.4/packages/hydrogen)

Updates `@shopify/hydrogen-react` from 2026.1.1 to 2026.4.3
- [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.3/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.4
- [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.4/packages/remix-oxygen)

Updates `@vercel/stega` from 1.0.0 to 1.1.0

Updates `graphql-tag` from 2.12.6 to 2.12.7
- [Release notes](https://github.com/apollographql/graphql-tag/releases)
- [Changelog](https://github.com/apollographql/graphql-tag/blob/main/CHANGELOG.md)
- [Commits](apollographql/graphql-tag@v2.12.6...v2.12.7)

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

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.42.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.35.1...v12.42.0)

Updates `nanoid` from 5.1.6 to 5.1.16
- [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.16)

Updates `radix-ui` from 1.4.3 to 1.6.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/react/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/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom)

Updates `react-use` from 17.6.0 to 17.6.1
- [Release notes](https://github.com/streamich/react-use/releases)
- [Changelog](https://github.com/streamich/react-use/blob/master/CHANGELOG.md)
- [Commits](streamich/react-use@v17.6.0...v17.6.1)

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

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 `@tailwindcss/typography` from 0.5.19 to 0.5.20
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.19...v0.5.20)

Updates `@tailwindcss/vite` from 4.2.1 to 4.3.2
- [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.2/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.62.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.62.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.56.1 to 8.62.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.62.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.4
- [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.4)

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.9.4
- [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.9.4)

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.2
- [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.2/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.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@sanity/code-input"
  dependency-version: 7.2.0
  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/uuid"
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/visual-editing"
  dependency-version: 5.4.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen"
  dependency-version: 2026.4.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen-react"
  dependency-version: 2026.4.3
  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.4
  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-tag
  dependency-version: 2.12.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: isbot
  dependency-version: 5.1.44
  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.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: nanoid
  dependency-version: 5.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: radix-ui
  dependency-version: 1.6.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-use
  dependency-version: 17.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: styled-components
  dependency-version: 6.4.3
  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: "@tailwindcss/typography"
  dependency-version: 0.5.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.2
  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.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.62.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.4
  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.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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.2
  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 30, 2026
- shopify-image: inline parseAspectRatio (no longer exported by
  @shopify/hydrogen-react 2026.4.x) — fixes the Oxygen build
- cms-section: import StudioPathLike from @sanity/client/csm
  (removed from @sanity/react-loader 2.0.13)
- pipeline: run 'pnpm exec tsc' so typecheck uses the project's
  pinned TypeScript instead of the runner's global compiler
- reformat files + regenerate sanity types for prettier 3.9.4 /
  prettier-plugin-tailwindcss 0.8.0
@shopify

shopify Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

Oxygen deployed a preview of your dependabot/npm_and_yarn/patch-minor-03b5a98a96 branch. Details:

Storefront Status Preview link Deployment details Last update (UTC)
Fluid demo ✅ Successful (Logs) Preview deployment Inspect deployment June 30, 2026 9:15 AM

Learn more about Hydrogen's GitHub integration.

@dependabot @github

dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 6, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/patch-minor-03b5a98a96 branch July 6, 2026 09:52
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.

1 participant