diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8a179843a..1adf22f1f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "crates/tap-agent": "1.8.0", - "crates/config": "1.2.2", - "crates/service": "1.4.1" + "crates/tap-agent": "1.9.0", + "crates/config": "1.3.0", + "crates/service": "1.4.2" } diff --git a/Cargo.lock b/Cargo.lock index c862e56cd..a73f9dd93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3780,7 +3780,7 @@ dependencies = [ [[package]] name = "indexer-config" -version = "1.2.2" +version = "1.3.0" dependencies = [ "bigdecimal", "bip39", @@ -3878,7 +3878,7 @@ dependencies = [ [[package]] name = "indexer-service-rs" -version = "1.4.1" +version = "1.4.2" dependencies = [ "anyhow", "async-graphql", @@ -3939,7 +3939,7 @@ dependencies = [ [[package]] name = "indexer-tap-agent" -version = "1.8.0" +version = "1.9.0" dependencies = [ "anyhow", "async-trait", diff --git a/crates/config/CHANGELOG.md b/crates/config/CHANGELOG.md index 83c4de14a..c79bcb79d 100644 --- a/crates/config/CHANGELOG.md +++ b/crates/config/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-config-v1.2.2...indexer-config-v1.3.0) (2025-02-12) + + +### Features + +* add escape hatch to trusted senders ([#621](https://github.com/graphprotocol/indexer-rs/issues/621)) ([bdc40ef](https://github.com/graphprotocol/indexer-rs/commit/bdc40ef33ee0b9b063ca8eeaa5374ef6f4779626)) +* add option to avoid denying senders ([#607](https://github.com/graphprotocol/indexer-rs/issues/607)) ([d0731e3](https://github.com/graphprotocol/indexer-rs/commit/d0731e3bf2e36f587e9318be9028897a0a35cda4)) + ## [1.2.2](https://github.com/graphprotocol/indexer-rs/compare/indexer-config-v1.2.1...indexer-config-v1.2.2) (2024-12-18) diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 9d599cb39..ce1dfbc23 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-config" -version = "1.2.2" +version = "1.3.0" edition = "2021" [dependencies] diff --git a/crates/service/CHANGELOG.md b/crates/service/CHANGELOG.md index b4858886c..1ae35bcf2 100644 --- a/crates/service/CHANGELOG.md +++ b/crates/service/CHANGELOG.md @@ -6,6 +6,13 @@ +## [1.4.2](https://github.com/graphprotocol/indexer-rs/compare/indexer-service-rs-v1.4.1...indexer-service-rs-v1.4.2) (2025-02-12) + + +### Bug Fixes + +* allow responses for free queries with no allocation open ([#622](https://github.com/graphprotocol/indexer-rs/issues/622)) ([bce155e](https://github.com/graphprotocol/indexer-rs/commit/bce155e8515bd4e8a666a42d621a82776727a8cd)) + ## [1.4.1](https://github.com/graphprotocol/indexer-rs/compare/indexer-service-rs-v1.4.0...indexer-service-rs-v1.4.1) (2025-01-16) diff --git a/crates/service/Cargo.toml b/crates/service/Cargo.toml index a38ee774c..b737dbab9 100644 --- a/crates/service/Cargo.toml +++ b/crates/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-service-rs" -version = "1.4.1" +version = "1.4.2" edition = "2021" license = "Apache-2.0" diff --git a/crates/tap-agent/CHANGELOG.md b/crates/tap-agent/CHANGELOG.md index 2239e9b1e..4e32b6cb8 100644 --- a/crates/tap-agent/CHANGELOG.md +++ b/crates/tap-agent/CHANGELOG.md @@ -4,6 +4,19 @@ +## [1.9.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-tap-agent-v1.8.0...indexer-tap-agent-v1.9.0) (2025-02-12) + + +### Features + +* add escape hatch to trusted senders ([#621](https://github.com/graphprotocol/indexer-rs/issues/621)) ([bdc40ef](https://github.com/graphprotocol/indexer-rs/commit/bdc40ef33ee0b9b063ca8eeaa5374ef6f4779626)) +* add option to avoid denying senders ([#607](https://github.com/graphprotocol/indexer-rs/issues/607)) ([d0731e3](https://github.com/graphprotocol/indexer-rs/commit/d0731e3bf2e36f587e9318be9028897a0a35cda4)) + + +### Performance Improvements + +* speed up startup setup queries ([#625](https://github.com/graphprotocol/indexer-rs/issues/625)) ([c5b115e](https://github.com/graphprotocol/indexer-rs/commit/c5b115e997a71582dad7d75c4c954cece225fdaa)) + ## [1.8.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-tap-agent-v1.7.4...indexer-tap-agent-v1.8.0) (2025-01-29) diff --git a/crates/tap-agent/Cargo.toml b/crates/tap-agent/Cargo.toml index 5feb893ed..6fd099070 100644 --- a/crates/tap-agent/Cargo.toml +++ b/crates/tap-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-tap-agent" -version = "1.8.0" +version = "1.9.0" edition = "2021" publish = false