@apollo/federation-internals 2.0.6-rc.1 → 2.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG for `@apollo/federation-internals`
2
2
 
3
+ ## 2.1.0-alpha.0
4
+
5
+ - Expand support for Node.js v18 [PR #1884](https://github.com/apollographql/federation/pull/1884)
6
+
3
7
  ## 2.0.4
4
8
 
5
9
  - Fix issue when all root operations were defined in an `extend schema` [PR #1875](https://github.com/apollographql/federation/issues/1875).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/federation-internals",
3
- "version": "2.0.6-rc.1",
3
+ "version": "2.1.0-alpha.0",
4
4
  "description": "Apollo Federation internal utilities",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "author": "Apollo <packages@apollographql.com>",
21
21
  "license": "SEE LICENSE IN ./LICENSE",
22
22
  "engines": {
23
- "node": ">=12.13.0 <18.0"
23
+ "node": ">=12.13.0"
24
24
  },
25
25
  "dependencies": {
26
26
  "@apollo/core-schema": "~0.3.0",
@@ -33,5 +33,5 @@
33
33
  "peerDependencies": {
34
34
  "graphql": "^16.0.0"
35
35
  },
36
- "gitHead": "c0c6839db48592ca21749ef8a16c3545d606fd74"
36
+ "gitHead": "721a0143e418d64e538082b301862ca9417e830c"
37
37
  }