@apollo/client 3.12.0 → 3.12.2
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.
- package/CHANGELOG.md +12 -0
- package/apollo-client.cjs +1 -1
- package/apollo-client.cjs.map +1 -1
- package/apollo-client.min.cjs +1 -1
- package/core/core.cjs +1 -1
- package/core/core.cjs.map +1 -1
- package/core/core.cjs.native.js +1 -1
- package/dev/dev.cjs +1 -1
- package/dev/dev.cjs.map +1 -1
- package/dev/dev.cjs.native.js +1 -1
- package/masking/types.d.ts +1 -1
- package/masking/types.js.map +1 -1
- package/package.json +5 -5
- package/react/internal/internal.cjs +1 -1
- package/react/internal/internal.cjs.map +1 -1
- package/react/internal/internal.cjs.native.js +1 -1
- package/testing/internal/ObservableStream.d.ts +1 -2
- package/testing/internal/ObservableStream.js.map +1 -1
- package/testing/matchers/index.js +14 -0
- package/testing/matchers/index.js.map +1 -1
- package/testing/matchers/toComplete.d.ts +4 -0
- package/testing/matchers/toComplete.js +42 -0
- package/testing/matchers/toComplete.js.map +1 -0
- package/testing/matchers/toEmitAnything.d.ts +4 -0
- package/testing/matchers/toEmitAnything.js +46 -0
- package/testing/matchers/toEmitAnything.js.map +1 -0
- package/testing/matchers/toEmitError.d.ts +7 -0
- package/testing/matchers/toEmitError.js +53 -0
- package/testing/matchers/toEmitError.js.map +1 -0
- package/testing/matchers/toEmitMatchedValue.d.ts +7 -0
- package/testing/matchers/toEmitMatchedValue.js +51 -0
- package/testing/matchers/toEmitMatchedValue.js.map +1 -0
- package/testing/matchers/toEmitNext.d.ts +4 -0
- package/testing/matchers/toEmitNext.js +42 -0
- package/testing/matchers/toEmitNext.js.map +1 -0
- package/testing/matchers/toEmitValue.d.ts +4 -0
- package/testing/matchers/toEmitValue.js +53 -0
- package/testing/matchers/toEmitValue.js.map +1 -0
- package/testing/matchers/toEmitValueStrict.d.ts +7 -0
- package/testing/matchers/toEmitValueStrict.js +56 -0
- package/testing/matchers/toEmitValueStrict.js.map +1 -0
- package/utilities/globals/globals.cjs +1 -1
- package/utilities/globals/globals.cjs.map +1 -1
- package/utilities/globals/globals.cjs.native.js +1 -1
- package/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @apollo/client
|
|
2
2
|
|
|
3
|
+
## 3.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#12175](https://github.com/apollographql/apollo-client/pull/12175) [`84af347`](https://github.com/apollographql/apollo-client/commit/84af347d53bc31df4a6a90a55e7c98413144376a) Thanks [@jerelmiller](https://github.com/jerelmiller)! - Update peer deps to allow for React 19 stable release.
|
|
8
|
+
|
|
9
|
+
## 3.12.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#12171](https://github.com/apollographql/apollo-client/pull/12171) [`e1efe74`](https://github.com/apollographql/apollo-client/commit/e1efe74c61b5f31fdd122ff8f4ce01012d0f5398) Thanks [@phryneas](https://github.com/phryneas)! - Fix import extension in masking entry point.
|
|
14
|
+
|
|
3
15
|
## 3.12.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/apollo-client.cjs
CHANGED