edge-core-js 1.3.1 → 1.3.3
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 +8 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/android/src/main/assets/edge-core-js/edge-core.js.map +1 -1
- package/lib/flow/types.js +5 -1
- package/lib/io/react-native/react-native-worker.js +78 -4
- package/lib/types/types.js +4 -0
- package/lib/util/asyncWaterfall.js +50 -0
- package/lib/util/shuffle.js +7 -0
- package/package.json +1 -1
- package/src/types/types.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v1.3.3 (2023-07-24)
|
|
4
|
+
|
|
5
|
+
- changed: Add fallback to bridged `fetch` if request to edge-cors-proxy server fails
|
|
6
|
+
|
|
7
|
+
## v1.3.2 (2023-07-13)
|
|
8
|
+
|
|
9
|
+
- Changed: Added a fallback to edge-cors-proxy server to `fetch` method on `EdgeIo`.
|
|
10
|
+
|
|
3
11
|
## v1.3.1 (2023-07-11)
|
|
4
12
|
|
|
5
13
|
- fixed: Enable WebView debugging on iOS 16.4+
|