Skip to content

Conversation

theguild-bot
Copy link
Collaborator

🤖 New release

  • hive-router-config: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • hive-router-plan-executor: 2.0.0 -> 3.0.0 (⚠ API breaking changes)
  • hive-router: 0.0.10 -> 0.0.11 (✓ API compatible changes)

hive-router-plan-executor breaking changes

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.43.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field HttpExecutionRequest.headers in /tmp/.tmpDmZg0Y/router/lib/executor/src/executors/common.rs:31
  field QueryPlanExecutionContext.headers_plan in /tmp/.tmpDmZg0Y/router/lib/executor/src/execution/plan.rs:61
  field QueryPlanExecutionContext.client_request in /tmp/.tmpDmZg0Y/router/lib/executor/src/execution/plan.rs:64
  field ExecutionContext.response_headers_aggregator in /tmp/.tmpDmZg0Y/router/lib/executor/src/context.rs:15

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.43.0/src/lints/enum_variant_added.ron

Failed in:
  variant PlanExecutionError:HeaderPropagation in /tmp/.tmpDmZg0Y/router/lib/executor/src/execution/error.rs:8

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.43.0/src/lints/method_parameter_count_changed.ron

Failed in:
  hive_router_plan_executor::execution::plan::Executor::new now takes 6 parameters instead of 4, in /tmp/.tmpDmZg0Y/router/lib/executor/src/execution/plan.rs:215

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.43.0/src/lints/struct_missing.ron

Failed in:
  struct hive_router_plan_executor::executors::dedupe::RequestFingerprint, previously in file /tmp/.tmpA3YAI4/hive-router-plan-executor/src/executors/dedupe.rs:15
Changelog

hive-router-config

0.0.6 - 2025-10-06

Added

  • (router) Advanced Header Management (#438)

hive-router-plan-executor

3.0.0 - 2025-10-06

Added

  • (router) Advanced Header Management (#438)

hive-router

0.0.11 - 2025-10-06

Added

  • (router) Advanced Header Management (#438)


This PR was generated with release-plz.

Copy link
Contributor

Summary of Changes

Hello @theguild-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request performs a routine release of the hive-router component ecosystem, introducing new versions for hive-router-config, hive-router-plan-executor, and hive-router. The primary driver for these updates is the integration of an 'Advanced Header Management' feature. Notably, the hive-router-plan-executor module undergoes a major version increment due to several API-breaking changes necessitated by this new functionality.

Highlights

  • Package Releases: New versions have been released for hive-router-config (0.0.6), hive-router-plan-executor (3.0.0), and hive-router (0.0.11).
  • Feature Introduction: The core change across the updated packages is the introduction of an 'Advanced Header Management' feature, as detailed in pull request feat(router): Advanced Header Management #438.
  • Breaking Changes in hive-router-plan-executor: The hive-router-plan-executor module received a major version bump due to several API breaking changes. These include new public fields in constructible structs (e.g., HttpExecutionRequest.headers), an added variant to an exhaustive enum (PlanExecutionError:HeaderPropagation), a change in the parameter count for the Executor::new method (from 4 to 6 parameters), and the removal or renaming of the RequestFingerprint struct.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request automates a new release for several crates: hive-router-config, hive-router-plan-executor, and hive-router. The changes consist of version bumps in the respective Cargo.toml files and the Cargo.lock file, along with updates to the CHANGELOG.md files to document the new releases. The version changes, including a major version bump for hive-router-plan-executor to 3.0.0 due to breaking changes, are consistent and correctly implemented. The pull request appears to be in good order for a release.

Copy link

github-actions bot commented Oct 6, 2025

k6-benchmark results

     ✓ response code was 200
     ✓ no graphql errors
     ✓ valid response structure

     █ setup

     checks.........................: 100.00% ✓ 225846      ✗ 0    
     data_received..................: 6.6 GB  220 MB/s
     data_sent......................: 88 MB   2.9 MB/s
     http_req_blocked...............: avg=3.66µs   min=671ns   med=1.79µs  max=10.46ms  p(90)=2.57µs  p(95)=3.01µs  
     http_req_connecting............: avg=879ns    min=0s      med=0s      max=2.8ms    p(90)=0s      p(95)=0s      
     http_req_duration..............: avg=19.43ms  min=1.93ms  med=18.44ms max=108.86ms p(90)=26.9ms  p(95)=30.13ms 
       { expected_response:true }...: avg=19.43ms  min=1.93ms  med=18.44ms max=108.86ms p(90)=26.9ms  p(95)=30.13ms 
     http_req_failed................: 0.00%   ✓ 0           ✗ 75302
     http_req_receiving.............: avg=137.25µs min=25.38µs med=40.17µs max=49.41ms  p(90)=93.02µs p(95)=385.92µs
     http_req_sending...............: avg=25.77µs  min=5.53µs  med=10.63µs max=31.87ms  p(90)=16.6µs  p(95)=29.27µs 
     http_req_tls_handshaking.......: avg=0s       min=0s      med=0s      max=0s       p(90)=0s      p(95)=0s      
     http_req_waiting...............: avg=19.27ms  min=1.87ms  med=18.3ms  max=105.41ms p(90)=26.67ms p(95)=29.83ms 
     http_reqs......................: 75302   2505.424368/s
     iteration_duration.............: avg=19.91ms  min=5.69ms  med=18.8ms  max=271.02ms p(90)=27.35ms p(95)=30.63ms 
     iterations.....................: 75282   2504.758935/s
     vus............................: 50      min=50        max=50 
     vus_max........................: 50      min=50        max=50 

Copy link

github-actions bot commented Oct 6, 2025

🐋 This PR was built and pushed to the following Docker images:

Image Names: ghcr.io/graphql-hive/router

Platforms: linux/amd64,linux/arm64

Image Tags: ghcr.io/graphql-hive/router:pr-470 ghcr.io/graphql-hive/router:sha-09de3f2

Docker metadata
{
"buildx.build.ref": "builder-f7f5bebd-769b-48fd-b260-a86e7ae90feb/builder-f7f5bebd-769b-48fd-b260-a86e7ae90feb0/30wupv87y6ckkiitchc8cx67j",
"containerimage.descriptor": {
  "mediaType": "application/vnd.oci.image.index.v1+json",
  "digest": "sha256:254cadb21b8af9ffb18416a447db1d8d86b25d287c136f21119290587ecd954c",
  "size": 1609
},
"containerimage.digest": "sha256:254cadb21b8af9ffb18416a447db1d8d86b25d287c136f21119290587ecd954c",
"image.name": "ghcr.io/graphql-hive/router:pr-470,ghcr.io/graphql-hive/router:sha-09de3f2"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant