File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " hive-router"
3- version = " 0.0.12 "
3+ version = " 0.0.13 "
44edition = " 2021"
55description = " GraphQL router/gateway for Federation"
66license = " MIT"
@@ -16,9 +16,9 @@ name = "hive_router"
1616path = " 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
2323tokio = { workspace = true }
2424futures = { workspace = true }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " hive-router-plan-executor"
3- version = " 4 .0.0"
3+ version = " 5 .0.0"
44edition = " 2021"
55description = " GraphQL query planner executor for Federation specification"
66license = " 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 " }
1616hive-router-config = { path = " ../router-config" , version = " 0" }
1717
1818graphql-parser = { workspace = true }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " hive-router-query-planner"
3- version = " 2.0.0 "
3+ version = " 2.0.1 "
44edition = " 2021"
55description = " GraphQL query planner for Federation specification"
66license = " MIT"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " hive-router-config"
3- version = " 0.0.7 "
3+ version = " 0.0.8 "
44edition = " 2021"
55publish = true
66license = " MIT"
You can’t perform that action at this time.
0 commit comments