Skip to content

Commit b477de2

Browse files
Version Packages (alpha) (#8071)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `main` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `main`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @apollo/[email protected] ### Patch Changes - [#8070](#8070) [`0dee3c9`](0dee3c9) Thanks [@glasser](https://github.com/glasser)! - Provide dual-build CJS and ESM for `@apollo/server-integration-testsuite`. We previously provided only a CJS build of this package, unlike `@apollo/server` itself and the other helper packages that come with it. We may make all of Apollo Server ESM-only in AS5; this is a step in that direction. Specifically, only providing this package for CJS makes it challenging to run the tests in `ts-jest` in some ESM-only setups, because the copy of `@apollo/server` fetched directly in your ESM-based test may differ from the copy fetched indirectly via `@apollo/server-integration-testsuite`, causing the "lockstep versioning" test to fail. - Updated dependencies \[]: - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[]: - @apollo/[email protected] ## @apollo/[email protected] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7e0530c commit b477de2

File tree

8 files changed

+41
-12
lines changed

8 files changed

+41
-12
lines changed

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@
99
"@apollo/server": "4.12.1",
1010
"@apollo/usage-reporting-protobuf": "4.1.1"
1111
},
12-
"changesets": []
12+
"changesets": [
13+
"cool-monkeys-help"
14+
]
1315
}

package-lock.json

Lines changed: 6 additions & 6 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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @apollo/server-integration-testsuite
22

3+
## 4.12.2-alpha.0
4+
5+
### Patch Changes
6+
7+
- [#8070](https://github.com/apollographql/apollo-server/pull/8070) [`0dee3c9`](https://github.com/apollographql/apollo-server/commit/0dee3c93254507190f2548dec52fd4101d2175d1) Thanks [@glasser](https://github.com/glasser)! - Provide dual-build CJS and ESM for `@apollo/server-integration-testsuite`.
8+
9+
We previously provided only a CJS build of this package, unlike `@apollo/server`
10+
itself and the other helper packages that come with it. We may make all of
11+
Apollo Server ESM-only in AS5; this is a step in that direction. Specifically,
12+
only providing this package for CJS makes it challenging to run the tests in
13+
`ts-jest` in some ESM-only setups, because the copy of `@apollo/server` fetched
14+
directly in your ESM-based test may differ from the copy fetched indirectly via
15+
`@apollo/server-integration-testsuite`, causing the "lockstep versioning" test
16+
to fail.
17+
18+
- Updated dependencies []:
19+
- @apollo/server@4.12.2-alpha.0
20+
321
## 4.12.1
422

523
### Patch Changes

packages/integration-testsuite/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-integration-testsuite",
3-
"version": "4.12.1",
3+
"version": "4.12.2-alpha.0",
44
"description": "Test suite for Apollo Server integrations",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@apollo/cache-control-types": "^1.0.3",
4141
"@apollo/client": "^3.6.9",
42-
"@apollo/server": "4.12.1",
42+
"@apollo/server": "4.12.2-alpha.0",
4343
"@apollo/usage-reporting-protobuf": "^4.1.1",
4444
"@apollo/utils.createhash": "^2.0.2",
4545
"@apollo/utils.keyvaluecache": "^2.1.0",

packages/plugin-response-cache/CHANGELOG.md

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

3+
## 4.1.5-alpha.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @apollo/server@4.12.2-alpha.0
9+
310
## 4.1.4
411

512
### Patch Changes

packages/plugin-response-cache/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-response-cache",
3-
"version": "4.1.4",
3+
"version": "4.1.5-alpha.0",
44
"description": "Apollo Server full query response cache",
55
"type": "module",
66
"main": "dist/cjs/index.js",
@@ -36,7 +36,7 @@
3636
"@apollo/utils.keyvaluecache": "^2.1.0"
3737
},
3838
"peerDependencies": {
39-
"@apollo/server": "^4.0.1",
39+
"@apollo/server": "^4.12.2-alpha.0",
4040
"graphql": "^16.6.0"
4141
}
4242
}

packages/server/CHANGELOG.md

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

3+
## 4.12.2-alpha.0
4+
35
## 4.12.1
46

57
### 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.12.1",
3+
"version": "4.12.2-alpha.0",
44
"description": "Core engine for Apollo GraphQL server",
55
"type": "module",
66
"main": "dist/cjs/index.js",

0 commit comments

Comments
 (0)