Skip to content

Commit

Permalink
Version Packages (alpha) (#6947)
Browse files Browse the repository at this point in the history
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/server-integration-testsuite@4.0.0-alpha.13

### 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/server@4.0.0-alpha.13

## @apollo/server@4.0.0-alpha.13

### 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>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 26, 2022
1 parent a404bf1 commit 0ddf04f
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"@apollo/server-plugin-landing-page-graphql-playground": "3.0.0"
},
"changesets": [
"big-kiwis-explain",
"blue-bottles-jump",
"chatty-baboons-search",
"chilled-cows-drum",
Expand All @@ -18,8 +19,10 @@
"famous-parents-argue",
"fifty-peaches-bathe",
"gorgeous-penguins-jog",
"healthy-deers-search",
"healthy-glasses-reflect",
"hip-cheetahs-fail",
"late-numbers-pull",
"lazy-emus-hunt",
"many-plums-smile",
"neat-buckets-marry",
Expand Down Expand Up @@ -47,6 +50,7 @@
"violet-mayflies-help",
"wet-kiwis-play",
"wet-rats-shake",
"witty-moles-fail",
"witty-squids-vanish"
]
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/integration-testsuite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @apollo/server-integration-testsuite

## 4.0.0-alpha.13

### Patch Changes

- [#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

- 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)]:
- @apollo/server@4.0.0-alpha.13

## 4.0.0-alpha.12

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/integration-testsuite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server-integration-testsuite",
"version": "4.0.0-alpha.12",
"version": "4.0.0-alpha.13",
"description": "Test suite for Apollo Server integrations",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -42,7 +42,7 @@
"supertest": "^6.2.3"
},
"peerDependencies": {
"@apollo/server": "^4.0.0-alpha.12",
"@apollo/server": "^4.0.0-alpha.13",
"@jest/globals": "28.x || 29.x",
"graphql": "^16.5.0",
"jest": "28.x || 29.x"
Expand Down
10 changes: 10 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @apollo/server

## 4.0.0-alpha.13

### Patch Changes

- [#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`.

- [#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.

- [#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.

## 4.0.0-alpha.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/server",
"version": "4.0.0-alpha.12",
"version": "4.0.0-alpha.13",
"description": "Core engine for Apollo GraphQL server",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit 0ddf04f

Please sign in to comment.