Skip to content

chore(deps-dev): bump the npm_and_yarn group across 1 directory with 7 updates#229

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/npm_and_yarn-58fd5c9ff9
Open

chore(deps-dev): bump the npm_and_yarn group across 1 directory with 7 updates#229
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/dev/npm_and_yarn-58fd5c9ff9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 12, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm_and_yarn group with 7 updates in the / directory:

Package From To
@commitlint/cli 21.0.1 21.2.1
@commitlint/config-conventional 21.0.1 21.2.0
@types/node 25.9.1 26.1.1
hardhat 3.5.1 3.9.1
release-please 17.6.0 17.10.3
typescript 6.0.3 7.0.2
viem 2.50.4 2.55.1

Updates @commitlint/cli from 21.0.1 to 21.2.1

Release notes

Sourced from @​commitlint/cli's releases.

v21.2.1

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

Chore, doc, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.2.0...v21.2.1

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

21.2.1 (2026-07-08)

Note: Version bump only for package @​commitlint/root

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026-06-23)

Bug Fixes

  • remove duplicate es-toolkit@1.47.1 keys from lockfile (#4833) (b3323f5), closes #4831

Features

21.0.2 (2026-05-29)

Bug Fixes

  • apply oxfmt formatting to get-edit-commit.ts (#4768) (1af3138), closes #4755
  • config-pnpm-scopes: adapt to read-yaml-file v3 named export (#4701) (8b55772)
  • disallow same commit hash for --from and --to (#4773) (121005e)
  • emit actionable error when --edit cannot find COMMIT_EDITMSG (#589) (#4755) (bb10907)
  • read: fail when --from and --to share no merge-base #4555 (#4754) (e4595eb)
  • update dependency @​pnpm/read-project-manifest to v6 (#4617) (ca16ec1)
  • update vitest monorepo to ~4.1.0 (#4654) (f1f25d5)
Commits

Updates @commitlint/config-conventional from 21.0.1 to 21.2.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

Features

Docs, chore, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.2...v21.1.0

v21.0.2

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026-06-23)

Note: Version bump only for package @​commitlint/config-conventional

21.0.2 (2026-05-29)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @types/node from 25.9.1 to 26.1.1

Commits

Updates hardhat from 3.5.1 to 3.9.1

Release notes

Sourced from hardhat's releases.

Hardhat v3.9.1

This release improves Solidity Tests with configurable transaction gas caps and safer gas snapshot checks, while also making Hardhat faster to start and easier to migrate to from Hardhat 2.

Changes

  • #8234 81871fd Thanks @​tenderdeve! - Explain the unsupported cheatcode eip712HashType(string,string) and point to the documentation for the alternative instead.

  • #8400 2f48724 Thanks @​kanej! - Support setting the transaction gas cap in Solidity Tests

  • #8367 82d00fc Thanks @​alcuadrado! - Lazy load dependencies to optimize bootstrap time

  • #8391 f3c5727 Thanks @​schaable! - Make hardhat test solidity --snapshot-check read-only. It no longer rewrites or deletes .gas-snapshot or snapshots/*.json files, and instead reports differences. The command now fails when a stored gas value differs from the current one, or when no baseline exists, with a hint to run --snapshot.

  • #8332 e542a48 Thanks @​gultekinmakif! - Fixed a crash that could occur when a network returned an unexpected response while resolving the default sender account

  • #8385 946e379 Thanks @​BROCCOLO1D! - When a Hardhat 2 plugin calls an API that no longer exists in Hardhat 3, the error now names the specific API that was used and explains how to migrate it to Hardhat 3.

  • Updated dependencies:

    • @​nomicfoundation/hardhat-errors@​3.0.16
    • @​nomicfoundation/hardhat-utils@​4.1.4

💡 The Nomic Foundation is hiring! Check our open positions.


Hardhat v3.9.0

This release adds support for excluding files from test coverage instrumentation and reporting (i.e. npx hardhat test --coverage).

Changes

  • #8380 0fd498d Thanks @​kanej! - Added support for coverage.skipFiles, a list of globs of Solidity files to exclude from coverage instrumentation and reporting during a --coverage run.

  • #8383 1660f1e Thanks @​schaable! - Fixed an intermittent "Provider for provided chain type does not exist" error that could occur when multiple network connections were created concurrently.

  • #8371 287620e Thanks @​gultekinmakif! - Account overrides that share an address with the network's built-in genesis accounts are now correctly merged into a single genesis entry.

  • #8375 931a5f0 Thanks @​schaable! - Suppressed the solc initcode size warning for Solidity test contracts and when running under --coverage.

  • #8372 5f6aff2 Thanks @​gultekinmakif! - Improved validation for initialDate network configuration. Invalid Date objects and unparseable date strings are now rejected during config loading rather than causing a runtime error later.


💡 The Nomic Foundation is hiring! Check our open positions.


Hardhat v3.8.0

This release includes two improvements: a warning is now printed if a plugin is imported in hardhat.config.ts but not included in the plugins array and node:test now more cleanly displays Solidity errors.

Changes

  • #8339 f21390f Thanks @​alcuadrado! - Added definePlugin, a new helper exported from hardhat/plugins. Plugin authors should wrap their plugin literal with it so the default export of their index module becomes:

... (truncated)

Changelog

Sourced from hardhat's changelog.

3.9.1

Patch Changes

  • #8234 81871fd Thanks @​tenderdeve! - Explain the unsupported cheatcode eip712HashType(string,string) and point to the documentation for the alternative instead.

  • #8400 2f48724 Thanks @​kanej! - Support setting the transaction gas cap in Solidity Tests

  • #8367 82d00fc Thanks @​alcuadrado! - Lazy load dependencies to optimize bootstrap time

  • #8391 f3c5727 Thanks @​schaable! - Make hardhat test solidity --snapshot-check read-only. It no longer rewrites or deletes .gas-snapshot or snapshots/*.json files, and instead reports differences. The command now fails when a stored gas value differs from the current one, or when no baseline exists, with a hint to run --snapshot.

  • #8332 e542a48 Thanks @​gultekinmakif! - Fixed a crash that could occur when a network returned an unexpected response while resolving the default sender account

  • #8385 946e379 Thanks @​BROCCOLO1D! - When a Hardhat 2 plugin calls an API that no longer exists in Hardhat 3, the error now names the specific API that was used and explains how to migrate it to Hardhat 3.

  • Updated dependencies:

    • @​nomicfoundation/hardhat-errors@​3.0.16
    • @​nomicfoundation/hardhat-utils@​4.1.4

3.9.0

Minor Changes

  • #8380 0fd498d Thanks @​kanej! - Added support for coverage.skipFiles, a list of globs of Solidity files to exclude from coverage instrumentation and reporting during a --coverage run.

Patch Changes

  • #8383 1660f1e Thanks @​schaable! - Fixed an intermittent "Provider for provided chain type does not exist" error that could occur when multiple network connections were created concurrently.

  • #8371 287620e Thanks @​gultekinmakif! - Account overrides that share an address with the network's built-in genesis accounts are now correctly merged into a single genesis entry.

  • #8375 931a5f0 Thanks @​schaable! - Suppressed the solc initcode size warning for Solidity test contracts and when running under --coverage.

  • #8372 5f6aff2 Thanks @​gultekinmakif! - Improved validation for initialDate network configuration. Invalid Date objects and unparseable date strings are now rejected during config loading rather than causing a runtime error later.

3.8.0

Minor Changes

  • #8339 f21390f Thanks @​alcuadrado! - Added definePlugin, a new helper exported from hardhat/plugins. Plugin authors should wrap their plugin literal with it so the default export of their index module becomes:

    import type { HardhatPlugin } from "hardhat/types/plugins";
    import { definePlugin } from "hardhat/plugins";
    const hardhatPlugin: HardhatPlugin = definePlugin({
    id: "my-plugin",
    // ...

... (truncated)

Commits
  • a92ab66 Version Packages
  • 85ab118 address copilot's suggestions
  • 3c2e31e chore(hhu): keep the utils feature internal
  • eef2424 test(hhu): add a --network routing test
  • d285ba5 test(hhu): share test helpers and lock in hhu's option set
  • c0791f6 test(hhu): mirror task test layout to source folders
  • 748b861 refactor(hhu): whitelist --network forwarding and dedupe its option def
  • 980f7ad feat(hhu): tag hhu task analytics with command "hhu"
  • 1fcc9e5 refactor(hhu): kebab-case the constants zero-address leaf
  • a672865 refactor(hhu): centralize task prefix and add a category registry
  • Additional commits viewable in compare view

Updates release-please from 17.6.0 to 17.10.3

Release notes

Sourced from release-please's releases.

v17.10.3

17.10.3 (2026-07-07)

Bug Fixes

  • src/updaters: add google-cloud-pom-parent to specialArtifacts in librarian-yaml (#2841) (6846245)

v17.10.2

17.10.2 (2026-07-07)

Bug Fixes

v17.10.1

17.10.1 (2026-06-29)

Bug Fixes

  • avoid duplicate updates in librarian.yaml for Go v2+ (#2830) (2cfa196), closes #2826

v17.10.0

17.10.0 (2026-06-22)

Features

Bug Fixes

  • go-librarian: change default version to 0.1.0 (#2821) (ad4603f)
  • go-librarian: support Go v2 subdirectory releases without branch collisions (#2818) (6fb9ee0), closes #2817
  • yoshi-java-monorepo: do not update released_version for java beta snapshot (#2815) (a0a80d1)

v17.9.0

17.9.0 (2026-06-09)

Features

Bug Fixes

... (truncated)

Changelog

Sourced from release-please's changelog.

17.10.3 (2026-07-07)

Bug Fixes

  • src/updaters: add google-cloud-pom-parent to specialArtifacts in librarian-yaml (#2841) (6846245)

17.10.2 (2026-07-07)

Bug Fixes

17.10.1 (2026-06-29)

Bug Fixes

  • avoid duplicate updates in librarian.yaml for Go v2+ (#2830) (2cfa196), closes #2826

17.10.0 (2026-06-22)

Features

Bug Fixes

  • go-librarian: change default version to 0.1.0 (#2821) (ad4603f)
  • go-librarian: support Go v2 subdirectory releases without branch collisions (#2818) (6fb9ee0), closes #2817
  • yoshi-java-monorepo: do not update released_version for java beta snapshot (#2815) (a0a80d1)

17.9.0 (2026-06-09)

Features

Bug Fixes

  • fixup all open GitHub code scanning reports (#2806) (f91614d)

17.8.0 (2026-06-04)

... (truncated)

Commits

Updates typescript from 6.0.3 to 7.0.2

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


Updates viem from 2.50.4 to 2.55.1

Release notes

Sourced from viem's releases.

viem@2.55.1

Patch Changes

viem@2.55.0

Minor Changes

Patch Changes

viem@2.54.6

Patch Changes

  • #4807 f1ac4480d0c1c6f29bf709f116068e903643ecad Thanks @​jxom! - viem/tempo: Supported calling token .call builders without a Client (restores the pre-2.54 call signature). When the Client is omitted, token must be a TIP20 token id or contract address, and formatted amounts require explicit decimals.

viem@2.54.5

Patch Changes

viem@2.54.4

Patch Changes

viem@2.54.3

Patch Changes

viem@2.54.2

Patch Changes

... (truncated)

Commits
  • 61a40ec chore: version package (#4824)
  • 388c148 test(tempo): skip unconfigured local zone tests (#4832)
  • 765e19b feat(tempo): support current zone portals (#4828)
  • fc32d40 ci: skip latest typescript benchmarks (#4829)
  • 91a3e22 ci: report non-blocking wagmi failures (#4826)
  • c31e0bd feat(verifyHash): add blockHash and requireCanonical params for onchain v...
  • dc6150d chore: version package (#4812)
  • 2825f37 feat(op-stack): add deposit receipt fields to OpStackTransactionReceipt (#4...
  • 48324f7 feat: add Robinhood Chain and Robinhood Chain Testnet (#4818)
  • 0ef1b5d feat(utils): filterChains API (#4822)
  • Additional commits viewable in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

…7 updates

Bumps the npm_and_yarn group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `21.0.1` | `21.2.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `21.0.1` | `21.2.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.1` | `26.1.1` |
| [hardhat](https://github.com/NomicFoundation/hardhat/tree/HEAD/packages/hardhat) | `3.5.1` | `3.9.1` |
| [release-please](https://github.com/googleapis/release-please) | `17.6.0` | `17.10.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
| [viem](https://github.com/wevm/viem) | `2.50.4` | `2.55.1` |



Updates `@commitlint/cli` from 21.0.1 to 21.2.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 21.0.1 to 21.2.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.0/@commitlint/config-conventional)

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

Updates `hardhat` from 3.5.1 to 3.9.1
- [Release notes](https://github.com/NomicFoundation/hardhat/releases)
- [Changelog](https://github.com/NomicFoundation/hardhat/blob/main/packages/hardhat/CHANGELOG.md)
- [Commits](https://github.com/NomicFoundation/hardhat/commits/hardhat@3.9.1/packages/hardhat)

Updates `release-please` from 17.6.0 to 17.10.3
- [Release notes](https://github.com/googleapis/release-please/releases)
- [Changelog](https://github.com/googleapis/release-please/blob/main/CHANGELOG.md)
- [Commits](googleapis/release-please@v17.6.0...v17.10.3)

Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

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

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-version: 21.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm_and_yarn
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 21.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm_and_yarn
- dependency-name: "@types/node"
  dependency-version: 26.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm_and_yarn
- dependency-name: hardhat
  dependency-version: 3.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm_and_yarn
- dependency-name: release-please
  dependency-version: 17.10.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm_and_yarn
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm_and_yarn
- dependency-name: viem
  dependency-version: 2.55.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm_and_yarn
...

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 Jul 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants