-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(protocol): sync submodule commits (#15656)
- Loading branch information
Showing
3 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
[submodule "packages/protocol/lib/solmate"] | ||
path = packages/protocol/lib/solmate | ||
url = https://github.com/rari-capital/solmate | ||
branch = v1.5.0 | ||
# We shall favor using specific git tags or commit hashes to ensure code stability; | ||
# Try to avoid depending on branches whose code may change unexpectedly. | ||
|
||
[submodule "packages/protocol/lib/openzeppelin-contracts-upgradeable"] | ||
path = packages/protocol/lib/openzeppelin-contracts-upgradeable | ||
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable | ||
branch = v4.8.2 | ||
tag = v4.8.2 | ||
|
||
[submodule "packages/protocol/lib/openzeppelin-contracts"] | ||
path = packages/protocol/lib/openzeppelin-contracts | ||
url = https://github.com/OpenZeppelin/openzeppelin-contracts | ||
branch = v4.8.2 | ||
tag = v4.8.2 | ||
|
||
[submodule "packages/protocol/lib/forge-std"] | ||
path = packages/protocol/lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std | ||
branch = chore/v1.5.1 | ||
tag = v1.5.1 | ||
|
||
[submodule "packages/protocol/lib/solady"] | ||
path = packages/protocol/lib/solady | ||
url = https://github.com/Vectorized/solady | ||
tag = v0.0.167 | ||
|
||
[submodule "packages/protocol/lib/p256-verifier"] | ||
path = packages/protocol/lib/p256-verifier | ||
url = https://github.com/taikoxyz/p256-verifier | ||
branch = use_at_taiko | ||
branch = use_at_taiko # a protected branch maintained by Taiko. |
Submodule forge-std
updated
4 files
+1 β1 | lib/ds-test | |
+5 β0 | src/StdCheats.sol | |
+11 β1 | src/Vm.sol | |
+12 β2 | test/StdCheats.t.sol |
Submodule solady
updated
15 files
+298 β297 | .gas-snapshot | |
+3 β2 | .github/workflows/ci-all-via-ir.yml | |
+1 β1 | .github/workflows/ci-wake.yml | |
+8 β6 | .github/workflows/ci.yml | |
+2 β2 | README.md | |
+1 β1 | foundry.toml | |
+1 β1 | package.json | |
+1 β1 | src/utils/ERC1967Factory.sol | |
+1 β1 | src/utils/FixedPointMathLib.sol | |
+26 β0 | src/utils/LibSort.sol | |
+1 β1 | src/utils/LibString.sol | |
+21 β22 | src/utils/LibZip.sol | |
+4 β4 | src/utils/ReentrancyGuard.sol | |
+17 β0 | test/LibSort.t.sol | |
+1 β1 | test/utils/mocks/MockReentrancyGuard.sol |