Skip to content

Commit 4d3f893

Browse files
Version Packages
1 parent f92db4e commit 4d3f893

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.changeset/fuzzy-eyes-lick.md

-5
This file was deleted.

CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @apollo/client
22

3+
## 3.8.9
4+
5+
### Patch Changes
6+
7+
- [#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
8+
39
## 3.8.8
410

511
### Patch Changes
@@ -199,7 +205,7 @@
199205
return data.breeds.map(({ characteristics }) =>
200206
characteristics.map((characteristic) => (
201207
<div key={characteristic}>{characteristic}</div>
202-
))
208+
)),
203209
);
204210
}
205211
```
@@ -250,7 +256,7 @@
250256

251257
const { data } = useSuspenseQuery(
252258
query,
253-
id ? { variables: { id } } : skipToken
259+
id ? { variables: { id } } : skipToken,
254260
);
255261
```
256262

@@ -2205,7 +2211,7 @@ In upcoming v3.6.x and v3.7 (beta) releases, we will be completely overhauling o
22052211
fields: {
22062212
comments(comments: Reference[], { readField }) {
22072213
return comments.filter(
2208-
(comment) => idToRemove !== readField("id", comment)
2214+
(comment) => idToRemove !== readField("id", comment),
22092215
);
22102216
},
22112217
},

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/client",
3-
"version": "3.8.8",
3+
"version": "3.8.9",
44
"description": "A fully-featured caching GraphQL client.",
55
"private": true,
66
"keywords": [

0 commit comments

Comments
 (0)