diff --git a/Cargo.lock b/Cargo.lock index 62bcbe44..b2e162fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4492,7 +4492,7 @@ dependencies = [ [[package]] name = "thegraph-client-subgraphs" -version = "0.1.4" +version = "0.1.5" dependencies = [ "indoc", "reqwest", @@ -4510,7 +4510,7 @@ dependencies = [ [[package]] name = "thegraph-core" -version = "0.10.0" +version = "0.10.1" dependencies = [ "alloy", "async-graphql", @@ -4523,7 +4523,7 @@ dependencies = [ [[package]] name = "thegraph-graphql-http" -version = "0.3.2" +version = "0.3.3" dependencies = [ "assert_matches", "async-graphql", diff --git a/thegraph-client-subgraphs/CHANGELOG.md b/thegraph-client-subgraphs/CHANGELOG.md index 37661633..d9023f32 100644 --- a/thegraph-client-subgraphs/CHANGELOG.md +++ b/thegraph-client-subgraphs/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.1.5](https://github.com/edgeandnode/toolshed/compare/thegraph-client-subgraphs-v0.1.4...thegraph-client-subgraphs-v0.1.5) - 2025-01-27 + +### Other + +- updated the following local packages: thegraph-graphql-http + ## [0.1.4](https://github.com/edgeandnode/toolshed/compare/thegraph-client-subgraphs-v0.1.3...thegraph-client-subgraphs-v0.1.4) - 2025-01-09 ### Other diff --git a/thegraph-client-subgraphs/Cargo.toml b/thegraph-client-subgraphs/Cargo.toml index e01d46d0..bc3029dc 100644 --- a/thegraph-client-subgraphs/Cargo.toml +++ b/thegraph-client-subgraphs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-client-subgraphs" description = "A client for The Graph network's Subgraphs data service" -version = "0.1.4" +version = "0.1.5" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT" @@ -14,7 +14,7 @@ reqwest = { version = "0.12.9", features = ["json"] } serde = { version = "1.0.214", features = ["derive"] } serde_json = { version = "1.0.132", features = ["raw_value"] } thegraph-core = { version = "0.10", path = "../thegraph-core", features = ["serde"] } -thegraph-graphql-http = { version = "0.3.2", path = "../thegraph-graphql-http", features = ["reqwest"] } +thegraph-graphql-http = { version = "0.3.3", path = "../thegraph-graphql-http", features = ["reqwest"] } thiserror = "2.0.1" tracing = { version = "0.1.40", default-features = false, features = ["attributes"] } url = "2.5.3" diff --git a/thegraph-core/CHANGELOG.md b/thegraph-core/CHANGELOG.md index 76d97c1e..ec97bd77 100644 --- a/thegraph-core/CHANGELOG.md +++ b/thegraph-core/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/edgeandnode/toolshed/compare/thegraph-core-v0.10.0...thegraph-core-v0.10.1) - 2025-01-27 + +### Added + +- *(thegraph-core)* add fake_impl module and alloy fake support (#469) + +### Other + +- *(deps)* update rust crate thiserror to v2 (#467) + ## [0.10.0](https://github.com/edgeandnode/toolshed/compare/thegraph-core-v0.10.0...thegraph-core-v0.10.0) - 2025-01-09 ### Other diff --git a/thegraph-core/Cargo.toml b/thegraph-core/Cargo.toml index a1503b7a..7a3e04a1 100644 --- a/thegraph-core/Cargo.toml +++ b/thegraph-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-core" description = "Rust core modules for The Graph network" -version = "0.10.0" +version = "0.10.1" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT" diff --git a/thegraph-graphql-http/CHANGELOG.md b/thegraph-graphql-http/CHANGELOG.md index 3f686b92..3d46cc95 100644 --- a/thegraph-graphql-http/CHANGELOG.md +++ b/thegraph-graphql-http/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3](https://github.com/edgeandnode/toolshed/compare/thegraph-graphql-http-v0.3.2...thegraph-graphql-http-v0.3.3) - 2025-01-27 + +### Other + +- *(thegraph-graphql-http)* update test server URL (#478) +- *(thegraph-graphql-http)* disable tests due to unavailable test dependency (II) (#464) +- *(thegraph-graphql-http)* disable tests due to unavailable test dependency (#462) + ## [0.3.2](https://github.com/edgeandnode/toolshed/compare/thegraph-graphql-http-v0.3.1...thegraph-graphql-http-v0.3.2) - 2024-12-09 ### Fixed diff --git a/thegraph-graphql-http/Cargo.toml b/thegraph-graphql-http/Cargo.toml index 022a5baa..a1a69132 100644 --- a/thegraph-graphql-http/Cargo.toml +++ b/thegraph-graphql-http/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-graphql-http" description = "A rust implementation of the GraphQL-over-HTTP spec for The Graph network services" -version = "0.3.2" +version = "0.3.3" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT"