Skip to content

Commit 0fbf864

Browse files
Version Packages (alpha) (#6818)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent eca003f commit 0fbf864

File tree

8 files changed

+44
-14
lines changed

8 files changed

+44
-14
lines changed

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
"@apollo/server-integration-testsuite": "3.6.7",
66
"@apollo/server-plugin-response-cache": "3.6.7",
77
"@apollo/server": "3.6.7",
8-
"@apollo/usage-reporting-protobuf": "3.3.1"
8+
"@apollo/usage-reporting-protobuf": "3.3.1",
9+
"@apollo/server-plugin-landing-page-graphql-playground": "3.0.0"
910
},
1011
"changesets": [
1112
"eleven-needles-collect",
1213
"famous-parents-argue",
1314
"hip-cheetahs-fail",
1415
"lazy-emus-hunt",
1516
"neat-buckets-marry",
17+
"ninety-panthers-accept",
1618
"ninety-tips-unite",
1719
"old-insects-smash",
1820
"pink-eggs-draw",

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/integration-testsuite/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @apollo/server-integration-testsuite
22

3+
## 4.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- [#6817](https://github.com/apollographql/apollo-server/pull/6817) [`eca003fdc`](https://github.com/apollographql/apollo-server/commit/eca003fdc75bdb63153e68119b9891d2bffc6545) Thanks [@glasser](https://github.com/glasser)! - Move ApolloServerPluginGraphQLPlayground into its own package.
8+
9+
- Updated dependencies [[`eca003fdc`](https://github.com/apollographql/apollo-server/commit/eca003fdc75bdb63153e68119b9891d2bffc6545)]:
10+
- @apollo/server-plugin-landing-page-graphql[email protected]
11+
- @apollo/server@4.0.0-alpha.7
12+
313
## 4.0.0-alpha.6
414

515
### Patch Changes

packages/integration-testsuite/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/server-integration-testsuite",
3-
"version": "4.0.0-alpha.6",
3+
"version": "4.0.0-alpha.7",
44
"description": "Test suite for Apollo Server integrations",
55
"type": "module",
66
"main": "dist/index.js",
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@apollo/cache-control-types": "^1.0.2",
3131
"@apollo/client": "^3.6.9",
32-
"@apollo/server-plugin-landing-page-graphql-playground": "3.0.0",
32+
"@apollo/server-plugin-landing-page-graphql-playground": "4.0.0-alpha.0",
3333
"@apollo/utils.keyvaluecache": "^1.0.1",
3434
"@apollo/utils.createhash": "^1.1.0",
3535
"@apollo/usage-reporting-protobuf": "^4.0.0-alpha.1",
@@ -42,7 +42,7 @@
4242
"supertest": "^6.2.3"
4343
},
4444
"peerDependencies": {
45-
"@apollo/server": "^4.0.0-alpha.6",
45+
"@apollo/server": "^4.0.0-alpha.7",
4646
"@jest/globals": "28.x",
4747
"graphql": "^16.5.0",
4848
"jest": "28.x"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @apollo/server-plugin-landing-page-graphql-playground
2+
3+
## 4.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- [#6817](https://github.com/apollographql/apollo-server/pull/6817) [`eca003fdc`](https://github.com/apollographql/apollo-server/commit/eca003fdc75bdb63153e68119b9891d2bffc6545) Thanks [@glasser](https://github.com/glasser)! - Move ApolloServerPluginGraphQLPlayground into its own package.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`eca003fdc`](https://github.com/apollographql/apollo-server/commit/eca003fdc75bdb63153e68119b9891d2bffc6545)]:
12+
- @apollo/server@4.0.0-alpha.7

packages/plugin-landing-page-graphql-playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/server-plugin-landing-page-graphql-playground",
3-
"version": "3.0.0",
3+
"version": "4.0.0-alpha.0",
44
"description": "Apollo Server landing page plugin for GraphQL Playground",
55
"type": "module",
66
"main": "dist/cjs/index.js",
@@ -32,6 +32,6 @@
3232
"@apollographql/graphql-playground-html": "1.6.29"
3333
},
3434
"peerDependencies": {
35-
"@apollo/server": "^4.0.0-alpha.6"
35+
"@apollo/server": "^4.0.0-alpha.7"
3636
}
3737
}

packages/server/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @apollo/server
22

3+
## 4.0.0-alpha.7
4+
5+
### Patch Changes
6+
7+
- [#6817](https://github.com/apollographql/apollo-server/pull/6817) [`eca003fdc`](https://github.com/apollographql/apollo-server/commit/eca003fdc75bdb63153e68119b9891d2bffc6545) Thanks [@glasser](https://github.com/glasser)! - Move ApolloServerPluginGraphQLPlayground into its own package.
8+
39
## 4.0.0-alpha.6
410

511
### Patch Changes

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/server",
3-
"version": "4.0.0-alpha.6",
3+
"version": "4.0.0-alpha.7",
44
"description": "Core engine for Apollo GraphQL server",
55
"type": "module",
66
"main": "dist/cjs/index.js",

0 commit comments

Comments
 (0)