Commit f19de76
authored
Upcoming Release Changes (#148)
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
-
[#146](#146)
[`55b48e9`](55b48e9)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Resolve usage of
`@requires` `FieldSet` with a union field selection to raise an
`EXTERNAL_UNUSED` error.
-
[#150](#150)
[`9bd8016`](9bd8016)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Fix incorrectly raised
`IMPLEMENTED_BY_INACCESSIBLE` error for inaccessible object fields where
the object type is inaccessible.
For example the following subgraph, will no longer result in the error
`Field B.id is @inaccessible but implements the interface field Node.id,
which is in the API schema.`.
```graphql
schema
@link(url: "https://specs.apollo.dev/federation/v2.9", import: ["@tag"])
{
query: Query
}
type Query {
b(id: ID! @federation__inaccessible): B @federation__inaccessible
a(id: ID!): A
}
type B implements Node @federation__inaccessible {
id: ID! @federation__inaccessible
}
type A implements Node {
id: ID!
}
interface Node {
id: ID!
}
```
-
[#147](#147)
[`8c5bc0c`](8c5bc0c)
Thanks [@n1ru4l](https://github.com/n1ru4l)! - Add support for
`@provides` fragment selection sets on union type fields.
```graphql
type Query {
media: [Media] @Shareable @provides(fields: "... on Book { title }")
}
union Media = Book | Movie
```
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>1 parent 8c5bc0c commit f19de76
File tree
5 files changed
+44
-52
lines changed- .changeset
5 files changed
+44
-52
lines changedThis file was deleted.
This file was deleted.
This 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