@magic-sdk/provider 21.3.0-canary.665.6934462457.0 → 21.3.0
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 +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# v21.3.0 (Mon Nov 20 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Add `useInternetConnection` hook to track internet connectivity changes [#665](https://github.com/magiclabs/magic-js/pull/665) ([@romin-halltari](https://github.com/romin-halltari))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Use createModalNotReadyError() when modal is not ready on react native ([@romin-halltari](https://github.com/romin-halltari))
|
|
10
|
+
- Rename: ready -> checkIsReadyForRequest and isReady -> isReadyForRequest ([@romin-halltari](https://github.com/romin-halltari))
|
|
11
|
+
- add tests ([@romin-halltari](https://github.com/romin-halltari))
|
|
12
|
+
- Do now wait for ready promise on a react native environment, as it never resolves when there's no internet connection ([@romin-halltari](https://github.com/romin-halltari))
|
|
13
|
+
|
|
14
|
+
#### Authors: 1
|
|
15
|
+
|
|
16
|
+
- [@romin-halltari](https://github.com/romin-halltari)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
# v21.2.1 (Tue Nov 14 2023)
|
|
2
21
|
|
|
3
22
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/provider",
|
|
3
|
-
"version": "21.3.0
|
|
3
|
+
"version": "21.3.0",
|
|
4
4
|
"description": "Core business logic for Magic SDK packages.",
|
|
5
5
|
"author": "Magic Labs <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"localforage": "^1.7.4"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "d67fd2c32dfc647e5fd01cfbb682f1a5f47bd0d6"
|
|
46
46
|
}
|