Skip to content

⬆️ Bump the minor-updates group across 1 directory with 14 updates#1371

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-6ad0613968
Open

⬆️ Bump the minor-updates group across 1 directory with 14 updates#1371
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-updates-6ad0613968

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the minor-updates group with 14 updates in the / directory:

Package From To
@eslint/compat 2.0.5 2.1.0
globals 17.5.0 17.6.0
i18next-cli 1.56.7 1.56.11
immer 11.1.4 11.1.8
material-symbols 0.44.4 0.44.6
react 19.2.5 19.2.6
react-colorful 5.6.1 5.7.0
react-dom 19.2.5 19.2.6
sass-loader 16.0.7 16.0.8
simple-icons-font 16.17.0 16.19.0
swiper 12.1.3 12.1.4
typescript-eslint 8.59.0 8.59.2
zod 4.3.6 4.4.3
zustand 5.0.12 5.0.13

Updates @eslint/compat from 2.0.5 to 2.1.0

Release notes

Sourced from @​eslint/compat's releases.

compat: v2.1.0

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)

migrate-config: v2.1.0

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/config-helpers bumped from ^0.5.5 to ^0.6.0

migrate-config: v2.0.7

2.0.7 (2026-05-01)

Bug Fixes

migrate-config: v2.0.6

2.0.6 (2026-04-08)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/compat bumped from ^2.0.4 to ^2.0.5
    • devDependencies
      • @​eslint/core bumped from ^1.2.0 to ^1.2.1
Changelog

Sourced from @​eslint/compat's changelog.

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)
Commits

Updates globals from 17.5.0 to 17.6.0

Release notes

Sourced from globals's releases.

