Skip to content

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

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

build(deps): bump the version-updates group across 1 directory with 67 updates#1828
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/version-updates-09fb301559

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
@effect/language-service 0.38.1 0.69.2
@eslint/eslintrc 3.3.1 3.3.3
@eslint/js 9.35.0 9.39.2
@typescript-eslint/eslint-plugin 8.42.0 8.53.0
@typescript-eslint/parser 8.42.0 8.53.0
eslint 9.35.0 9.39.2
eslint-plugin-codegen 0.33.0 0.34.1
knip 5.64.0 5.82.0
prettier 3.4.2 3.8.0
wrangler 4.15.2 4.59.2
@effect/cli 0.69.2 0.73.0
@effect/cluster 0.48.2 0.56.1
@effect/experimental 0.54.6 0.58.0
@effect/platform 0.90.7 0.94.1
@effect/platform-node 0.96.1 0.104.0
@effect/printer 0.45.0 0.47.0
@effect/printer-ansi 0.45.0 0.47.0
@effect/rpc 0.69.2 0.73.0
@effect/sql 0.44.2 0.49.0
@effect/typeclass 0.36.0 0.38.0
effect 3.17.13 3.19.14
ethers 6.13.4 6.16.0
@changesets/changelog-github 0.5.1 0.5.2
@changesets/cli 2.29.4 2.29.8
@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.2
express 5.1.0 5.2.1
@types/express 5.0.1 5.0.6
viem 2.36.0 2.44.4
@tailwindcss/postcss 4.0.7 4.1.18
@theguild/remark-mermaid 0.1.3 0.3.0
autoprefixer 10.4.20 10.4.23
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.6
tailwindcss 4.0.7 4.1.18
nodemon 3.1.9 3.1.11
pagefind 1.3.0 1.4.0
motion 12.9.2 12.27.0
thirdweb 5.96.5 5.117.2
@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.0
rollup 4.31.0 4.55.1
@cloudflare/vitest-pool-workers 0.7.8 0.12.4
@cloudflare/workers-types 4.20250423.0 4.20260118.0
@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.29.17
@openzeppelin/contracts 5.1.0 5.4.0
@safe-global/api-kit 4.0.0 4.0.1
@safe-global/safe-deployments 1.37.40 1.37.50
solidity-coverage 0.8.16 0.8.17
@tailwindcss/cli 4.0.7 4.1.18
vite 7.1.4 7.3.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.10
@testing-library/react 16.2.0 16.3.1
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.69.2

Release notes

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

v0.69.2

Patch Changes

  • #612 2b49181 Thanks @​mattiamanzati! - Improve effectFnIife diagnostic message to suggest Effect.withSpan with the trace name when available

    When Effect.fn("traceName") is used as an IIFE, the diagnostic now suggests using Effect.gen with Effect.withSpan("traceName") piped at the end to maintain tracing spans. For Effect.fnUntraced, it simply suggests using Effect.gen without the span suggestion.

  • #615 ae4f054 Thanks @​mattiamanzati! - Improve effectFnOpportunity diagnostic with more specific messages and configurable fixes

    • Add new effectFn configuration option to control which code fix variants are offered: "untraced", "span", "inferred-span", "no-span" (defaults to ["span"])
    • Diagnostic message now shows the exact expected signature for the rewrite
    • Distinguish between explicit trace from Effect.withSpan vs inferred trace from function name
    • Skip functions with return type annotations to avoid issues with recursive functions

    Before:

    This function could benefit from Effect.fn's automatic tracing...
    

    After:

    Can be rewritten as a reusable function: Effect.fn("myFunction")(function*() { ... })
    

v0.69.1

Patch Changes

  • #610 990ccbc Thanks @​mattiamanzati! - Improve effectFnOpportunity diagnostic message to mention that quickfixes are available in the editor or via the CLI quickfixes command.

v0.69.0

Minor Changes

  • #608 bc7da1e Thanks @​mattiamanzati! - Add effectFnIife diagnostic to warn when Effect.fn or Effect.fnUntraced is used as an IIFE (Immediately Invoked Function Expression).

    Effect.fn is designed to create reusable functions that can take arguments and provide tracing. When used as an IIFE, Effect.gen is more appropriate.

    Example:

    // Before (triggers warning)
    const result = Effect.fn("test")(function* () {
      yield* Effect.succeed(1);
    })();
    // After (using Effect.gen)
    const result = Effect.gen(function* () {
    yield* Effect.succeed(1);
    });

    A quick fix is provided to automatically convert Effect.fn IIFEs to Effect.gen.

