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 Dec 18, 2023
1 parent 7f9edb7 commit cbe3ad7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .changeset/fuzzy-eyes-lick.md

This file was deleted.

12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @apollo/client

## 3.8.9

### Patch Changes

- [#11364](https://github.com/apollographql/apollo-client/pull/11364) [`54b5d14`](https://github.com/apollographql/apollo-client/commit/54b5d149f19edb9a1dc3eb75247d3288be23a33e) Thanks [@mohit23x](https://github.com/mohit23x)! - Update react-native.md - Adds react native devtool in the documentation

## 3.8.8

### Patch Changes
Expand Down Expand Up @@ -199,7 +205,7 @@
return data.breeds.map(({ characteristics }) =>
characteristics.map((characteristic) => (
<div key={characteristic}>{characteristic}</div>
))
)),
);
}
```
Expand Down Expand Up @@ -250,7 +256,7 @@

const { data } = useSuspenseQuery(
query,
id ? { variables: { id } } : skipToken
id ? { variables: { id } } : skipToken,
);
```

Expand Down Expand Up @@ -2205,7 +2211,7 @@ In upcoming v3.6.x and v3.7 (beta) releases, we will be completely overhauling o
fields: {
comments(comments: Reference[], { readField }) {
return comments.filter(
(comment) => idToRemove !== readField("id", comment)
(comment) => idToRemove !== readField("id", comment),
);
},
},
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apollo/client",
"version": "3.8.8",
"version": "3.8.9",
"description": "A fully-featured caching GraphQL client.",
"private": true,
"keywords": [
Expand Down

0 comments on commit cbe3ad7

Please sign in to comment.