From bed7dbfab8b2e05d39190319b4d24f060e399ee9 Mon Sep 17 00:00:00 2001 From: Chris Lenfest Date: Wed, 11 Jan 2023 09:19:35 -0600 Subject: [PATCH] Release 2.3.0-beta.2 (#2323) * release: 2.3.0-beta.2 --- .changeset/khaki-rocks-stare.md | 6 +++ .changeset/pre.json | 2 + RELEASING.md | 2 +- composition-js/package.json | 6 +-- .../package.json | 2 +- gateway-js/package.json | 8 +-- internals-js/package.json | 2 +- package-lock.json | 50 +++++++++---------- query-graphs-js/package.json | 4 +- query-planner-js/package.json | 6 +-- subgraph-js/package.json | 4 +- 11 files changed, 50 insertions(+), 42 deletions(-) create mode 100644 .changeset/khaki-rocks-stare.md diff --git a/.changeset/khaki-rocks-stare.md b/.changeset/khaki-rocks-stare.md new file mode 100644 index 000000000..7b1020788 --- /dev/null +++ b/.changeset/khaki-rocks-stare.md @@ -0,0 +1,6 @@ +--- +"@apollo/composition": patch +--- + +npm workspaces + \ No newline at end of file diff --git a/.changeset/pre.json b/.changeset/pre.json index 442ec1e90..ed80fdaa6 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,8 @@ "@apollo/subgraph": "2.3.0-alpha.0" }, "changesets": [ + "good-carrots-lick", + "khaki-rocks-stare", "many-rats-allow" ] } diff --git a/RELEASING.md b/RELEASING.md index 7c53188eb..130ae8b73 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -21,7 +21,7 @@ More details can be found in [the `changeset` docs for publishing](https://githu 1. Otherwise this is a major/minor/patch release: 1. `npx changeset version` to bump versions, create changelog entries, etc. 1. Review the changes to make sure they look correct. Note that there may be some log entries that may have been added without changesets that may need to be merged manually. Once everything looks good, commit the changes. -1. `gh pr create --title "Release $FEDERATION_RELEASE_VERSION" --body-file ./.github/APOLLO_RELEASE_TEMPLATE.md` +1. `gh pr create --title "Release $FEDERATION_RELEASE_VERSION" --body-file ./.github/PULL_REQUEST_TEMPLATE/APOLLO_RELEASE_TEMPLATE.md` ~~1. Tag the commit to begin the publishing process[^publishing] - For alpha/beta/preview `APOLLO_DIST_TAG=next npm run release:start-ci-publish` - For release `APOLLO_DIST_TAG=latest npm run release:start-ci-publish`~~ diff --git a/composition-js/package.json b/composition-js/package.json index 8fedc6374..57751aa96 100644 --- a/composition-js/package.json +++ b/composition-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/composition", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Federation composition utilities", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -27,8 +27,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2" }, "peerDependencies": { "graphql": "^16.5.0" diff --git a/federation-integration-testsuite-js/package.json b/federation-integration-testsuite-js/package.json index ea13d7c5a..4a818c21e 100644 --- a/federation-integration-testsuite-js/package.json +++ b/federation-integration-testsuite-js/package.json @@ -1,7 +1,7 @@ { "name": "apollo-federation-integration-testsuite", "private": true, - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Federation Integrations / Test Fixtures", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/gateway-js/package.json b/gateway-js/package.json index 2e3e78bb8..b319574f8 100644 --- a/gateway-js/package.json +++ b/gateway-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/gateway", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Gateway", "author": "Apollo ", "main": "dist/index.js", @@ -25,9 +25,9 @@ "access": "public" }, "dependencies": { - "@apollo/composition": "2.3.0-beta.1", - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-planner": "2.3.0-beta.1", + "@apollo/composition": "2.3.0-beta.2", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-planner": "2.3.0-beta.2", "@apollo/server-gateway-interface": "^1.0.2", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^1.1.0", diff --git a/internals-js/package.json b/internals-js/package.json index aab802223..e41f2c7f9 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/federation-internals", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Federation internal utilities", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/package-lock.json b/package-lock.json index cc2dab8d1..58c2710a6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -69,11 +69,11 @@ }, "composition-js": { "name": "@apollo/composition", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2" }, "engines": { "node": ">=14.15.0" @@ -84,7 +84,7 @@ }, "federation-integration-testsuite-js": { "name": "apollo-federation-integration-testsuite", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "graphql-tag": "^2.12.6", @@ -93,12 +93,12 @@ }, "gateway-js": { "name": "@apollo/gateway", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/composition": "2.3.0-beta.1", - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-planner": "2.3.0-beta.1", + "@apollo/composition": "2.3.0-beta.2", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-planner": "2.3.0-beta.2", "@apollo/server-gateway-interface": "^1.0.2", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^1.1.0", @@ -286,7 +286,7 @@ }, "internals-js": { "name": "@apollo/federation-internals", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "chalk": "^4.1.0", @@ -16096,10 +16096,10 @@ }, "query-graphs-js": { "name": "@apollo/query-graphs", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", "@types/uuid": "^8.3.4", "deep-equal": "^2.0.5", "ts-graphviz": "^0.16.0", @@ -16125,11 +16125,11 @@ }, "query-planner-js": { "name": "@apollo/query-planner", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" @@ -16143,11 +16143,11 @@ }, "subgraph-js": { "name": "@apollo/subgraph", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2" }, "engines": { "node": ">=14.15.0" @@ -16183,8 +16183,8 @@ "@apollo/composition": { "version": "file:composition-js", "requires": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2" } }, "@apollo/federation-internals": { @@ -16197,9 +16197,9 @@ "@apollo/gateway": { "version": "file:gateway-js", "requires": { - "@apollo/composition": "2.3.0-beta.1", - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-planner": "2.3.0-beta.1", + "@apollo/composition": "2.3.0-beta.2", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-planner": "2.3.0-beta.2", "@apollo/server-gateway-interface": "^1.0.2", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^1.1.0", @@ -16355,7 +16355,7 @@ "@apollo/query-graphs": { "version": "file:query-graphs-js", "requires": { - "@apollo/federation-internals": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", "@types/uuid": "^8.3.4", "deep-equal": "^2.0.5", "ts-graphviz": "^0.16.0", @@ -16373,8 +16373,8 @@ "@apollo/query-planner": { "version": "file:query-planner-js", "requires": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" @@ -16393,7 +16393,7 @@ "version": "file:subgraph-js", "requires": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2" } }, "@apollo/usage-reporting-protobuf": { diff --git a/query-graphs-js/package.json b/query-graphs-js/package.json index 4e86954a7..ac32cb312 100644 --- a/query-graphs-js/package.json +++ b/query-graphs-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-graphs", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Federation library to work with 'query graphs'", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -23,7 +23,7 @@ "node": ">=14.15.0" }, "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", "@types/uuid": "^8.3.4", "deep-equal": "^2.0.5", "ts-graphviz": "^0.16.0", diff --git a/query-planner-js/package.json b/query-planner-js/package.json index c1e246167..b8a6e846f 100644 --- a/query-planner-js/package.json +++ b/query-planner-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-planner", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Query Planner", "author": "Apollo ", "main": "dist/index.js", @@ -25,8 +25,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.3.0-beta.1", - "@apollo/query-graphs": "2.3.0-beta.1", + "@apollo/federation-internals": "2.3.0-beta.2", + "@apollo/query-graphs": "2.3.0-beta.2", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" diff --git a/subgraph-js/package.json b/subgraph-js/package.json index 962510609..6c1213342 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/subgraph", - "version": "2.3.0-beta.1", + "version": "2.3.0-beta.2", "description": "Apollo Subgraph Utilities", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -25,7 +25,7 @@ }, "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.3.0-beta.1" + "@apollo/federation-internals": "2.3.0-beta.2" }, "peerDependencies": { "graphql": "^16.5.0"