... (truncated)

Changelog

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

0.69.2

Patch Changes

  • #612 2b49181 Thanks @​mattiamanzati! - Improve effectFnIife diagnostic message to suggest Effect.withSpan with the trace name when available

    When Effect.fn("traceName") is used as an IIFE, the diagnostic now suggests using Effect.gen with Effect.withSpan("traceName") piped at the end to maintain tracing spans. For Effect.fnUntraced, it simply suggests using Effect.gen without the span suggestion.

  • #615 ae4f054 Thanks @​mattiamanzati! - Improve effectFnOpportunity diagnostic with more specific messages and configurable fixes

    • Add new effectFn configuration option to control which code fix variants are offered: "untraced", "span", "inferred-span", "no-span" (defaults to ["span"])
    • Diagnostic message now shows the exact expected signature for the rewrite
    • Distinguish between explicit trace from Effect.withSpan vs inferred trace from function name
    • Skip functions with return type annotations to avoid issues with recursive functions

    Before:

    This function could benefit from Effect.fn's automatic tracing...
    

    After:

    Can be rewritten as a reusable function: Effect.fn("myFunction")(function*() { ... })
    

0.69.1

Patch Changes

  • #610 990ccbc Thanks @​mattiamanzati! - Improve effectFnOpportunity diagnostic message to mention that quickfixes are available in the editor or via the CLI quickfixes command.

0.69.0

Minor Changes

  • #608 bc7da1e Thanks @​mattiamanzati! - Add effectFnIife diagnostic to warn when Effect.fn or Effect.fnUntraced is used as an IIFE (Immediately Invoked Function Expression).

    Effect.fn is designed to create reusable functions that can take arguments and provide tracing. When used as an IIFE, Effect.gen is more appropriate.

    Example:

    // Before (triggers warning)
    const result = Effect.fn("test")(function* () {
      yield* Effect.succeed(1);
    })();
    // After (using Effect.gen)

... (truncated)

