Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 21, 2023
1 parent d33acdf commit ac9e384
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 34 deletions.
5 changes: 0 additions & 5 deletions .changeset/lucky-experts-cheat.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/pink-jobs-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-gorillas-visit.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
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @apollo/server-integration-testsuite

## 4.8.0

### Patch Changes

- [#7649](/~https://github.com/apollographql/apollo-server/pull/7649) [`d33acdfdd`](/~https://github.com/apollographql/apollo-server/commit/d33acdfddd525c2cb1d5d5810a98e02fb917ac9f) Thanks [@mastrzyz](/~https://github.com/mastrzyz)! - Add missing `supertest` dependency

- [#7632](/~https://github.com/apollographql/apollo-server/pull/7632) [`64f8177ab`](/~https://github.com/apollographql/apollo-server/commit/64f8177abca46865c155ff2fc8ed0194ad8d0c83) Thanks [@renovate](/~https://github.com/apps/renovate)! - Update graphql-http dependency

- Updated dependencies [[`f8a8ea08f`](/~https://github.com/apollographql/apollo-server/commit/f8a8ea08fed4090115b1a025e57bdb0f2deb82fc)]:
- @apollo/server@4.8.0

## 4.7.5

### 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.7.5",
"version": "4.8.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.7.5",
"@apollo/server": "4.8.0",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/utils.createhash": "^2.0.0",
"@apollo/usage-reporting-protobuf": "^4.1.1",
Expand Down
18 changes: 18 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @apollo/server

## 4.8.0

### Minor Changes

- [#7634](/~https://github.com/apollographql/apollo-server/pull/7634) [`f8a8ea08f`](/~https://github.com/apollographql/apollo-server/commit/f8a8ea08fed4090115b1a025e57bdb0f2deb82fc) Thanks [@dfperry5](/~https://github.com/dfperry5)! - Updating the ApolloServer constructor to take in a stringifyResult function that will allow a consumer to pass in a function that formats the result of an http query.

Usage:

```ts
const server = new ApolloServer({
typeDefs,
resolvers,
stringifyResult: (value: FormattedExecutionResult) => {
return JSON.stringify(value, null, 2);
},
});
```

## 4.7.5

### 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.7.5",
"version": "4.8.0",
"description": "Core engine for Apollo GraphQL server",
"type": "module",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit ac9e384

Please sign in to comment.