Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the patch-minor group with 13 updates:

Package From To
@sanity/code-input 7.0.4 7.0.5
@sanity/image-url 2.0.2 2.0.3
@sanity/react-loader 2.0.5 2.0.6
@sanity/vision 5.3.0 5.4.0
@shopify/hydrogen 2025.7.1 2025.7.2
groq 5.3.0 5.4.0
motion 12.26.1 12.27.0
sanity 5.3.0 5.4.0
styled-components 6.3.5 6.3.8
@typescript-eslint/eslint-plugin 8.52.0 8.53.0
@typescript-eslint/parser 8.52.0 8.53.0
prettier 3.7.4 3.8.0
type-fest 5.3.1 5.4.1

Updates @sanity/code-input from 7.0.4 to 7.0.5

Release notes

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

@​sanity/code-input@​7.0.5

Patch Changes

Changelog

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

7.0.5

Patch Changes

Commits

Updates @sanity/image-url from 2.0.2 to 2.0.3

Release notes

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

v2.0.3

Patch Changes

Changelog

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

2.0.3

Patch Changes

Commits

Updates @sanity/react-loader from 2.0.5 to 2.0.6

Release notes

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

svelte-loader: v2.0.6

2.0.6 (2025-12-17)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 2.0.3
    • devDependencies
      • @​sanity/visual-editing bumped to 5.0.2
    • peerDependencies
      • @​sanity/visual-editing bumped to 5.0.2

react-loader: v2.0.6

2.0.6 (2026-01-19)

