1. 14 Jun, 2024 8 commits
  2. 13 Jun, 2024 6 commits
  3. 12 Jun, 2024 8 commits
  4. 11 Jun, 2024 9 commits
  5. 10 Jun, 2024 7 commits
  6. 09 Jun, 2024 2 commits
    • dependabot[bot]'s avatar
      dependabot(gomod): bump golang.org/x/crypto from 0.23.0 to 0.24.0 (#10733) · 8e154e75
      dependabot[bot] authored
      * dependabot(gomod): bump golang.org/x/crypto from 0.23.0 to 0.24.0
      
      Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.23.0 to 0.24.0.
      - [Commits](https://github.com/golang/crypto/compare/v0.23.0...v0.24.0)
      
      ---
      updated-dependencies:
      - dependency-name: golang.org/x/crypto
        dependency-type: direct:production
        update-type: version-update:semver-minor
      ...
      Signed-off-by: default avatardependabot[bot] <support@github.com>
      
      * deps: update
      
      ---------
      Signed-off-by: default avatardependabot[bot] <support@github.com>
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      Co-authored-by: default avatarMark Tyneway <mark.tyneway@gmail.com>
      8e154e75
    • Mark Tyneway's avatar
      contracts-bedrock: fix compiler warning (#10778) · 608a58d8
      Mark Tyneway authored
      Fixes the following compiler warning:
      
      ```
      Compiler run successful with warnings:
      Warning (2018): Function state mutability can be restricted to view
        --> test/periphery/drippie/dripchecks/CheckBalanceLow.t.sol:20:5:
         |
      20 |     function test_name_succeeds() external {
         |     ^ (Relevant source part starts here and spans across multiple lines).
      
      Warning (2018): Function state mutability can be restricted to view
        --> test/periphery/drippie/dripchecks/CheckGelatoLow.t.sol:45:5:
         |
      45 |     function test_name_succeeds() external {
         |     ^ (Relevant source part starts here and spans across multiple lines).
      
      Warning (2018): Function state mutability can be restricted to view
        --> test/periphery/drippie/dripchecks/CheckSecrets.t.sol:30:5:
         |
      30 |     function test_name_succeeds() external {
         |     ^ (Relevant source part starts here and spans across multiple lines).
      
      Warning (2018): Function state mutability can be restricted to view
        --> test/periphery/drippie/dripchecks/CheckTrue.t.sol:19:5:
         |
      19 |     function test_name_succeeds() external {
         |     ^ (Relevant source part starts here and spans across multiple lines).
      ```
      
      This should be caught in CI, not sure why it wasn't
      608a58d8