From c715e32f5a34fc45b8ad64c49384c106d6378856 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Wed, 1 Oct 2025 02:42:32 +0300 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- bin/router/CHANGELOG.md | 6 ++++++ bin/router/Cargo.toml | 8 ++++---- lib/executor/CHANGELOG.md | 6 ++++++ lib/executor/Cargo.toml | 4 ++-- lib/query-planner/CHANGELOG.md | 6 ++++++ lib/query-planner/Cargo.toml | 2 +- lib/router-config/CHANGELOG.md | 6 ++++++ lib/router-config/Cargo.toml | 2 +- 9 files changed, 36 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2507283d..332c3cbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1223,7 +1223,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hive-router" -version = "0.0.9" +version = "0.0.10" dependencies = [ "async-trait", "futures", @@ -1253,7 +1253,7 @@ dependencies = [ [[package]] name = "hive-router-config" -version = "0.0.4" +version = "0.0.5" dependencies = [ "config", "schemars 1.0.4", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "hive-router-plan-executor" -version = "1.0.4" +version = "2.0.0" dependencies = [ "ahash", "async-trait", @@ -1296,7 +1296,7 @@ dependencies = [ [[package]] name = "hive-router-query-planner" -version = "1.0.0" +version = "2.0.0" dependencies = [ "bitflags", "criterion", diff --git a/bin/router/CHANGELOG.md b/bin/router/CHANGELOG.md index 81e15e70..2eabfd44 100644 --- a/bin/router/CHANGELOG.md +++ b/bin/router/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.10](https://github.com/graphql-hive/router/compare/hive-router-v0.0.9...hive-router-v0.0.10) - 2025-09-30 + +### Other + +- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462)) + ## [0.0.9](https://github.com/graphql-hive/router/compare/hive-router-v0.0.8...hive-router-v0.0.9) - 2025-09-09 ### Fixed diff --git a/bin/router/Cargo.toml b/bin/router/Cargo.toml index f9e8c5b0..d6faf199 100644 --- a/bin/router/Cargo.toml +++ b/bin/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router" -version = "0.0.9" +version = "0.0.10" edition = "2021" description = "GraphQL router/gateway for Federation" license = "MIT" @@ -16,9 +16,9 @@ name = "hive_router" path = "src/main.rs" [dependencies] -hive-router-query-planner = { path = "../../lib/query-planner", version = "1.0.0" } -hive-router-plan-executor = { path = "../../lib/executor", version = "1.0.4" } -hive-router-config = { path = "../../lib/router-config", version = "0.0.4" } +hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.0" } +hive-router-plan-executor = { path = "../../lib/executor", version = "2.0.0" } +hive-router-config = { path = "../../lib/router-config", version = "0.0.5" } tokio = { workspace = true } futures = { workspace = true } diff --git a/lib/executor/CHANGELOG.md b/lib/executor/CHANGELOG.md index 0036b518..149f2aa6 100644 --- a/lib/executor/CHANGELOG.md +++ b/lib/executor/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v1.0.4...hive-router-plan-executor-v2.0.0) - 2025-09-30 + +### Other + +- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462)) + ## [1.0.4](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v1.0.3...hive-router-plan-executor-v1.0.4) - 2025-09-09 ### Fixed diff --git a/lib/executor/Cargo.toml b/lib/executor/Cargo.toml index 9193459b..e6f516b2 100644 --- a/lib/executor/Cargo.toml +++ b/lib/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router-plan-executor" -version = "1.0.4" +version = "2.0.0" edition = "2021" description = "GraphQL query planner executor for Federation specification" license = "MIT" @@ -12,7 +12,7 @@ authors = ["The Guild"] [lib] [dependencies] -hive-router-query-planner = { path = "../query-planner", version = "1.0.0" } +hive-router-query-planner = { path = "../query-planner", version = "2.0.0" } hive-router-config = { path = "../router-config", version = "0" } graphql-parser = { workspace = true } diff --git a/lib/query-planner/CHANGELOG.md b/lib/query-planner/CHANGELOG.md index 151489d9..5c1ee5a5 100644 --- a/lib/query-planner/CHANGELOG.md +++ b/lib/query-planner/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/graphql-hive/router/compare/hive-router-query-planner-v1.0.0...hive-router-query-planner-v2.0.0) - 2025-09-30 + +### Other + +- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462)) + ## [1.0.0](https://github.com/graphql-hive/router/compare/hive-router-query-planner-v0.0.1...hive-router-query-planner-v1.0.0) - 2025-09-01 ### Other diff --git a/lib/query-planner/Cargo.toml b/lib/query-planner/Cargo.toml index 6c04fb9c..78ad5f7a 100644 --- a/lib/query-planner/Cargo.toml +++ b/lib/query-planner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router-query-planner" -version = "1.0.0" +version = "2.0.0" edition = "2021" description = "GraphQL query planner for Federation specification" license = "MIT" diff --git a/lib/router-config/CHANGELOG.md b/lib/router-config/CHANGELOG.md index d4ee6410..75a8f381 100644 --- a/lib/router-config/CHANGELOG.md +++ b/lib/router-config/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.4...hive-router-config-v0.0.5) - 2025-09-30 + +### Other + +- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462)) + ## [0.0.4](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.3...hive-router-config-v0.0.4) - 2025-09-09 ### Other diff --git a/lib/router-config/Cargo.toml b/lib/router-config/Cargo.toml index c3f21608..fb0dfeee 100644 --- a/lib/router-config/Cargo.toml +++ b/lib/router-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router-config" -version = "0.0.4" +version = "0.0.5" edition = "2021" publish = true license = "MIT"