Skip to content

Commit 28d6d47

Browse files
Version Packages (#8172)
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] ### Minor Changes - [#8062](#8062) [`8e54e58`](8e54e58) Thanks [@cristunaranjo](https://github.com/cristunaranjo)! - Allow configuration of graphql execution options (maxCoercionErrors) ```js const server = new ApolloServer({ typeDefs, resolvers, executionOptions: { maxCoercionErrors: 50, }, }); ``` - [#8014](#8014) [`26320bc`](26320bc) Thanks [@mo4islona](https://github.com/mo4islona)! - Expose `graphql` validation options. ```js const server = new ApolloServer({ typeDefs, resolvers, validationOptions: { maxErrors: 10, }, }); ``` ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[[`8e54e58`](8e54e58), [`26320bc`](26320bc)]: - @apollo/[email protected] --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Lenz Weber-Tronic <[email protected]>
1 parent 26320bc commit 28d6d47

File tree

7 files changed

+41
-36
lines changed

7 files changed

+41
-36
lines changed

.changeset/curly-friends-argue.md

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

.changeset/validate-options.md

Lines changed: 0 additions & 15 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+
## 5.3.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8e54e58`](https://github.com/apollographql/apollo-server/commit/8e54e5827791666e36082ad49d19c77f050355ac), [`26320bc`](https://github.com/apollographql/apollo-server/commit/26320bccd77c6074d4a38119294f153f64e52d96)]:
8+
- @apollo/server@5.3.0
9+
310
## 5.2.0
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": "5.2.0",
3+
"version": "5.3.0",
44
"description": "Test suite for Apollo Server integrations",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@apollo/cache-control-types": "^1.0.3",
4141
"@apollo/client": "^3.6.9",
42-
"@apollo/server": "5.2.0",
42+
"@apollo/server": "5.3.0",
4343
"@apollo/usage-reporting-protobuf": "^4.1.1",
4444
"@apollo/utils.createhash": "^3.0.0",
4545
"@apollo/utils.keyvaluecache": "^4.0.0",

packages/server/CHANGELOG.md

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

3+
## 5.3.0
4+
5+
### Minor Changes
6+
7+
- [#8062](https://github.com/apollographql/apollo-server/pull/8062) [`8e54e58`](https://github.com/apollographql/apollo-server/commit/8e54e5827791666e36082ad49d19c77f050355ac) Thanks [@cristunaranjo](https://github.com/cristunaranjo)! - Allow configuration of graphql execution options (maxCoercionErrors)
8+
9+
```js
10+
const server = new ApolloServer({
11+
typeDefs,
12+
resolvers,
13+
executionOptions: {
14+
maxCoercionErrors: 50,
15+
},
16+
});
17+
```
18+
19+
- [#8014](https://github.com/apollographql/apollo-server/pull/8014) [`26320bc`](https://github.com/apollographql/apollo-server/commit/26320bccd77c6074d4a38119294f153f64e52d96) Thanks [@mo4islona](https://github.com/mo4islona)! - Expose `graphql` validation options.
20+
21+
```js
22+
const server = new ApolloServer({
23+
typeDefs,
24+
resolvers,
25+
validationOptions: {
26+
maxErrors: 10,
27+
},
28+
});
29+
```
30+
331
## 5.2.0
432

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

0 commit comments

Comments
 (0)