Skip to content

Commit 0ddf04f

Browse files
Version Packages (alpha) (#6947)
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 version-4, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `version-4` 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 `version-4`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @apollo/[email protected] ### Patch Changes - [#6936](#6936) [`a404bf17e`](a404bf1) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Add test for batch requests with no elements - Updated dependencies \[[`a404bf17e`](a404bf1), [`a404bf17e`](a404bf1), [`a404bf17e`](a404bf1)]: - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - [#6936](#6936) [`a404bf17e`](a404bf1) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Update executeOperation second parameter to be an optional options object which includes an optional `contextValue`. - [#6936](#6936) [`a404bf17e`](a404bf1) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - `HTTPGraphQLRequest` now uses a specific `HeaderMap` class which we export instead of allowing a standard `Map`. The `HeaderMap` downcases all incoming keys, as header names are not case-sensitive. - [#6936](#6936) [`a404bf17e`](a404bf1) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Update `validationRules` typing for correctness. This is sort of a breaking change for TS users in that the types were more permissive than they should have been. All `validationRules` list items should conform to the `graphql-js` `ValidationRule` type. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a404bf1 commit 0ddf04f

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

.changeset/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"@apollo/server-plugin-landing-page-graphql-playground": "3.0.0"
1010
},
1111
"changesets": [
12+
"big-kiwis-explain",
1213
"blue-bottles-jump",
1314
"chatty-baboons-search",
1415
"chilled-cows-drum",
@@ -18,8 +19,10 @@
1819
"famous-parents-argue",
1920
"fifty-peaches-bathe",
2021
"gorgeous-penguins-jog",
22+
"healthy-deers-search",
2123
"healthy-glasses-reflect",
2224
"hip-cheetahs-fail",
25+
"late-numbers-pull",
2326
"lazy-emus-hunt",
2427
"many-plums-smile",
2528
"neat-buckets-marry",
@@ -47,6 +50,7 @@
4750
"violet-mayflies-help",
4851
"wet-kiwis-play",
4952
"wet-rats-shake",
53+
"witty-moles-fail",
5054
"witty-squids-vanish"
5155
]
5256
}

package-lock.json

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

3+
## 4.0.0-alpha.13
4+
5+
### Patch Changes
6+
7+
- [#6936](https://github.com/apollographql/apollo-server/pull/6936) [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Add test for batch requests with no elements
8+
9+
- Updated dependencies [[`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9), [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9), [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9)]:
10+
- @apollo/server@4.0.0-alpha.13
11+
312
## 4.0.0-alpha.12
413

514
### 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.0.0-alpha.12",
3+
"version": "4.0.0-alpha.13",
44
"description": "Test suite for Apollo Server integrations",
55
"type": "module",
66
"main": "dist/index.js",
@@ -42,7 +42,7 @@
4242
"supertest": "^6.2.3"
4343
},
4444
"peerDependencies": {
45-
"@apollo/server": "^4.0.0-alpha.12",
45+
"@apollo/server": "^4.0.0-alpha.13",
4646
"@jest/globals": "28.x || 29.x",
4747
"graphql": "^16.5.0",
4848
"jest": "28.x || 29.x"

packages/server/CHANGELOG.md

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

3+
## 4.0.0-alpha.13
4+
5+
### Patch Changes
6+
7+
- [#6936](https://github.com/apollographql/apollo-server/pull/6936) [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Update executeOperation second parameter to be an optional options object which includes an optional `contextValue`.
8+
9+
- [#6936](https://github.com/apollographql/apollo-server/pull/6936) [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - `HTTPGraphQLRequest` now uses a specific `HeaderMap` class which we export instead of allowing a standard `Map`. The `HeaderMap` downcases all incoming keys, as header names are not case-sensitive.
10+
11+
- [#6936](https://github.com/apollographql/apollo-server/pull/6936) [`a404bf17e`](https://github.com/apollographql/apollo-server/commit/a404bf17e86d6f53588b2796c9190ad98779a6f9) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Update `validationRules` typing for correctness. This is sort of a breaking change for TS users in that the types were more permissive than they should have been. All `validationRules` list items should conform to the `graphql-js` `ValidationRule` type.
12+
313
## 4.0.0-alpha.12
414

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

0 commit comments

Comments
 (0)