Skip to content

Commit eedc1d5

Browse files
chore(release): router crates and artifacts (#576)
> [!IMPORTANT] > Merging this pull request will create these releases # router 0.0.19 (2025-11-19) ## Features ### Use `hive-console-sdk` to load supergraph from Hive CDN **Breaking Changes** The configuration for the `hive` source has been updated to offer more specific timeout controls and support for self-signed certificates. The `timeout` field has been renamed. ```diff supergraph: source: hive endpoint: "https://cdn.graphql-hive.com/supergraph" key: "YOUR_CDN_KEY" - timeout: 30s + request_timeout: 30s # `request_timeout` replaces `timeout` + connect_timeout: 10s # new option to control `connect` phase + accept_invalid_certs: false # new option to allow accepting invalid TLS certificates ``` Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>
1 parent 8feb612 commit eedc1d5

File tree

4 files changed

+23
-22
lines changed

4 files changed

+23
-22
lines changed

.changeset/use_hive_sdk_for_supergraph.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/router/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
116116
### Other
117117

118118
- *(deps)* update release-plz/action action to v0.5.113 ([#389](https://github.com/graphql-hive/router/pull/389))
119+
## 0.0.19 (2025-11-19)
120+
121+
### Features
122+
123+
#### Use `hive-console-sdk` to load supergraph from Hive CDN
124+
125+
**Breaking Changes**
126+
127+
The configuration for the `hive` source has been updated to offer more specific timeout controls and support for self-signed certificates. The `timeout` field has been renamed.
128+
129+
```diff
130+
supergraph:
131+
source: hive
132+
endpoint: "https://cdn.graphql-hive.com/supergraph"
133+
key: "YOUR_CDN_KEY"
134+
- timeout: 30s
135+
+ request_timeout: 30s # `request_timeout` replaces `timeout`
136+
+ connect_timeout: 10s # new option to control `connect` phase
137+
+ accept_invalid_certs: false # new option to allow accepting invalid TLS certificates
138+
```
139+
119140
## 0.0.18 (2025-11-18)
120141

121142
### Features

bin/router/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"
3-
version = "0.0.18"
3+
version = "0.0.19"
44
edition = "2021"
55
description = "GraphQL router/gateway for Federation"
66
license = "MIT"

0 commit comments

Comments
 (0)