Skip to content

Commit fae90e7

Browse files
Version Packages (#7105)
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/[email protected] ### Patch Changes - Updated dependencies \[[`15d8d65e0`](15d8d65), [`e4e7738be`](e4e7738), [`e4e7738be`](e4e7738), [`15d8d65e0`](15d8d65)]: - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - [#7104](#7104) [`15d8d65e0`](15d8d65) Thanks [@glasser](https://github.com/glasser)! - New `ApolloServerPluginSchemaReportingDisabled` plugin which can override the `APOLLO_SCHEMA_REPORTING` environment variable. - [#7101](#7101) [`e4e7738be`](e4e7738) Thanks [@glasser](https://github.com/glasser)! - Manage memory more efficiently in the usage reporting plugin by allowing large objects to be garbage collected more quickly. - [#7101](#7101) [`e4e7738be`](e4e7738) Thanks [@glasser](https://github.com/glasser)! - The usage reporting plugin now defaults to a 30 second timeout for each attempt to send reports to Apollo Server instead of no timeout; the timeout can be adjusted with the new `requestTimeoutMs` option to `ApolloServerPluginUsageReporting`. (Apollo's servers already enforced a 30 second timeout, so this is unlikely to break any existing use cases.) - [#7104](#7104) [`15d8d65e0`](15d8d65) Thanks [@glasser](https://github.com/glasser)! - It is now an error to combine a "disabled" plugin such as `ApolloServerPluginUsageReportingDisabled` with its enabled counterpart such as `ApolloServerPluginUsageReporting`. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 506bf96 commit fae90e7

File tree

9 files changed

+25
-26
lines changed

9 files changed

+25
-26
lines changed

.changeset/eight-bats-shop.md

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

.changeset/purple-kiwis-lay.md

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

.changeset/quick-weeks-shake.md

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

.changeset/strong-laws-bow.md

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

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

3+
## 4.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`15d8d65e0`](https://github.com/apollographql/apollo-server/commit/15d8d65e018520d3eedc5e42981f19a5f98524e7), [`e4e7738be`](https://github.com/apollographql/apollo-server/commit/e4e7738be7c8d35a42342987e180eba5b6f66ca1), [`e4e7738be`](https://github.com/apollographql/apollo-server/commit/e4e7738be7c8d35a42342987e180eba5b6f66ca1), [`15d8d65e0`](https://github.com/apollographql/apollo-server/commit/15d8d65e018520d3eedc5e42981f19a5f98524e7)]:
8+
- @apollo/server@4.0.5
9+
310
## 4.0.4
411

512
### 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.4",
3+
"version": "4.0.5",
44
"description": "Test suite for Apollo Server integrations",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -41,7 +41,7 @@
4141
"supertest": "^6.2.3"
4242
},
4343
"peerDependencies": {
44-
"@apollo/server": "^4.0.4",
44+
"@apollo/server": "^4.0.5",
4545
"@jest/globals": "28.x || 29.x",
4646
"graphql": "^16.6.0",
4747
"jest": "28.x || 29.x"

packages/server/CHANGELOG.md

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

3+
## 4.0.5
4+
5+
### Patch Changes
6+
7+
- [#7104](https://github.com/apollographql/apollo-server/pull/7104) [`15d8d65e0`](https://github.com/apollographql/apollo-server/commit/15d8d65e018520d3eedc5e42981f19a5f98524e7) Thanks [@glasser](https://github.com/glasser)! - New `ApolloServerPluginSchemaReportingDisabled` plugin which can override the `APOLLO_SCHEMA_REPORTING` environment variable.
8+
9+
- [#7101](https://github.com/apollographql/apollo-server/pull/7101) [`e4e7738be`](https://github.com/apollographql/apollo-server/commit/e4e7738be7c8d35a42342987e180eba5b6f66ca1) Thanks [@glasser](https://github.com/glasser)! - Manage memory more efficiently in the usage reporting plugin by allowing large objects to be garbage collected more quickly.
10+
11+
- [#7101](https://github.com/apollographql/apollo-server/pull/7101) [`e4e7738be`](https://github.com/apollographql/apollo-server/commit/e4e7738be7c8d35a42342987e180eba5b6f66ca1) Thanks [@glasser](https://github.com/glasser)! - The usage reporting plugin now defaults to a 30 second timeout for each attempt to send reports to Apollo Server instead of no timeout; the timeout can be adjusted with the new `requestTimeoutMs` option to `ApolloServerPluginUsageReporting`. (Apollo's servers already enforced a 30 second timeout, so this is unlikely to break any existing use cases.)
12+
13+
- [#7104](https://github.com/apollographql/apollo-server/pull/7104) [`15d8d65e0`](https://github.com/apollographql/apollo-server/commit/15d8d65e018520d3eedc5e42981f19a5f98524e7) Thanks [@glasser](https://github.com/glasser)! - It is now an error to combine a "disabled" plugin such as `ApolloServerPluginUsageReportingDisabled` with its enabled counterpart such as `ApolloServerPluginUsageReporting`.
14+
315
## 4.0.4
416

517
This version has no changes; `@apollo/server` and `@apollo/server-integration-test` are published with matching version numbers and we published a new version of `@apollo/server-integration-test`.

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

0 commit comments

Comments
 (0)