Skip to content

Commit 6909074

Browse files
authored
chore: release (#529)
1 parent 9ff5248 commit 6909074

File tree

9 files changed

+50
-12
lines changed

9 files changed

+50
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.15](https://github.com/graphql-hive/router/compare/hive-router-v0.0.14...hive-router-v0.0.15) - 2025-10-27
11+
12+
### <!-- 0 -->New Features
13+
14+
- *(router)* added support for label overrides with `@override` ([#518](https://github.com/graphql-hive/router/pull/518))
15+
- *(config)* configuration override using env vars, enable/disable graphiql via config ([#519](https://github.com/graphql-hive/router/pull/519))
16+
17+
### <!-- 1 -->Bug Fixes
18+
19+
- *(query-planner, router)* fix introspection for federation v1 supergraph ([#526](https://github.com/graphql-hive/router/pull/526))
20+
21+
### <!-- 2 -->Refactoring
22+
23+
- *(error-handling)* add context to `PlanExecutionError` ([#513](https://github.com/graphql-hive/router/pull/513))
24+
1025
## [0.0.13](https://github.com/graphql-hive/router/compare/hive-router-v0.0.12...hive-router-v0.0.13) - 2025-10-23
1126

1227
### Added

bin/router/Cargo.toml

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

1818
[dependencies]
19-
hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.1" }
20-
hive-router-plan-executor = { path = "../../lib/executor", version = "5.0.0" }
21-
hive-router-config = { path = "../../lib/router-config", version = "0.0.9" }
19+
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" }
2222

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

lib/executor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### <!-- 0 -->New Features
13+
14+
- *(router)* added support for label overrides with `@override` ([#518](https://github.com/graphql-hive/router/pull/518))
15+
16+
### <!-- 2 -->Refactoring
17+
18+
- *(error-handling)* add context to `PlanExecutionError` ([#513](https://github.com/graphql-hive/router/pull/513))
19+
1020
## [5.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v4.0.0...hive-router-plan-executor-v5.0.0) - 2025-10-23
1121

1222
### Added

lib/executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hive-router-plan-executor"
3-
version = "5.0.0"
3+
version = "6.0.0"
44
edition = "2021"
55
description = "GraphQL query planner executor for Federation specification"
66
license = "MIT"
@@ -12,7 +12,7 @@ authors = ["The Guild"]
1212
[lib]
1313

1414
[dependencies]
15-
hive-router-query-planner = { path = "../query-planner", version = "2.0.1" }
15+
hive-router-query-planner = { path = "../query-planner", version = "2.0.2" }
1616
hive-router-config = { path = "../router-config", version = "0" }
1717

1818
graphql-parser = { workspace = true }

lib/query-planner/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+
## [2.0.2](https://github.com/graphql-hive/router/compare/hive-router-query-planner-v2.0.1...hive-router-query-planner-v2.0.2) - 2025-10-27
11+
12+
### <!-- 1 -->Bug Fixes
13+
14+
- *(query-planner, router)* fix introspection for federation v1 supergraph ([#526](https://github.com/graphql-hive/router/pull/526))
15+
1016
## [2.0.1](https://github.com/graphql-hive/router/compare/hive-router-query-planner-v2.0.0...hive-router-query-planner-v2.0.1) - 2025-10-23
1117

1218
### Fixed

lib/query-planner/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-query-planner"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
edition = "2021"
55
description = "GraphQL query planner for Federation specification"
66
license = "MIT"

lib/router-config/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.10](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.9...hive-router-config-v0.0.10) - 2025-10-27
11+
12+
### <!-- 0 -->New Features
13+
14+
- *(router)* added support for label overrides with `@override` ([#518](https://github.com/graphql-hive/router/pull/518))
15+
- *(config)* configuration override using env vars, enable/disable graphiql via config ([#519](https://github.com/graphql-hive/router/pull/519))
16+
1017
## [0.0.8](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.7...hive-router-config-v0.0.8) - 2025-10-23
1118

1219
### Added

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.9"
3+
version = "0.0.10"
44
edition = "2021"
55
publish = true
66
license = "MIT"

0 commit comments

Comments
 (0)