anza-xyz / move

Move compiler targeting llvm supported backends
https://discord.gg/wFgfjG9J
Apache License 2.0
107 stars 32 forks source link

Bump undici and hardhat in /language/evm/hardhat-move #352

Open dependabot[bot] opened 10 months ago

dependabot[bot] commented 10 months ago

Bumps undici to 5.24.0 and updates ancestor dependency hardhat. These dependencies need to be updated together.

Updates undici from 4.16.0 to 5.24.0

Release notes

Sourced from undici's releases.

v5.24.0

Notable Changes

What's Changed

New Contributors

Full Changelog: https://github.com/nodejs/undici/compare/v5.23.0...v5.24.0

v5.23.0

What's Changed

... (truncated)

Commits


Updates hardhat from 2.9.3 to 2.17.2

Release notes

Sourced from hardhat's releases.

Hardhat v2.17.2

This release includes several fixes and some new features:

  • Added support for state overrides in the eth_call RPC method
  • Added an enableTransientStorage option to enable EIP-1153 opcodes
  • Deprecated the TASK_COMPILE_TRANSFORM_IMPORT_NAME subtask, added a new TASK_COMPILE_GET_REMAPPINGS subtask, and added support for remappings in the resolver.
  • Fixed a problem that was causing debug_traceTransaction to return traces where the memory had a lot of empty words
  • Fixed an issue where artifactExists would throw an error for missing artifacts
  • Improved the error message displayed when importing a directory instead of a file
  • Fixed a problem with receipts of remote transactions returning the wrong tx type when fetched through a fork

Hardhat v2.17.1

This release adds support for solc v0.8.21, allows using console.log in pure functions and improves the output of the flatten task (see NomicFoundation/hardhat#1499).

Besides that, this version:

  • Removed an unnecessary dependency (abort-controller) because it's no longer needed in the versions of node.js supported by Hardhat (thanks @​orlandoortegajr!)
  • Fixed a bug caused by nodes returning 429 responses without a Retry-After header (thanks @​kowalski!)
  • Added logic to throw an error when the debug_traceTransaction method is called with a tracer parameter that is not supported.

Hardhat v2.17.0

This new minor version of Hardhat drops support for Node.js v14 and adds support for Node v20. To learn about which versions of Node we support, check our Stability guarantees page.

This version also adds support for solc 0.8.19 and 0.8.20 and fixes two bugs:

Hardhat v2.16.1

This release fixes an issue in the compiler download that happens when Hardhat is used with node v18.16.x (the latest versions of node v18).

Hardhat v2.16.0 - Extendable providers

This version of Hardhat adds a new extensibility point: you can now wrap Hardhat's network provider with your own logic.

This is done by using the new extendProvider configuration function:

extendProvider(async (provider, config, network) => {
  const newProvider = new MyProviderWrapper(provider);
  return newProvider;
});

Doing this means that all the JSON-RPC calls will go through your custom provider wrapper. You can use this to intercept and handle some requests while forwarding the rest to the original provider.

To learn more about this, read the "Extending the Hardhat provider" section in our docs. If you have questions about how to use this, please open a new discussion.

Other changes

Besides this new feature, this version includes the following changes:

... (truncated)

Commits
  • 103a34f Version Packages
  • d00454c Merge pull request #4323 from antico5/remappings_refactor
  • 12fd1bc Remove unnecessary error argument
  • 1c472a9 Change emoji shown after project creation
  • f7c13ff Merge pull request #4329 from NomicFoundation/fix/hh-forking-main
  • d4060f8 Ignore empty lines when parsing remappings
  • aa49e8a Improve and test remappings parsing logic
  • 845255c Rename applyRemapping to applyRemappings
  • ee9d2ff Support state overrides in eth_call (#4316)
  • 9cb4f84 Create chilled-schools-grab.md
  • 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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/solana-labs/move/network/alerts).