Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions bin/router/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

### <!-- 2 -->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

### <!-- 0 -->New Features
Expand Down
6 changes: 3 additions & 3 deletions bin/router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }
Expand Down
7 changes: 7 additions & 0 deletions lib/executor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

### <!-- 2 -->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

### <!-- 0 -->New Features
Expand Down
2 changes: 1 addition & 1 deletion lib/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions lib/router-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

### <!-- 2 -->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

### <!-- 0 -->New Features
Expand Down
2 changes: 1 addition & 1 deletion lib/router-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hive-router-config"
version = "0.0.10"
version = "0.0.11"
edition = "2021"
publish = true
license = "MIT"
Expand Down
Loading