Commit afda209
authored
Upcoming Release Changes (#200)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.
# Releases
## @theguild/[email protected]
### Patch Changes
-
[#198](#198)
[`1b98c17`](1b98c17)
Thanks [@user!](https://github.com/User!),
[@user!](https://github.com/User!)! - Fix public schema SDL in case a
object type implements an inaccessible interface.
Composing the following subgraph:
```graphql
schema
@link(
url: "https://specs.apollo.dev/federation/v2.3"
import: ["@inaccessible"]
) {
query: Query
}
type Query {
}
interface Node @inaccessible {
id: ID!
}
type User implements Node {
id: ID!
}
```
now result in the following valid public SDL:
```diff
type Query {
}
- type User implements Node {
+ type User {
id: ID!
}
```
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>1 parent 1b98c17 commit afda209
3 files changed
+44
-44
lines changedThis file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
3 | 46 | | |
4 | 47 | | |
5 | 48 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments