Skip to content

build(deps): bump the version-updates group across 1 directory with 64 updates#1842

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/version-updates-ea335cdb0d
Closed

build(deps): bump the version-updates group across 1 directory with 64 updates#1842
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/version-updates-ea335cdb0d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps the version-updates group with 64 updates in the / directory:

Package From To
@effect/language-service 0.38.1 0.80.0
@eslint/eslintrc 3.3.1 3.3.5
@typescript-eslint/eslint-plugin 8.42.0 8.57.0
@typescript-eslint/parser 8.42.0 8.57.0
eslint-plugin-codegen 0.33.0 0.34.1
knip 5.64.0 5.86.0
prettier 3.4.2 3.8.1
wrangler 4.15.2 4.73.0
@effect/cli 0.69.2 0.73.2
@effect/cluster 0.48.2 0.56.4
@effect/experimental 0.54.6 0.58.0
@effect/platform 0.90.7 0.94.5
@effect/platform-node 0.96.1 0.104.1
@effect/printer 0.45.0 0.47.0
@effect/printer-ansi 0.45.0 0.47.0
@effect/rpc 0.69.2 0.73.2
@effect/sql 0.44.2 0.49.0
@effect/typeclass 0.36.0 0.38.0
effect 3.17.13 3.19.19
ethers 6.13.4 6.16.0
@changesets/changelog-github 0.5.1 0.6.0
@changesets/cli 2.29.4 2.30.0
@effect/vitest 0.25.1 0.27.0
tsup 8.5.0 8.5.1
tsx 4.20.5 4.21.0
axios 1.7.9 1.13.6
express 5.1.0 5.2.1
@types/express 5.0.1 5.0.6
viem 2.36.0 2.47.4
@tailwindcss/postcss 4.0.7 4.2.1
@theguild/remark-mermaid 0.1.3 0.3.0
autoprefixer 10.4.20 10.4.27
cmdk 1.0.4 1.1.1
fast-glob 3.3.2 3.3.3
nextra 4.1.1 4.6.1
postcss 8.4.49 8.5.8
tailwindcss 4.0.7 4.2.1
nodemon 3.1.9 3.1.14
pagefind 1.3.0 1.4.0
motion 12.9.2 12.36.0
thirdweb 5.96.5 5.119.1
@rollup/plugin-node-resolve 16.0.0 16.0.3
@rollup/plugin-typescript 12.1.2 12.3.0
@types/rollup-plugin-peer-deps-external 2.2.5 2.2.6
get-tsconfig 4.9.0 4.13.6
rollup 4.31.0 4.59.0
@cloudflare/vitest-pool-workers 0.7.8 0.13.0
@cloudflare/workers-types 4.20250423.0 4.20260313.1
@octokit/request-error 7.0.0 7.1.0
@chainsafe/ssz 1.2.1 1.3.0
@ledgerhq/hw-transport-node-hid 6.29.13 6.31.0
@openzeppelin/contracts 5.1.0 5.6.1
@safe-global/api-kit 4.0.0 4.0.1
@safe-global/safe-deployments 1.37.40 1.37.52
solidity-coverage 0.8.16 0.8.17
@tailwindcss/cli 4.0.7 4.2.1
@headlessui/react 2.2.0 2.2.9
execa 9.6.0 9.6.1
next-themes 0.4.4 0.4.6
zustand 5.0.3 5.0.11
@testing-library/react 16.2.0 16.3.2
nextra-theme-docs 4.1.1 4.6.1
solidity-ast 0.4.59 0.4.61
@babel/preset-typescript 7.26.0 7.28.5

Updates @effect/language-service from 0.38.1 to 0.80.0

Release notes

Sourced from @​effect/language-service's releases.

@​effect/language-service@​0.80.0

Minor Changes

  • #681 1017a54 Thanks @​mattiamanzati! - Generate a root schema.json for tsconfig.json plugin configuration, add typed Effect Language Service plugin options to that schema, and have effect-language-service setup add or remove the matching $schema entry automatically.

  • #679 3664197 Thanks @​mattiamanzati! - Add inline --lspconfig support to the effect-language-service diagnostics CLI command so diagnostics runs can override the project plugin configuration without editing tsconfig.json.

@​effect/language-service@​0.79.0

