Skip to content

Commit

Permalink
chore: bump state-fold to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gligneul committed Sep 28, 2023
1 parent 0adc0f3 commit 1faaf0a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Standardized log libraries and configuration
- Moved GraphQL schema generation to the CI. Now it is distributed as a Github artifact
- Replace `POSTGRES_*` environment variables with `POSTGRES_ENDPOINT`
- Allow negative numbers in `SF_QUERY_LIMIT_ERROR_CODES` state-fold configuration
- Bumped Rust Version to 1.72.1

### Removed
Expand All @@ -28,6 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed on-chain code from the node repository
- Removed `advance-runner`, `dispatcher`, `graphql-server`, `host-runner`, `inspect-server`, `indexer`, and `state-server` docker images

### Fixed
- Parse `SF_GENESIS_BLOCK` config correctly as decimal
- Setting `SF_CONCURRENT_EVENTS_FETCH` to `0` no longer silently halts the system, and instead use this configuration as _additional_ concurrent events, as documented

## [1.0.2] 2023-09-12

### Changed
Expand Down
24 changes: 12 additions & 12 deletions offchain/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions offchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ diesel = "2.1"
diesel_migrations = "2.1"
env_logger = "0.10"
ethabi = "18.0"
eth-block-history = "0.8"
eth-state-client-lib = "0.8"
eth-state-fold-types = "0.8"
eth-state-fold = "0.8"
eth-state-server-lib = "0.8"
eth-block-history = "0.9"
eth-state-client-lib = "0.9"
eth-state-fold-types = "0.9"
eth-state-fold = "0.9"
eth-state-server-lib = "0.9"
eth-tx-manager = "0.10"
ethers = "1.0"
ethers-signers = "1.0"
Expand Down

0 comments on commit 1faaf0a

Please sign in to comment.