Bug Fixes

  • react-loader: Restore export condition ordering for worker/edge environments (#3338) (b831ae0), closes #3337
Changelog

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

2.0.6 (2026-01-19)

Bug Fixes

  • react-loader: Restore export condition ordering for worker/edge environments (#3338) (b831ae0), closes #3337
Commits

Updates @sanity/vision from 5.3.0 to 5.4.0

Release notes

Sourced from @​sanity/vision's releases.

v5.4.0

Sanity Studio v5.4.0

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/352e50b8-8345-4046-af9f-4228c2a6733a

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

📓 Full changelog

Author Message Commit
Eoin Falconer fix(structure): ensure close button is rightmost in split pane toolbar (#11817) 2e8e9740a0
Eoin Falconer fix(vision): allow custom domains for saved query recall (#11821) dbf74ce69a
renovate[bot] chore(deps): update dependency styled-components to ^6.3.5 (#11827) 33ff807e65
Bram Doppen feat: add media-library-auto-alt-text function example (#11337) 85d983d3e8
renovate[bot] fix(deps): update dependency @​sanity/import to ^4.0.4 (#11832) 8bea477b37
renovate[bot] fix(deps): Update dev-non-major (#11837) 64445845eb
renovate[bot] chore(deps): update dependency @​sanity/migrate to ^5.2.2 (#11834) 47af4bce44
Jordan Lawrence feat: edit content of scheduled drafts (#11692) 8862905e93
renovate[bot] chore(deps): update dependency @​sanity/message-protocol to ^0.19.0 (#11839) a91537b466
Fred Carlsen fix(core): dont crash when image url string is passed to preview (#6727) 98f37b8b66
Jordan Lawrence fix: correcting mismatch with filtering of CI for examples only changes (#11831) 5cdb49da73
squiggler[bot] chore(deps): dedupe pnpm-lock.yaml (#11840) 02d60fc49b
RitaDias test: handling flake (#11833) 8517d18c17
Jordan Lawrence fix: correct navigation function call for confirming drafts (#11842) d0c01bd238
renovate[bot] chore(deps): update dependency @​sanity/media-library-types to ^1.2.0 (#11838) 13bca01b44
renovate[bot] chore(deps): update dependency @​typescript/native-preview to v7.0.0-dev.20260112.1 (#11835) 5d919d9c16

v5.3.1

Sanity Studio v5.3.1

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/fc2a31d0-e3cf-40d4-9321-eb4b35e6196f

Install or upgrade Sanity Studio

To upgrade to this version, run:

</tr></table> 

... (truncated)

Changelog

Sourced from @​sanity/vision's changelog.

5.4.0 (2026-01-15)

Bug Fixes

5.3.1 (2026-01-14)

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

Commits

Updates @shopify/hydrogen from 2025.7.1 to 2025.7.2

Release notes

Sourced from @​shopify/hydrogen's releases.

@​shopify/hydrogen@​2025.7.2

Patch Changes

  • Fixed build failures in Cloudflare Workers and Mini-Oxygen environments caused by Node.js-specific imports in virtual routes module. (#3267) by @​darintanakaFN

  • Adds two new optional parameters to the customerAccount.login() method for more control over the authentication flow: (#3358) by @​lihaokx

    acrValues

    Specifies Authentication Context Class Reference values, which can be used to request specific authentication methods or identity providers. When provided, it's passed as the acr_values query parameter to the OAuth authorization URL.

    Common use case: Triggering social login flows (e.g., 'provider:google' to initiate Google sign-in).

    loginHint

    Pre-populates the login form with an email address. When provided, it's passed as the login_hint query parameter to the OAuth authorization URL.

    Common use case: Streamlining the login experience when you already know the user's email from a previous interaction.

    Usage

    // Trigger Google social login
    await context.customerAccount.login({
      acrValues: 'provider:google',
    });
    // Pre-fill email on login form
    await context.customerAccount.login({
    loginHint: 'customer@example.com',
    });
    // Combine with existing options
    await context.customerAccount.login({
    countryCode: context.storefront.i18n.country,
    acrValues: 'provider:google',
    loginHint: 'customer@example.com',
    });

    Migration

    This is a non-breaking change. Both parameters are optional and existing implementations will continue to work without modification.

Changelog

Sourced from @​shopify/hydrogen's changelog.

2025.7.2

Patch Changes

  • Fixed build failures in Cloudflare Workers and Mini-Oxygen environments caused by Node.js-specific imports in virtual routes module. (#3267) by @​darintanakaFN

  • Adds two new optional parameters to the customerAccount.login() method for more control over the authentication flow: (#3358) by @​lihaokx

    acrValues

    Specifies Authentication Context Class Reference values, which can be used to request specific authentication methods or identity providers. When provided, it's passed as the acr_values query parameter to the OAuth authorization URL.

    Common use case: Triggering social login flows (e.g., 'provider:google' to initiate Google sign-in).

    loginHint

    Pre-populates the login form with an email address. When provided, it's passed as the login_hint query parameter to the OAuth authorization URL.

    Common use case: Streamlining the login experience when you already know the user's email from a previous interaction.

    Usage

    // Trigger Google social login
    await context.customerAccount.login({
      acrValues: 'provider:google',
    });
    // Pre-fill email on login form
    await context.customerAccount.login({
    loginHint: 'customer@example.com',
    });
    // Combine with existing options
    await context.customerAccount.login({
    countryCode: context.storefront.i18n.country,
    acrValues: 'provider:google',
    loginHint: 'customer@example.com',
    });

    Migration

    This is a non-breaking change. Both parameters are optional and existing implementations will continue to work without modification.

Commits

Updates groq from 5.3.0 to 5.4.0

Release notes

Sourced from groq's releases.

v5.4.0

Sanity Studio v5.4.0

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/352e50b8-8345-4046-af9f-4228c2a6733a

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

📓 Full changelog

Author Message Commit
Eoin Falconer fix(structure): ensure close button is rightmost in split pane toolbar (#11817) 2e8e9740a0
Eoin Falconer fix(vision): allow custom domains for saved query recall (#11821) dbf74ce69a
renovate[bot] chore(deps): update dependency styled-components to ^6.3.5 (#11827) 33ff807e65
Bram Doppen feat: add media-library-auto-alt-text function example (#11337) 85d983d3e8
renovate[bot] fix(deps): update dependency @​sanity/import to ^4.0.4 (#11832) 8bea477b37
renovate[bot] fix(deps): Update dev-non-major (#11837) 64445845eb
renovate[bot] chore(deps): update dependency @​sanity/migrate to ^5.2.2 (#11834) 47af4bce44
Jordan Lawrence feat: edit content of scheduled drafts (#11692) 8862905e93
renovate[bot] chore(deps): update dependency @​sanity/message-protocol to ^0.19.0 (#11839) a91537b466
Fred Carlsen fix(core): dont crash when image url string is passed to preview (#6727) 98f37b8b66
Jordan Lawrence fix: correcting mismatch with filtering of CI for examples only changes (#11831) 5cdb49da73
squiggler[bot] chore(deps): dedupe pnpm-lock.yaml (#11840) 02d60fc49b
RitaDias test: handling flake (#11833) 8517d18c17
Jordan Lawrence fix: correct navigation function call for confirming drafts (#11842) d0c01bd238
renovate[bot] chore(deps): update dependency @​sanity/media-library-types to ^1.2.0 (#11838) 13bca01b44
renovate[bot] chore(deps): update dependency @​typescript/native-preview to v7.0.0-dev.20260112.1 (#11835) 5d919d9c16

v5.3.1

Sanity Studio v5.3.1

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/fc2a31d0-e3cf-40d4-9321-eb4b35e6196f

Install or upgrade Sanity Studio

To upgrade to this version, run:

</tr></table> 

... (truncated)

Changelog

Sourced from groq's changelog.

5.4.0 (2026-01-15)

Note: Version bump only for package groq

5.3.1 (2026-01-14)

Note: Version bump only for package groq

Commits

Updates motion from 12.26.1 to 12.27.0

Changelog

Sourced from motion's changelog.

[12.27.0] 2026-01-18

Fixed

  • Adding new exports for internal use.

[12.26.2] 2026-01-13

Fixed

  • Internal refactor of projection system into motion-dom.
Commits

Updates sanity from 5.3.0 to 5.4.0

Release notes

Sourced from sanity's releases.

v5.4.0

Sanity Studio v5.4.0

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/352e50b8-8345-4046-af9f-4228c2a6733a

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

📓 Full changelog

Author Message Commit
Eoin Falconer fix(structure): ensure close button is rightmost in split pane toolbar (#11817) 2e8e9740a0
Eoin Falconer fix(vision): allow custom domains for saved query recall (#11821) dbf74ce69a
renovate[bot] chore(deps): update dependency styled-components to ^6.3.5 (#11827) 33ff807e65
Bram Doppen feat: add media-library-auto-alt-text function example (#11337) 85d983d3e8
renovate[bot] fix(deps): update dependency @​sanity/import to ^4.0.4 (#11832) 8bea477b37
renovate[bot] fix(deps): Update dev-non-major (#11837) 64445845eb
renovate[bot] chore(deps): update dependency @​sanity/migrate to ^5.2.2 (#11834) 47af4bce44
Jordan Lawrence feat: edit content of scheduled drafts (#11692) 8862905e93
renovate[bot] chore(deps): update dependency @​sanity/message-protocol to ^0.19.0 (#11839) a91537b466
Fred Carlsen fix(core): dont crash when image url string is passed to preview (#6727) 98f37b8b66
Jordan Lawrence fix: correcting mismatch with filtering of CI for examples only changes (#11831) 5cdb49da73
squiggler[bot] chore(deps): dedupe pnpm-lock.yaml (#11840) 02d60fc49b
RitaDias test: handling flake (#11833) 8517d18c17
Jordan Lawrence fix: correct navigation function call for confirming drafts (#11842) d0c01bd238
renovate[bot] chore(deps): update dependency @​sanity/media-library-types to ^1.2.0 (#11838) 13bca01b44
renovate[bot] chore(deps): update dependency @​typescript/native-preview to v7.0.0-dev.20260112.1 (#11835) 5d919d9c16

v5.3.1

Sanity Studio v5.3.1

This release includes bug fixes.

For the complete changelog with all details, please visit: www.sanity.io/changelog/fc2a31d0-e3cf-40d4-9321-eb4b35e6196f

Install or upgrade Sanity Studio

To upgrade to this version, run:

</tr></table> 

... (truncated)

Changelog

Sourced from sanity's changelog.

5.4.0 (2026-01-15)

Features

Bug Fixes

5.3.1 (2026-01-14)

Bug Fixes

Commits
  • f712ec8 chore(release): publish v5.4.0 (#11830)
  • 13bca01 chore(deps): update dependency @​sanity/media-library-types to ^1.2.0 (#11838)
  • d0c01bd fix: correct navigation function call for confirming drafts (#11842)
  • 98f37b8 fix(core): dont crash when image url string is passed to preview (#6727)
  • a91537b chore(deps): update dependency @​sanity/message-protocol to ^0.19.0 (#11839)
  • 8862905 feat: edit content of scheduled drafts (#11692)
  • 47af4bc chore(deps): update dependency @​sanity/migrate to ^5.2.2 (#11834)
  • 8bea477 fix(deps): update dependency @​sanity/import to ^4.0.4 (#11832)
  • 2e8e974 fix(structure): ensure close button is rightmost in split pane toolbar (#11817)
  • 574dd3d chore(release): publish v5.3.1 (#11829)
  • Additional commits viewable in compare view

Updates styled-components from 6.3.5 to 6.3.8

Release notes

Sourced from styled-components's releases.

styled-components@6.3.8

Patch Changes

  • 55d05c1: Make react-dom an optional peer dependency, clean up some unnecessary type peers.

styled-components@6.3.7

Patch Changes

  • 51ffa9c: Fix createGlobalStyle compatibility with React StrictMode and RSC

    This fix addresses issues where global styles would disappear or behave incorrectly in React StrictMode and RSC:

    1. Static styles optimization: Static global styles (without props/interpolations) are now only injected once and won't be removed/re-added on every render. This prevents the style flickering that could occur during concurrent rendering.

    2. StrictMode-aware cleanup: Style cleanup now uses queueMicrotask to coordinate with React's effect lifecycle. In StrictMode's simulated unmount/remount cycle, styles are preserved. On real unmount, styles are properly removed.

    3. RSC compatibility: Move useRef inside RSC guard in createGlobalStyle and unify all useContext calls to use consistent !IS_RSC ? pattern.

    4. RSC inline style tag cleanup: Fix bug where server-defined createGlobalStyle rendered in client components would leave behind accumulated SSR-rendered inline <style data-styled-global> tags. The cleanup effect now removes these hoisted style tags when the component unmounts or re-renders with different CSS.

    These changes ensure createGlobalStyle works correctly with:

    • React StrictMode's double-render behavior
    • React 18/19's concurrent rendering features
    • React 19's style hoisting with the precedence attribute
    • React Server Components (server-defined GlobalStyles in client components)
  • 51ffa9c: Restore styled.br.

  • 1f794b7: Add package.json "exports" field for better native ESM integration.

styled-components@6.3.6

Patch Changes

  • 189bc17: Fix url() CSS function values being incorrectly stripped when using unquoted URLs containing // (e.g., url(https://example.com)). The // in protocol URLs like https://, http://, file://, and protocol-relative URLs was incorrectly being treated as a JavaScript-style line comment.
Commits

Updates @typescript-eslint/eslint-plugin from 8.52.0 to 8.53.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: add rule [strict-void-return] (#9707)
  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 3021ede chore(release): publish 8.53.0
  • 722ab62 fix(eslint-plugin): [no-useless-default-assignment] fix false positive for pa...
  • 92fcf3e feat(eslint-plugin): add rule [strict-void-return] (#9707)
  • 3fb0381 docs(eslint-plugin): [no-useless-default-assignment] fix misformatted link (#...
  • 62ee26e feat(eslint-plugin): [no-unused-vars] add a fixer to remove unused imports (#...
  • c4d5a56 fix(eslint-plugin): replace unclear "error typed" with more helpful descrip...
  • 3ac7735 fix(typescript-estree): forbid invalid extends and implements in interfac...
  • a8b924b fix(typescript-estree): forbid invalid class implements (#11934)
  • a98ec1f fix(typescript-estree): forbid type-only import with both default and named s...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.52.0 to 8.53.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

  • eslint-plugin: [no-unused-vars] add a fixer to remove unused imports (#11922)
  • eslint-plugin: add rule [strict-void-return] (#9707)
  • project-service: allow passing Partial<ts.server.ServerHost> to project service (#11932)

🩹 Fixes

  • eslint-plugin: replace unclear "error typed" with more helpful description (#11704)
  • eslint-plugin: [no-useless-default-assignment] fix false positive for parameters corresponding to a rest parameter (#11916)
  • typescript-estree: forbid type-only import with both default and named specifiers (#11930)
  • typescript-estree: fix syntax check for using declaration (#11910)
  • typescript-estree: forbid invalid class implements (#11934)
  • typescript-estree: forbid invalid "import equals" declaration (#11936)
  • typescript-estree: forbid invalid extends and implements in interface declaration (#11935)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.53.0 (2026-01-12)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates prettier from 3.7.4 to 3.8.0

Release notes

Sourced from prettier's releases.

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

Changelog

Sourced from prettier's changelog.

3.8.0

diff

🔗 Release Notes

Commits

Updates type-fest from 5.3.1 to 5.4.1

Release notes

Sourced from type-fest's releases.

v5.4.1

  • MergeDeep: Remove extra undefined from optional properties (#1319) a6af489

sindresorhus/type-fest@v5.4.0...v5.4.1

v5.4.0

New types


sindresorhus/type-fest@v5.3.1...v5.4.0

Commits

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

...

Description has been truncated

Bumps the patch-minor group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@sanity/code-input](https://github.com/sanity-io/plugins/tree/HEAD/plugins/@sanity/code-input) | `7.0.4` | `7.0.5` |
| [@sanity/image-url](https://github.com/sanity-io/image-url) | `2.0.2` | `2.0.3` |
| [@sanity/react-loader](https://github.com/sanity-io/visual-editing/tree/HEAD/packages/react-loader) | `2.0.5` | `2.0.6` |
| [@sanity/vision](https://github.com/sanity-io/sanity/tree/HEAD/packages/@sanity/vision) | `5.3.0` | `5.4.0` |
| [@shopify/hydrogen](https://github.com/Shopify/hydrogen/tree/HEAD/packages/hydrogen) | `2025.7.1` | `2025.7.2` |
| [groq](https://github.com/sanity-io/sanity/tree/HEAD/packages/groq) | `5.3.0` | `5.4.0` |
| [motion](https://github.com/motiondivision/motion) | `12.26.1` | `12.27.0` |
| [sanity](https://github.com/sanity-io/sanity/tree/HEAD/packages/sanity) | `5.3.0` | `5.4.0` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.3.5` | `6.3.8` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.52.0` | `8.53.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.52.0` | `8.53.0` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.0` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `5.3.1` | `5.4.1` |


Updates `@sanity/code-input` from 7.0.4 to 7.0.5
- [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.0.5/plugins/@sanity/code-input)

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

Updates `@sanity/react-loader` from 2.0.5 to 2.0.6
- [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/react-loader-v2.0.6/packages/react-loader)

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

Updates `@shopify/hydrogen` from 2025.7.1 to 2025.7.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@2025.7.2/packages/hydrogen)

Updates `groq` from 5.3.0 to 5.4.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.4.0/packages/groq)

Updates `motion` from 12.26.1 to 12.27.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.26.1...v12.27.0)

Updates `sanity` from 5.3.0 to 5.4.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.4.0/packages/sanity)

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

Updates `@typescript-eslint/eslint-plugin` from 8.52.0 to 8.53.0
- [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.53.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.52.0 to 8.53.0
- [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.53.0/packages/parser)

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

Updates `type-fest` from 5.3.1 to 5.4.1
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v5.3.1...v5.4.1)

---
updated-dependencies:
- dependency-name: "@sanity/code-input"
  dependency-version: 7.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/image-url"
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/react-loader"
  dependency-version: 2.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@sanity/vision"
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@shopify/hydrogen"
  dependency-version: 2025.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: groq
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: motion
  dependency-version: 12.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sanity
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: styled-components
  dependency-version: 6.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: type-fest
  dependency-version: 5.4.1
  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 Jan 19, 2026
@shopify
Copy link
Contributor

shopify bot commented Jan 19, 2026

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

Storefront Status Preview link Deployment details Last update (UTC)
Fluid demo ✅ Successful (Logs) Preview deployment Inspect deployment January 19, 202612:14 PM

Learn more about Hydrogen's GitHub integration.

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