Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-scheer committed Nov 20, 2023
2 parents e325b49 + 7903a29 commit cd00b17
Show file tree
Hide file tree
Showing 26 changed files with 658 additions and 531 deletions.
3 changes: 2 additions & 1 deletion .cspell/cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ overrides:
- filename: '**/CHANGELOG*.md'
ignoreRegExpList:
- "@[-\\w]+"
# Ignore the targets of links in Markdown/MDX files.
# Ignore the targets of links and YouTube IDs in Markdown/MDX files.
- filename: '**/*.md*'
ignoreRegExpList:
- "\\]\\([^)]+\\)"
- "youTubeID=.+/>"
# Ignore user and repo names in GitHub links to supported subgraph libraries.
- filename: '**/supported-subgraphs.md'
ignoreRegExpList:
Expand Down
7 changes: 7 additions & 0 deletions composition-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG for `@apollo/composition`

## 2.5.7
### Patch Changes

- Updated dependencies []:
- @apollo/federation-internals@2.5.7
- @apollo/query-graphs@2.5.7

## 2.5.6
### Patch Changes

Expand Down
6 changes: 3 additions & 3 deletions composition-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/composition",
"version": "2.5.6",
"version": "2.5.7",
"description": "Apollo Federation composition utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -27,8 +27,8 @@
"access": "public"
},
"dependencies": {
"@apollo/federation-internals": "2.5.6",
"@apollo/query-graphs": "2.5.6"
"@apollo/federation-internals": "2.5.7",
"@apollo/query-graphs": "2.5.7"
},
"peerDependencies": {
"graphql": "^16.5.0"
Expand Down
17 changes: 17 additions & 0 deletions docs/shared/diagrams/managed-federation.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
```mermaid
graph LR;
subgraph "Your infrastructure"
serviceA[Products subgraph];
serviceB[Reviews subgraph];
router([Router]);
end
subgraph "Apollo GraphOS"
registry{{Schema Registry}};
uplink{{Uplink}}
end
serviceA & serviceB -->|"Publishes<br/>schema"| registry;
registry -->|"Updates<br/>config"| uplink;
router -->|Polls for config changes| uplink;
class registry secondary;
class uplink secondary;
```
251 changes: 128 additions & 123 deletions docs/source/building-supergraphs/supported-subgraphs.md

Large diffs are not rendered by default.

Loading

0 comments on commit cd00b17

Please sign in to comment.