From 1faaf0a454cdc207b044abfbdc06ca1b69d26d40 Mon Sep 17 00:00:00 2001 From: Gabriel de Quadros Ligneul <8294320+gligneul@users.noreply.github.com> Date: Thu, 28 Sep 2023 11:08:06 -0300 Subject: [PATCH] chore: bump state-fold to 0.9 --- CHANGELOG.md | 5 +++++ offchain/Cargo.lock | 24 ++++++++++++------------ offchain/Cargo.toml | 10 +++++----- 3 files changed, 22 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60688d024..cbd1f9b66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/offchain/Cargo.lock b/offchain/Cargo.lock index 16db3eff3..c8790749e 100644 --- a/offchain/Cargo.lock +++ b/offchain/Cargo.lock @@ -1664,9 +1664,9 @@ dependencies = [ [[package]] name = "eth-block-history" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb4e05414a4f20ab3007e2a75b57e2b0d265aaf56a51fe19a143c88b4d098ab" +checksum = "dca058dc4a095167fc361462a1361f6cfa91dd9431d034ed989218ed5f71acf9" dependencies = [ "async-stream", "clap", @@ -1701,9 +1701,9 @@ dependencies = [ [[package]] name = "eth-state-client-lib" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "617ffb8c2b3badd2cb6a6a90d5cb1e955cf4454dd4fb4aab5d473b6d2d7a99c5" +checksum = "e40b8c77c0518287f68c2d5fbe9f291aa0787404345fc92796c7ec3ec4ee3a3b" dependencies = [ "async-trait", "clap", @@ -1719,9 +1719,9 @@ dependencies = [ [[package]] name = "eth-state-fold" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42eb0e90cfc8f3bf84f7d11586280a60f986f4959cda4582d94862f4c2a4d77a" +checksum = "a0f1ac68e0b96efc11f7a9f60450dbfb14e987edd35553fd64989b57bfa53813" dependencies = [ "async-recursion", "async-trait", @@ -1735,9 +1735,9 @@ dependencies = [ [[package]] name = "eth-state-fold-types" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27b4cc78d8409a9fc6bd8daf6ce836c82892ea0e2bd97be9618e2b03a06af7ea" +checksum = "5194f4eca643c2654aedd175fd99b0d21a5bac8b49f72681aaa33e4f792d5c49" dependencies = [ "anyhow", "ethabi", @@ -1752,9 +1752,9 @@ dependencies = [ [[package]] name = "eth-state-server-common" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d8c4f4a51a4d85e77bd2a6e25df040e10eed2d6a5e358cbf2319d78fbed8512" +checksum = "589cfcf2bb4c3531e7e6bc08e9d00ba874773b3111445c02ab220692db3e3725" dependencies = [ "anyhow", "eth-state-fold-types", @@ -1768,9 +1768,9 @@ dependencies = [ [[package]] name = "eth-state-server-lib" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b3e3627417bca327446dafce660e342e5ca5eb25440b8af7358ba1e15ea276a" +checksum = "4f0141b54e46461538cec27aa45757a679cab0bd0e7c26fa27bfc3b7001488f1" dependencies = [ "clap", "eth-block-history", diff --git a/offchain/Cargo.toml b/offchain/Cargo.toml index b774e3333..a223a7adf 100644 --- a/offchain/Cargo.toml +++ b/offchain/Cargo.toml @@ -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"