Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions foundry.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"lib/forge-std": {
"tag": {
"name": "v1.10.0",
"rev": "8bbcf6e3f8f62f419e5429a0bd89331c85c37824"
"name": "v1.11.0",
"rev": "8e40513d678f392f398620b3ef2b418648b33e89"
}
}
}
2 changes: 1 addition & 1 deletion lib/forge-std
Submodule forge-std updated 61 files
+1 −0 .gitattributes
+1 −0 .github/CODEOWNERS
+6 −0 .github/dependabot.yml
+114 −64 .github/workflows/ci.yml
+36 −0 .github/workflows/sync.yml
+0 −3 .gitmodules
+193 −0 CONTRIBUTING.md
+21 −5 README.md
+12 −0 RELEASE_CHECKLIST.md
+11 −5 foundry.toml
+0 −1 lib/ds-test
+2 −2 package.json
+646 −0 scripts/vm.py
+25 −10 src/Base.sol
+60 −0 src/Config.sol
+477 −0 src/LibVariable.sol
+5 −3 src/Script.sol
+637 −198 src/StdAssertions.sol
+97 −33 src/StdChains.sol
+300 −43 src/StdCheats.sol
+612 −0 src/StdConfig.sol
+30 −0 src/StdConstants.sol
+38 −8 src/StdInvariant.sol
+129 −25 src/StdJson.sol
+245 −99 src/StdStorage.sol
+333 −0 src/StdStyle.sol
+283 −0 src/StdToml.sol
+75 −35 src/StdUtils.sol
+11 −5 src/Test.sol
+2,411 −322 src/Vm.sol
+635 −608 src/console.sol
+1 −1,543 src/console2.sol
+1 −1 src/interfaces/IERC1155.sol
+3 −3 src/interfaces/IERC4626.sol
+72 −0 src/interfaces/IERC6909.sol
+1 −1 src/interfaces/IERC721.sol
+150 −0 src/interfaces/IERC7540.sol
+241 −0 src/interfaces/IERC7575.sol
+13,937 −0 src/safeconsole.sol
+44 −0 test/CommonBase.t.sol
+352 −0 test/Config.t.sol
+434 −0 test/LibVariable.t.sol
+126 −808 test/StdAssertions.t.sol
+137 −57 test/StdChains.t.sol
+356 −46 test/StdCheats.t.sol
+38 −0 test/StdConstants.t.sol
+15 −13 test/StdError.t.sol
+49 −0 test/StdJson.t.sol
+31 −26 test/StdMath.t.sol
+251 −46 test/StdStorage.t.sol
+110 −0 test/StdStyle.t.sol
+49 −0 test/StdToml.t.sol
+88 −35 test/StdUtils.t.sol
+18 −0 test/Vm.t.sol
+1 −1 test/compilation/CompilationScript.sol
+1 −1 test/compilation/CompilationScriptBase.sol
+1 −1 test/compilation/CompilationTest.sol
+1 −1 test/compilation/CompilationTestBase.sol
+81 −0 test/fixtures/config.toml
+8 −0 test/fixtures/test.json
+6 −0 test/fixtures/test.toml
Loading