Skip to content

Commit cdd75ce

Browse files
authored
Upcoming Release Changes (#8013)
1 parent 083a4a7 commit cdd75ce

16 files changed

Lines changed: 95 additions & 67 deletions

.changeset/brave-feet-occur.md

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

.changeset/busy-pandas-repair.md

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

.changeset/eight-mails-beg.md

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

.changeset/fuzzy-clocks-tickle.md

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

.changeset/khaki-sloths-marry.md

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

.changeset/odd-clouds-burn.md

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

.changeset/yummy-ants-begin.md

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

deployment/CHANGELOG.md

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

3+
## 11.0.4
4+
5+
### Patch Changes
6+
7+
- [#8016](https://github.com/graphql-hive/console/pull/8016)
8+
[`d0f3ef0`](https://github.com/graphql-hive/console/commit/d0f3ef04f5d1ffc70fdb7af2114cc7a5649ee763)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix Federation composition rule
10+
`REQUIRED_INACCESSIBLE` reporting a composition error if `@inaccessible` is applied on a
11+
non-nullable field with a default value.
12+
13+
In the following example schema the `Query.ping(message:)` argument no longer raises
14+
`REQUIRED_INACCESSIBLE`, as a default value for the argument is provided. The same behaviour
15+
applies for input type fields.
16+
17+
```graphql
18+
extend schema @link(url: "https://specs.apollo.dev/federation/v2.9", import: ["@inaccessible"])
19+
20+
type Query {
21+
ping(message: String! = "pong" @inaccessible): String!
22+
}
23+
```
24+
25+
- [#8003](https://github.com/graphql-hive/console/pull/8003)
26+
[`bea8b7c`](https://github.com/graphql-hive/console/commit/bea8b7c4f62be5e704c8709a50ae3ea7d0466fe3)
27+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Address vulnerability
28+
[GHSA-gh4j-gqv2-49f6](https://github.com/advisories/GHSA-gh4j-gqv2-49f6).
29+
30+
- [#8004](https://github.com/graphql-hive/console/pull/8004)
31+
[`c2d8360`](https://github.com/graphql-hive/console/commit/c2d83604b59b1f96c3382049c8a523d1fc0fd110)
32+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix various links to documentation pages.
33+
34+
- [#8003](https://github.com/graphql-hive/console/pull/8003)
35+
[`bea8b7c`](https://github.com/graphql-hive/console/commit/bea8b7c4f62be5e704c8709a50ae3ea7d0466fe3)
36+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Address vulnerability
37+
[GHSA-w5hq-g745-h8pq](https://github.com/advisories/GHSA-w5hq-g745-h8pq).
38+
339
## 11.0.3
440

541
### Patch 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": "11.0.3",
3+
"version": "11.0.4",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

packages/libraries/cli/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @graphql-hive/cli
22

3+
## 0.59.1
4+
5+
### Patch Changes
6+
7+
- [#8018](https://github.com/graphql-hive/console/pull/8018)
8+
[`083a4a7`](https://github.com/graphql-hive/console/commit/083a4a7d9f17b5cc86483c5ce274ec0496bcfdc1)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Correct fallback behavior for subgraph
10+
introspection. If subgraph introspection using graphql's standard introspection query fails, then
11+
it will fall back to Federation's Query.\_service query.
12+
13+
- [#8014](https://github.com/graphql-hive/console/pull/8014)
14+
[`32cdd14`](https://github.com/graphql-hive/console/commit/32cdd1474e510af21d5aa94029c3ad813e5baafd)
15+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Show correct error code (116) with origin service
16+
for failed introspection result.
17+
318
## 0.59.0
419

520
### Minor Changes

0 commit comments

Comments
 (0)