Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependabot(gomod): bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4 #102

Closed

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    8741423 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e6dd1ee View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    79c8fe8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec45f66 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2491a37 View commit details
    Browse the repository at this point in the history
  4. contracts-bedrock: migrate to just (#11276)

    * contracts-bedrock: migrate to just
    
    Move away from `pnpm` for contracts scripts
    and towards `just`. `just` was made for this,
    since we are moving away from JS it makes no
    sense to keep `pnpm` around which is native
    to the JS ecosystem.
    
    * ci: install just
    
    * ops: cleanup, docs
    
    * ci: install just
    
    * justfile: update
    
    * ci: fix install
    
    * snapshots: update
    
    * contracts-bedrock: remove pnpm/node, cleanup dockerfile
    
    * slither ci: no longer need for workaround (TM)
    
    * ts-linting: remove
    
    * kontrol: regenerate snapshots
    
    * safecall: update test
    
    * test: update
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * docs: update
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * readme: update
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * docs: update
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * docs: update
    
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    
    * docs: update
    
    Co-authored-by: Maurelian <john@oplabs.co>
    
    * versions: use latest
    
    * ci: fix
    
    * CONTRIBUTING: update
    
    * ci: fix
    
    * lint: fix
    
    ---------
    
    Co-authored-by: protolambda <proto@protolambda.com>
    Co-authored-by: Matt Solomon <matt@mattsolomon.dev>
    Co-authored-by: Maurelian <john@oplabs.co>
    4 people authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    96b9e70 View commit details
    Browse the repository at this point in the history
  5. op-proposer, op-batcher: Wait for sync in Start rather than loop. (#1…

    …1192)
    
    Ensures that if it fails, the process exits with an error, rather than just exiting the runloop and continuing on in a zombie mode that doesn't do anything but doesn't exit.
    ajsutton authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    cc67d34 View commit details
    Browse the repository at this point in the history
  6. contracts-bedrock: improve CrossL2Inbox devex (#11322)

    * contracts-bedrock: improve `CrossL2Inbox` devex
    
    Improve the `CrossL2Inbox` devex by creating an alternative entrypoint.
    This design was not considered previously because there was a "top level
    call" restriction, aka the "only EOA" invariant. This was to allow for
    static analysis of transactions, keeping resource usage lower for
    validating transactions when building blocks or at the mempool layer.
    Since 3074/7702 render the enforcement of only eoa impossible,  we decided
    to op/acc and lean into the approach of allowing subcalls to trigger
    `ExecutingMessage` events.
    
    This new interface allows another contract to be the entrypoint,
    the idea is that the user sends the `Identifier` and the serialized
    log (message) to whatever contract that they want and then pass it to
    `CrossL2Inbox.validateMessage` which then emits the event that consensus
    validates. This allows the calling smart contract to be aware of the
    schema for the log and deserialize it however they see fit. Since the
    serialized logs are done with the following algorithm:
    
    ```go
    msg := make([]byte, 0)
    for _, topic := range log.Topics {
        msg = append(msg, topic.Bytes()...)
    }
    msg = append(msg, log.Data...)
    ```
    
    It is very easy to use `abi.decode` to decode a log, given that solidity
    was used to `emit` it. The topics are `bytes32` and then the data is
    abi encoded given the schema of the event itself. Unused parts like
    `topic[0]` (hash of the event name) can be dropped when decoding if
    they are not required.
    
    * ctb: fix typo
    
    * remove nonReentrant and add tests for validateMessage, rename ENTERED_SLOT preimage
    
    * add natspec for _checkIdentifier and update that of validateMessage
    
    * update version and semver-lock file
    
    * check all topics in crossl2inbox test, run pnpm snapshots
    
    * tests: fix
    
    ---------
    
    Co-authored-by: Michael Amadi <amadimichaeld@gmail.com>
    tynes and AmadiMichael authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    051db54 View commit details
    Browse the repository at this point in the history
  7. Revert "Fix devnet-up when op-program/bin is missing prestate-proof.j…

    …son (#11383)" (#11393)
    
    This reverts commit 2491a37.
    
    make cannon-prestate doesn't declare all transitive dependencies properly so can fail to build when there are changes.
    ajsutton authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    b047e1f View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. devnet/e2e: run L1 Deneb and L2 Fjord by default (#11359)

    * devnet/e2e: run L1 Deneb and L2 Fjord by default
    
    * op-e2e: fix TestPostUnsafePayload
    
    * op-e2e: Fix TestGasPriceOracleFeeUpdates
    
    * op-e2e/actions: fix some tests
    
    The L2EngineAPI test needs more fixing
    
    * tests: fixes to support Ecotone/Fjord in more tests
    
    * op-e2e: one more fix
    
    ---------
    
    Co-authored-by: Sebastian Stammler <seb@oplabs.co>
    protolambda and sebastianst authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    2f295d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7343468 View commit details
    Browse the repository at this point in the history
  3. contracts-bedrock: debug tests (#11397)

    * contracts-bedrock: debug tests
    
    See why the tests are flaking and cannot be reproduced locally.
    Also modularize/cleanup CI along the way
    
    * typo: fix
    
    * debug: remove
    
    * just: update name
    
    * ci: better error help
    
    * ci: fix typo
    
    * contracts-bedrock: abstract
    
    * ci: run with foundry profile ci
    tynes authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    0c8d7c8 View commit details
    Browse the repository at this point in the history
  4. ci: better solc warnings check (#11231)

    * ci: better solc warnings check
    
    Use `forge build --force` to force a build so that the warning check can
    be observed. CI should fail on this commit
    
    * contracts-bedrock: fix warnings
    
    Fix the failed solc build
    
    See the failed workflow here:
    https://app.circleci.com/pipelines/github/ethereum-optimism/optimism/59631/workflows/b93bc600-e772-4ba9-98ed-a0b6f48683c7/jobs/2512271
    
    * foundry: add ignored error code
    tynes authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    bf4693e View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. repo: migrate away from pnpm (#11395)

    Migrate to just from pnpm. This is continued tech debt
    cleanup away from `pnpm` and typescript that is no longer
    used.
    tynes authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    770cbc6 View commit details
    Browse the repository at this point in the history
  2. Run cannon-prestate if devnet cannon prestate files are missing (#11399)

    * Fix devnet-up when op-program/bin is missing prestate-proof.json
    
    * Fix cannon-prestate to always run
    
    * Add prestate.json
    anacrolix authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    8b636e0 View commit details
    Browse the repository at this point in the history
  3. ci: update geth tool to v1.14.7 (#11410)

    * ci: update geth tool to v1.14.7
    
    * ci: temporarily disable L1 geth version check, so L1 geth can be updated
    
    * ops-bedrock: explicit hash state.scheme on geth
    protolambda authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    dae091f View commit details
    Browse the repository at this point in the history
  4. Add RV reviews (#11422)

    * Add RV reviews
    
    * Fix naming of trust audit to match convention
    maurelian authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    e157ed7 View commit details
    Browse the repository at this point in the history
  5. Update to Geth 1.14.7 (#11382)

    * chore: update to support geth v1.14.7
    
    * Update geth
    
    * Fix "private key curve is not secp256k1" error
    
    * Temporarily quiet noisy logs
    
    * signature test
    
    * Add comments about S256 curve override fix
    
    * Update geth
    
    * go.mod: update to op-geth v1.101407.0-rc.1
    
    * op-e2e: fix L1/L2 miner settings
    
    * Also update devnet L1 base image
    
    * ci: bump ci-builder in circleci
    
    ---------
    
    Co-authored-by: Danyal Prout <me@dany.al>
    Co-authored-by: protolambda <proto@protolambda.com>
    Co-authored-by: Sebastian Stammler <seb@oplabs.co>
    4 people authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    ca85dc4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    94b7e03 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cdfe8a8 View commit details
    Browse the repository at this point in the history
  8. fix(ctb): remove linked libraries from scripts and tests (#11426)

    * add additional address to exclude
    
    * chore: make public library methods internal
    
    * remove another public lib method
    
    * remove additional public lib methods
    
    * remove hardcoded assumption now that we know it's lib linking
    
    * style: forge fmt
    mds1 authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    b1dfa22 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    586e662 View commit details
    Browse the repository at this point in the history
  10. ci: manage versions in versions.json (#11415)

    * ci: manage versions in versions.json
    
    and optimize archive downloads to directly extract
    
    * ci: also pin just version
    sebastianst authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    261938e View commit details
    Browse the repository at this point in the history
  11. cannon: Add support for --type mt to enable multithreaded cannon (#11…

    …411)
    
    * cannon: Add support for --type mt to enable multithreaded cannon
    
    * cannon: Rename vm type to cannon-mt
    ajsutton authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    acd23f2 View commit details
    Browse the repository at this point in the history
  12. dependabot(gomod): bump golang.org/x/crypto from 0.25.0 to 0.26.0 (#1…

    …1373)
    
    * dependabot(gomod): bump golang.org/x/crypto from 0.25.0 to 0.26.0
    
    Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.25.0 to 0.26.0.
    - [Commits](golang/crypto@v0.25.0...v0.26.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/crypto
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * deps: update
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
    dependabot[bot] and tynes authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    d098cf8 View commit details
    Browse the repository at this point in the history
  13. op-supervisor: Include executing message info when storing logs. (#11…

    …369)
    
    * Rebase: op-supervisor: Include executing message info when storing logs.
    
    Takes from aj/parse-exec-msg and makes the following updates:
    - uses upstream ABI definitions for identifier hash
    - removes the core recording functionality for the moment
    - fixes up inconsistent typing and merge conflicts due to rearranged packages
    
    * Incorporate new ABI format
    
    * remove trailing newline in contract
    
    ---------
    
    Co-authored-by: Adrian Sutton <adrian@oplabs.co>
    axelKingsley and ajsutton authored Aug 9, 2024
    Configuration menu
    Copy the full SHA
    773e476 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2024

  1. Configuration menu
    Copy the full SHA
    5a4fbce View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Don't recheck terminal type for color (#11412)

    Not necessary as it's checked further up the call tree. Without this --log.color doesn't work when intended.
    anacrolix authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    5c8ebef View commit details
    Browse the repository at this point in the history
  2. maint: further clean up contract scripts organization (#11434)

    Scripts within contracts-bedrock are all over the place. Relatively
    minor PR that moves things around into a cleaner folder structure.
    Scripts themselves are unchanged.
    smartcontracts authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    995ddcf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a0b95aa View commit details
    Browse the repository at this point in the history
  4. dependabot(gomod): bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4

    Bumps [github.com/urfave/cli/v2](https://github.com/urfave/cli) from 2.27.3 to 2.27.4.
    - [Release notes](https://github.com/urfave/cli/releases)
    - [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
    - [Commits](urfave/cli@v2.27.3...v2.27.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/urfave/cli/v2
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    fa6269a View commit details
    Browse the repository at this point in the history