Skip to content

Commit

Permalink
Merge branch 'apollographql:main' into nodenext
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevinAvery authored Mar 3, 2023
2 parents 43cdf12 + 5161f09 commit 32d8e3e
Show file tree
Hide file tree
Showing 8 changed files with 132 additions and 134 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-countries-beg.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-points-mate.md

This file was deleted.

6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
Filesize:
docker:
- image: cimg/node:19.6.1
- image: cimg/node:19.7.0
steps:
- checkout
- run: npm version
Expand All @@ -12,7 +12,7 @@ jobs:

Lint:
docker:
- image: cimg/node:19.6.1
- image: cimg/node:19.7.0
steps:
- checkout
- run: npm version
Expand All @@ -21,7 +21,7 @@ jobs:

Tests:
docker:
- image: cimg/node:19.6.1
- image: cimg/node:19.7.0
steps:
- checkout
- run: npm run ci:precheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/exit-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
replace: ""

- name: Write previous version to package.json
uses: jaywcjlove/github-action-package@v1.3.0
uses: jaywcjlove/github-action-package@v1.3.1
with:
version: ${{ steps.formatversion.outputs.value }}

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @apollo/client

## 3.7.10

### Patch Changes

- [#9438](https://github.com/apollographql/apollo-client/pull/9438) [`52a9c8ea1`](https://github.com/apollographql/apollo-client/commit/52a9c8ea1ac08ee53fe1ddbd4ded899ea00a1f9f) Thanks [@dciesielkiewicz](https://github.com/dciesielkiewicz)! - Ensure the `client` option passed to `useMutation`'s execute function is used when provided. Previously this option was ignored.

- [#9124](https://github.com/apollographql/apollo-client/pull/9124) [`975b923c0`](https://github.com/apollographql/apollo-client/commit/975b923c0c0e7ddc8553917a91981e9f41713bc1) Thanks [@andrebrantom](https://github.com/andrebrantom)! - Make `ApolloClient.writeQuery` and `ApolloClient.writeFragment` behave more like `cache.writeQuery` and `cache.writeFragment` by returning the reference returned by the cache.

## 3.7.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api/react/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ api_reference: true
import { MockedProvider } from "@apollo/client/testing";
```

The `MockedProvider` component is a mocked version of [`ApolloProvider`](./hooks/#the-apolloprovider-component) that doesn't send network requests to your API. Instead, you to specify the exact response payload for a given GraphQL operation. This enables you to test your application's operations without communicating with a server.
The `MockedProvider` component is a mocked version of [`ApolloProvider`](./hooks/#the-apolloprovider-component) that doesn't send network requests to your API. Instead, it allows you to specify the exact response payload for a given GraphQL operation. This enables you to test your application's operations without communicating with a server.

#### Props

Expand Down
Loading

0 comments on commit 32d8e3e

Please sign in to comment.