Skip to content

Commit fdbfb14

Browse files
Upcoming Release Changes (#6834)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8640004 commit fdbfb14

File tree

10 files changed

+71
-42
lines changed

10 files changed

+71
-42
lines changed

.changeset/afraid-years-look.md

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

.changeset/long-beds-bow.md

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

.changeset/plenty-clouds-obey.md

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

.changeset/tender-rings-explode.md

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

.changeset/tough-crabs-deny.md

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

.changeset/witty-bags-deny.md

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

deployment/CHANGELOG.md

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

3+
## 8.1.0
4+
5+
### Minor Changes
6+
7+
- [#6843](https://github.com/graphql-hive/console/pull/6843)
8+
[`d175fba`](https://github.com/graphql-hive/console/commit/d175fba8f17f36ce3205e14032eee89222f85f08)
9+
Thanks [@dotansimha](https://github.com/dotansimha)! - Make `Target.graphqlEndpointUrl` available
10+
in public GraphQL API
11+
12+
### Patch Changes
13+
14+
- [#6829](https://github.com/graphql-hive/console/pull/6829)
15+
[`e81cea8`](https://github.com/graphql-hive/console/commit/e81cea889c26b3ee0453defbfec5a78ba24e90a6)
16+
Thanks [@jdolle](https://github.com/jdolle)! - Add pg index for getSchemaVersionByActionId to
17+
improve lookup performance
18+
19+
- [#6850](https://github.com/graphql-hive/console/pull/6850)
20+
[`faa22bb`](https://github.com/graphql-hive/console/commit/faa22bbe662f0df7cca3b9045a22d495897714ee)
21+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix issue where contract composition marks types
22+
occuring in multiple subgraphs as `@inaccessible` despite being used within the public API schema.
23+
24+
- [#6845](https://github.com/graphql-hive/console/pull/6845)
25+
[`114e7bc`](https://github.com/graphql-hive/console/commit/114e7bcf6860030b668fb1af7faed3650c278a51)
26+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Update `@theguild/federation-composition` to
27+
`0.19.0`
28+
29+
Increases federation composition compatibility.
30+
31+
- Fix errors raised by `@requires` with union field selection set
32+
- Fix incorrectly raised `IMPLEMENTED_BY_INACCESSIBLE` error for inaccessible object fields where
33+
the object type is inaccessible.
34+
- Add support for `@provides` fragment selection sets on union type fields.
35+
- Fix issue where the satisfiability check raised an exception for fields that share different
36+
object type and interface definitions across subgraphs.
37+
- Fix issue where scalar type marked with `@inaccessible` does not fail the composition if all
38+
usages are not marked with `@inaccessible`.
39+
- Support composing executable directives from subgraphs into the supergraph
40+
41+
- [#6862](https://github.com/graphql-hive/console/pull/6862)
42+
[`6cf18b9`](https://github.com/graphql-hive/console/commit/6cf18b9d9c10dfcbd95d148571dc305eb5c71b4c)
43+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Show whether a breaking change is safe based on
44+
usage within the GitHub check-run summary.
45+
46+
- [#6864](https://github.com/graphql-hive/console/pull/6864)
47+
[`35a69a1`](https://github.com/graphql-hive/console/commit/35a69a1064319c74b9b76a521698ce1260383f08)
48+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Validate schema stitching output sdl. Previously,
49+
this caused invalid SDL to be promoted as the latest valid schema version.
50+
351
## 8.0.0
452

553
### Major 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.0.0",
3+
"version": "8.1.0",
44
"private": true,
55
"scripts": {
66
"generate": "tsx generate.ts",

packages/libraries/cli/CHANGELOG.md

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

3+
## 0.50.2
4+
5+
### Patch Changes
6+
7+
- [#6845](https://github.com/graphql-hive/console/pull/6845)
8+
[`114e7bc`](https://github.com/graphql-hive/console/commit/114e7bcf6860030b668fb1af7faed3650c278a51)
9+
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Update `@theguild/federation-composition` to
10+
`0.19.0`
11+
12+
Increases federation composition compatibility.
13+
14+
- Fix errors raised by `@requires` with union field selection set
15+
- Fix incorrectly raised `IMPLEMENTED_BY_INACCESSIBLE` error for inaccessible object fields where
16+
the object type is inaccessible.
17+
- Add support for `@provides` fragment selection sets on union type fields.
18+
- Fix issue where the satisfiability check raised an exception for fields that share different
19+
object type and interface definitions across subgraphs.
20+
- Fix issue where scalar type marked with `@inaccessible` does not fail the composition if all
21+
usages are not marked with `@inaccessible`.
22+
- Support composing executable directives from subgraphs into the supergraph
23+
324
## 0.50.1
425

526
### Patch Changes

packages/libraries/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/cli",
3-
"version": "0.50.1",
3+
"version": "0.50.2",
44
"description": "A CLI util to manage and control your GraphQL Hive",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)