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
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions bin/router/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.10](https://github.com/graphql-hive/router/compare/hive-router-v0.0.9...hive-router-v0.0.10) - 2025-09-30

### Other

- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462))
Comment on lines +10 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This changelog entry seems unrelated to the hive-router crate. This release updates core dependencies like hive-router-query-planner and hive-router-plan-executor to new major versions (v2.0.0) with breaking changes. This is a significant update and should be clearly communicated in the changelog, as it can affect the router's behavior.


## [0.0.9](https://github.com/graphql-hive/router/compare/hive-router-v0.0.8...hive-router-v0.0.9) - 2025-09-09

### Fixed
Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.0.10"
edition = "2021"
description = "GraphQL router/gateway for Federation"
license = "MIT"
Expand All @@ -16,9 +16,9 @@ name = "hive_router"
path = "src/main.rs"

[dependencies]
hive-router-query-planner = { path = "../../lib/query-planner", version = "1.0.0" }
hive-router-plan-executor = { path = "../../lib/executor", version = "1.0.4" }
hive-router-config = { path = "../../lib/router-config", version = "0.0.4" }
hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.0" }
hive-router-plan-executor = { path = "../../lib/executor", version = "2.0.0" }
hive-router-config = { path = "../../lib/router-config", version = "0.0.5" }

tokio = { workspace = true }
futures = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions lib/executor/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]

## [2.0.0](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v1.0.4...hive-router-plan-executor-v2.0.0) - 2025-09-30

### Other

- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462))
Comment on lines +10 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This major version bump to 2.0.0 includes breaking changes that are not documented in the changelog. The PR description lists these changes, and they should be included here to inform users about the impact of upgrading. The current changelog entry appears to be unrelated to this crate.


## [1.0.4](https://github.com/graphql-hive/router/compare/hive-router-plan-executor-v1.0.3...hive-router-plan-executor-v1.0.4) - 2025-09-09

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions 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 = "1.0.4"
version = "2.0.0"
edition = "2021"
description = "GraphQL query planner executor for Federation specification"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ authors = ["The Guild"]
[lib]

[dependencies]
hive-router-query-planner = { path = "../query-planner", version = "1.0.0" }
hive-router-query-planner = { path = "../query-planner", version = "2.0.0" }
hive-router-config = { path = "../router-config", version = "0" }

graphql-parser = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions lib/query-planner/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]

## [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-09-30

### Other

- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462))
Comment on lines +10 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This is a major version release (2.0.0), but the changelog is missing the list of breaking changes. The PR description details these breaking changes, and they are critical for users to understand when upgrading. Please update this changelog to include them. The current entry about a TypeScript dependency seems incorrect for this crate.


## [1.0.0](https://github.com/graphql-hive/router/compare/hive-router-query-planner-v0.0.1...hive-router-query-planner-v1.0.0) - 2025-09-01

### Other
Expand Down
2 changes: 1 addition & 1 deletion lib/query-planner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hive-router-query-planner"
version = "1.0.0"
version = "2.0.0"
edition = "2021"
description = "GraphQL query planner 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.5](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.4...hive-router-config-v0.0.5) - 2025-09-30

### Other

- *(deps)* update dependency typescript to v5.9.3 ([#462](https://github.com/graphql-hive/router/pull/462))
Comment on lines +10 to +14
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The changelog entry about a TypeScript dependency update seems incorrect for this Rust crate. For a patch release with no user-facing changes, it would be clearer to state that it's a maintenance release, for example, by mentioning internal dependency updates.


## [0.0.4](https://github.com/graphql-hive/router/compare/hive-router-config-v0.0.3...hive-router-config-v0.0.4) - 2025-09-09

### Other
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.4"
version = "0.0.5"
edition = "2021"
publish = true
license = "MIT"
Expand Down
Loading