frontvibe / fluid

Fluid is a Hydrogen theme that lets you easily build Shopify headless storefronts by organizing your content with Sanity.
https://fluid.frontvibe.com
MIT License
191 stars 28 forks source link

Bump the patch-minor group across 1 directory with 29 updates #347

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
@remix-run/react 2.10.3 2.12.1
@sanity/client 6.21.1 6.22.0
@sanity/core-loader 1.6.20 1.6.23
@sanity/react-loader 1.10.4 1.10.7
@sanity/visual-editing 2.1.6 2.1.10
@shopify/cli-hydrogen 8.3.0 8.4.4
@shopify/hydrogen 2024.7.2 2024.7.8
@shopify/hydrogen-react 2024.7.1 2024.7.5
@shopify/mini-oxygen 3.0.4 3.0.5
@shopify/remix-oxygen 2.0.5 2.0.8
embla-carousel 8.1.7 8.3.0
embla-carousel-autoplay 8.1.7 8.3.0
embla-carousel-react 8.1.7 8.3.0
framer-motion 11.3.19 11.9.0
groq 3.52.2 3.58.0
isbot 5.1.13 5.1.17
sanity 3.52.2 3.58.0
tailwind-merge 2.4.0 2.5.2
@remix-run/dev 2.10.3 2.12.1
@remix-run/eslint-config 2.10.3 2.12.1
@tailwindcss/forms 0.5.7 0.5.9
@tailwindcss/typography 0.5.13 0.5.15
@total-typescript/ts-reset 0.5.1 0.6.1
@types/react 18.3.3 18.3.10
postcss 8.4.40 8.4.47
prettier-plugin-tailwindcss 0.6.5 0.6.8
tailwindcss 3.4.7 3.4.13
type-fest 4.23.0 4.26.1
typescript 5.5.4 5.6.2

Updates @remix-run/react from 2.10.3 to 2.12.1

Release notes

Sourced from @​remix-run/react's releases.

v2.12.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v2121

v2.12.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v2120

v2.11.2

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v2112

v2.11.1

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v2111

v2.11.0

See the changelog for release notes: https://github.com/remix-run/remix/blob/main/CHANGELOG.md#v21110

Changelog

Sourced from @​remix-run/react's changelog.

2.12.1

Patch Changes

  • Updated dependencies:
    • @remix-run/server-runtime@2.12.1

2.12.0