Minor Changes

  • #671 6b9c378 Thanks @​mattiamanzati! - Add the extendsNativeError diagnostic to warn when classes directly extend the native Error constructor, including common local aliases such as const E = Error.

    This helps steer users toward tagged errors that preserve stronger typing in the Effect failure channel.

  • #678 0e9c11b Thanks @​mattiamanzati! - Generate the README diagnostics table from the diagnostic registry.

    Each diagnostic now declares:

    • whether it is fixable
    • which Effect versions it supports

    The generated table is checked in CI, and diagnostics tests verify that fixable matches the presence of non-suppression quick fixes.

  • #676 2f982d6 Thanks @​mattiamanzati! - Add the nodeBuiltinImport diagnostic to warn when importing Node.js built-in modules (fs, path, child_process) that have Effect-native counterparts in @effect/platform.

    This diagnostic covers ES module imports and top-level require() calls, matching both bare and node:-prefixed specifiers as well as subpath variants like fs/promises, path/posix, and path/win32. It defaults to severity off and provides no code fixes.

  • #673 f9e24df Thanks @​mattiamanzati! - Add plugin options to better control patched tsc behavior.

    ignoreEffectErrorsInTscExitCode allows Effect diagnostics reported as errors to be ignored for exit-code purposes, and skipDisabledOptimiziation keeps disabled diagnostics eligible for comment-based overrides when patch mode is active.

  • #674 54e8c16 Thanks @​mattiamanzati! - Add the serviceNotAsClass diagnostic to warn when ServiceMap.Service is used as a variable assignment instead of in a class declaration.

    Includes an auto-fix that converts const Config = ServiceMap.Service<Shape>("Config") to class Config extends ServiceMap.Service<Config, Shape>()("Config") {}.

