|
1 | 1 | # hive |
2 | 2 |
|
| 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 | + |
3 | 39 | ## 11.0.3 |
4 | 40 |
|
5 | 41 | ### Patch Changes |
|
0 commit comments