Long time no see! The latest Got version (v11.8.2) was released just in February ❄️
We have been working hard on squashing bugs and improving overall experience.
I guess it's true: you never know what you're going to get! 💝
This release fixes a bug to truffle unbox that caused community Truffle Boxes to fail to download. Thanks @CaleTeeter and @patrickalphac for identifying this problem.
Apologies to anyone who ran into this bug... hope this fixes things for you! 🙇
How to upgrade
We recommend upgrading to the latest version of Truffle by running:
npm uninstall -g truffle
npm install -g truffle
Changelog
Bug fixes
Fix unbox to remove repo name restriction (#4145 by @cds-amal)
Internal improvements
Allow a few missing values in artifactor/compile-common internals (#4126 by @bergarces)
v5.3.11 – Mrs. Malinda Russell's Rich Black Cake 🍰
Salutations and happy Friday! 👋🏾
We have another release for you! This week offers a couple of bug fixes, internal improvements and version updates. truffle unbox will now recognize branches that have slashes, like truffle unbox <orgOrName>/repo#branch/with/slashes. In case you didn't know you can create your own Truffle boxes which is a great way to bootstrap your Truffle project: hooray! :tada:
I guess it's true: you never know what you're going to get! 💝
This release fixes a bug to truffle unbox that caused community Truffle Boxes to fail to download. Thanks @CaleTeeter and @patrickalphac for identifying this problem.
Apologies to anyone who ran into this bug... hope this fixes things for you! 🙇
How to upgrade
We recommend upgrading to the latest version of Truffle by running:
npm uninstall -g truffle
npm install -g truffle
Changelog
Bug fixes
Fix unbox to remove repo name restriction (#4145 by @cds-amal)
Internal improvements
Allow a few missing values in artifactor/compile-common internals (#4126 by @bergarces)
v5.3.11 – Mrs. Malinda Russell's Rich Black Cake 🍰
Salutations and happy Friday! 👋🏾
We have another release for you! This week offers a couple of bug fixes, internal improvements and version updates. truffle unbox will now recognize branches that have slashes, like truffle unbox <orgOrName>/repo#branch/with/slashes. In case you didn't know you can create your own Truffle boxes which is a great way to bootstrap your Truffle project: hooray! :tada:
⚠️ This version requires Hardhat >= 2.11.0 (Ethereum Merge)
New Features
A central focus of the 0.8.0 release is improving the coverage tool's branch detection.
Beginning with this version the following syntax is measured as a branch:
OR conditions
When a logical expression is composed with the || operator, both sides can be considered branches. To test the entire expression
if (a == 1 || a == 2)
... a must equal 1, 2 and neither of those values. (Thanks to Gnosis engineer @rmeissner for proposing this in #175)
Ternary Conditionals
Long ago, when Solidity was 0.4, solidity-coverage treated ternary conditionals like regular if/else statements. Some language improvements v0.5 subsequently made this impossible. Now it's back...
Modifier Invocations
Solidity-coverage already covers the code within modifier definitions. However, each modifier invocation at the function level should really be considered its own branch. Some of the most critical logic in Solidity contracts is handled this way (ex: onlyOwner). Testing the pass/fail cases for each occurrence of these gates protects you from accidentally removing them during a refactor.
Because it's possible to write a modifier which performs a preparatory task and never reverts, there's a new option (modifierWhitelist) which allows you to exclude specific modifiers from branch measurement.
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)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/filecoin-project/fevm-foundry-kit/network/alerts).
Bumps got to 12.1.0 and updates ancestor dependencies got, @nomiclabs/truffle-contract, @truffle/contract and solidity-coverage. These dependencies need to be updated together.
Updates
got
from 7.1.0 to 12.1.0Release notes
Sourced from got's releases.
... (truncated)
Commits
ad92afa
12.1.0861ccd9
Disable redirects to UNIX sockets (#2047)4cdcca3
Check error instance for arguments test (#2044)22d58fb
Addresponse.ok
(#2043)c25af09
Meta tweaks62455f5
Meta tweaks6f5c7ce
Test Node.js 18c693422
12.0.498ca618
Fix accidental test deletionbb8eca9
Remove stream lock - unreliable since Node 17.3.0Updates
@nomiclabs/truffle-contract
from 4.2.23 to 4.5.10Release notes
Sourced from
@nomiclabs/truffle-contract
's releases.Commits
0ccf74f
Publish83b7adc
contract: bump browserify and exorcist versions9b5c8f3
Publishee8331e
Merge branch 'develop' of github.com:trufflesuite/truffle into eip155-worke28280c
Remove cached chain id invalidation in contractc67bc3c
Publish59e8c2c
Remove chainId from web3.eth.sendTransaction1893747
Upgrade web3 to 1.3.5677ca39
Publishb626080
Cache chain ID to avoid extra network requestsUpdates
@truffle/contract
from 4.4.7 to 4.6.18Release notes
Sourced from
@truffle/contract
's releases.Commits
85ce484
Publisha75816b
Publishbca5b9c
Publish021f459
Publishb1699ce
Interpret undecodeable data as custom error only when length is 4 mod 32758ea22
Publish6285bae
Update web3 to 1.8.2dbefdcb
Publish68e2620
update wording on blurb about overloaded functions20d4f4f
make minor wording editsUpdates
solidity-coverage
from 0.7.19 to 0.8.2Release notes
Sourced from solidity-coverage's releases.
... (truncated)
Changelog
Sourced from solidity-coverage's changelog.
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 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/filecoin-project/fevm-foundry-kit/network/alerts).