Skip to content

Commit

Permalink
Version Packages (#7275)
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 main, this PR will
be updated.


# Releases
## @apollo/server-integration-testsuite@4.3.1

### Patch Changes

- [#7285](#7285)
[`35fa72bdd`](35fa72b)
Thanks [@glasser](https://github.com/glasser)! - Adds an integration
test verifying that Rover's introspection query works. This should not
break any integration that passes other tests.

- [#7276](#7276)
[`15c912f4c`](15c912f)
Thanks [@renovate](https://github.com/apps/renovate)! - Update
graphql-http dependency

- Updated dependencies
\[[`ec28b4b33`](ec28b4b),
[`322b5ebbc`](322b5eb),
[`3b0ec8529`](3b0ec85)]:
    -   @apollo/server@4.3.1

## @apollo/server@4.3.1

### Patch Changes

- [#7313](#7313)
[`ec28b4b33`](ec28b4b)
Thanks [@vtipparam](https://github.com/vtipparam)! - Allow case
insensitive lookup on headers. Use HeaderMap instead of plain Map for
headers in expressMiddleware.

- [#7311](#7311)
[`322b5ebbc`](322b5eb)
Thanks [@axe-me](https://github.com/axe-me)! - Export intermediate
ApolloServerOptions\* types

- [#7274](#7274)
[`3b0ec8529`](3b0ec85)
Thanks [@patrick91](https://github.com/patrick91)! - The subgraph spec
has evolved in Federation v2 such that the type of
`_Service.sdl` (formerly nullable) is now non-nullable. Apollo Server
now
    detects both cases correctly in order to determine whether to:
    1.  install / enable the `ApolloServerPluginInlineTrace` plugin
2. throw on startup if `ApolloServerPluginSchemaReporting` should not be
installed
3. warn when `ApolloServerPluginUsageReporting` is installed and
configured with the `__onlyIfSchemaIsNotSubgraph` option

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jan 19, 2023
1 parent 641acb9 commit f329139
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 41 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-planets-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fluffy-rats-fail.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/light-turtles-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-shoes-train.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/perfect-boxes-knock.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-shrimps-tan.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/quiet-pears-float.md

This file was deleted.

8 changes: 4 additions & 4 deletions package-lock.json

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

11 changes: 11 additions & 0 deletions packages/integration-testsuite/CHANGELOG.md
@@ -1,5 +1,16 @@
# @apollo/server-integration-testsuite

## 4.3.1

### Patch Changes

- [#7285](https://github.com/apollographql/apollo-server/pull/7285) [`35fa72bdd`](https://github.com/apollographql/apollo-server/commit/35fa72bdd694ec3649708b34c89dda3c371389ea) Thanks [@glasser](https://github.com/glasser)! - Adds an integration test verifying that Rover's introspection query works. This should not break any integration that passes other tests.

- [#7276](https://github.com/apollographql/apollo-server/pull/7276) [`15c912f4c`](https://github.com/apollographql/apollo-server/commit/15c912f4cb56bb220168b53b3657da6e680c328d) Thanks [@renovate](https://github.com/apps/renovate)! - Update graphql-http dependency

- Updated dependencies [[`ec28b4b33`](https://github.com/apollographql/apollo-server/commit/ec28b4b33e95ac4df862e67ac70c77895c21bb9c), [`322b5ebbc`](https://github.com/apollographql/apollo-server/commit/322b5ebbc57f854b58577d14d6ec0b5351f5c858), [`3b0ec8529`](https://github.com/apollographql/apollo-server/commit/3b0ec852994f86dd84bdccf77829fb81f8455579)]:
- @apollo/server@4.3.1

## 4.3.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/integration-testsuite/package.json
@@ -1,6 +1,6 @@
{
"name": "@apollo/server-integration-testsuite",
"version": "4.3.0",
"version": "4.3.1",
"description": "Test suite for Apollo Server integrations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"@apollo/cache-control-types": "^1.0.2",
"@apollo/client": "^3.6.9",
"@apollo/server": "4.3.0",
"@apollo/server": "4.3.1",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/utils.createhash": "^2.0.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/server/CHANGELOG.md
@@ -1,5 +1,20 @@
# @apollo/server

## 4.3.1

### Patch Changes

- [#7313](https://github.com/apollographql/apollo-server/pull/7313) [`ec28b4b33`](https://github.com/apollographql/apollo-server/commit/ec28b4b33e95ac4df862e67ac70c77895c21bb9c) Thanks [@vtipparam](https://github.com/vtipparam)! - Allow case insensitive lookup on headers. Use HeaderMap instead of plain Map for headers in expressMiddleware.

- [#7311](https://github.com/apollographql/apollo-server/pull/7311) [`322b5ebbc`](https://github.com/apollographql/apollo-server/commit/322b5ebbc57f854b58577d14d6ec0b5351f5c858) Thanks [@axe-me](https://github.com/axe-me)! - Export intermediate ApolloServerOptions\* types

- [#7274](https://github.com/apollographql/apollo-server/pull/7274) [`3b0ec8529`](https://github.com/apollographql/apollo-server/commit/3b0ec852994f86dd84bdccf77829fb81f8455579) Thanks [@patrick91](https://github.com/patrick91)! - The subgraph spec has evolved in Federation v2 such that the type of
`_Service.sdl` (formerly nullable) is now non-nullable. Apollo Server now
detects both cases correctly in order to determine whether to:
1. install / enable the `ApolloServerPluginInlineTrace` plugin
2. throw on startup if `ApolloServerPluginSchemaReporting` should not be installed
3. warn when `ApolloServerPluginUsageReporting` is installed and configured with the `__onlyIfSchemaIsNotSubgraph` option

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@apollo/server",
"version": "4.3.0",
"version": "4.3.1",
"description": "Core engine for Apollo GraphQL server",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit f329139

Please sign in to comment.