Skip to content

Commit

Permalink
Version Packages (#7602)
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.7.3

### Patch Changes

- Updated dependencies
\[[`75b668d9e`](75b668d)]:
    -   @apollo/server@4.7.3

## @apollo/server@4.7.3

### Patch Changes

- [#7601](#7601)
[`75b668d9e`](75b668d)
Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Provide a
new configuration option for landing page plugins `precomputedNonce`
which allows users to provide a nonce and avoid calling into `uuid`
functions on startup. This is useful for Cloudflare Workers where random
number generation is not available on startup (only during requests).
Unless you are using Cloudflare Workers, you can ignore this change.

The example below assumes you've provided a `PRECOMPUTED_NONCE` variable
in your `wrangler.toml` file.

    Example usage:

    ```ts
    const server = new ApolloServer({
      // ...
      plugins: [
        ApolloServerPluginLandingPageLocalDefault({
          precomputedNonce: PRECOMPUTED_NONCE,
        }),
      ],
    });
    ```

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Jun 7, 2023
1 parent 75b668d commit 2f4b034
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 26 deletions.
19 changes: 0 additions & 19 deletions .changeset/pink-mugs-pump.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.

7 changes: 7 additions & 0 deletions packages/integration-testsuite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @apollo/server-integration-testsuite

## 4.7.3

### Patch Changes

- Updated dependencies [[`75b668d9e`](https://github.com/apollographql/apollo-server/commit/75b668d9ed576cbbdeaacdb4adfff051f430c21d)]:
- @apollo/server@4.7.3

## 4.7.2

### 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.2",
"version": "4.7.3",
"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.7.2",
"@apollo/server": "4.7.3",
"@apollo/utils.keyvaluecache": "^2.1.0",
"@apollo/utils.createhash": "^2.0.0",
"@apollo/usage-reporting-protobuf": "^4.1.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @apollo/server

## 4.7.3

### Patch Changes

- [#7601](https://github.com/apollographql/apollo-server/pull/7601) [`75b668d9e`](https://github.com/apollographql/apollo-server/commit/75b668d9ed576cbbdeaacdb4adfff051f430c21d) Thanks [@trevor-scheer](https://github.com/trevor-scheer)! - Provide a new configuration option for landing page plugins `precomputedNonce` which allows users to provide a nonce and avoid calling into `uuid` functions on startup. This is useful for Cloudflare Workers where random number generation is not available on startup (only during requests). Unless you are using Cloudflare Workers, you can ignore this change.

The example below assumes you've provided a `PRECOMPUTED_NONCE` variable in your `wrangler.toml` file.

Example usage:

```ts
const server = new ApolloServer({
// ...
plugins: [
ApolloServerPluginLandingPageLocalDefault({
precomputedNonce: PRECOMPUTED_NONCE,
}),
],
});
```

## 4.7.2

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

0 comments on commit 2f4b034

Please sign in to comment.