Skip to content

Commit 6ac5082

Browse files
authored
Get v4 initial alpha ready for release (#6680)
* direnv: allow a gitignored .env file * changeset: clear pre state because we have added more packages * changeset add * changeset pre enter alpha * changeset version * changeset config tweaks - We are only publishing public packages so let's do that. - For now, we're not doing changesets on main, so baseBranch should be version-4. * package-lock update
1 parent ff9ae17 commit 6ac5082

File tree

15 files changed

+86
-27
lines changed

15 files changed

+86
-27
lines changed

.changeset/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
],
77
"commit": false,
88
"fixed": [["@apollo/server", "@apollo/server-integration-testsuite"]],
9-
"access": "restricted",
10-
"baseBranch": "main",
9+
"access": "public",
10+
"baseBranch": "version-4",
1111
"updateInternalDependencies": "patch",
1212
"ignore": []
1313
}

.changeset/great-hats-rhyme.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
"mode": "pre",
33
"tag": "alpha",
44
"initialVersions": {
5+
"@apollo/server-integration-testsuite": "3.6.7",
6+
"@apollo/server-plugin-response-cache": "3.6.7",
57
"@apollo/server": "3.6.7",
68
"@apollo/usage-reporting-protobuf": "3.3.1"
79
},
8-
"changesets": []
10+
"changesets": [
11+
"small-cycles-hammer"
12+
]
913
}

.changeset/small-cycles-hammer.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@apollo/server-integration-testsuite": major
3+
"@apollo/server-plugin-response-cache": major
4+
"@apollo/server": major
5+
"@apollo/usage-reporting-protobuf": major
6+
---
7+
8+
Initial Apollo Server 4 release

.envrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,11 @@ if ! [ -f "$VOLTA_HOME/bin/volta" ]; then
1010
CURL_CA_BUNDLE=.cacert.pem bash -c 'curl https://get.volta.sh/ | bash'
1111
fi
1212

13+
# Lets you add more environment variables if you want. (For example, GITHUB_TOKEN
14+
# for changesets.)
15+
if [ -f .env ]; then
16+
dotenv .env
17+
fi
18+
1319
# Allow you to run jest and other things in node_modules/.bin without npx.
1420
layout node

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ smoke-test/generated
3838

3939
# This file is written by postinstall scripts.
4040
packages/server/src/generated/packageVersion.ts
41+
42+
# Lets you add more env vars.
43+
.env

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# @apollo/server-integration-testsuite
2+
3+
## 4.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- [`f39d9eec7`](https://github.com/apollographql/apollo-server/commit/f39d9eec7ab72d0f471a0bb0646dd42ad81c56cf) Thanks [@glasser](https://github.com/glasser)! - Initial Apollo Server 4 release
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`f39d9eec7`](https://github.com/apollographql/apollo-server/commit/f39d9eec7ab72d0f471a0bb0646dd42ad81c56cf)]:
12+
- @apollo/server@4.0.0-alpha.0
13+
- @apollo/usage-reporting-protobuf@4.0.0-alpha.0

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": "3.6.7",
3+
"version": "4.0.0-alpha.0",
44
"description": "Test suite for Apollo Server integrations",
55
"type": "module",
66
"main": "dist/index.js",
@@ -30,7 +30,7 @@
3030
"@apollo/client": "^3.6.9",
3131
"@apollo/utils.keyvaluecache": "^1.0.1",
3232
"@apollo/utils.createhash": "^1.1.0",
33-
"@apollo/usage-reporting-protobuf": "^3.3.1",
33+
"@apollo/usage-reporting-protobuf": "^4.0.0-alpha.0",
3434
"@josephg/resolvable": "^1.0.1",
3535
"body-parser": "^1.20.0",
3636
"express": "^4.18.1",
@@ -40,7 +40,7 @@
4040
"supertest": "^6.2.3"
4141
},
4242
"peerDependencies": {
43-
"@apollo/server": "^3.6.7",
43+
"@apollo/server": "^4.0.0-alpha.0",
4444
"@jest/globals": "28.x",
4545
"graphql": "^16.5.0",
4646
"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-response-cache
2+
3+
## 4.0.0-alpha.0
4+
5+
### Major Changes
6+
7+
- [`f39d9eec7`](https://github.com/apollographql/apollo-server/commit/f39d9eec7ab72d0f471a0bb0646dd42ad81c56cf) Thanks [@glasser](https://github.com/glasser)! - Initial Apollo Server 4 release
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`f39d9eec7`](https://github.com/apollographql/apollo-server/commit/f39d9eec7ab72d0f471a0bb0646dd42ad81c56cf)]:
12+
- @apollo/server@4.0.0-alpha.0

0 commit comments

Comments
 (0)