@apollo/client 3.9.0-rc.0 → 3.9.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@
24
24
  "rare-snakes-melt",
25
25
  "shaggy-ears-scream",
26
26
  "shaggy-sheep-pull",
27
+ "six-rocks-arrive",
27
28
  "sixty-boxes-rest",
28
29
  "smooth-plums-shout",
29
30
  "sour-sheep-walk",
@@ -0,0 +1,5 @@
1
+ ---
2
+ "@apollo/client": patch
3
+ ---
4
+
5
+ Release changes from [`v3.8.10`](https://github.com/apollographql/apollo-client/releases/tag/v3.8.10)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @apollo/client
2
2
 
3
+ ## 3.9.0-rc.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#11503](https://github.com/apollographql/apollo-client/pull/11503) [`67f62e3`](https://github.com/apollographql/apollo-client/commit/67f62e359bc471787d066319326e5582b4a635c8) Thanks [@jerelmiller](https://github.com/jerelmiller)! - Release changes from [`v3.8.10`](https://github.com/apollographql/apollo-client/releases/tag/v3.8.10)
8
+
9
+ ## 3.8.10
10
+
11
+ ### Patch Changes
12
+
13
+ - [#11489](https://github.com/apollographql/apollo-client/pull/11489) [`abfd02a`](https://github.com/apollographql/apollo-client/commit/abfd02abeb8585e44377e9e87e5d20e5d95be002) Thanks [@gronxb](https://github.com/gronxb)! - Fix `networkStatus` with `useSuspenseQuery` not properly updating to ready state when using a `cache-and-network` fetch policy that returns data equal to what is already in the cache.
14
+
15
+ - [#11483](https://github.com/apollographql/apollo-client/pull/11483) [`6394dda`](https://github.com/apollographql/apollo-client/commit/6394dda47fa83d9ddd922e0d05e62bd872e4ea8e) Thanks [@pipopotamasu](https://github.com/pipopotamasu)! - Fix cache override warning output
16
+
3
17
  ## 3.9.0-rc.0
4
18
 
5
19
  ### Minor Changes
package/apollo-client.cjs CHANGED
@@ -33,7 +33,7 @@ var equal__default = /*#__PURE__*/_interopDefaultLegacy(equal);
33
33
  var React__namespace = /*#__PURE__*/_interopNamespace(React);
34
34
  var React__namespace$1 = /*#__PURE__*/_interopNamespace(React$1);
35
35
 
36
- var version = "3.9.0-rc.0";
36
+ var version = "3.9.0-rc.1";
37
37
 
38
38
  function maybe(thunk) {
39
39
  try {
@@ -8221,7 +8221,8 @@ var InternalQueryReference = (function () {
8221
8221
  break;
8222
8222
  }
8223
8223
  default: {
8224
- if (result.data === this.result.data) {
8224
+ if (result.data === this.result.data &&
8225
+ result.networkStatus === this.result.networkStatus) {
8225
8226
  return;
8226
8227
  }
8227
8228
  if (result.data === void 0) {