Skip to content

Commit 01a68a9

Browse files
authored
chore: release (#476)
1 parent 39784f7 commit 01a68a9

File tree

7 files changed

+52
-8
lines changed

7 files changed

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

88
## [Unreleased]
99

10+
## [0.0.12](https://github.com/graphql-hive/router/compare/hive-router-v0.0.11...hive-router-v0.0.12) - 2025-10-16
11+
12+
### Added
13+
14+
- *(router)* Subgraph endpoint overrides ([#488](https://github.com/graphql-hive/router/pull/488))
15+
- *(router)* jwt auth ([#455](https://github.com/graphql-hive/router/pull/455))
16+
- *(router)* CORS support ([#473](https://github.com/graphql-hive/router/pull/473))
17+
- *(router)* CSRF prevention for browser requests ([#472](https://github.com/graphql-hive/router/pull/472))
18+
- *(executor)* include subgraph name and code to the errors ([#477](https://github.com/graphql-hive/router/pull/477))
19+
- *(executor)* normalize flatten errors for the final response ([#454](https://github.com/graphql-hive/router/pull/454))
20+
21+
### Fixed
22+
23+
- *(router)* fix graphiql autocompletion, and avoid serializing nulls for optional extension fields ([#485](https://github.com/graphql-hive/router/pull/485))
24+
- *(router)* improve csrf and other configs ([#487](https://github.com/graphql-hive/router/pull/487))
25+
- *(router)* allow null value for nullable scalar types while validating variables ([#483](https://github.com/graphql-hive/router/pull/483))
26+
1027
## [0.0.11](https://github.com/graphql-hive/router/compare/hive-router-v0.0.10...hive-router-v0.0.11) - 2025-10-08
1128

1229
### Added

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.11"
3+
version = "0.0.12"
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.0" }
20-
hive-router-plan-executor = { path = "../../lib/executor", version = "3.0.0" }
21-
hive-router-config = { path = "../../lib/router-config", version = "0.0.6" }
20+
hive-router-plan-executor = { path = "../../lib/executor", version = "4.0.0" }
21+
hive-router-config = { path = "../../lib/router-config", version = "0.0.7" }
2222

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

lib/executor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- *(router)* Subgraph endpoint overrides ([#488](https://github.com/graphql-hive/router/pull/488))
15+
- *(router)* jwt auth ([#455](https://github.com/graphql-hive/router/pull/455))
16+
- *(executor)* include subgraph name and code to the errors ([#477](https://github.com/graphql-hive/router/pull/477))
17+
- *(executor)* normalize flatten errors for the final response ([#454](https://github.com/graphql-hive/router/pull/454))
18+
19+
### Fixed
20+
21+
- *(router)* allow null value for nullable scalar types while validating variables ([#483](https://github.com/graphql-hive/router/pull/483))
22+
- *(router)* fix graphiql autocompletion, and avoid serializing nulls for optional extension fields ([#485](https://github.com/graphql-hive/router/pull/485))
23+
1024
## [3.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v2.0.0...hive-router-plan-executor-v3.0.0) - 2025-10-08
1125

1226
### Added

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

lib/router-config/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- *(router)* Subgraph endpoint overrides ([#488](https://github.com/graphql-hive/router/pull/488))
15+
- *(router)* jwt auth ([#455](https://github.com/graphql-hive/router/pull/455))
16+
- *(router)* CORS support ([#473](https://github.com/graphql-hive/router/pull/473))
17+
- *(router)* CSRF prevention for browser requests ([#472](https://github.com/graphql-hive/router/pull/472))
18+
19+
### Fixed
20+
21+
- *(router)* improve csrf and other configs ([#487](https://github.com/graphql-hive/router/pull/487))
22+
1023
## [0.0.6](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.5...hive-router-config-v0.0.6) - 2025-10-08
1124

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

0 commit comments

Comments
 (0)