@magic-ext/react-native-bare-oauth 7.1.0 → 8.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +8 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ # v7.1.1 (Wed Jan 18 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Adds react-native-inappbrowser-reborn as peer to Bare RN OAuth [#432](https://github.com/magiclabs/magic-js/pull/432) ([@Ariflo](https://github.com/Ariflo))
6
+ - Moves react-native-inappbrowser-reborn to devDependencies ([@Ariflo](https://github.com/Ariflo))
7
+ - Adds react-native-inappbrowser-reborn as peer to Bare RN OAuth ([@Ariflo](https://github.com/Ariflo))
8
+ - [CHORE] Clean up magic-js Deployment Stages [#429](https://github.com/magiclabs/magic-js/pull/429) ([@kgrubb](https://github.com/kgrubb))
9
+ - sync with master branch ([@kgrubb](https://github.com/kgrubb))
10
+
11
+ #### 🔩 Dependency Updates
12
+
13
+ - Bump qs from 6.5.2 to 6.5.3 [#400](https://github.com/magiclabs/magic-js/pull/400) ([@dependabot[bot]](https://github.com/dependabot[bot]))
14
+ - Bump decode-uri-component from 0.2.0 to 0.2.2 [#399](https://github.com/magiclabs/magic-js/pull/399) ([@dependabot[bot]](https://github.com/dependabot[bot]))
15
+
16
+ #### Authors: 3
17
+
18
+ - [@dependabot[bot]](https://github.com/dependabot[bot])
19
+ - Arian Flores ([@Ariflo](https://github.com/Ariflo))
20
+ - Keli (Madison) Grubb ([@kgrubb](https://github.com/kgrubb))
21
+
22
+ ---
23
+
1
24
  # v7.1.0 (Fri Jan 06 2023)
2
25
 
3
26
  #### 🚀 Enhancement
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-ext/react-native-bare-oauth",
3
- "version": "7.1.0",
3
+ "version": "8.0.0",
4
4
  "description": "Magic SDK OAuth Extension for Bare React Native environments.",
5
5
  "author": "Magic <team@magic.link> (https://magic.link/)",
6
6
  "license": "MIT",
@@ -27,15 +27,16 @@
27
27
  "dependencies": {
28
28
  "@magic-sdk/types": "^10.0.1",
29
29
  "crypto-js": "^3.3.0",
30
- "react-native-device-info": "^10.3.0",
31
- "react-native-inappbrowser-reborn": "^3.7.0"
30
+ "react-native-device-info": "^10.3.0"
32
31
  },
33
32
  "devDependencies": {
34
- "@magic-sdk/react-native-bare": "^13.1.0",
35
- "@types/crypto-js": "~3.1.47"
33
+ "@magic-sdk/react-native-bare": "^14.0.0",
34
+ "@types/crypto-js": "~3.1.47",
35
+ "react-native-inappbrowser-reborn": "^3.7.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@magic-sdk/react-native-bare": ">=13.0.0"
38
+ "@magic-sdk/react-native-bare": ">=13.0.0",
39
+ "react-native-inappbrowser-reborn": ">=3.7.0"
39
40
  },
40
- "gitHead": "d2439bad1fd448d1109b642b777db7220e7c3608"
41
+ "gitHead": "7d634c0184f7daf464b7607cad6317c20bff0a0a"
41
42
  }