From adcf47af1cd0552be182e23c59287d0cc32c674d Mon Sep 17 00:00:00 2001 From: axiomatic-aardvark Date: Thu, 1 Jun 2023 18:10:48 +0300 Subject: [PATCH] chore: release 0.3.2 --- CHANGELOG.md | 24 ++++++++++++++++++++ Cargo.lock | 53 +++++++++++++++++++++++++++++++++++++++----- poi-radio/Cargo.toml | 4 ++-- 3 files changed, 74 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c34da0..deca2b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Features + +- Disable notifications for known divergences +- Add telegram notifications +- Discv5 configs +- Add e2e tests + +### Miscellaneous Tasks + +- Release 0.3.2 +- Release 0.3.2 + +### Refactor + +- Operator struct replaces global mutex +- Update interval constants +- Remove 'v' prefix from release tag + +## [0.3.1] - 2023-05-22 + +### Miscellaneous Tasks + +- Release v0.3.1 + ### Refactor - Update logging level diff --git a/Cargo.lock b/Cargo.lock index e35f2bd..74bcd9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2322,6 +2322,49 @@ dependencies = [ "waku-bindings", ] +[[package]] +name = "graphcast-sdk" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d84298fce0758e65e2ff3673ba34d194170c40dcfd616feaf7be8bf3a17f626" +dependencies = [ + "anyhow", + "async-graphql", + "async-graphql-axum", + "chrono", + "clap", + "data-encoding", + "derive-getters", + "dotenv", + "ethers", + "ethers-contract", + "ethers-core 2.0.5", + "ethers-derive-eip712", + "graphql_client 0.12.0", + "lazy_static", + "num-bigint", + "num-traits", + "once_cell", + "partial_application", + "prometheus-http-query", + "prost", + "reqwest", + "rsb_derive", + "secp256k1 0.26.0", + "serde", + "serde_derive", + "serde_json", + "slack-morphism", + "teloxide", + "thiserror", + "tokio", + "toml 0.7.4", + "tracing", + "tracing-subscriber", + "url", + "waku-bindings", +] + [[package]] name = "graphql-introspection-query" version = "0.1.0" @@ -3861,7 +3904,7 @@ dependencies = [ [[package]] name = "poi-radio" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "async-graphql", @@ -3878,7 +3921,7 @@ dependencies = [ "ethers-contract", "ethers-core 2.0.5", "ethers-derive-eip712", - "graphcast-sdk", + "graphcast-sdk 0.3.2", "graphql_client 0.9.0", "hex", "metrics", @@ -5349,7 +5392,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk", + "graphcast-sdk 0.3.1", "poi-radio", "rand 0.8.5", "serde", @@ -5370,7 +5413,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk", + "graphcast-sdk 0.3.1", "poi-radio", "rand 0.8.5", "ring", @@ -5388,7 +5431,7 @@ version = "0.0.1" dependencies = [ "axum 0.5.17", "chrono", - "graphcast-sdk", + "graphcast-sdk 0.3.1", "poi-radio", "rand 0.8.5", "tokio", diff --git a/poi-radio/Cargo.toml b/poi-radio/Cargo.toml index 8e875b8..602405c 100644 --- a/poi-radio/Cargo.toml +++ b/poi-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poi-radio" -version = "0.3.1" +version = "0.3.2" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "POI Radio monitors subgraph data integrity in real time using Graphcast SDK" @@ -10,7 +10,7 @@ keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"] categories = ["network-programming", "web-programming::http-client"] [dependencies] -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.2" prost = "0.11" once_cell = "1.17" chrono = "0.4"