Patch Changes

  • Lazy Route Discovery: Sort /__manifest query parameters for better caching (#9888)

  • Single Fetch: fix revalidation behavior bugs (#9938)

    • With Single Fetch, existing routes revalidate by default
    • This means requests do not need special query params for granular route revalidations out of the box - i.e., GET /a/b/c.data
    • There are two conditions that will trigger granular revalidation:
      • If a route opts out of revalidation via shouldRevalidate, it will be excluded from the single fetch call
      • If a route defines a clientLoader then it will be excluded from the single fetch call and if you call serverLoader() from your clientLoader, that will make a separarte HTTP call for just that route loader - i.e., GET /a/b/c.data?_routes=routes/a for a clientLoader in routes/a.tsx
    • When one or more routes are excluded from the single fetch call, the remaining routes that have loaders are included as query params:
      • For example, if A was excluded, and the root route and routes/b had a loader but routes/c did not, the single fetch request would be GET /a/b/c.data?_routes=root,routes/a
  • Remove hydration URL check that was originally added for React 17 hydration issues and we no longer support React 17 (#9890)

    • Reverts the logic originally added in Remix v1.18.0 via remix-run/remix#6409
    • This was added to resolve an issue that could arise when doing quick back/forward history navigations while JS was loading which would cause a mismatch between the server matches and client matches: remix-run/remix#1757
    • This specific hydration issue would then cause this React v17 only looping issue: remix-run/remix#1678
    • The URL comparison that we added in 1.18.0 turned out to be subject to false positives of it's own which could also put the user in looping scenarios
    • Remix v2 upgraded it's minimal React version to v18 which eliminated the v17 hydration error loop
    • React v18 handles this hydration error like any other error and does not result in a loop
    • So we can remove our check and thus avoid the false-positive scenarios in which it may also trigger a loop
  • Single Fetch: Improved typesafety (#9893)

    If you were already using previously released unstable single-fetch types:

    • Remove "@remix-run/react/future/single-fetch.d.ts" override from tsconfig.json > compilerOptions > types
    • Remove defineLoader, defineAction, defineClientLoader, defineClientAction helpers from your route modules
    • Replace UIMatch_SingleFetch type helper with UIMatch
    • Replace MetaArgs_SingleFetch type helper with MetaArgs

    Then you are ready for the new typesafety setup:

    // vite.config.ts
    

    declare module "@​remix-run/server-runtime" {
    interface Future {
    unstable_singleFetch: true; // 👈 enable types for single-fetch

... (truncated)

Commits


Updates @sanity/client from 6.21.1 to 6.22.0

Release notes

Sourced from @​sanity/client's releases.

v6.22.0

6.22.0 (2024-09-23)

Features

  • live: add experimental includeDrafts option (#890) (e1406b1)

Bug Fixes

  • deps: update dependency get-it to ^8.6.5 (#885) (847ad5b)

v6.21.3

6.21.3 (2024-08-14)

Bug Fixes

  • deprecate studioHost, externalStudioHost in typings (#879) (ebe840b)
  • support signal on getDocument(s) to cancel requests (#881) (13d71bb)

v6.21.2

6.21.2 (2024-08-09)

Bug Fixes

  • deps: update dependency get-it to ^8.6.4 (#876) (e71b985)
Changelog

Sourced from @​sanity/client's changelog.

6.22.0 (2024-09-23)

Features

  • live: add experimental includeDrafts option (#890) (e1406b1)

Bug Fixes

  • deps: update dependency get-it to ^8.6.5 (#885) (847ad5b)

6.21.3 (2024-08-14)

Bug Fixes

  • deprecate studioHost, externalStudioHost in typings (#879) (ebe840b)
  • support signal on getDocument(s) to cancel requests (#881) (13d71bb)

6.21.2 (2024-08-09)

Bug Fixes

  • deps: update dependency get-it to ^8.6.4 (#876) (e71b985)
Commits
  • 66c27d1 chore(main): release 6.22.0 (#889)
  • e1406b1 feat(live): add experimental includeDrafts option (#890)
  • 847ad5b fix(deps): update dependency get-it to ^8.6.5 (#885)
  • 5383fbd chore(deps): update peter-evans/create-pull-request action to v7 (#887)
  • d0db087 chore(deps): update dependency next to v14.2.10 [security] (#883)
  • a92ec7f chore(main): release 6.21.3 (#880)
  • 13d71bb fix: support signal on getDocument(s) to cancel requests (#881)
  • ebe840b fix: deprecate studioHost, externalStudioHost in typings (#879)
  • c5da67e chore(deno): update import_map.json (#877)
  • c4bff99 chore(main): release 6.21.2 (#878)
  • Additional commits viewable in compare view


Updates @sanity/core-loader from 1.6.20 to 1.6.23

Release notes

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

core-loader: v1.6.23

1.6.23 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

core-loader: v1.6.22

1.6.22 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

core-loader: v1.6.21

1.6.21 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped from 0.6.18 to 0.6.19

preview-url-secret: v1.6.21

1.6.21 (2024-09-11)

Bug Fixes

... (truncated)

Changelog

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

1.6.23 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

1.6.22 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

1.6.21 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​repo/visual-editing-helpers bumped from 0.6.18 to 0.6.19
Commits
  • 97d3219 chore: release main (#1773)
  • caba875 chore(deps): update dependency happy-dom to v15 (#1799)
  • b333eb8 chore(deps): update dependency @​sanity/pkg-utils to v6.11.1 (#1794)
  • 1dc1b1b fix(deps): update dependency @​sanity/client to ^6.21.3 (#1793)
  • de1e1d7 chore(deps): update dependency @​tailwindcss/typography to ^0.5.15 (#1778)
  • b6926f5 chore(deps): update dependency typescript to v5.6.2 (#1742)
  • a2687fd chore(deps): update dependency @​sanity/pkg-utils to v6.10.12 (#1741)
  • f6dd6d7 chore: release main (#1750)
  • b9efdd2 fix(deps): update dependency @​sanity/client to v6.21.2 (#1749)
  • 8f67998 chore(deps): update dependency happy-dom to ^14.12.3 (#1729)
  • Additional commits viewable in compare view


Updates @sanity/react-loader from 1.10.4 to 1.10.7

Release notes

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

react-loader: v1.10.7

1.10.7 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 1.6.23
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

react-loader: v1.10.6

1.10.6 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 1.6.22
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

react-loader: v1.10.5

1.10.5 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)
  • pass tag and headers options to fetch (#1701) (41f8165)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped from 1.6.20 to 1.6.21
    • devDependencies

... (truncated)

Changelog

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

1.10.7 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 1.6.23
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

1.10.6 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped to 1.6.22
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

1.10.5 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)
  • pass tag and headers options to fetch (#1701) (41f8165)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/core-loader bumped from 1.6.20 to 1.6.21
    • devDependencies
      • @​repo/visual-editing-helpers bumped from 0.6.18 to 0.6.19
Commits
  • 97d3219 chore: release main (#1773)
  • b333eb8 chore(deps): update dependency @​sanity/pkg-utils to v6.11.1 (#1794)
  • 1dc1b1b fix(deps): update dependency @​sanity/client to ^6.21.3 (#1793)
  • de1e1d7 chore(deps): update dependency @​tailwindcss/typography to ^0.5.15 (#1778)
  • ce75a91 chore(deps): update react monorepo (#1786)
  • b6926f5 chore(deps): update dependency typescript to v5.6.2 (#1742)
  • a2687fd chore(deps): update dependency @​sanity/pkg-utils to v6.10.12 (#1741)
  • f6dd6d7 chore: release main (#1750)
  • b9efdd2 fix(deps): update dependency @​sanity/client to v6.21.2 (#1749)
  • b5e27c7 chore(deps): update linters (#1737)
  • Additional commits viewable in compare view


Updates @sanity/visual-editing from 2.1.6 to 2.1.10

Release notes

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

visual-editing: v2.1.10

2.1.10 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)
  • send preview search param explicitly (2d02d41)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/preview-url-secret bumped to 1.6.21
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

visual-editing: v2.1.9

2.1.9 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/preview-url-secret bumped to 1.6.20
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

visual-editing: v2.1.8

2.1.8 (2024-08-05)

Bug Fixes

  • visual-editing: improve overlay mutation handling (#1705) (73cef51)

visual-editing: v2.1.7

2.1.7 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)

... (truncated)

Changelog

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

2.1.10 (2024-09-11)

Bug Fixes

  • deps: update dependency @​sanity/client to ^6.21.3 (#1793) (1dc1b1b)
  • send preview search param explicitly (2d02d41)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/preview-url-secret bumped to 1.6.21
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.21

2.1.9 (2024-08-12)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.2 (#1749) (b9efdd2)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​sanity/preview-url-secret bumped to 1.6.20
    • devDependencies
      • @​repo/visual-editing-helpers bumped to 0.6.20

2.1.8 (2024-08-05)

Bug Fixes

  • visual-editing: improve overlay mutation handling (#1705) (73cef51)

2.1.7 (2024-08-02)

Bug Fixes

  • deps: update dependency @​sanity/client to v6.21.1 (#1704) (32f1ef8)
  • visual-editing: import svelte types from dist over src (#1700) (1642978)

Dependencies

... (truncated)

Commits
  • 97d3219 chore: release main (#1773)
  • 2d02d41 fix: send preview search param explicitly
  • dcd97da chore(dnd-mouse-button-handling): only trigger drag sequences on main click (...
  • caba875 chore(deps): update dependency happy-dom to v15 (#1799)
  • b333eb8 chore(deps): update dependency @​sanity/pkg-utils to v6.11.1 (#1794)
  • 1dc1b1b fix(deps): update dependency @​sanity/client to ^6.21.3 (#1793)
  • de1e1d7 chore(deps): update dependency @​tailwindcss/typography to ^0.5.15 (#1778)
  • cbaa9a9 chore(deps): update dependency tailwindcss to ^3.4.10 (#1783)
  • 04b1de7 chore(deps): update dependency styled-components to v6.1.13 (#1781)
  • 5a56273 chore(deps): update dependency @​sveltejs/package to ^2.3.4 (#1777)
  • Additional commits viewable in compare view


Updates @shopify/cli-hydrogen from 8.3.0 to 8.4.4

Commits


Updates @shopify/hydrogen from 2024.7.2 to 2024.7.8

Commits


Updates @shopify/hydrogen-react from 2024.7.1 to 2024.7.5

Release notes

Sourced from @​shopify/hydrogen-react's releases.

@​shopify/hydrogen-react@​2024.7.5

Patch Changes

@​shopify/hydrogen-react@​2024.7.4

Patch Changes

  • Emit a document event shopifyCustomerPrivacyApiLoaded when Customer Privacy API is ready and fix analytics events sending to Shopify. (#2528) by @​wizardlyhel

@​shopify/hydrogen-react@​2024.7.3

Patch Changes

  • Update ProductPrice to use price instead of priceV2, and hide compareAt price if less than regular price (#2461) by @​andershagbard

  • Prevent Image component from generating srcset with higher dimensions than source image (#2469) by @​andershagbard

@​shopify/hydrogen-react@​2024.7.2

Patch Changes

  • Improve performance of currency formatting (#2372) by @​blittle

  • Prevent sending analytics data to Shopify when Chrome-Lighthouse user agent is detected (#2401) by @​wizardlyhel

Changelog

Sourced from @​shopify/hydrogen-react's changelog.

2024.7.5

Patch Changes

2024.7.4

Patch Changes

  • Emit a document event shopifyCustomerPrivacyApiLoaded when Customer Privacy API is ready and fix analytics events sending to Shopify. (#2528) by @​wizardlyhel

2024.7.3

Patch Changes

  • Update ProductPrice to use price instead of priceV2, and hide compareAt price if less than regular price (#2461) by @​andershagbard

  • Prevent Image component from generating srcset with higher dimensions than source image (#2469) by @​andershagbard

2024.7.2

Patch Changes

  • Improve performance of currency formatting (#2372) by @​blittle

  • Prevent sending analytics data to Shopify when Chrome-Lighthouse user agent is detected (#2401) by @​wizardlyhel

Commits
  • 094e3a6 [ci] release 2024-07 (#2563)
  • bb5b097 Remove unstable re-exports from remix-oxygen and update package-lock to versi...
  • 9e7a6a3 [ci] release 2024-07 (#2529)
  • d0ff37a Update Shopify analytics events and emit a document event for when customer p...
  • 5197eef [ci] release 2024-07 (#2438)
  • 81f2b54 [Hydrogen React] Don't generate srcset if size is above source image dimensio...
  • ca0c769 [Hydrogen React] ProductPrice priceV2 deprecation. Hide compareAt, if less th...
  • 37ec3bd [ci] release 2024-07 (#2378)
  • b09e9a4 Prevent sending analytics to Shopify when Chrome-Lighthouse user agent is d...
  • cfbfc82 Improve performance of currency formatting by caching underlying Intl.NumberF...
  • Additional commits viewable in compare view


Updates @shopify/mini-oxygen from 3.0.4 to 3.0.5

Release notes

Sourced from @​shopify/mini-oxygen's releases.

@​shopify/mini-oxygen@​3.0.5

Patch Changes

  • Prevent infinite redirects when a double slash exists in the URL (#2449) by @​blittle

  • Add oxygen-buyer-postal-code and oxygen-buyer-metro-code headers (#2429) by @​jgodson

Commits
  • 5197eef [ci] release 2024-07 (#2438)
  • ccdeb42 Revert "Skeleton: add getSeoMeta (#2464)" (#2518)
  • 21f37eb Update cli kit 3.66.1 (#2512)
  • de8ba2b Skeleton: add getSeoMeta (#2464)
  • ed2657b Fix nonce filter and csp test (#2508)
  • d633e49 Prevent scriptSrc and defaultSrc nonce from persisting between requests (#2500)
  • eefa820 Add localization support for privacy banner + useCustomerPrivacy updates (#2457)
  • 81f2b54 [Hydrogen React] Don't generate srcset if size is above source image dimensio...
  • 92a53c4 Bump the npm_and_yarn group with 3 updates (#2488)
  • ca0c769 [Hydrogen React] ProductPrice priceV2 deprecation. Hide compareAt, if less th...
  • Additional commits viewable in compare view


Updates @shopify/remix-oxygen from 2.0.5 to 2.0.8

Updates embla-carousel from 8.1.7 to 8.3.0

Release notes

Sourced from embla-carousel's releases.

v8.3.0

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.2.1...v8.3.0

v8.2.1

Sponsor

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

New Contributors

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.2.0...v8.2.1

v8.2.0

Sponsor

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

New Contributors

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.1.8...v8.2.0

v8.1.8

Sponsor

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

... (truncated)

Commits


Updates embla-carousel-autoplay from 8.1.7 to 8.3.0

Release notes

Sourced from embla-carousel-autoplay's releases.

v8.3.0

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.2.1...v8.3.0

v8.2.1

Sponsor

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

New Contributors

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.2.0...v8.2.1

v8.2.0

Sponsor

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed

New Contributors

Full Changelog: https://github.com/davidjerleke/embla-carousel/compare/v8.1.8...v8.2.0

v8.1.8

Spon... _Description has been truncated_

vercel[bot] commented 1 month ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
fluid ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 30, 2024 10:20am
fluid-j4v9 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 30, 2024 10:20am
dependabot[bot] commented 1 month ago

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