diff --git a/Cargo.lock b/Cargo.lock index bb396691039ad..a06faf7c9f0a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -262,7 +262,7 @@ dependencies = [ [[package]] name = "aptos" -version = "4.2.1" +version = "4.2.2" dependencies = [ "anyhow", "aptos-api-types", @@ -2868,7 +2868,7 @@ dependencies = [ [[package]] name = "aptos-moving-average" version = "0.1.0" -source = "git+https://github.com/aptos-labs/aptos-indexer-processor-sdk.git?rev=9ecd252ccff53023664562001dd04c2886488c0d#9ecd252ccff53023664562001dd04c2886488c0d" +source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=51a34901b40d7f75767ac907b4d2478104d6a515#51a34901b40d7f75767ac907b4d2478104d6a515" dependencies = [ "chrono", ] @@ -2876,7 +2876,7 @@ dependencies = [ [[package]] name = "aptos-moving-average" version = "0.1.0" -source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=e294b558b33619bba92e205cb74c581488bcb2a3#e294b558b33619bba92e205cb74c581488bcb2a3" +source = "git+https://github.com/aptos-labs/aptos-indexer-processor-sdk.git?rev=9ecd252ccff53023664562001dd04c2886488c0d#9ecd252ccff53023664562001dd04c2886488c0d" dependencies = [ "chrono", ] @@ -13352,14 +13352,14 @@ dependencies = [ [[package]] name = "processor" version = "1.0.0" -source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=e294b558b33619bba92e205cb74c581488bcb2a3#e294b558b33619bba92e205cb74c581488bcb2a3" +source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=51a34901b40d7f75767ac907b4d2478104d6a515#51a34901b40d7f75767ac907b4d2478104d6a515" dependencies = [ "ahash 0.8.11", "allocative", "allocative_derive", "anyhow", "aptos-indexer-processor-sdk", - "aptos-moving-average 0.1.0 (git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=e294b558b33619bba92e205cb74c581488bcb2a3)", + "aptos-moving-average 0.1.0 (git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=51a34901b40d7f75767ac907b4d2478104d6a515)", "aptos-protos 1.3.1 (git+https://github.com/aptos-labs/aptos-core.git?rev=5c48aee129b5a141be2792ffa3d9bd0a1a61c9cb)", "async-trait", "bcs 0.1.4", @@ -15156,7 +15156,7 @@ dependencies = [ [[package]] name = "server-framework" version = "1.0.0" -source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=e294b558b33619bba92e205cb74c581488bcb2a3#e294b558b33619bba92e205cb74c581488bcb2a3" +source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=51a34901b40d7f75767ac907b4d2478104d6a515#51a34901b40d7f75767ac907b4d2478104d6a515" dependencies = [ "anyhow", "aptos-system-utils 0.1.0 (git+https://github.com/aptos-labs/aptos-core.git?rev=202bdccff2b2d333a385ae86a4fcf23e89da9f62)", diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index b18c262537adb..de17a8a00bbfd 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to the Aptos CLI will be captured in this file. This project ## Unreleased +## [4.2.2] - 2024/09/20 +- Fix localnet indexer processors that were emitting spamming logs in 4.2.1. + ## [4.2.1] - 2024/09/19 - Fix localnet indexer processors that were failing to startup in 4.2.0 diff --git a/crates/aptos/Cargo.toml b/crates/aptos/Cargo.toml index 756d9270961a9..44a8a86281934 100644 --- a/crates/aptos/Cargo.toml +++ b/crates/aptos/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aptos" description = "Aptos tool for management of nodes and interacting with the blockchain" -version = "4.2.1" +version = "4.2.2" # Workspace inherited keys authors = { workspace = true } @@ -85,7 +85,7 @@ pathsearch = { workspace = true } poem = { workspace = true } # We set default-features to false so we don't onboard the libpq dep. See more here: # https://github.com/aptos-labs/aptos-core/pull/12568 -processor = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "e294b558b33619bba92e205cb74c581488bcb2a3", default-features = false } +processor = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "51a34901b40d7f75767ac907b4d2478104d6a515", default-features = false } rand = { workspace = true } regex = { workspace = true } reqwest = { workspace = true } @@ -93,7 +93,7 @@ self_update = { git = "https://github.com/banool/self_update.git", rev = "830615 serde = { workspace = true } serde_json = { workspace = true } serde_yaml = { workspace = true } -server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "e294b558b33619bba92e205cb74c581488bcb2a3" } +server-framework = { git = "https://github.com/aptos-labs/aptos-indexer-processors.git", rev = "51a34901b40d7f75767ac907b4d2478104d6a515" } tempfile = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true }