@knocklabs/expo 0.3.15 → 0.3.17
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 +29 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# @knocklabs/expo
|
2
2
|
|
3
|
+
## 0.3.17
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [337bade]
|
8
|
+
- @knocklabs/react-core@0.6.10
|
9
|
+
- @knocklabs/react-native@0.6.17
|
10
|
+
|
11
|
+
## 0.3.16
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- e367c6f: Fix `ReferenceError` raised on feed initialization
|
16
|
+
|
17
|
+
@knocklabs/react-native@0.6.13 and @knocklabs/expo@0.3.13 contained a bug in which the error
|
18
|
+
`ReferenceError: Property 'crypto' doesn't exist` would occur when initializing a feed via any of
|
19
|
+
the following methods:
|
20
|
+
|
21
|
+
- The `KnockFeedProvider` context provider
|
22
|
+
- The `useNotifications` hook
|
23
|
+
- A call to `knock.feeds.initialize()`
|
24
|
+
|
25
|
+
This has been fixed by adding
|
26
|
+
[react-native-get-random-values](https://github.com/LinusU/react-native-get-random-values) as a
|
27
|
+
dependency of our React Native and Expo SDKs.
|
28
|
+
|
29
|
+
- Updated dependencies [e367c6f]
|
30
|
+
- @knocklabs/react-native@0.6.16
|
31
|
+
|
3
32
|
## 0.3.15
|
4
33
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@knocklabs/expo",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.17",
|
4
4
|
"author": "@knocklabs",
|
5
5
|
"license": "MIT",
|
6
6
|
"main": "dist/cjs/index.js",
|
@@ -50,8 +50,8 @@
|
|
50
50
|
},
|
51
51
|
"dependencies": {
|
52
52
|
"@knocklabs/client": "^0.14.8",
|
53
|
-
"@knocklabs/react-core": "^0.6.
|
54
|
-
"@knocklabs/react-native": "^0.6.
|
53
|
+
"@knocklabs/react-core": "^0.6.10",
|
54
|
+
"@knocklabs/react-native": "^0.6.17",
|
55
55
|
"react-native-gesture-handler": "^2.25.0",
|
56
56
|
"react-native-render-html": "^6.3.4",
|
57
57
|
"react-native-svg": "^15.10.1"
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"devDependencies": {
|
60
60
|
"@types/react": "^18.3.6",
|
61
61
|
"@types/react-native-htmlview": "^0.16.5",
|
62
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
62
|
+
"@typescript-eslint/eslint-plugin": "^8.32.0",
|
63
63
|
"@typescript-eslint/parser": "^8.27.0",
|
64
64
|
"@vitejs/plugin-react": "^4.4.1",
|
65
65
|
"eslint": "^8.56.0",
|