Skip to content

Commit 8feb612

Browse files
authored
Fix changeset for hive-console-sdk (#575)
It had invalid scope and syntax
1 parent afd9442 commit 8feb612

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
2-
default: minor
2+
router: minor
33
---
44

5-
Use `hive-console-sdk` to load supergraph from Hive Console instead of custom implementation.
5+
# Use `hive-console-sdk` to load supergraph from Hive CDN
66

7-
### Breaking Changes
7+
**Breaking Changes**
88

9-
The configuration for the `hive` supergraph source has been updated. The `timeout` field is now `request_timeout`, and new options `connect_timeout` and `accept_invalid_certs` have been added.
9+
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.
1010

11-
```yaml
11+
```diff
1212
supergraph:
1313
source: hive
1414
endpoint: "https://cdn.graphql-hive.com/supergraph"
1515
key: "YOUR_CDN_KEY"
16-
# Old `timeout` is now `request_timeout`
17-
request_timeout: 30s
18-
# New options
19-
connect_timeout: 10s
20-
accept_invalid_certs: false
16+
- timeout: 30s
17+
+ request_timeout: 30s # `request_timeout` replaces `timeout`
18+
+ connect_timeout: 10s # new option to control `connect` phase
19+
+ accept_invalid_certs: false # new option to allow accepting invalid TLS certificates
20+
```

0 commit comments

Comments
 (0)