Skip to content

Commit

Permalink
Version Packages (#7780)
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.10.0

### Minor Changes

- [#7786](#7786)
[`869ec98`](869ec98)
Thanks [@ganemone](https://github.com/ganemone)! - Restore missing v1
`skipValidation` option as `dangerouslyDisableValidation`. Note that
enabling this option exposes your server to potential security and
unexpected runtime issues. Apollo will not support issues that arise as
a result of using this option.

### Patch Changes

- [#7740](#7740)
[`fe68c1b`](fe68c1b)
Thanks [@barnisanov](https://github.com/barnisanov)! - Uninstalled
`body-parser` and used `express` built-in `body-parser` functionality
instead(mainly the json middleware)

- Updated dependencies
\[[`869ec98`](869ec98),
[`9bd7748`](9bd7748),
[`63dc50f`](63dc50f),
[`fe68c1b`](fe68c1b),
[`e9a0d6e`](e9a0d6e)]:
    -   @apollo/server@4.10.0

## @apollo/server@4.10.0

### Minor Changes

- [#7786](#7786)
[`869ec98`](869ec98)
Thanks [@ganemone](https://github.com/ganemone)! - Restore missing v1
`skipValidation` option as `dangerouslyDisableValidation`. Note that
enabling this option exposes your server to potential security and
unexpected runtime issues. Apollo will not support issues that arise as
a result of using this option.

- [#7803](#7803)
[`e9a0d6e`](e9a0d6e)
Thanks [@favna](https://github.com/favna)! - allow `stringifyResult` to
return a `Promise<string>`

Users who implemented the `stringifyResult` hook can now expect error
responses to be formatted with the hook as well. Please take care when
updating to this version to ensure this is the desired behavior, or
implement the desired behavior accordingly in your `stringifyResult`
hook. This was considered a non-breaking change as we consider that it
was an oversight in the original PR that introduced `stringifyResult`
hook.

### Patch Changes

- [#7793](#7793)
[`9bd7748`](9bd7748)
Thanks [@bnjjj](https://github.com/bnjjj)! - General availability of
subscription callback protocol

- [#7799](#7799)
[`63dc50f`](63dc50f)
Thanks [@stijnbe](https://github.com/stijnbe)! - Fix type of
ApolloServerPluginUsageReporting reportTimer

- [#7740](#7740)
[`fe68c1b`](fe68c1b)
Thanks [@barnisanov](https://github.com/barnisanov)! - Uninstalled
`body-parser` and used `express` built-in `body-parser` functionality
instead(mainly the json middleware)

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 2, 2024
1 parent b8e1485 commit 621167b
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 40 deletions.
6 changes: 0 additions & 6 deletions .changeset/blue-laws-grab.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-gorillas-rescue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-squids-unite.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/honest-kangaroos-appear.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/thirty-hairs-change.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/twenty-ads-help.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.

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

## 4.10.0

### Minor Changes

- [#7786](https://github.com/apollographql/apollo-server/pull/7786) [`869ec98`](https://github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b) Thanks [@ganemone](https://github.com/ganemone)! - Restore missing v1 `skipValidation` option as `dangerouslyDisableValidation`. Note that enabling this option exposes your server to potential security and unexpected runtime issues. Apollo will not support issues that arise as a result of using this option.

### Patch Changes

- [#7740](https://github.com/apollographql/apollo-server/pull/7740) [`fe68c1b`](https://github.com/apollographql/apollo-server/commit/fe68c1b05323931d766a5e081061b70e305ac67e) Thanks [@barnisanov](https://github.com/barnisanov)! - Uninstalled `body-parser` and used `express` built-in `body-parser` functionality instead(mainly the json middleware)

- Updated dependencies [[`869ec98`](https://github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b), [`9bd7748`](https://github.com/apollographql/apollo-server/commit/9bd7748565735e3e01cdce38674dbc7dcc44507b), [`63dc50f`](https://github.com/apollographql/apollo-server/commit/63dc50fc65cd7b4a9df0e1de4ab6d6ee82dbeb5c), [`fe68c1b`](https://github.com/apollographql/apollo-server/commit/fe68c1b05323931d766a5e081061b70e305ac67e), [`e9a0d6e`](https://github.com/apollographql/apollo-server/commit/e9a0d6ed035d1a4f509ce39f0558dc17dfb9ccd0)]:
- @apollo/server@4.10.0

## 4.9.5

### 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.9.5",
"version": "4.10.0",
"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.3",
"@apollo/client": "^3.6.9",
"@apollo/server": "4.9.5",
"@apollo/server": "4.10.0",
"@apollo/usage-reporting-protobuf": "^4.1.1",
"@apollo/utils.createhash": "^2.0.0",
"@apollo/utils.keyvaluecache": "^2.1.0",
Expand Down
22 changes: 20 additions & 2 deletions packages/server/CHANGELOG.md
@@ -1,5 +1,23 @@
# @apollo/server

## 4.10.0

### Minor Changes

- [#7786](https://github.com/apollographql/apollo-server/pull/7786) [`869ec98`](https://github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b) Thanks [@ganemone](https://github.com/ganemone)! - Restore missing v1 `skipValidation` option as `dangerouslyDisableValidation`. Note that enabling this option exposes your server to potential security and unexpected runtime issues. Apollo will not support issues that arise as a result of using this option.

- [#7803](https://github.com/apollographql/apollo-server/pull/7803) [`e9a0d6e`](https://github.com/apollographql/apollo-server/commit/e9a0d6ed035d1a4f509ce39f0558dc17dfb9ccd0) Thanks [@favna](https://github.com/favna)! - allow `stringifyResult` to return a `Promise<string>`

Users who implemented the `stringifyResult` hook can now expect error responses to be formatted with the hook as well. Please take care when updating to this version to ensure this is the desired behavior, or implement the desired behavior accordingly in your `stringifyResult` hook. This was considered a non-breaking change as we consider that it was an oversight in the original PR that introduced `stringifyResult` hook.

### Patch Changes

- [#7793](https://github.com/apollographql/apollo-server/pull/7793) [`9bd7748`](https://github.com/apollographql/apollo-server/commit/9bd7748565735e3e01cdce38674dbc7dcc44507b) Thanks [@bnjjj](https://github.com/bnjjj)! - General availability of subscription callback protocol

- [#7799](https://github.com/apollographql/apollo-server/pull/7799) [`63dc50f`](https://github.com/apollographql/apollo-server/commit/63dc50fc65cd7b4a9df0e1de4ab6d6ee82dbeb5c) Thanks [@stijnbe](https://github.com/stijnbe)! - Fix type of ApolloServerPluginUsageReporting reportTimer

- [#7740](https://github.com/apollographql/apollo-server/pull/7740) [`fe68c1b`](https://github.com/apollographql/apollo-server/commit/fe68c1b05323931d766a5e081061b70e305ac67e) Thanks [@barnisanov](https://github.com/barnisanov)! - Uninstalled `body-parser` and used `express` built-in `body-parser` functionality instead(mainly the json middleware)

## 4.9.5

### Patch Changes
Expand Down Expand Up @@ -62,8 +80,8 @@
You can enable callback subscriptions like so:

```ts
import { ApolloServerPluginSubscriptionCallback } from '@apollo/server/plugin/subscriptionCallback';
import { ApolloServer } from '@apollo/server';
import { ApolloServerPluginSubscriptionCallback } from "@apollo/server/plugin/subscriptionCallback";
import { ApolloServer } from "@apollo/server";

const server = new ApolloServer({
// ...
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@apollo/server",
"version": "4.9.5",
"version": "4.10.0",
"description": "Core engine for Apollo GraphQL server",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit 621167b

Please sign in to comment.