Skip to content

Bump the other group across 1 directory with 10 updates #711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 13, 2025

Bumps the other group with 10 updates in the / directory:

Package From To
@pythnetwork/pyth-evm-js 1.82.0 1.83.0
@synthetixio/core-contracts 3.12.3 3.13.0
@synthetixio/main 3.12.3 3.13.0
debug 4.4.0 4.4.1
hardhat 2.22.18 2.24.3
mocha 11.1.0 11.6.0
prettier 3.4.2 3.5.3
prettier-plugin-solidity 1.4.2 2.0.0
prettier-plugin-toml 2.0.1 2.0.5
viem 2.30.0 2.31.1

Updates @pythnetwork/pyth-evm-js from 1.82.0 to 1.83.0

Commits

Updates @synthetixio/core-contracts from 3.12.3 to 3.13.0

Updates @synthetixio/main from 3.12.3 to 3.13.0

Updates debug from 4.4.0 to 4.4.1

Release notes

Sourced from debug's releases.

4.4.1

What's Changed

New Contributors

Full Changelog: debug-js/debug@4.4.0...4.4.1

Commits

Updates hardhat from 2.22.18 to 2.24.3

Release notes

Sourced from hardhat's releases.

Hardhat v2.24.3

This release is a small bug fix release that resolves the issue with sending ETH to testing accounts in forked networks, caused by mainnet EIP-7702 delegations on the test accounts. Now testing accounts are automatically undelegated.

Changes

  • 6be5c13: Upgraded EDR to v0.11.1, which fixed a bug when sending ETH to the testing accounts in forked networks. Now testing accounts are automatically undelegated.

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


Hardhat v2.24.2

This release is a small bug fix to deal with nodes that have deprecated support for the eth_accounts RPC call.

