Skip to content

Commit

Permalink
Version Packages (#7489)
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@4.7.0

### Minor Changes

- [#7504](#7504)
[`22a5be934`](22a5be9)
Thanks [@mayakoneval](https://github.com/mayakoneval)! - In the Apollo
Server Landing Page Local config, you can now opt out of the telemetry
that Apollo Studio runs in the
embedded Sandbox & Explorer landing pages. This telemetry includes
Google Analytics for event tracking and
    Sentry for error tracking.

    Example of the new config option:

        const server = new ApolloServer({
          typeDefs,
          resolvers,
          plugins: [
            process.env.NODE_ENV === 'production'
              ? ApolloServerPluginLandingPageProductionDefault({
                  graphRef: 'my-graph-id@my-graph-variant',
                  embed: {
                    runTelemetry: false
                  },
                })
              : ApolloServerPluginLandingPageLocalDefault({
                  embed: {
                    runTelemetry: false
                  },
                }),
          ],
        });

## @apollo/server-integration-testsuite@4.7.0

### Patch Changes

- [#7509](#7509)
[`5c20aa02e`](5c20aa0)
Thanks [@renovate](https://github.com/apps/renovate)! - Update
`graphql-http` dependency

- [#7475](#7475)
[`b9ac2d6b2`](b9ac2d6)
Thanks [@renovate](https://github.com/apps/renovate)! - Update
graphql-http dependency

- Updated dependencies
\[[`22a5be934`](22a5be9)]:
    -   @apollo/server@4.7.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Apr 20, 2023
1 parent 760e3d7 commit b9c6f4c
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 47 deletions.
5 changes: 0 additions & 5 deletions .changeset/dirty-seals-breathe.md

This file was deleted.

30 changes: 0 additions & 30 deletions .changeset/honest-donuts-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-stingrays-yell.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.7.0

### Patch Changes

- [#7509](https://github.com/apollographql/apollo-server/pull/7509) [`5c20aa02e`](https://github.com/apollographql/apollo-server/commit/5c20aa02ebee6eaa39255e9db995fae0dd3fe0a0) Thanks [@renovate](https://github.com/apps/renovate)! - Update `graphql-http` dependency

- [#7475](https://github.com/apollographql/apollo-server/pull/7475) [`b9ac2d6b2`](https://github.com/apollographql/apollo-server/commit/b9ac2d6b2ea19f7f838fa62b339dac2d3fefff62) Thanks [@renovate](https://github.com/apps/renovate)! - Update graphql-http dependency

- Updated dependencies [[`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4)]:
- @apollo/server@4.7.0

## 4.6.0

### 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.6.0",
"version": "4.7.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.2",
"@apollo/client": "^3.6.9",
"@apollo/server": "4.6.0",
"@apollo/server": "4.7.0",
"@apollo/server-plugin-landing-page-graphql-playground": "^4.0.0",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/utils.createhash": "^2.0.0",
Expand Down
31 changes: 31 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# @apollo/server

## 4.7.0

### Minor Changes

- [#7504](https://github.com/apollographql/apollo-server/pull/7504) [`22a5be934`](https://github.com/apollographql/apollo-server/commit/22a5be9347bbdb6aef4c158f9c81d310308d02d4) Thanks [@mayakoneval](https://github.com/mayakoneval)! - In the Apollo Server Landing Page Local config, you can now opt out of the telemetry that Apollo Studio runs in the
embedded Sandbox & Explorer landing pages. This telemetry includes Google Analytics for event tracking and
Sentry for error tracking.

Example of the new config option:

```
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [
process.env.NODE_ENV === 'production'
? ApolloServerPluginLandingPageProductionDefault({
graphRef: 'my-graph-id@my-graph-variant',
embed: {
runTelemetry: false
},
})
: ApolloServerPluginLandingPageLocalDefault({
embed: {
runTelemetry: false
},
}),
],
});
```

## 4.6.0

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

0 comments on commit b9c6f4c

Please sign in to comment.