Skip to content

Commit 575edc9

Browse files
authored
chore: release (#514)
1 parent 29a6116 commit 575edc9

9 files changed

Lines changed: 68 additions & 12 deletions

File tree

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

88
## [Unreleased]
99

10+
## [0.0.13](https://github.com/graphql-hive/router/compare/hive-router-v0.0.12...hive-router-v0.0.13) - 2025-10-23
11+
12+
### Added
13+
14+
- *(router)* support `hive` as source for supergraph ([#400](https://github.com/graphql-hive/router/pull/400))
15+
16+
### Fixed
17+
18+
- *(router)* use 503 instead of 500 when router is not ready ([#512](https://github.com/graphql-hive/router/pull/512))
19+
- *(executor)* error logging in HTTP executor ([#498](https://github.com/graphql-hive/router/pull/498))
20+
- *(executor)* handle subgraph errors with extensions correctly ([#494](https://github.com/graphql-hive/router/pull/494))
21+
- *(ci)* fail when audit tests failing ([#495](https://github.com/graphql-hive/router/pull/495))
22+
- *(executor)* project scalars with object values correctly ([#492](https://github.com/graphql-hive/router/pull/492))
23+
- *(query-planner)* inline nested fragment spreads ([#502](https://github.com/graphql-hive/router/pull/502))
24+
25+
### Other
26+
27+
- Remove mimalloc override feature and use v3 ([#497](https://github.com/graphql-hive/router/pull/497))
28+
- Add affectedPath to GraphQLErrorExtensions ([#510](https://github.com/graphql-hive/router/pull/510))
29+
- Handle empty responses from subgraphs and failed entity calls ([#500](https://github.com/graphql-hive/router/pull/500))
30+
- Rename default config file to router.config ([#493](https://github.com/graphql-hive/router/pull/493))
31+
1032
## [0.0.12](https://github.com/graphql-hive/router/compare/hive-router-v0.0.11...hive-router-v0.0.12) - 2025-10-16
1133

1234
### 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.12"
3+
version = "0.0.13"
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.0" }
20-
hive-router-plan-executor = { path = "../../lib/executor", version = "4.0.0" }
21-
hive-router-config = { path = "../../lib/router-config", version = "0.0.7" }
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.8" }
2222

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

lib/executor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- *(router)* support `hive` as source for supergraph ([#400](https://github.com/graphql-hive/router/pull/400))
15+
16+
### Fixed
17+
18+
- *(executor)* handle subgraph errors with extensions correctly ([#494](https://github.com/graphql-hive/router/pull/494))
19+
- *(executor)* error logging in HTTP executor ([#498](https://github.com/graphql-hive/router/pull/498))
20+
- *(ci)* fail when audit tests failing ([#495](https://github.com/graphql-hive/router/pull/495))
21+
- *(executor)* project scalars with object values correctly ([#492](https://github.com/graphql-hive/router/pull/492))
22+
23+
### Other
24+
25+
- Add affectedPath to GraphQLErrorExtensions ([#510](https://github.com/graphql-hive/router/pull/510))
26+
- Handle empty responses from subgraphs and failed entity calls ([#500](https://github.com/graphql-hive/router/pull/500))
27+
1028
## [4.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v3.0.0...hive-router-plan-executor-v4.0.0) - 2025-10-16
1129

1230
### 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 = "4.0.0"
3+
version = "5.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.0" }
15+
hive-router-query-planner = { path = "../query-planner", version = "2.0.1" }
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.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
11+
12+
### Fixed
13+
14+
- *(query-planner)* inline nested fragment spreads ([#502](https://github.com/graphql-hive/router/pull/502))
15+
1016
## [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-10-05
1117

1218
### Other

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

lib/router-config/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+
## [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
11+
12+
### Added
13+
14+
- *(router)* support `hive` as source for supergraph ([#400](https://github.com/graphql-hive/router/pull/400))
15+
16+
### Other
17+
18+
- Rename default config file to router.config ([#493](https://github.com/graphql-hive/router/pull/493))
19+
1020
## [0.0.7](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.6...hive-router-config-v0.0.7) - 2025-10-16
1121

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

0 commit comments

Comments
 (0)