Skip to content

Commit ebd7310

Browse files
theguild-botgithub-actions[bot]n1ru4l
authored
Upcoming Release Changes (#7178)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Laurin Quast <[email protected]>
1 parent 1f7f195 commit ebd7310

File tree

3 files changed

+47
-43
lines changed

3 files changed

+47
-43
lines changed

.changeset/grumpy-ads-flow.md

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

deployment/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
# hive
22

3+
## 8.5.1
4+
5+
### Patch Changes
6+
7+
- [#7177](https://github.com/graphql-hive/console/pull/7177)
8+
[`1f7f195`](https://github.com/graphql-hive/console/commit/1f7f1951b2b1ef76d0853a6588e39458e5e1a982)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue with native
10+
federation public SDL generation around inaccessible interfaces.
11+
12+
**Example supergraph:**
13+
14+
```
15+
schema
16+
@link(
17+
url: "https://specs.apollo.dev/federation/v2.3"
18+
import: ["@inaccessible"]
19+
) {
20+
query: Query
21+
}
22+
23+
type Query {
24+
user: User!
25+
}
26+
27+
interface Node @inaccessible {
28+
id: ID!
29+
}
30+
31+
type User implements Node {
32+
id: ID!
33+
}
34+
```
35+
36+
**Public Schema SDL output:**
37+
38+
```diff
39+
type Query {
40+
user: User!
41+
}
42+
43+
- type User implements Node {
44+
+ type User {
45+
id: ID!
46+
}
47+
```
48+
349
## 8.5.0
450

551
### Minor Changes

deployment/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hive",
3-
"version": "8.5.0",
3+
"version": "8.5.1",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

0 commit comments

Comments
 (0)