-
Notifications
You must be signed in to change notification settings - Fork 71
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
Bump elliptic, ethers and web3 in /docs #53
Open
dependabot
wants to merge
3
commits into
master
Choose a base branch
from
dependabot/npm_and_yarn/docs/multi-5178b3bffc
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [secp256k1](https://github.com/cryptocoinjs/secp256k1-node) from 4.0.3 to 4.0.4. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cryptocoinjs/secp256k1-node/commit/756fce19036700a3fc421ba5a9520cd090d2b92a"><code>756fce1</code></a> 4.0.4</li> <li><a href="https://github.com/cryptocoinjs/secp256k1-node/commit/8bd6446e000fa59df3cda0ae3e424300747ea5ed"><code>8bd6446</code></a> elliptic: fix key verification in loadCompressedPublicKey</li> <li><a href="https://github.com/cryptocoinjs/secp256k1-node/commit/840834e833f9b077e0f29828140cc8cd91be3ee2"><code>840834e</code></a> Update elliptic to 6.5.7 (CVE-2024-42461) (<a href="https://redirect.github.com/cryptocoinjs/secp256k1-node/issues/206">#206</a>)</li> <li>See full diff in <a href="https://github.com/cryptocoinjs/secp256k1-node/compare/v4.0.3...v4.0.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=secp256k1&package-manager=npm_and_yarn&previous-version=4.0.3&new-version=4.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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/circlefin/evm-cctp-contracts/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
### Summary Migrate from Slither to Mythril for static analysis ### Detail - update Makefile command and update CI - remove Slither relevant configs and add Mythril config - update Readme
Removes [elliptic](https://github.com/indutny/elliptic). It's no longer used after updating ancestor dependencies [elliptic](https://github.com/indutny/elliptic), [ethers](https://github.com/ethers-io/ethers.js) and [web3](https://github.com/ChainSafe/web3.js). These dependencies need to be updated together. Removes `elliptic` Updates `ethers` from 5.7.2 to 6.13.4 - [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@v5.7.2...v6.13.4) Updates `web3` from 1.8.1 to 4.15.0 - [Release notes](https://github.com/ChainSafe/web3.js/releases) - [Changelog](https://github.com/web3/web3.js/blob/4.x/CHANGELOG.md) - [Commits](web3/web3.js@v1.8.1...v4.15.0) --- updated-dependencies: - dependency-name: elliptic dependency-type: indirect - dependency-name: ethers dependency-type: direct:production - dependency-name: web3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
grantmike
pushed a commit
to grantmike/evm-cctp-contracts
that referenced
this pull request
Jan 23, 2025
… version to use (circlefin#53) ## Summary Allow users of this repository as a submodule to override the foundry version to use ## Detail This repository is used as a submodule elsewhere to build evm contracts, at the same time these other repositories install said contracts using a locally managed foundry version. when the versions don't align the builds can sometimes fail causing the need to cascade update the foundry version everywhere. Allowing the Dockefile to use a build argument means other downstream repositories can update the version at their own pace without having to update this repository first. ## Testing covered by existing tests ## Documentation **Story:** [UNTRACKED](https://circlepay.atlassian.net/browse/)
grantmike
pushed a commit
to grantmike/evm-cctp-contracts
that referenced
this pull request
Jan 23, 2025
… version to use (circlefin#53) ## Summary Allow users of this repository as a submodule to override the foundry version to use ## Detail This repository is used as a submodule elsewhere to build evm contracts, at the same time these other repositories install said contracts using a locally managed foundry version. when the versions don't align the builds can sometimes fail causing the need to cascade update the foundry version everywhere. Allowing the Dockefile to use a build argument means other downstream repositories can update the version at their own pace without having to update this repository first. ## Testing covered by existing tests ## Documentation **Story:** [UNTRACKED](https://circlepay.atlassian.net/browse/)
grantmike
pushed a commit
to grantmike/evm-cctp-contracts
that referenced
this pull request
Jan 23, 2025
… version to use (circlefin#53) ## Summary Allow users of this repository as a submodule to override the foundry version to use ## Detail This repository is used as a submodule elsewhere to build evm contracts, at the same time these other repositories install said contracts using a locally managed foundry version. when the versions don't align the builds can sometimes fail causing the need to cascade update the foundry version everywhere. Allowing the Dockefile to use a build argument means other downstream repositories can update the version at their own pace without having to update this repository first. ## Testing covered by existing tests ## Documentation **Story:** [UNTRACKED](https://circlepay.atlassian.net/browse/)
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Removes elliptic. It's no longer used after updating ancestor dependencies elliptic, ethers and web3. These dependencies need to be updated together.
Removes
elliptic
Updates
ethers
from 5.7.2 to 6.13.4Release notes
Sourced from ethers's releases.
... (truncated)
Changelog
Sourced from ethers's changelog.
... (truncated)
Commits
9e7e7f3
admin: updated dist files1d717ef
Updated dependencies.610799b
admin: updated dist filesbe3e6b1
Fixed bug in JSON-RPC error checking (#4827, #4837, #4851).858a81b
tests: fix test issuesf03c04b
admin: updated dist files1c31f95
Allow CCIP-read to continue during low-level fetch failures (#4842).5aba496
docs: add migration notes on getGasPrice72c2182
admin: updated dist files1a51af8
Prevent mutating transactions when signing (#4789).Updates
web3
from 1.8.1 to 4.15.0Release notes
Sourced from web3's releases.
Changelog
Sourced from web3's changelog.
Commits
aa516b9
update version07993c2
Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /docs (#7356)9fa32c9
newPendingTransactionFilter (#7353)d446838
Lightweight dApp Development Guide (#7364)4aaf915
Add accout.signRaw function to sign a message without prefix (#7346)3283431
[Snyk] Upgrade@docusaurus/core
from 3.4.0 to 3.5.2 (#7365)95b4bab
Fix Link to SocketConstructorOpts Type (#7363)69d83e7
allowing to specify percentage-based factors (like 1.125 for 112.5%) (#7332)efac906
fix: upgrade@cookbookdev/docsbot
from 4.21.1 to 4.21.23 (#7357)d3baae6
Fix Contract methods input param type any[] (#7340)Maintainer changes
This version was pushed to npm by luu-alex, a new releaser for web3 since your current version.
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 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.