diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 906cc676..54f7e722 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "tap-agent":"1.0.0", - "common":"1.0.0", - "config":"1.0.0", - "service":"1.0.0" + "tap-agent": "1.1.0", + "common": "1.1.0", + "config": "1.1.0", + "service": "1.1.0" } diff --git a/Cargo.lock b/Cargo.lock index 6bfe5b21..09adf45e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2967,7 +2967,7 @@ dependencies = [ [[package]] name = "indexer-common" -version = "0.1.0" +version = "1.1.0" dependencies = [ "alloy", "anyhow", @@ -3001,7 +3001,7 @@ dependencies = [ [[package]] name = "indexer-config" -version = "1.0.0" +version = "1.1.0" dependencies = [ "alloy", "bigdecimal", @@ -3024,7 +3024,7 @@ dependencies = [ [[package]] name = "indexer-service-rs" -version = "1.0.0" +version = "1.1.0" dependencies = [ "anyhow", "async-graphql", @@ -3053,7 +3053,7 @@ dependencies = [ [[package]] name = "indexer-tap-agent" -version = "1.0.0" +version = "1.1.0" dependencies = [ "alloy", "anyhow", diff --git a/common/CHANGELOG.md b/common/CHANGELOG.md new file mode 100644 index 00000000..41e822bc --- /dev/null +++ b/common/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [1.1.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-common-v1.0.0...indexer-common-v1.1.0) (2024-10-09) + + +### Features + +* add metrics to service ([#319](https://github.com/graphprotocol/indexer-rs/issues/319)) ([57c89e2](https://github.com/graphprotocol/indexer-rs/commit/57c89e237a57b49214eaf902303e3d89c9d82396)) diff --git a/common/Cargo.toml b/common/Cargo.toml index 0899bf41..ee4cdf66 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-common" -version = "0.1.0" +version = "1.1.0" edition = "2021" [dependencies] diff --git a/config/CHANGELOG.md b/config/CHANGELOG.md new file mode 100644 index 00000000..4af17840 --- /dev/null +++ b/config/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +## [1.1.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-config-v1.0.0...indexer-config-v1.1.0) (2024-10-09) + + +### Features + +* Accept config to be through file or env vars ([#352](https://github.com/graphprotocol/indexer-rs/issues/352)) ([9e44ad4](https://github.com/graphprotocol/indexer-rs/commit/9e44ad4fd04477e07dba4776f4a2de8a338f0f61)) +* **config:** postgres_url or splitten components ([#339](https://github.com/graphprotocol/indexer-rs/issues/339)) ([2b9adcf](https://github.com/graphprotocol/indexer-rs/commit/2b9adcfa2cc3f4bc9024fb3604d0c85104a080d4)) +* **config:** use env vars in config files ([#344](https://github.com/graphprotocol/indexer-rs/issues/344)) ([1db3adb](https://github.com/graphprotocol/indexer-rs/commit/1db3adb12325ffd75bc031fa6299031357eeb60a)) + + +### Bug Fixes + +* Add max_willing_to_lose default value ([#315](https://github.com/graphprotocol/indexer-rs/issues/315)) ([33f449a](https://github.com/graphprotocol/indexer-rs/commit/33f449acf55470e5bfe9713d8dcd424f79a7b702)) +* add warn where trigger_value is below 0.1 grt ([#340](https://github.com/graphprotocol/indexer-rs/issues/340)) ([203e1ec](https://github.com/graphprotocol/indexer-rs/commit/203e1ec1f244467d944f8f0a02a653c05bf6105d)) diff --git a/config/Cargo.toml b/config/Cargo.toml index d4a60abc..c91bccdf 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-config" -version = "1.0.0" +version = "1.1.0" edition = "2021" [dependencies] diff --git a/service/CHANGELOG.md b/service/CHANGELOG.md new file mode 100644 index 00000000..42fb1a91 --- /dev/null +++ b/service/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## [1.1.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-service-rs-v1.0.0...indexer-service-rs-v1.1.0) (2024-10-09) + + +### Features + +* Accept config to be through file or env vars ([#352](https://github.com/graphprotocol/indexer-rs/issues/352)) ([9e44ad4](https://github.com/graphprotocol/indexer-rs/commit/9e44ad4fd04477e07dba4776f4a2de8a338f0f61)) +* add metrics to service ([#319](https://github.com/graphprotocol/indexer-rs/issues/319)) ([57c89e2](https://github.com/graphprotocol/indexer-rs/commit/57c89e237a57b49214eaf902303e3d89c9d82396)) +* **config:** postgres_url or splitten components ([#339](https://github.com/graphprotocol/indexer-rs/issues/339)) ([2b9adcf](https://github.com/graphprotocol/indexer-rs/commit/2b9adcfa2cc3f4bc9024fb3604d0c85104a080d4)) diff --git a/service/Cargo.toml b/service/Cargo.toml index 96ea62a0..86d3e514 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-service-rs" -version = "1.0.0" +version = "1.1.0" edition = "2021" license = "Apache-2.0" diff --git a/tap-agent/CHANGELOG.md b/tap-agent/CHANGELOG.md new file mode 100644 index 00000000..3d9f80db --- /dev/null +++ b/tap-agent/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## [1.1.0](https://github.com/graphprotocol/indexer-rs/compare/indexer-tap-agent-v1.0.0...indexer-tap-agent-v1.1.0) (2024-10-09) + + +### Features + +* Accept config to be through file or env vars ([#352](https://github.com/graphprotocol/indexer-rs/issues/352)) ([9e44ad4](https://github.com/graphprotocol/indexer-rs/commit/9e44ad4fd04477e07dba4776f4a2de8a338f0f61)) +* Add a warning in case senders are undenied manually from db ([#346](https://github.com/graphprotocol/indexer-rs/issues/346)) ([00af506](https://github.com/graphprotocol/indexer-rs/commit/00af5068486c23d0aa4eddc59a18da0335955e8c)) +* add tracker for buffer unaggregated fees ([#324](https://github.com/graphprotocol/indexer-rs/issues/324)) ([676a437](https://github.com/graphprotocol/indexer-rs/commit/676a4374e2f27b3a0225c6316360c4366776fdae)) +* **config:** postgres_url or splitten components ([#339](https://github.com/graphprotocol/indexer-rs/issues/339)) ([2b9adcf](https://github.com/graphprotocol/indexer-rs/commit/2b9adcfa2cc3f4bc9024fb3604d0c85104a080d4)) + + +### Bug Fixes + +* Add more information if rav request is timing out ([#325](https://github.com/graphprotocol/indexer-rs/issues/325)) ([5edf6cf](https://github.com/graphprotocol/indexer-rs/commit/5edf6cfa31900fd3b99ff9a7e586501d7a6a281c)) +* Store receipt error into db ([#322](https://github.com/graphprotocol/indexer-rs/issues/322)) ([212e06a](https://github.com/graphprotocol/indexer-rs/commit/212e06a606691dd47635d2b6643b706dd1f958e7)) +* **tap-agent:** bulk insert of failed receipts ([#329](https://github.com/graphprotocol/indexer-rs/issues/329)) ([f65d95c](https://github.com/graphprotocol/indexer-rs/commit/f65d95c3122a87d6a06837efe5f46a53ab8f731f)) +* Use dashboard metric for Rav trigger ([#317](https://github.com/graphprotocol/indexer-rs/issues/317)) ([c693f0e](https://github.com/graphprotocol/indexer-rs/commit/c693f0ebe36a0f5dce8f46fd974eef1a5924c3c6)) diff --git a/tap-agent/Cargo.toml b/tap-agent/Cargo.toml index 8d3f443f..eaf31842 100644 --- a/tap-agent/Cargo.toml +++ b/tap-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-tap-agent" -version = "1.0.0" +version = "1.1.0" edition = "2021" publish = false