Patch Changes

  • #675 d1f09c3 Thanks @​mattiamanzati! - Rename the skipDisabledOptimiziation plugin option to skipDisabledOptimization.

    Example:

    {
      "compilerOptions": {
        "plugins": [
          {
            "name": "@effect/language-service",
            "skipDisabledOptimization": true
          }
        ]

... (truncated)

Changelog

Sourced from @​effect/language-service's changelog.

@​effect/language-service

0.71.2

Patch Changes

  • #625 422087d Thanks @​mattiamanzati! - Fix CLI patching to target emitFilesAndReportErrors function instead of emitFilesAndReportErrorsAndGetExitStatus, updating the injection approach to replace the diagnostics property in the return statement's object literal.

0.71.1

Patch Changes

  • #624 d279457 Thanks @​mattiamanzati! - Add ignoreEffectSuggestionsInTscExitCode option (default: true) to control whether Effect-related suggestions affect the TSC exit code. When enabled, suggestions won't cause tsc to return a non-zero exit code.

  • #622 5eab20a Thanks @​mattiamanzati! - Add ignoreEffectWarningsInTscExitCode option to allow Effect-related warnings to not affect the TSC exit code. When enabled, tsc will compile successfully even if Effect warnings are emitted. This is useful for CI/CD pipelines where Effect diagnostics should be informational rather than blocking.

0.71.0

Minor Changes

  • #619 f171350 Thanks @​mattiamanzati! - Add effectSucceedWithVoid diagnostic to suggest using Effect.void instead of Effect.succeed(undefined) or Effect.succeed(void 0).

    The diagnostic detects calls to Effect.succeed where the argument is exactly undefined or void 0 (including parenthesized variants) and suggests replacing them with the more idiomatic Effect.void. A quick fix is provided to automatically apply the replacement.

    Before:

    Effect.succeed(undefined);
    Effect.succeed(void 0);

    After:

    Effect.void;

Patch Changes

  • #621 74ef937 Thanks @​mattiamanzati! - Improve diagnostic messages for globalErrorInEffectFailure and globalErrorInEffectCatch to be more concise and actionable.

    Before:

    The global Error type is used in an Effect failure channel. It's not recommended to use the global Error type in Effect failures as they can get merged together. Instead, use tagged errors or custom errors with a discriminator property to get properly type-checked errors.
    

    After:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​effect/language-service since your current version.


Updates @eslint/eslintrc from 3.3.1 to 3.3.5

Release notes

Sourced from @​eslint/eslintrc's releases.

eslintrc: v3.3.5

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

eslintrc: v3.3.4

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)

eslintrc: v3.3.3

3.3.3 (2025-11-28)

Bug Fixes

  • release v3.3.3 because publishing v3.3.2 failed (#211) (8aa555a)

eslintrc: v3.3.2

3.3.2 (2025-11-25)

Bug Fixes

  • Remove name property from all and recommended configs (#200) (344da49)
Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.5 (2026-03-04)

Bug Fixes

  • update dependency minimatch to ^3.1.5 (#227) (3dc2381)

3.3.4 (2026-02-22)

Bug Fixes

  • update ajv to 6.14.0 to address security vulnerabilities (#221) (9139140)
  • update minimatch to 3.1.3 to address security vulnerabilities (#224) (30339d0)

3.3.3 (2025-11-28)

Bug Fixes

  • release v3.3.3 because publishing v3.3.2 failed (#211) (8aa555a)

3.3.2 (2025-11-25)

Bug Fixes

  • Remove name property from all and recommended configs (#200) (344da49)
Commits
  • 5135df1 chore: release 3.3.5 🚀 (#228)
  • c109d69 docs: Update README sponsors
  • 3dc2381 fix: update dependency minimatch to ^3.1.5 (#227)
  • 81385b6 ci: pin Node.js 25.6.1 (#226)
  • 4c45e24 chore: release 3.3.4 🚀 (#223)
  • 30339d0 fix: update minimatch to 3.1.3 to address security vulnerabilities (#224)
  • 9139140 fix: update ajv to 6.14.0 to address security vulnerabilities (#221)
  • 245ada5 docs: Update README sponsors
  • 78b1a0e docs: Update README sponsors
  • df32fff docs: Update README sponsors
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​eslint/eslintrc since your current version.


Updates @typescript-eslint/eslint-plugin from 8.42.0 to 8.57.0

Release notes

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

v8.57.0

8.57.0 (2026-03-09)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#12080)

🩹 Fixes

  • eslint-plugin: [strict-void-return] false positives with overloads (#12055)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#12079)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#12077)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#12094)
  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#12089)
  • typescript-estree: switch back to use ts.getModifiers() (#12034)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#11355)

❤️ Thank You

See GitHub Releases for more information.

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

v8.56.1

8.56.1 (2026-02-23)

What's Changed

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

... (truncated)

Changelog

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

8.57.0 (2026-03-09)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#12080)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#12089)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#12094)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#11355)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#12077)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#12079)
  • eslint-plugin: [strict-void-return] false positives with overloads (#12055)

❤️ Thank You

See GitHub Releases for more information.

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

8.56.1 (2026-02-23)

This was a version bump only for eslint-plugin 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.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

... (truncated)

Commits
  • 2c6aeee chore(release): publish 8.57.0
  • 46bf066 docs(eslint-plugin): document no-unnecessary-condition limitation with object...
  • f696dad chore: use pnpm catalog (#12047)
  • 2029c78 fix(eslint-plugin): [no-base-to-string] fix false positive for toString with ...
  • 0f4f101 fix(eslint-plugin): [prefer-promise-reject-errors] add allow `TypeOrValueSpec...
  • 53f473b fix(typescript-estree): if the template literal is tagged and the text has an...
  • 2291b81 docs: minor grammar adjustment (#12112)
  • fc5cd09 fix(eslint-plugin): guard against negative paramIndex in no-useless-default-a...
  • adc2aad fix(eslint-plugin): handle statically analyzable computed keys in prefer-read...
  • 85badff fix(eslint-plugin): [strict-void-return] false positives with overloads (#12055)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.42.0 to 8.57.0

Release notes

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

v8.57.0

8.57.0 (2026-03-09)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#12080)

🩹 Fixes

  • eslint-plugin: [strict-void-return] false positives with overloads (#12055)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#12079)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#12077)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#12094)
  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#12089)
  • typescript-estree: switch back to use ts.getModifiers() (#12034)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#11355)

❤️ Thank You

See GitHub Releases for more information.

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

v8.56.1

8.56.1 (2026-02-23)

What's Changed

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

... (truncated)

Changelog

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

8.57.0 (2026-03-09)

This was a version bump only for parser 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.56.1 (2026-02-23)

This was a version bump only for parser 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.56.0 (2026-02-16)

🚀 Features

❤️ Thank You

See GitHub Releases for more information.

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

8.55.0 (2026-02-09)

This was a version bump only for parser 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.54.0 (2026-01-26)

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.

8.53.1 (2026-01-19)

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.

... (truncated)

Commits

Updates eslint-plugin-codegen from 0.33.0 to 0.34.1

Release notes

Sourced from eslint-plugin-codegen's releases.

v0.34.1

  • export dependencies too 422873c
  • lint: run lint on self 6bba703
  • types 637d9fb

mmkal/eslint-plugin-codegen@v0.34.0...v0.34.1

v0.34.0

  • standard-schema + str presets (#36) 78a40de
  • Babel simplify (#35) 281e3bb

mmkal/eslint-plugin-codegen@v0.33.0...v0.34.0

Commits

Updates knip from 5.64.0 to 5.86.0

Release notes

Sourced from knip's releases.

Release 5.86.0

  • Rewrite import specifiers to use .ts extensions, remove tsx (#1548) (58674ade551d04ca38eea5b8273e8843eed7659d) - thanks @​wojtekmaj!
  • Add .spec-d to vitest entry files (#1556) (3123ab76745990b2483f9c8f26c9c9ad4500d4aa) - thanks @​yamachi4416!
  • Update docs for tsx → node (0418eba6dc6a0d5e1e56cce1c037b0ae6846bc64)
  • Auto-format (7142fd701f97f8a4115c4094d1007f2551c33537)
  • Add Qwik plugin (#1557) (fc668f4b59e40caddf8e9904fb50dc59de1a86f8) - thanks @​azat-io!
  • Fix Bun plugin to handle directory arguments in bun test (c112b6c68b13976e4b601c5169a09e748e67fd4f)
  • Update FAQ (b105a42610346f7b9a07071ab8f5d2d7c60b004f)
  • fix(plugin): swc with externalHelpers setting ignores @swc/helpers dependency (#1560) (4bcb1f5429d003e6e2b28e2bd65a64c849fe0786) - thanks @​bobaaaaa!
  • chore: git ignore artifacts (#1563) (4878724a6599bc80a9ef9c62d86d2805d7d8a914) - thanks @​unional!
  • Fix Vite plugin to respect root option for index.html entries (#1561) (67a56470f61cadfe1e771adc87385a98e398da2e) - thanks @​azat-io!
  • Fix Astro sharpImageService() false positive for unused sharp (#1559) (c36247cc034a14a846e94faafbdd2097f9a5d7d2) - thanks @​azat-io!
  • Fix up gitignore test (b2c3d086be6c76791d2b60b10944df3b7b52d9fc)
  • fix: normalize Windows backslash paths in fs.watch listener to fix --watch on Windows (#1558) (b86b421ec9f6bf1c930600c5109511712af3d224) - thanks @​Aiudadadadf!
  • Fix wrangler plugin not enabled by jsonc config (#1564) (00bb1be35386300e6ea302c14a9b15e3f6e03b35) - thanks @​DaniFoldi!
  • Edit AGENTS.md (a2aaf2f9983e24b881191403bd716bd1ee791c70)
  • Fix tsconfig presets marked as unlisted in strict mode (resolve #1568) (463d67dad5f105cc2a76ce847192a9a7d1fb8498)
  • oxcellent (8a602c7863b63b1a940584e2a0436b70d8650be8)
  • Refactor format test and use prettier for consistent results (b6afc01828f884f579747e6d8e425aa1b07a068f)
  • Sort package.json (d3a521b62d4ba5de05d3497b456cf9d225a743c8)
  • Add .git to GLOBAL_IGNORE_PATTERNS (resolve #1571) (4e95ffb45748fa1ae84548c1992d2947826d2667)
  • Detect Yarn plugins that are listed by their path alone (#1574) (de4c7d898f83a52ea80a374d9395bcb109f39c23) - thanks @​robintown!
  • Start using unbash (a5de2c4e49bda454f0e42b4e5bfae54024d27772)
  • Bump unbash & simplify bash parser further (57896d32c86412ad5941c67fbb2fc29882a5bafa)
  • Fix refs in workspaces fixture (#1578) (fbee3426ccc05eaf2fcaa069826cd3594f946db9)
  • Include a few more entry patterns with pageExtensions (resolve #1581) (c6a6d9e72b7674392cb58675befcc4c6bbb64e11)
  • Clean exit if --fix fixes all issues (resolve #1577) (c182c29e35748ff044048c578b6bf7dd99dae9a8)
  • Document JSDoc tag hints (0e7b6ae8d66650da9e4aad81aa2bb7cfbd985e57)
  • Update AGENTS.md (f845462736f9fb6349c7e4bfd0f72d76df473f8c)
  • Add openapi-ts plugin (#1579) (42d1b3f5f912b37ed73ab46dc0fe07a93135413b) - thanks @​jonahsnider!
  • Migrate from js-yamlyaml (fb042ae235e57b340d167bb7bb7d7ddb0fa5b1fb)
  • pnpm dedupe (2586254448e28bd54025f5726d23bf4f95c2e886)
  • Fix plugin list order (#1587) (519ae3aca72333978c674aab0e7376c7007deaaf) - thanks @​ikeyan!
  • Fix confusing test fixtures for openapi-ts plugin (#1591) (f0083cac6c51337b1b53ee499dadcd5fa5e209ba) - thanks @​jonahsnider!
  • Off-by-1 (7d7dec6fec59ab8cddca09688d4ad05cdece1aea)
  • Don't fix compiled files (pos off) (a9fdc77fa6321e469b718131df556c37289a7dbd)
  • Add aliases from any tsconfig file in typescript plugin (resolve #1347) (ced77c707d064c5067b6dc331e76d878dc4add87)
  • Support auto-imports in Nuxt plugin (#1517) (4ce27b2f793882bc3fc8f72813b4c0c6152e5168)
  • Fix + lint .ts extension in import specifiers (d349de315a37f5ae208522abe830f1c41732779a)
  • Safe ts.isInTopLevelContextisInTopLevelScope (1819c2050440f82eb30e7be9d271298e6b4c8f14)
  • Wrap session.handleFileChanges in try/catch (185afb8cc6b914df31ca0c22315190e44c2834da)
  • Improve MDX compiler (9205e2a9480182605975687ebc4282f9805da58b)
  • fix(playwright): Add missing built-in null reporter (#1596) (0f1ce7d1bba7a80ce0697378efd2be0968383a86) - thanks @​shrink!
  • Add package.json#imports as entry points (1fbe286046bd51653fff4139b4b8a0ef1ea04193)
  • Update some dependencies + dedupe (381241e2e1e1875da7e34baee6b5d00f0aef0295)
  • Add support for extends in nuxt plugin (9fcbdf5244f81820b9a2f53d5b320e6c54fba792)
  • Update release script (f446b4f08ca48f7b135eb9da34a6388249598f1e)

Release 5.85.0

  • Fix require.context regex matching for path-aware patterns (#1547) (c33d93ae24dc1304baa49f85b25beb24af803dd8) - thanks @​jstaab!

... (truncated)

Commits
  • 5abbc4a Release knip@5.86.0
  • f446b4f Update release script
  • 9fcbdf5 Add support for extends in nuxt plugin
  • 381241e Update some dependencies + dedupe
  • 1fbe286 Add package.json#imports as entry points
  • 0f1ce7d fix(playwright): Add missing built-in null reporter (#1596)
  • 9205e2a Improve MDX compiler
  • 1819c20 Safe ts.isInTopLevelContextisInTopLevelScope
  • d349de3 Fix + lint .ts extension in import specifiers
  • 4ce27b2 Support auto-imports in Nuxt plugin (#1517)
  • Additional commits viewable in compare view

Updates prettier from 3.4.2 to 3.8.1

Release notes

Sourced from prettier's releases.

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

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

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

3.6.2

What's Changed

... (truncated)

Changelog

Sourced from prettier's changelog.

3.8.1

diff

Include available printers in plugin type declarations (#18706 by @​porada)

// Input
import * as prettierPluginEstree from "prettier/plugins/estree";
// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any
// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

3.8.0

diff

🔗 Release Notes

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
</tr></table> 

... (truncated)

Commits
  • 90983f4 ...

    Description has been truncated

…4 updates

Bumps the version-updates group with 64 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@effect/language-service](https://github.com/Effect-TS/language-service) | `0.38.1` | `0.80.0` |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.3.1` | `3.3.5` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.42.0` | `8.57.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.42.0` | `8.57.0` |
| [eslint-plugin-codegen](https://github.com/mmkal/eslint-plugin-codegen) | `0.33.0` | `0.34.1` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.64.0` | `5.86.0` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.8.1` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.15.2` | `4.73.0` |
| [@effect/cli](https://github.com/Effect-TS/effect/tree/HEAD/packages/cli) | `0.69.2` | `0.73.2` |
| [@effect/cluster](https://github.com/Effect-TS/effect/tree/HEAD/packages/cluster) | `0.48.2` | `0.56.4` |
| [@effect/experimental](https://github.com/Effect-TS/effect/tree/HEAD/packages/experimental) | `0.54.6` | `0.58.0` |
| [@effect/platform](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform) | `0.90.7` | `0.94.5` |
| [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) | `0.96.1` | `0.104.1` |
| [@effect/printer](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer) | `0.45.0` | `0.47.0` |
| [@effect/printer-ansi](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer-ansi) | `0.45.0` | `0.47.0` |
| [@effect/rpc](https://github.com/Effect-TS/effect/tree/HEAD/packages/rpc) | `0.69.2` | `0.73.2` |
| [@effect/sql](https://github.com/Effect-TS/effect/tree/HEAD/packages/sql) | `0.44.2` | `0.49.0` |
| [@effect/typeclass](https://github.com/Effect-TS/effect/tree/HEAD/packages/typeclass) | `0.36.0` | `0.38.0` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `3.17.13` | `3.19.19` |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.13.4` | `6.16.0` |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.5.1` | `0.6.0` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.29.4` | `2.30.0` |
| [@effect/vitest](https://github.com/Effect-TS/effect/tree/HEAD/packages/vitest) | `0.25.1` | `0.27.0` |
| [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.5` | `4.21.0` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.13.6` |
| [express](https://github.com/expressjs/express) | `5.1.0` | `5.2.1` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `5.0.1` | `5.0.6` |
| [viem](https://github.com/wevm/viem) | `2.36.0` | `2.47.4` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.0.7` | `4.2.1` |
| [@theguild/remark-mermaid](https://github.com/the-guild-org/docs/tree/HEAD/packages/remark-mermaid) | `0.1.3` | `0.3.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.27` |
| [cmdk](https://github.com/pacocoursey/cmdk/tree/HEAD/cmdk) | `1.0.4` | `1.1.1` |
| [fast-glob](https://github.com/mrmlnc/fast-glob) | `3.3.2` | `3.3.3` |
| [nextra](https://github.com/shuding/nextra) | `4.1.1` | `4.6.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.8` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.0.7` | `4.2.1` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.9` | `3.1.14` |
| [pagefind](https://github.com/pagefind/pagefind) | `1.3.0` | `1.4.0` |
| [motion](https://github.com/motiondivision/motion) | `12.9.2` | `12.36.0` |
| [thirdweb](https://github.com/thirdweb-dev/js) | `5.96.5` | `5.119.1` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `16.0.0` | `16.0.3` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `12.1.2` | `12.3.0` |
| [@types/rollup-plugin-peer-deps-external](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/rollup-plugin-peer-deps-external) | `2.2.5` | `2.2.6` |
| [get-tsconfig](https://github.com/privatenumber/get-tsconfig) | `4.9.0` | `4.13.6` |
| [rollup](https://github.com/rollup/rollup) | `4.31.0` | `4.59.0` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.7.8` | `0.13.0` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20250423.0` | `4.20260313.1` |
| [@octokit/request-error](https://github.com/octokit/request-error.js) | `7.0.0` | `7.1.0` |
| [@chainsafe/ssz](https://github.com/chainsafe/ssz) | `1.2.1` | `1.3.0` |
| [@ledgerhq/hw-transport-node-hid](https://github.com/LedgerHQ/ledger-live) | `6.29.13` | `6.31.0` |
| [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) | `5.1.0` | `5.6.1` |
| [@safe-global/api-kit](https://github.com/safe-global/safe-core-sdk) | `4.0.0` | `4.0.1` |
| [@safe-global/safe-deployments](https://github.com/safe-global/safe-deployments) | `1.37.40` | `1.37.52` |
| [solidity-coverage](https://github.com/sc-forks/solidity-coverage) | `0.8.16` | `0.8.17` |
| [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli) | `4.0.7` | `4.2.1` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `2.2.0` | `2.2.9` |
| [execa](https://github.com/sindresorhus/execa) | `9.6.0` | `9.6.1` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.4` | `0.4.6` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.3` | `5.0.11` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.2.0` | `16.3.2` |
| [nextra-theme-docs](https://github.com/shuding/nextra) | `4.1.1` | `4.6.1` |
| [solidity-ast](https://github.com/OpenZeppelin/solidity-ast) | `0.4.59` | `0.4.61` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.26.0` | `7.28.5` |



Updates `@effect/language-service` from 0.38.1 to 0.80.0
- [Release notes](https://github.com/Effect-TS/language-service/releases)
- [Changelog](https://github.com/Effect-TS/language-service/blob/main/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/language-service/compare/v0.38.1...@effect/language-service@0.80.0)

Updates `@eslint/eslintrc` from 3.3.1 to 3.3.5
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@v3.3.1...eslintrc-v3.3.5)

Updates `@typescript-eslint/eslint-plugin` from 8.42.0 to 8.57.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.57.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.42.0 to 8.57.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.57.0/packages/parser)

Updates `eslint-plugin-codegen` from 0.33.0 to 0.34.1
- [Release notes](https://github.com/mmkal/eslint-plugin-codegen/releases)
- [Commits](mmkal/eslint-plugin-codegen@v0.33.0...v0.34.1)

Updates `knip` from 5.64.0 to 5.86.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@5.86.0/packages/knip)

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

Updates `wrangler` from 4.15.2 to 4.73.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.73.0/packages/wrangler)

Updates `@effect/cli` from 0.69.2 to 0.73.2
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/cli@0.73.2/packages/cli)

Updates `@effect/cluster` from 0.48.2 to 0.56.4
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/cluster/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/cluster@0.56.4/packages/cluster)

Updates `@effect/experimental` from 0.54.6 to 0.58.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/experimental/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/experimental@0.58.0/packages/experimental)

Updates `@effect/platform` from 0.90.7 to 0.94.5
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/platform@0.94.5/packages/platform)

Updates `@effect/platform-node` from 0.96.1 to 0.104.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform-node/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/platform-node@0.104.1/packages/platform-node)

Updates `@effect/printer` from 0.45.0 to 0.47.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/printer/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/printer@0.47.0/packages/printer)

Updates `@effect/printer-ansi` from 0.45.0 to 0.47.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/printer-ansi/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/printer-ansi@0.47.0/packages/printer-ansi)

Updates `@effect/rpc` from 0.69.2 to 0.73.2
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/rpc/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/rpc@0.73.2/packages/rpc)

Updates `@effect/sql` from 0.44.2 to 0.49.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/sql/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/sql@0.49.0/packages/sql)

Updates `@effect/typeclass` from 0.36.0 to 0.38.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/typeclass/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/typeclass@0.38.0/packages/typeclass)

Updates `effect` from 3.17.13 to 3.19.19
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/effect@3.19.19/packages/effect)

Updates `ethers` from 6.13.4 to 6.16.0
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v6.13.4...v6.16.0)

Updates `@changesets/changelog-github` from 0.5.1 to 0.6.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/changelog-github@0.5.1...@changesets/changelog-github@0.6.0)

Updates `@changesets/cli` from 2.29.4 to 2.30.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.29.4...@changesets/cli@2.30.0)

Updates `@effect/vitest` from 0.25.1 to 0.27.0
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/vitest/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/vitest@0.27.0/packages/vitest)

Updates `tsup` from 8.5.0 to 8.5.1
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.5.0...v8.5.1)

Updates `tsx` from 4.20.5 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.5...v4.21.0)

Updates `axios` from 1.7.9 to 1.13.6
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.13.6)

Updates `express` from 5.1.0 to 5.2.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@v5.1.0...v5.2.1)

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

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

Updates `viem` from 2.36.0 to 2.47.4
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.36.0...viem@2.47.4)

Updates `@tailwindcss/postcss` from 4.0.7 to 4.2.1
- [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.2.1/packages/@tailwindcss-postcss)

Updates `@theguild/remark-mermaid` from 0.1.3 to 0.3.0
- [Release notes](https://github.com/the-guild-org/docs/releases)
- [Changelog](https://github.com/the-guild-org/docs/blob/main/packages/remark-mermaid/CHANGELOG.md)
- [Commits](https://github.com/the-guild-org/docs/commits/@theguild/remark-mermaid@0.3.0/packages/remark-mermaid)

Updates `autoprefixer` from 10.4.20 to 10.4.27
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.20...10.4.27)

Updates `cmdk` from 1.0.4 to 1.1.1
- [Release notes](https://github.com/pacocoursey/cmdk/releases)
- [Commits](https://github.com/pacocoursey/cmdk/commits/v1.1.1/cmdk)

Updates `fast-glob` from 3.3.2 to 3.3.3
- [Release notes](https://github.com/mrmlnc/fast-glob/releases)
- [Commits](mrmlnc/fast-glob@3.3.2...3.3.3)

Updates `nextra` from 4.1.1 to 4.6.1
- [Release notes](https://github.com/shuding/nextra/releases)
- [Commits](https://github.com/shuding/nextra/compare/nextra@4.1.1...nextra@4.6.1)

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

Updates `tailwindcss` from 4.0.7 to 4.2.1
- [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.2.1/packages/tailwindcss)

Updates `nodemon` from 3.1.9 to 3.1.14
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.9...v3.1.14)

Updates `pagefind` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pagefind/pagefind/releases)
- [Changelog](https://github.com/Pagefind/pagefind/blob/main/CHANGELOG.md)
- [Commits](Pagefind/pagefind@v1.3.0...v1.4.0)

Updates `motion` from 12.9.2 to 12.36.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.9.2...v12.36.0)

Updates `thirdweb` from 5.96.5 to 5.119.1
- [Release notes](https://github.com/thirdweb-dev/js/releases)
- [Commits](https://github.com/thirdweb-dev/js/compare/thirdweb@5.96.5...thirdweb@5.119.1)

Updates `@rollup/plugin-node-resolve` from 16.0.0 to 16.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.3/packages/node-resolve)

Updates `@rollup/plugin-typescript` from 12.1.2 to 12.3.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.3.0/packages/typescript)

Updates `@types/rollup-plugin-peer-deps-external` from 2.2.5 to 2.2.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/rollup-plugin-peer-deps-external)

Updates `get-tsconfig` from 4.9.0 to 4.13.6
- [Release notes](https://github.com/privatenumber/get-tsconfig/releases)
- [Commits](privatenumber/get-tsconfig@v4.9.0...v4.13.6)

Updates `rollup` from 4.31.0 to 4.59.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.31.0...v4.59.0)

Updates `@cloudflare/vitest-pool-workers` from 0.7.8 to 0.13.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.13.0/packages/vitest-pool-workers)

Updates `@cloudflare/workers-types` from 4.20250423.0 to 4.20260313.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `@octokit/request-error` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/octokit/request-error.js/releases)
- [Commits](octokit/request-error.js@v7.0.0...v7.1.0)

Updates `@chainsafe/ssz` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/chainsafe/ssz/releases)
- [Commits](ChainSafe/ssz@ssz-v1.2.1...ssz-v1.3.0)

Updates `@ledgerhq/hw-transport-node-hid` from 6.29.13 to 6.31.0
- [Release notes](https://github.com/LedgerHQ/ledger-live/releases)
- [Commits](https://github.com/LedgerHQ/ledger-live/compare/@ledgerhq/hw-transport-node-hid@6.29.13...@ledgerhq/hw-transport-node-hid@6.31.0)

Updates `@openzeppelin/contracts` from 5.1.0 to 5.6.1
- [Release notes](https://github.com/OpenZeppelin/openzeppelin-contracts/releases)
- [Changelog](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/CHANGELOG.md)
- [Commits](OpenZeppelin/openzeppelin-contracts@v5.1.0...v5.6.1)

Updates `@safe-global/api-kit` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/safe-global/safe-core-sdk/releases)
- [Commits](https://github.com/safe-global/safe-core-sdk/commits)

Updates `@safe-global/safe-deployments` from 1.37.40 to 1.37.52
- [Release notes](https://github.com/safe-global/safe-deployments/releases)
- [Commits](safe-global/safe-deployments@v1.37.40...v1.37.52)

Updates `solidity-coverage` from 0.8.16 to 0.8.17
- [Release notes](https://github.com/sc-forks/solidity-coverage/releases)
- [Changelog](https://github.com/sc-forks/solidity-coverage/blob/master/CHANGELOG.md)
- [Commits](sc-forks/solidity-coverage@v0.8.16...v0.8.17)

Updates `@tailwindcss/cli` from 4.0.7 to 4.2.1
- [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.2.1/packages/@tailwindcss-cli)

Updates `@headlessui/react` from 2.2.0 to 2.2.9
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v2.2.9/packages/@headlessui-react)

Updates `execa` from 9.6.0 to 9.6.1
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](sindresorhus/execa@v9.6.0...v9.6.1)

Updates `next-themes` from 0.4.4 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](pacocoursey/next-themes@v0.4.4...v0.4.6)

Updates `zustand` from 5.0.3 to 5.0.11
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.3...v5.0.11)

Updates `@testing-library/react` from 16.2.0 to 16.3.2
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.2.0...v16.3.2)

Updates `nextra-theme-docs` from 4.1.1 to 4.6.1
- [Release notes](https://github.com/shuding/nextra/releases)
- [Commits](https://github.com/shuding/nextra/compare/nextra-theme-docs@4.1.1...nextra-theme-docs@4.6.1)

Updates `solidity-ast` from 0.4.59 to 0.4.61
- [Release notes](https://github.com/OpenZeppelin/solidity-ast/releases)
- [Changelog](https://github.com/OpenZeppelin/solidity-ast/blob/master/CHANGELOG.md)
- [Commits](OpenZeppelin/solidity-ast@v0.4.59...v0.4.61)

Updates `@babel/preset-typescript` from 7.26.0 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-typescript)

---
updated-dependencies:
- dependency-name: "@effect/language-service"
  dependency-version: 0.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@eslint/eslintrc"
  dependency-version: 3.3.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: eslint-plugin-codegen
  dependency-version: 0.34.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: knip
  dependency-version: 5.86.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: wrangler
  dependency-version: 4.73.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/cli"
  dependency-version: 0.73.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/cluster"
  dependency-version: 0.56.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/experimental"
  dependency-version: 0.58.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/platform"
  dependency-version: 0.94.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/platform-node"
  dependency-version: 0.104.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/printer"
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/printer-ansi"
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/rpc"
  dependency-version: 0.73.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/sql"
  dependency-version: 0.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/typeclass"
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: effect
  dependency-version: 3.19.19
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: ethers
  dependency-version: 6.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@changesets/changelog-github"
  dependency-version: 0.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@changesets/cli"
  dependency-version: 2.30.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/vitest"
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: tsup
  dependency-version: 8.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: axios
  dependency-version: 1.13.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: express
  dependency-version: 5.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@types/express"
  dependency-version: 5.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: viem
  dependency-version: 2.47.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@theguild/remark-mermaid"
  dependency-version: 0.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: autoprefixer
  dependency-version: 10.4.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: cmdk
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: fast-glob
  dependency-version: 3.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: nextra
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: postcss
  dependency-version: 8.5.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: tailwindcss
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: nodemon
  dependency-version: 3.1.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: pagefind
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: motion
  dependency-version: 12.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: thirdweb
  dependency-version: 5.119.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-version: 16.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@rollup/plugin-typescript"
  dependency-version: 12.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@types/rollup-plugin-peer-deps-external"
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: get-tsconfig
  dependency-version: 4.13.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: rollup
  dependency-version: 4.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260313.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@octokit/request-error"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@chainsafe/ssz"
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@ledgerhq/hw-transport-node-hid"
  dependency-version: 6.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@openzeppelin/contracts"
  dependency-version: 5.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@safe-global/api-kit"
  dependency-version: 4.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@safe-global/safe-deployments"
  dependency-version: 1.37.52
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: solidity-coverage
  dependency-version: 0.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@tailwindcss/cli"
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@headlessui/react"
  dependency-version: 2.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: execa
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: zustand
  dependency-version: 5.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: nextra-theme-docs
  dependency-version: 4.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: solidity-ast
  dependency-version: 0.4.61
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@babel/preset-typescript"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-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 Mar 16, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 23, 2026

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

@dependabot dependabot bot closed this Mar 23, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/version-updates-ea335cdb0d branch March 23, 2026 00:31
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