Skip to content

Commit 747864e

Browse files
authored
chore: release
1 parent a0d3cde commit 747864e

File tree

7 files changed

+28
-8
lines changed

7 files changed

+28
-8
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/router/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.16](https://github.com/graphql-hive/router/compare/hive-router-v0.0.15...hive-router-v0.0.16) - 2025-10-30
11+
12+
### <!-- 2 -->Refactoring
13+
14+
- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534))
15+
- *(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))
16+
1017
## [0.0.15](https://github.com/graphql-hive/router/compare/hive-router-v0.0.14...hive-router-v0.0.15) - 2025-10-27
1118

1219
### <!-- 0 -->New Features

bin/router/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hive-router"
3-
version = "0.0.15"
3+
version = "0.0.16"
44
edition = "2021"
55
description = "GraphQL router/gateway for Federation"
66
license = "MIT"
@@ -17,8 +17,8 @@ path = "src/main.rs"
1717

1818
[dependencies]
1919
hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.2" }
20-
hive-router-plan-executor = { path = "../../lib/executor", version = "6.0.0" }
21-
hive-router-config = { path = "../../lib/router-config", version = "0.0.10" }
20+
hive-router-plan-executor = { path = "../../lib/executor", version = "7.0.0" }
21+
hive-router-config = { path = "../../lib/router-config", version = "0.0.11" }
2222

2323
tokio = { workspace = true }
2424
futures = { workspace = true }

lib/executor/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [7.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v6.0.0...hive-router-plan-executor-v7.0.0) - 2025-10-30
11+
12+
### <!-- 2 -->Refactoring
13+
14+
- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534))
15+
- *(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))
16+
1017
## [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
1118

1219
### <!-- 0 -->New Features

lib/executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hive-router-plan-executor"
3-
version = "6.0.0"
3+
version = "7.0.0"
44
edition = "2021"
55
description = "GraphQL query planner executor for Federation specification"
66
license = "MIT"

lib/router-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.11](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.10...hive-router-config-v0.0.11) - 2025-10-30
11+
12+
### <!-- 2 -->Refactoring
13+
14+
- *(jwt)* improve the implementation of `jwt` plugin and expose it to expressions ([#534](https://github.com/graphql-hive/router/pull/534))
15+
1016
## [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
1117

1218
### <!-- 0 -->New Features

lib/router-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hive-router-config"
3-
version = "0.0.10"
3+
version = "0.0.11"
44
edition = "2021"
55
publish = true
66
license = "MIT"

0 commit comments

Comments
 (0)