From 21e062f1c0c69e983bec09a8875cb86da79c8880 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:33:18 +0200 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- bin/router/CHANGELOG.md | 7 +++++++ bin/router/Cargo.toml | 6 +++--- lib/executor/CHANGELOG.md | 7 +++++++ lib/executor/Cargo.toml | 2 +- lib/router-config/CHANGELOG.md | 6 ++++++ lib/router-config/Cargo.toml | 2 +- 7 files changed, 28 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 360f7cd81..cc6526924 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2010,7 +2010,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hive-router" -version = "0.0.15" +version = "0.0.16" dependencies = [ "arc-swap", "async-trait", @@ -2051,7 +2051,7 @@ dependencies = [ [[package]] name = "hive-router-config" -version = "0.0.10" +version = "0.0.11" dependencies = [ "config", "envconfig", @@ -2068,7 +2068,7 @@ dependencies = [ [[package]] name = "hive-router-plan-executor" -version = "6.0.0" +version = "6.0.1" dependencies = [ "ahash", "async-trait", diff --git a/bin/router/CHANGELOG.md b/bin/router/CHANGELOG.md index 3344caaa3..71e8e3e91 100644 --- a/bin/router/CHANGELOG.md +++ b/bin/router/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.16](https://github.com/graphql-hive/router/compare/hive-router-v0.0.15...hive-router-v0.0.16) - 2025-11-03 + +### Refactoring + +- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534)) +- *(executor, router)* define `ClientRequestDetails` only once and avoid all clones, improve how coerce_variables is done ([#532](https://github.com/graphql-hive/router/pull/532)) + ## [0.0.15](https://github.com/graphql-hive/router/compare/hive-router-v0.0.14...hive-router-v0.0.15) - 2025-10-27 ### New Features diff --git a/bin/router/Cargo.toml b/bin/router/Cargo.toml index 5eddacd3f..7493a31d8 100644 --- a/bin/router/Cargo.toml +++ b/bin/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router" -version = "0.0.15" +version = "0.0.16" edition = "2021" description = "GraphQL router/gateway for Federation" license = "MIT" @@ -17,8 +17,8 @@ path = "src/main.rs" [dependencies] hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.2" } -hive-router-plan-executor = { path = "../../lib/executor", version = "6.0.0" } -hive-router-config = { path = "../../lib/router-config", version = "0.0.10" } +hive-router-plan-executor = { path = "../../lib/executor", version = "6.0.1" } +hive-router-config = { path = "../../lib/router-config", version = "0.0.11" } tokio = { workspace = true } futures = { workspace = true } diff --git a/lib/executor/CHANGELOG.md b/lib/executor/CHANGELOG.md index ad1ecaa6a..b33e0f13c 100644 --- a/lib/executor/CHANGELOG.md +++ b/lib/executor/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.1](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v6.0.0...hive-router-plan-executor-v6.0.1) - 2025-11-03 + +### Refactoring + +- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534)) +- *(executor, router)* define `ClientRequestDetails` only once and avoid all clones, improve how coerce_variables is done ([#532](https://github.com/graphql-hive/router/pull/532)) + ## [6.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v5.0.0...hive-router-plan-executor-v6.0.0) - 2025-10-27 ### New Features diff --git a/lib/executor/Cargo.toml b/lib/executor/Cargo.toml index c3f6f9117..d83e1bc1b 100644 --- a/lib/executor/Cargo.toml +++ b/lib/executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hive-router-plan-executor" -version = "6.0.0" +version = "6.0.1" edition = "2021" description = "GraphQL query planner executor for Federation specification" license = "MIT" diff --git a/lib/router-config/CHANGELOG.md b/lib/router-config/CHANGELOG.md index e37d3e3c2..5d8c4b30d 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.11](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.10...hive-router-config-v0.0.11) - 2025-11-03 + +### Refactoring + +- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534)) + ## [0.0.10](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.9...hive-router-config-v0.0.10) - 2025-10-27 ### New Features diff --git a/lib/router-config/Cargo.toml b/lib/router-config/Cargo.toml index 93edcc3b5..8fc448071 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.10" +version = "0.0.11" edition = "2021" publish = true license = "MIT"