Skip to content

Commit b6b3bb0

Browse files
lennyburdetteMeschreiberDaleSeo
authored
merge main (#3263)
<!-- First, 🌠 thank you 🌠 for taking the time to consider a contribution to Apollo! Here are some important details to follow: * ⏰ Your time is important To save your precious time, if the contribution you are making will take more than an hour, please make sure it has been discussed in an issue first. This is especially true for feature requests! * 💡 Features Feature requests can be created and discussed within a GitHub Issue. Be sure to search for existing feature requests (and related issues!) prior to opening a new request. If an existing issue covers the need, please upvote that issue by using the 👍 emote, rather than opening a new issue. * 🕷 Bug fixes These can be created and discussed in this repository. When fixing a bug, please _try_ to add a test which verifies the fix. If you cannot, you should still submit the PR but we may still ask you (and help you!) to create a test. * Federation versions Please make sure you're targeting the federation version you're opening the PR for. Federation 2 (alpha) is currently located on the `main` branch and prior versions of Federation live on the `version-0.x` branch. * 📖 Contribution guidelines Follow https://github.com/apollographql/federation/blob/HEAD/CONTRIBUTING.md when submitting a pull request. Make sure existing tests still pass, and add tests for all new behavior. * ✏️ Explain your pull request Describe the big picture of your changes here to communicate to what your pull request is meant to accomplish. Provide 🔗 links 🔗 to associated issues! We hope you will find this to be a positive experience! Open source contribution can be intimidating and we hope to alleviate that pain as much as possible. Without following these guidelines, you may be missing context that can help you succeed with your contribution, which is why we encourage discussion first. Ultimately, there is no guarantee that we will be able to merge your pull-request, but by following these guidelines we can try to avoid disappointment. --> --------- Co-authored-by: Maria Elisabeth Schreiber <[email protected]> Co-authored-by: Dale Seo <[email protected]>
1 parent 7c64ed0 commit b6b3bb0

File tree

3 files changed

+4
-28
lines changed

3 files changed

+4
-28
lines changed

docs/source/reference/federation/versions.mdx

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,8 @@ For a comprehensive changelog for Apollo Federation and its associated libraries
3434
| ------------- | --------------------- | ---------------------- |
3535
| **February 2025** | **Yes** | **`2.0.0`** |
3636

37-
#### Directive changes
38-
39-
#### `@connect`
40-
41-
Introduced. [Learn more](/graphos/schema-design/connectors/directives#connect).
42-
43-
```graphql showLineNumbers=false disableCopy=true
44-
directive @connect(
45-
source: String
46-
http: ConnectHTTP!
47-
selection: JSONSelection!
48-
entity: Boolean
49-
) repeatable on FIELD_DEFINITION;
50-
51-
```
52-
53-
#### `@source`
54-
55-
Introduced. [Learn more](/graphos/schema-design/connectors/directives#source).
56-
57-
```graphql showLineNumbers=false disableCopy=true
58-
directive @source(
59-
name: String!
60-
http: SourceHTTP!
61-
) repeatable on SCHEMA;
62-
```
37+
Federation v2.10 is a prerequisite for the Connector specification that introduces the `@connect` and `@source` directives.
38+
[Learn more.](/graphos/schema-design/connectors/directives)
6339

6440
## v2.9
6541

docs/source/reference/migration/backward-compatibility.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Frequently asked questions when transitioning from Apollo Federatio
66

77
## Is official support ending for `@apollo/gateway` v0.x?
88

9-
Yes. As of 15 November 2022, `@apollo/gateway` v0.x is officially deprecated, with end-of-life scheduled for 22 September 2023. `@apollo/gateway` v2.x remains fully supported.
9+
Yes. `@apollo/gateway` v0.x was officially deprecated as of 15 November 2022 and reached end-of-life on 22 September 2023. `@apollo/gateway` v2.x remains fully supported.
1010

1111
[Learn more about deprecation and end-of-life.](https://www.apollographql.com/docs/resources/product-launch-stages#stages-for-discontinuing-support)
1212

docs/source/schema-design/federated-schemas/entities/intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ type Product @key(fields: "upc") {
106106
```graphql title="Reviews subgraph"
107107
type Product @key(fields: "productUpc") {
108108
productUpc: ID!
109-
inStock: Boolean!
109+
rating: Int!
110110
}
111111
```
112112

0 commit comments

Comments
 (0)