Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 15, 2022

Bumps truffle from 5.4.32 to 5.5.30.

Release notes

Sourced from truffle's releases.

v5.5.30 β€” Big Rock Candy Mountain

Hello once again! πŸ‘‹

Recently we added experimental πŸ§ͺ support for using Truffle Debugger πŸ”¬ with Hardhat projects. Well, this experiment is turning up results 🦠; @​tomasz90 found that our implementation had problems for Hardhat projects whose configuration scripts would write to stdout. We've now fixed this error, so hopefully more people can now try out this (still experimental πŸ§‘β€πŸ”¬) feature! Thanks Tomasz!

There are some other minor changes this week; we've updated the solc version in truffle init to 0.8.17. And thanks to @​eltociear for fixing a typo in one of our READMEs, and to @​sashashura for a security improvement to our CI! πŸ’‚

That's it this week, but as always there's more coming soon!

How to upgrade

We recommend upgrading to the latest version of Truffle by running:

npm uninstall -g truffle
npm install -g truffle

Changelog

Enhancements

Bug fixes

  • Fix @​truffle/from-hardhat's support for Hardhat projects whose config files produce stdout (#5510 by @​gnidan)
  • Fix computation of event status in flattedEvents (#5512 by @​haltman-at)

Internal improvements

Dependency updates

v5.5.29 β€” Raw chocolate

Hello once again!

In this week's Truffle release we've added the ability to use instance.estimateGas() β›½ or instance.call() ☎ with Truffle Contract. (The latter won't work if your contract already has a method named call.) This is useful if you want to estimate the gas used by the fallback function, or to test the fallback function's return value.

Also this week, @​Neurone has updated the list of URLs that we source the Solidity compiler from. Faster solc binaries have now been given a higher priority, so hopefully this should reduce your compile times! πŸ‡

In addition, we've added support in truffle debug --fetch-external for more of the networks supported by Etherscan, so you can debug πŸ•΅ verified contracts on more networks. And as always, come back next week for even more improvements to Truffle! πŸ‘‹

How to upgrade

... (truncated)

Commits
  • 04c0b31 Publish
  • 14fe4a4 Publish
  • 2d48504 truffle(test): clarify how replPrompt is tested
  • bb64247 truffle(test): minimize buffer usage in runInREPL
  • 9c269c2 truffle(test): test multiple inputs to runInREPL
  • a8f9d2f Update packages/truffle/test/scenarios/commandRunner.js
  • 9d1eadd truffle(test): modify runInREPL submit command
  • 10733d3 Merge pull request #5008 from InternetOfPeers/develop
  • fb1f586 Publish
  • 301ae21 adjust obtain tests
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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)

Neuti Yoo and others added 26 commits May 9, 2022 19:20
* WIP: Basic FeeHandler

* WIP: Basic FeeHandler

* Fee handler with oracle

* FeeHandler: fixes after comments

* Fix after review

* Simplify abi decoding

* Added expiration time to oracle data

* sign oracle message by ethers.js

* Remove prefix from signature

* Add FeeCollected event

* Add FeeDistributed event

Co-authored-by: Oleksii Matiiasevych <lastperson@gmail.com>
Co-authored-by: Kirill <pisarevkir@gmail.com>
Co-authored-by: Kirill <pisarevkir@gmail.com>
* Remove voting logic + add mpc logic

* Update tests for new MPC Bridge contract logic

* Add 'executeWithFailedHandler' tests

* Remove transferFunds, refactor helper func

* Remove unneeded SafeCast & SafeMath

* Remove unneeded depositNonce, rename domainID to originDomainID and lint

* Remove unneeded depositNonce from tests, clean up code and lint

* Remove SafeCast from TestContract

* Remove destination domain id from proposal execution event

* Restrict deposits to current domain

* Update tests with new same domain deposit restriction

* Fix typo

Co-authored-by: viatrix <viatrix.x@gmail.com>
Co-authored-by: Kirill <pisarevkir@gmail.com>
Co-authored-by: Oleksii Matiiasevych <lastperson@gmail.com>
Co-authored-by: Kirill <pisarevkir@gmail.com>
* Add retry method

* Add retry method test
* Remove revert on fail for GenericHandler

* Add tests for failed handlers execution

* Fix indentation
* Use abi.encode for executeProposal

* Add executeProposals function

* Add helper function for signing batches of data

* Add tests for executeProposals function

* Add vcode to gitignore

* Add Proposal struct + update executeProposals func

* Fix indentation

* Update helper func for executeProposals to accept an array of data

* Update tests for executeProposals func

* Fix unsetting nonce

* Add convert decimal to padded binary helper function

* Add checks for nonce bitmap before and after deposit
…#587)

* Add destinationDomainID to executeProposals signature

* Add destinationDomainID to signing data for executeProposals func

* Add invalid destinationDomainID tests for executeProposals + update old tests

* Make domainID immutable
* Implement access control segregator

* Add access control set functions

* Fix solidity errors

* Fix existing bridge deployments in tests

* Add access control segregator tests

* Remove TODO

* Fix misaligned JS in tests

* Replace functoin name with function signature

* Fix typo

* Fix tests

* Remove prefix from function access
* Fix Bridge descriptions after access segregation

* Improve onlyAllowed modifier descripion
* Add renounceAdmin function to FeeHandlers

* Add tests for renounceAdmin functions

* Fix indentation
* Make domainID immutable

* Add FeeHandlerRouter contract

* Update FeeHandlers with FeeRouter logic

* Update old test with FeeHandlerRouter logic

* Update old tests + add new tests for FeeHandlerRouter

* Change resourceID-handler mapping type

* Fix indentaton

* Change onlyRouter modifier to onlyBridgeOrRouter

* Remove redundant modifier

* Update old tests + add new tests for onlyBridgeOrRouter modifier
* Update refreshKey event to emit hash string

* Update refreshKey signature

* Update refreshKey tests
* update documentation for 721 and 1155 safes

* minor docs addition

* fix multiple typos

* refactor typo depositer to depositor

* describe difference generic vs erc handlers on fail

* rename depositer to depositor

* change fee percent desc

* add erc1155 data description

* Update data definition for erc1155

Co-authored-by: Oleksii Matiiasevych <lastperson@gmail.com>

* Update data definition for erc1155

Co-authored-by: Oleksii Matiiasevych <lastperson@gmail.com>

Co-authored-by: Oleksii Matiiasevych <lastperson@gmail.com>
Co-authored-by: mace <mak@chainsafe.io>
Bumps [truffle](https://github.com/trufflesuite/truffle/tree/HEAD/packages/truffle) from 5.4.32 to 5.5.30.
- [Release notes](https://github.com/trufflesuite/truffle/releases)
- [Commits](https://github.com/trufflesuite/truffle/commits/truffle@5.5.30/packages/truffle)

---
updated-dependencies:
- dependency-name: truffle
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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 Sep 15, 2022
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 23, 2022

Superseded by #636.

@dependabot dependabot bot closed this Sep 23, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/truffle-5.5.30 branch September 23, 2022 06:06
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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.

4 participants