Changes

  • 2bbb705: Wrap eth_accounts usage on http provider to handle method deprecation (#6632)

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


Hardhat v2.24.1

This release adds support for Node v24 and introduces improvements to the solidity compilation pipeline.

Changes

  • 9b75f5d: Fix a few potential errors that could happen when compiling Solidity in a subprocess (#6535)
  • a8ad44c: Added support for Node v24 (#6497)

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


Hardhat v2.24.0

This release sets Prague as the default hardfork in the Hardhat Network, updates EDR to its latest version, and fixes an issue in transaction-signing.

Changes


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


Hardhat v2.23.0

This release adds support for the Prague hardfork, enhances project creation by automatically determining the appropriate package manager and adds hardfork activation history for Avalanche. Additionally, it introduces a configurable banner for displaying important information in future updates.

... (truncated)

Commits
  • f6e03aa Version Packages
  • c08fb5d Merge pull request #6845 from NomicFoundation/upgrade/edr-0.11.1
  • 748cdc4 Update .changeset/chubby-flies-shine.md
  • 47345f2 fix changelog entry
  • 6be5c13 build: upgrade EDR to v0.11.1
  • 52e2272 fix: check the --no-commit flag is supported on installed forge version (#6840)
  • 7f307a4 Merge pull request #6837 from NomicFoundation/fix-hardhat-solhint-ci
  • 173a8a3 Create cool-dolphins-wash.md
  • a710647 Use tilde version for solhint
  • 7c51e1e Version Packages
  • Additional commits viewable in compare view

Updates mocha from 11.1.0 to 11.6.0

Release notes

Sourced from mocha's releases.

v11.6.0

11.6.0 (2025-06-09)

🌟 Features

v11.5.0

11.5.0 (2025-05-22)

🌟 Features

v11.4.0

11.4.0 (2025-05-19)

🌟 Features

📚 Documentation

  • added CHANGELOG.md note around 11.1 yargs-parser update (#5362) (618415d)

v11.3.0

11.3.0 (2025-05-16)

🌟 Features

  • add option to use posix exit code upon fatal signal (#4989) (91bbf85)

📚 Documentation

🧹 Chores

  • remove prerelease setting in release-please config (#5363) (8878f22)

v11.2.2

... (truncated)

Changelog

Sourced from mocha's changelog.

11.6.0 (2025-06-09)

🌟 Features

11.5.0 (2025-05-22)

🌟 Features

11.4.0 (2025-05-19)

🌟 Features

📚 Documentation

  • added CHANGELOG.md note around 11.1 yargs-parser update (#5362) (618415d)

11.3.0 (2025-05-16)

🌟 Features

  • add option to use posix exit code upon fatal signal (#4989) (91bbf85)

📚 Documentation

🧹 Chores

  • remove prerelease setting in release-please config (#5363) (8878f22)

11.2.2 (2025-04-10)

🩹 Fixes

... (truncated)

Commits

Updates prettier from 3.4.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

Commits

Updates prettier-plugin-solidity from 1.4.2 to 2.0.0

Release notes

Sourced from prettier-plugin-solidity's releases.

v2.0.0

This is a new major version of Prettier Plugin Solidity.

The changes from v1 are minimal, but there are a couple of breaking changes.

The plugin now uses Slang as the parser by default. Slang is a more powerful and correct parser that improves formatting in many edge cases—especially when comments are involved.

If you had the parser explicitly set in your .prettierrc (e.g., "parser": "solidity-parse"), you'll need to update it to:

"parser": "slang"

If you don't have the parser option set in your config, no action is needed.

The old ANTLR-based parser is still supported in v2, but it's deprecated and will be removed in the next major version.

v2.0.0-beta.8

What's Changed

Full Changelog: prettier-solidity/prettier-plugin-solidity@v2.0.0-beta.7...v2.0.0-beta.8

v2.0.0-beta.7

What's Changed

Full Changelog: prettier-solidity/prettier-plugin-solidity@2.0.0-beta.6...v2.0.0-beta.7

2.0.0-beta.6

New features

Format changes

// Original
import * as SomeSymbol from "AnotherFile.sol";
// [email protected]
// { parser: 'solidity-parse' }
import "AnotherFile.sol" as SomeSymbol;
// [email protected]
// { parser: 'solidity-parse' }
</tr></table>

... (truncated)

Commits

Updates prettier-plugin-toml from 2.0.1 to 2.0.5

Release notes

Sourced from prettier-plugin-toml's releases.

[email protected]

Patch Changes

Full Changelog: https://github.com/un-ts/prettier/compare/[email protected]@2.0.5

[email protected]

Patch Changes

Full Changelog: https://github.com/un-ts/prettier/compare/[email protected]@2.0.4

[email protected]

Patch Changes

New Contributors

Full Changelog: https://github.com/un-ts/prettier/compare/[email protected]@2.0.3

[email protected]

Patch Changes

New Contributors

Full Changelog: https://github.com/un-ts/prettier/compare/[email protected]@2.0.2

Commits

Updates viem from 2.30.0 to 2.31.1

Release notes

Sourced from viem's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot requested a review from noisekit June 13, 2025 03:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 13, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 13, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 13, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/other-cc54a9ecb4 branch from 1377151 to f559c06 Compare June 18, 2025 03:42
Bumps the other group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@pythnetwork/pyth-evm-js](https://github.com/pyth-network/pyth-crosschain/tree/HEAD/target_chains/ethereum/sdk/js) | `1.82.0` | `1.83.0` |
| @synthetixio/core-contracts | `3.12.3` | `3.13.0` |
| @synthetixio/main | `3.12.3` | `3.13.0` |
| [debug](https://github.com/debug-js/debug) | `4.4.0` | `4.4.1` |
| [hardhat](https://github.com/nomiclabs/hardhat) | `2.22.18` | `2.24.3` |
| [mocha](https://github.com/mochajs/mocha) | `11.1.0` | `11.6.0` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [prettier-plugin-solidity](https://github.com/prettier-solidity/prettier-plugin-solidity) | `1.4.2` | `2.0.0` |
| [prettier-plugin-toml](https://github.com/un-ts/prettier) | `2.0.1` | `2.0.5` |
| [viem](https://github.com/wevm/viem) | `2.30.0` | `2.31.1` |



Updates `@pythnetwork/pyth-evm-js` from 1.82.0 to 1.83.0
- [Release notes](https://github.com/pyth-network/pyth-crosschain/releases)
- [Commits](https://github.com/pyth-network/pyth-crosschain/commits/HEAD/target_chains/ethereum/sdk/js)

Updates `@synthetixio/core-contracts` from 3.12.3 to 3.13.0

Updates `@synthetixio/main` from 3.12.3 to 3.13.0

Updates `debug` from 4.4.0 to 4.4.1
- [Release notes](https://github.com/debug-js/debug/releases)
- [Commits](debug-js/debug@4.4.0...4.4.1)

Updates `hardhat` from 2.22.18 to 2.24.3
- [Release notes](https://github.com/nomiclabs/hardhat/releases)
- [Commits](https://github.com/nomiclabs/hardhat/compare/[email protected]@2.24.3)

Updates `mocha` from 11.1.0 to 11.6.0
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.1.0...v11.6.0)

Updates `prettier` from 3.4.2 to 3.5.3
- [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.5.3)

Updates `prettier-plugin-solidity` from 1.4.2 to 2.0.0
- [Release notes](https://github.com/prettier-solidity/prettier-plugin-solidity/releases)
- [Commits](prettier-solidity/prettier-plugin-solidity@v1.4.2...v2.0.0)

Updates `prettier-plugin-toml` from 2.0.1 to 2.0.5
- [Release notes](https://github.com/un-ts/prettier/releases)
- [Changelog](https://github.com/un-ts/prettier/blob/master/CHANGELOG.md)
- [Commits](https://github.com/un-ts/prettier/compare/[email protected]@2.0.5)

Updates `viem` from 2.30.0 to 2.31.1
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/[email protected]@2.31.1)

---
updated-dependencies:
- dependency-name: "@pythnetwork/pyth-evm-js"
  dependency-version: 1.83.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@synthetixio/core-contracts"
  dependency-version: 3.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: "@synthetixio/main"
  dependency-version: 3.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: debug
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: hardhat
  dependency-version: 2.24.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: mocha
  dependency-version: 11.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
- dependency-name: prettier-plugin-solidity
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: other
- dependency-name: prettier-plugin-toml
  dependency-version: 2.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: other
- dependency-name: viem
  dependency-version: 2.31.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/other-cc54a9ecb4 branch from f559c06 to 8b40b24 Compare June 26, 2025 03:47
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