Commits
  • 4ec3535 Version Packages (#613)
  • ae4f054 Improve effectFnOpportunity diagnostic with configurable fixes and specific m...
  • 2b49181 improve effectFnIife diagnostic to suggest withSpan when trace name exists (#...
  • 2574608 Version Packages (#611)
  • 990ccbc improve effectFnOpportunity message (#610)
  • ce9c062 Version Packages (#609)
  • bc7da1e feat: add effectFnIife diagnostic (#608)
  • 9691f3a Version Packages (#604)
  • d63d5df Improve leakingRequirements diagnostic message for clarity (#605)
  • d747210 feat: add instanceOfSchema diagnostic (#603)
  • 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 @​effect/language-service since your current version.


Updates @eslint/eslintrc from 3.3.1 to 3.3.3

Release notes

Sourced from @​eslint/eslintrc's releases.

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.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
  • fdb5298 chore: release 3.3.3 🚀 (#212)
  • 8aa555a fix: release v3.3.3 because publishing v3.3.2 failed (#211)
  • a8b773d chore: release 3.3.2 🚀 (#204)
  • 85244bb chore: switch to googleapis/release-please-action (#208)
  • d356360 docs: Update README sponsors
  • 116bf03 chore: update js-yaml to version 4.1.1 (#207)
  • 16e8d20 docs: Update README sponsors
  • 3b089ac chore: update .gitignore to exclude shared workflows (#206)
  • 1f6e2d1 docs: Update README sponsors
  • 785c00b 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 @eslint/js from 9.35.0 to 9.39.2

Release notes

Sourced from @​eslint/js's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)

v9.39.1

Bug Fixes

  • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

Documentation

  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
  • b44d426 docs: Update README (GitHub Actions Bot)

Chores

  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
  • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
  • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)

... (truncated)

Commits
  • c43ce24 chore: package.json update for @​eslint/js release
  • c7ebefc chore: package.json update for @​eslint/js release
  • 2375a6d chore: package.json update for @​eslint/js release
  • 9e7fad4 chore: add script to auto-generate eslint:recommended configuration (#20208)
  • 25d0e33 chore: package.json update for @​eslint/js release
  • abee4ca chore: package.json update for @​eslint/js release
  • 90a71bf docs: update README files to add badge and instructions (#20115)
  • 488cba6 chore: package.json update for @​eslint/js release
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116)
  • See full diff in compare view

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

Release notes

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

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

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

🩹 Fixes

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

❤️ Thank You

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

v8.52.0

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)
  • typescript-estree: add tseslint.com redirects for CLI outputs (#11895)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)
  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)

❤️ Thank You

  • Josh Goldberg ✨

... (truncated)

Changelog

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

8.53.0 (2026-01-12)

🚀 Features

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

🩹 Fixes

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

❤️ Thank You

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

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)
  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)

❤️ Thank You

  • Josh Goldberg ✨
  • Ulrich Stark

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

8.51.0 (2025-12-29)

🚀 Features

... (truncated)

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

Updates @typescript-eslint/parser from 8.42.0 to 8.53.0

Release notes

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

v8.53.0

8.53.0 (2026-01-12)

🚀 Features

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

🩹 Fixes

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

❤️ Thank You

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

v8.52.0

8.52.0 (2026-01-05)

🚀 Features

  • eslint-plugin-internal: [no-multiple-lines-of-errors] add rule (#11899)
  • typescript-estree: add tseslint.com redirects for CLI outputs (#11895)

🩹 Fixes

  • eslint-plugin: [no-useless-default-assignment] handle conditional initializer (#11908)
  • eslint-plugin: [no-base-to-string] detect @@​toPrimitive and valueOf (#11901)

❤️ Thank You

  • Josh Goldberg ✨

... (truncated)

Changelog

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

8.53.0 (2026-01-12)

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

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

8.52.0 (2026-01-05)

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.51.0 (2025-12-29)

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.50.1 (2025-12-22)

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.50.0 (2025-12-15)

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.49.0 (2025-12-08)

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.48.1 (2025-12-02)

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.48.0 (2025-11-24)

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.47.0 (2025-11-17)

... (truncated)

Commits
  • 3021ede chore(release): publish 8.53.0
  • 9ddd571 chore(release): publish 8.52.0
  • 95c7c73 chore: update deps to latest minor/patch (#11921)
  • e4c57f5 chore(release): publish 8.51.0
  • d520b88 chore(release): publish 8.50.1
  • c62e858 chore(release): publish 8.50.0
  • 864595a chore(release): publish 8.49.0
  • 32b7e89 chore(deps): update dependency @​vitest/eslint-plugin to v1.5.1 (#11816)
  • 8fe3445 chore(release): publish 8.48.1
  • 6fb1551 chore(release): publish 8.48.0
  • Additional commits viewable in compare view

Updates eslint from 9.35.0 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)

v9.39.1

Bug Fixes

  • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

Documentation

  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
  • b44d426 docs: Update README (GitHub Actions Bot)

Chores

  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
  • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
  • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)

... (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
  • c70437a 0.34.1
  • 422873c export dependencies too
  • ...

    Description has been truncated

…7 updates

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

| Package | From | To |
| --- | --- | --- |
| [@effect/language-service](https://github.com/Effect-TS/language-service) | `0.38.1` | `0.69.2` |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.3.1` | `3.3.3` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.35.0` | `9.39.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.42.0` | `8.53.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.42.0` | `8.53.0` |
| [eslint](https://github.com/eslint/eslint) | `9.35.0` | `9.39.2` |
| [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.82.0` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.8.0` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.15.2` | `4.59.2` |
| [@effect/cli](https://github.com/Effect-TS/effect/tree/HEAD/packages/cli) | `0.69.2` | `0.73.0` |
| [@effect/cluster](https://github.com/Effect-TS/effect/tree/HEAD/packages/cluster) | `0.48.2` | `0.56.1` |
| [@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.1` |
| [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) | `0.96.1` | `0.104.0` |
| [@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.0` |
| [@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.14` |
| [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.5.2` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.29.4` | `2.29.8` |
| [@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.2` |
| [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.44.4` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.0.7` | `4.1.18` |
| [@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.23` |
| [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.6` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.0.7` | `4.1.18` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.9` | `3.1.11` |
| [pagefind](https://github.com/pagefind/pagefind) | `1.3.0` | `1.4.0` |
| [motion](https://github.com/motiondivision/motion) | `12.9.2` | `12.27.0` |
| [thirdweb](https://github.com/thirdweb-dev/js) | `5.96.5` | `5.117.2` |
| [@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.0` |
| [rollup](https://github.com/rollup/rollup) | `4.31.0` | `4.55.1` |
| [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.7.8` | `0.12.4` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20250423.0` | `4.20260118.0` |
| [@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.29.17` |
| [@openzeppelin/contracts](https://github.com/OpenZeppelin/openzeppelin-contracts) | `5.1.0` | `5.4.0` |
| [@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.50` |
| [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.1.18` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.1.4` | `7.3.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.10` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.2.0` | `16.3.1` |
| [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.69.2
- [Release notes](https://github.com/Effect-TS/language-service/releases)
- [Changelog](https://github.com/Effect-TS/language-service/blob/main/CHANGELOG.md)
- [Commits](Effect-TS/language-service@v0.38.1...v0.69.2)

Updates `@eslint/eslintrc` from 3.3.1 to 3.3.3
- [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.3)

Updates `@eslint/js` from 9.35.0 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.2/packages/js)

Updates `@typescript-eslint/eslint-plugin` from 8.42.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.42.0 to 8.53.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.0/packages/parser)

Updates `eslint` from 9.35.0 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.35.0...v9.39.2)

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.82.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@5.82.0/packages/knip)

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

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

Updates `@effect/cli` from 0.69.2 to 0.73.0
- [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.0/packages/cli)

Updates `@effect/cluster` from 0.48.2 to 0.56.1
- [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.1/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.1
- [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.1/packages/platform)

Updates `@effect/platform-node` from 0.96.1 to 0.104.0
- [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.0/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.0
- [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.0/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.14
- [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.14/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.5.2
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/changelog-github@0.5.1...@changesets/read@0.5.2)

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

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

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.44.4
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.36.0...viem@2.44.4)

Updates `@tailwindcss/postcss` from 4.0.7 to 4.1.18
- [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.1.18/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.23
- [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.23)

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

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

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

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

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

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.0
- [Release notes](https://github.com/privatenumber/get-tsconfig/releases)
- [Commits](privatenumber/get-tsconfig@v4.9.0...v4.13.0)

Updates `rollup` from 4.31.0 to 4.55.1
- [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.55.1)

Updates `@cloudflare/vitest-pool-workers` from 0.7.8 to 0.12.4
- [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.12.4/packages/vitest-pool-workers)

Updates `@cloudflare/workers-types` from 4.20250423.0 to 4.20260118.0
- [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)
- [Changelog](https://github.com/ChainSafe/ssz/blob/master/release-please-config.json)
- [Commits](ChainSafe/ssz@ssz-v1.2.1...ssz-v1.3.0)

Updates `@ledgerhq/hw-transport-node-hid` from 6.29.13 to 6.29.17
- [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.29.17)

Updates `@openzeppelin/contracts` from 5.1.0 to 5.4.0
- [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.4.0)

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.50
- [Release notes](https://github.com/safe-global/safe-deployments/releases)
- [Commits](safe-global/safe-deployments@v1.37.40...v1.37.50)

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.1.18
- [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.1.18/packages/@tailwindcss-cli)

Updates `vite` from 7.1.4 to 7.3.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.1/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.1/packages/vite)

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.10
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.3...v5.0.10)

Updates `@testing-library/react` from 16.2.0 to 16.3.1
- [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.1)

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.69.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@eslint/eslintrc"
  dependency-version: 3.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@eslint/js"
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.53.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: eslint
  dependency-version: 9.39.2
  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.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: prettier
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: wrangler
  dependency-version: 4.59.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/cli"
  dependency-version: 0.73.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/cluster"
  dependency-version: 0.56.1
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@effect/platform-node"
  dependency-version: 0.104.0
  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.0
  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.14
  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.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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.2
  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.44.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.18
  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.23
  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.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: tailwindcss
  dependency-version: 4.1.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: nodemon
  dependency-version: 3.1.11
  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.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: thirdweb
  dependency-version: 5.117.2
  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.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: rollup
  dependency-version: 4.55.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.12.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 4.20260118.0
  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.29.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@openzeppelin/contracts"
  dependency-version: 5.4.0
  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.50
  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.1.18
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: version-updates
- dependency-name: vite
  dependency-version: 7.3.1
  dependency-type: direct:production
  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.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: version-updates
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.1
  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 Jan 19, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Feb 2, 2026

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

@dependabot dependabot bot closed this Feb 2, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/version-updates-09fb301559 branch February 2, 2026 00:32
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