v17.6.0

  • Update globals (2026-05-01) (#343) 00a4dd9

sindresorhus/globals@v17.5.0...v17.6.0

Commits

Updates i18next-cli from 1.56.7 to 1.56.11

Changelog

Sourced from i18next-cli's changelog.

1.56.11 - 2026-05-07

  • extract and status now mirror i18next's runtime selector rule (v25.8.19) for multi-namespace useTranslation([nsA, nsB, ...]) hooks. When a selector path's first segment matches a secondary namespace from the hook's array, the key is routed to that namespace's file instead of the primary. Single-namespace hooks and primary-prefixed paths are unaffected — the primary namespace is never rewritten, matching i18next/src/selector.js exactly. Fixes #256.

1.56.10 - 2026-05-06

  • lint now sets type: 'hardcoded' on hardcoded-string issues. The LintIssue type already declared a 'hardcoded' | 'interpolation' union, but findHardcodedStrings only emitted text and line, leaving type undefined. Consumers (including lintOnResult plugins) had to rely on type !== 'interpolation', which would silently misclassify any future issue category. The discriminant is now populated so issue.type === 'hardcoded' works as advertised. Fixes #255.

1.56.9 - 2026-04-29

  • extract now propagates namespace/keyPrefix from a useTranslationNames-listed call when its result is stored on a class field and later destructured inside a method, e.g. #ctx = getTranslationContext('settings') followed by const { t } = this.#ctx (or this.#ctx()) inside a class method. Previously, only top-level VariableDeclarator initializers were tracked, so t('hello') reached through this.#ctx was extracted without its namespace. The scope manager now keeps a per-class field registry (public and private fields, including the () invocation form) and resolves this.<field> references against it during destructuring. The non-class form const { t } = getTranslationContext(...) is unchanged. Fixes #251.

1.56.8 - 2026-04-29

  • extract --sync-primary now updates <Trans> defaults when the key contains an underscore but is not actually a plural or context variant. Previously, the "is this a variant key?" check used a loose key.includes(pluralSeparator) || key.includes(contextSeparator) heuristic, which (with the default _ separator) misclassified ordinary keys like abc_123 as variants and preserved the existing translation instead of adopting the new default from code. The check now treats a key as a synthesized plural variant only when the extractor flagged it with hasCount AND its suffix matches a CLDR plural form; context variants are unaffected because they were

... (truncated)

Commits
  • 3224d88 1.56.11
  • 8e5ebdb changelog fix
  • 9fa173f extract/status: route selector secondary-ns prefix in useTranslation([nsA,nsB...
  • 149893d 1.56.10
  • 6d74070 populate type: 'hardcoded' on hardcoded-string lint issues (fixes #255)
  • ed16625 Modernize locize.com URLs and refresh UTM tags
  • 7c7c3d6 1.56.9
  • 36d257f propagate namespace through class field initializers (fixes #251)
  • eda4425 1.56.8
  • 8dbd304 make isVariantKey detection precise so keys containing '_' are not mis-preser...
  • Additional commits viewable in compare view

Updates immer from 11.1.4 to 11.1.8

Release notes

Sourced from immer's releases.

v11.1.8

11.1.8 (2026-05-08)

Bug Fixes

  • update current and original typings to assert draft value is unwrapped (#1236) (bf2d154)

v11.1.7

11.1.7 (2026-05-06)

Bug Fixes

  • improve higher order type inference for WritableDraft (#1205) (7390d6c)

v11.1.6

11.1.6 (2026-05-04)

Bug Fixes

v11.1.5

11.1.5 (2026-05-04)

Bug Fixes

  • handle nested proxies after spreading and inserting into an array (d3bc436)
Commits
  • bf2d154 fix: update current and original typings to assert draft value is unwrapped (...
  • 7390d6c fix: improve higher order type inference for WritableDraft (#1205)
  • 5155a33 chore: regression tests for fixed issue #916 (#1215)
  • b67db83 chore(deps): bump postcss from 8.4.31 to 8.5.13 in /website (#1233)
  • b40b04f fix: remove invalid curried producer type (#1216)
  • 4f1a96f chore(deps-dev): bump lodash from 4.17.21 to 4.18.1 (#1225)
  • 3b6c372 chore(deps): bump brace-expansion from 1.1.12 to 1.1.14 in /website (#1234)
  • 229c8fb chore(deps): bump lodash from 4.17.21 to 4.18.1 in /website (#1223)
  • 48f239c chore(deps): bump lodash from 4.17.21 to 4.18.1 in /website (#1223)
  • 64bd3a7 chore(deps-dev): bump immutable from 3.8.2 to 3.8.3 (#1214)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for immer since your current version.


Updates material-symbols from 0.44.4 to 0.44.6

Commits

Updates react from 19.2.5 to 19.2.6

Release notes

Sourced from react's releases.

19.2.6 (May 6th, 2026)

React Server Components

Commits

Updates react-colorful from 5.6.1 to 5.7.0

Release notes

Sourced from react-colorful's releases.

v5.7.0 (onChangeEnd)

Added onChangeEnd callback that fires when the user finishes changing a color (on mouse up, touch end, or arrow key up). Useful for undo/redo, saving to a database, or other expensive operations. (via #230)

<HexColorPicker
  color={color}
  onChange={setColor}
  onChangeEnd={(color) => saveToDatabase(color)}
/>

v5.6.2 (React 19 support)

Fix React 19 TypeScript compatibility (via #229)

Commits

Updates react-dom from 19.2.5 to 19.2.6

Release notes

Sourced from react-dom's releases.

19.2.6 (May 6th, 2026)

React Server Components

Commits

Updates sass-loader from 16.0.7 to 16.0.8

Release notes

Sourced from sass-loader's releases.

v16.0.8

16.0.8 (2026-05-08)

Bug Fixes

Changelog

Sourced from sass-loader's changelog.

16.0.8 (2026-05-08)

Bug Fixes

Commits
  • 4f00ed5 chore(release): 16.0.8
  • 90e349d fix: normalize separators in getPossibleRequests for Windows (#1308) (#1309)
  • cda2078 chore(deps-dev): bump follow-redirects from 1.15.9 to 1.16.0 (#1306)
  • 128abc0 chore(deps): bump lodash from 4.17.23 to 4.18.1 (#1305)
  • e3df97d chore(deps-dev): bump node-forge from 1.3.3 to 1.4.0 (#1304)
  • ff8005b chore(deps): bump serialize-javascript and terser-webpack-plugin (#1299)
  • 7dd2827 chore(deps-dev): bump flatted from 3.3.2 to 3.4.2 (#1301)
  • 9e6a5e5 chore(deps): bump picomatch (#1300)
  • a488645 chore(deps): bump immutable from 5.0.3 to 5.1.5 (#1298)
  • fe6fe07 chore(deps-dev): bump js-yaml from 3.14.1 to 3.14.2 (#1297)
  • Additional commits viewable in compare view

Updates simple-icons-font from 16.17.0 to 16.19.0

Release notes

Sourced from simple-icons-font's releases.

Release 16.19.0

See https://github.com/simple-icons/simple-icons/releases/tag/16.19.0

Release 16.18.1

See https://github.com/simple-icons/simple-icons/releases/tag/16.18.1

Release 16.18.0

See https://github.com/simple-icons/simple-icons/releases/tag/16.18.0

Commits

Updates swiper from 12.1.3 to 12.1.4

Release notes

Sourced from swiper's releases.

v12.1.4

Bug Fixes

  • remove redundant aria-disabled=false from swiper nav button (#8176) (6730929)

Features

  • package: add TS declarations for CSS files (ea3081b), closes #8055
  • react: expose isFullyVisible in SwiperSlide render props (#8175) (3af0002)
Changelog

Sourced from swiper's changelog.

12.1.4 (2026-04-29)

Bug Fixes

  • remove redundant aria-disabled=false from swiper nav button (#8176) (6730929)

Features

  • package: add TS declarations for CSS files (ea3081b), closes #8055
  • react: expose isFullyVisible in SwiperSlide render props (#8175) (3af0002)
Commits

Updates typescript-eslint from 8.59.0 to 8.59.2

Release notes

Sourced from typescript-eslint's releases.

v8.59.2

8.59.2 (2026-05-04)

🩹 Fixes

  • eslint-plugin: [no-unsafe-type-assertion] handle crash on recursive template literal types (#12150)
  • eslint-plugin: [no-deprecated] object destructuring values should be treated as declarations (#12292)
  • rule-tester: add TypeScript as a peer dependency (#12288)

❤️ Thank You

See GitHub Releases for more information.

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

v8.59.1

8.59.1 (2026-04-27)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-assertion] fix crash "TypeError: checker.getTypeArguments is not a function" (#12246)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve index signatures in undefined unions (#12257)
  • eslint-plugin: [no-unnecessary-type-assertion] preserve phantom type arguments in generic inference (#12269)
  • eslint-plugin: [no-unnecessary-type-assertion] avoid false positive in logical assignment assertions (#12278)
  • eslint-plugin: [no-unnecessary-type-arguments] handle instantiation expressions (#12220)
  • eslint-plugin: [no-unnecessary-condition] treat void as nullish in no-unnecessary-condition (#12241)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

Sourced from typescript-eslint's changelog.

8.59.2 (2026-05-04)

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

See GitHub Releases for more information.

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

8.59.1 (2026-04-27)

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

See GitHub Releases for more information.

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

Commits

Updates zod from 4.3.6 to 4.4.3

Release notes

Sourced from zod's releases.

v4.4.3

Commits:

  • 4c2fa95ce3f3390fbc522324e406b4e9e89b88f9 docs: use Zernio primary wordmark for gold sponsor logo
  • 2aeec83eb135e3a83756e973ef44845fc5a455d2 docs: prune lapsed gold sponsors and rebalance logo sizing
  • 7391be88ac1ee5cd02057f5ccc012a1f5df4efd0 docs: prune lapsed silver/bronze sponsors and add active ones
  • 2c703322a21b4e2b12f33f49ea8430c451a68b4f docs: normalize bronze sponsor logos to github avatar pattern
  • 9195250cab0e7950efe39c3926d6c203b4b0a170 docs: remove Mintlify from bronze sponsors (churned)
  • b8dffe9e62f17e6571e6249d05cc5102b54d94e4 docs: remove Numeric and Speakeasy (2+ missed monthly cycles)
  • 1cab69383fcdeae2a366d5e2a2fc4d8fc765d168 fix(v4): restore catch handling for absent object keys (#5937) (#5939)
  • c2be4f819064eed62c7c350a2d399b5faecd15f8 fix(v4): generalize optin/fallback to transform; restore preprocess on absent keys (#5941)
  • f3c9ec03ba7a28ae72d25cc295f38674bee0f559 4.4.3
  • 1fb56a5c18c27102dbc92260a4007c7732a0ccca docs: document release procedure in AGENTS.md

v4.4.2

Commits:

  • 0c62df0ea19fd05abdf90473e9eef7eea530fab2 Clean up docs navigation and stale labels (#5901)
  • 20cc794895cc8604fe0c87d83a5d1c3f89fad0ac chore: add security policy and refresh tooling deps
  • 6fbe07b0177efdd1bf1c0b05160e70d7a0702337 fix(docs): heading anchor links now include the hash so it doesnt scoll all the way up, follows navbar logic (#5791)
  • 4bbed1b1c73eca4ce9e59b1189ed236aa6c8b5bd Tighten discriminated union option typing
  • bbac3e567e7fccfaaf7cdc97f1ce30c295e2c908 Update PR guidance for agents
  • cf0dc942a32805c292fff59ade20a7ace980735a Merge remote-tracking branch 'origin/main' into fix-discriminated-union-key-constraint
  • 292c894a5fd2aa42e527900b83d8d7a3009a709c docs: add Zernio gold sponsor
  • 1fc9f311c28dcf80d0bb5a36b177086cbc3d8eca docs: document codec inversion
  • 1373c85da9aeff704a9762d27bc58699618aefb7 docs: remove AI disclosure guidance
  • e20d02b473c08e3a4e557bc610b1b5fac079b649 chore: ignore triage notes
  • e58ea4d91b1dfe8194b73508203213cbc7e9c936 docs: test Zod Mini tab code heights
  • 905761a5d127e8d5dd2ebb3bc88c75cb0b8149ff docs: document preprocess input type narrowing
  • bf64bac850d4dee2b7dde7e64909d5d796d32043 chore: tighten test guidance in AGENTS.md
  • 8ec4e73f4c4693b6361ad591be40fb41eb8a9f95 chore: update play.ts scratch
  • 02c2baf7d0d615872fa4528a8020603b71211702 Make z.preprocess defer optionality to inner schema (#5929)
  • 88015df8e25c44fb5385eb3ef28935119cd5edea fix(docs): drop deprecated baseUrl from tsconfig
  • c59d4474e3b4cad1b323462186cf607178ce8267 4.4.2

v4.4.1

Commits:

  • 481f7be4238c83ed58183f921b2646f340a91c6a ci: gate release publishing on full test workflow
  • 95ccab423aec720b2523c3a64cdc7e3204537cc7 test(v3): restore optional undefined expectations
  • cede2c63739a5823d6aa5093d291e9a111da943d fix(v4): reject tuple holes before required defaults (#5900)
  • edd0bf0f5ada4a8dc581c259407d7bbad0a71ea7 release: 4.4.1
  • 180d83d1dbe6a59260710cc8637a3dea2281ee56 docs: remove Jazz featured sponsor

v4.4.0

4.4.0

This is a minor release with a wide set of correctness and soundness fixes. Some fixes intentionally make Zod stricter, so code that depended on previously accepted invalid or ambiguous inputs may need small updates.

Potentially breaking bug fixes

... (truncated)

Commits
  • 1fb56a5 docs: document release procedure in AGENTS.md
  • f3c9ec0 4.4.3
  • c2be4f8 fix(v4): generalize optin/fallback to transform; restore preprocess on absent...
  • 1cab693 fix(v4): restore catch handling for absent object keys (#5937) (#5939)
  • b8dffe9 docs: remove Numeric and Speakeasy (2+ missed monthly cycles)
  • 9195250 docs: remove Mintlify from bronze sponsors (churned)
  • 2c70332 docs: normalize bronze sponsor logos to github avatar pattern
  • 7391be8 docs: prune lapsed silver/bronze sponsors and add active ones
  • 2aeec83 docs: prune lapsed gold sponsors and rebalance logo sizing
  • 4c2fa95 docs: use Zernio primary wordmark for gold sponsor logo
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zod since your current version.


Updates zustand from 5.0.12 to 5.0.13

Release notes

Sourced from zustand's releases.

v5.0.13

This release includes an improvement in the devtools middleware.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v5.0.12...v5.0.13

Commits
  • 6bc451e 5.0.13
  • 8ec2169 chore(deps): update dev dependencies (#3486)
  • 4e9bcf0 fix(devtools): support Firefox/Safari stack format in findCallerName (#3469)
  • 4b96f4e fix(docs): correct react-dom test utils import path (#3474)
  • c7516c1 fix(tests): change parameters for 'expect' in test (#3483)
  • 1b04af1 docs(persist): fix signature to require persistOptions (#3477)
  • 95d3f33 test(middleware/immer): add runtime tests for immer middleware (#3471)
  • 3201328 Update TypeScript guide links in README.md (#3466)
  • 00f96a3 chore(deps): bump actions/deploy-pages from 4.0.5 to 5.0.0 (#3447)
  • 6330044 test: expand React subscribe test coverage (#3442)
  • Additional commits viewable in compare view

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.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-updates group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `2.0.5` | `2.1.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.5.0` | `17.6.0` |
| [i18next-cli](https://github.com/i18next/i18next-cli) | `1.56.7` | `1.56.11` |
| [immer](https://github.com/immerjs/immer) | `11.1.4` | `11.1.8` |
| [material-symbols](https://github.com/marella/material-symbols/tree/HEAD/material-symbols) | `0.44.4` | `0.44.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.6` |
| [react-colorful](https://github.com/omgovich/react-colorful) | `5.6.1` | `5.7.0` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.5` | `19.2.6` |
| [sass-loader](https://github.com/webpack/sass-loader) | `16.0.7` | `16.0.8` |
| [simple-icons-font](https://github.com/simple-icons/simple-icons-font) | `16.17.0` | `16.19.0` |
| [swiper](https://github.com/nolimits4web/Swiper) | `12.1.3` | `12.1.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.0` | `8.59.2` |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.3` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.12` | `5.0.13` |



Updates `@eslint/compat` from 2.0.5 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 `globals` from 17.5.0 to 17.6.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.5.0...v17.6.0)

Updates `i18next-cli` from 1.56.7 to 1.56.11
- [Changelog](https://github.com/i18next/i18next-cli/blob/main/CHANGELOG.md)
- [Commits](i18next/i18next-cli@v1.56.7...v1.56.11)

Updates `immer` from 11.1.4 to 11.1.8
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v11.1.4...v11.1.8)

Updates `material-symbols` from 0.44.4 to 0.44.6
- [Release notes](https://github.com/marella/material-symbols/releases)
- [Commits](https://github.com/marella/material-symbols/commits/v0.44.6/material-symbols)

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

Updates `react-colorful` from 5.6.1 to 5.7.0
- [Release notes](https://github.com/omgovich/react-colorful/releases)
- [Changelog](https://github.com/omgovich/react-colorful/blob/master/CHANGELOG.md)
- [Commits](https://github.com/omgovich/react-colorful/commits/5.7.0)

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

Updates `sass-loader` from 16.0.7 to 16.0.8
- [Release notes](https://github.com/webpack/sass-loader/releases)
- [Changelog](https://github.com/webpack/sass-loader/blob/main/CHANGELOG.md)
- [Commits](webpack/sass-loader@v16.0.7...v16.0.8)

Updates `simple-icons-font` from 16.17.0 to 16.19.0
- [Release notes](https://github.com/simple-icons/simple-icons-font/releases)
- [Commits](simple-icons/simple-icons-font@16.17.0...16.19.0)

Updates `swiper` from 12.1.3 to 12.1.4
- [Release notes](https://github.com/nolimits4web/Swiper/releases)
- [Changelog](https://github.com/nolimits4web/swiper/blob/master/CHANGELOG.md)
- [Commits](nolimits4web/swiper@v12.1.3...v12.1.4)

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

Updates `zod` from 4.3.6 to 4.4.3
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.3.6...v4.4.3)

Updates `zustand` from 5.0.12 to 5.0.13
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.12...v5.0.13)

---
updated-dependencies:
- dependency-name: "@eslint/compat"
  dependency-version: 2.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: globals
  dependency-version: 17.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: i18next-cli
  dependency-version: 1.56.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: immer
  dependency-version: 11.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: material-symbols
  dependency-version: 0.44.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: react-colorful
  dependency-version: 5.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: sass-loader
  dependency-version: 16.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: simple-icons-font
  dependency-version: 16.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: swiper
  dependency-version: 12.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: typescript-eslint
  dependency-version: 8.59.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: zod
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: zustand
  dependency-version: 5.0.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants