@magic-ext/bitcoin 8.2.1-e2c2b0b → 8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +74 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,74 @@
1
+ # v8.3.0 (Wed Feb 15 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Add updatePhoneNumber sdk method [#450](https://github.com/magiclabs/magic-js/pull/450) ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Updates PR Template warning about one label [#453](https://github.com/magiclabs/magic-js/pull/453) ([@Ariflo](https://github.com/Ariflo))
10
+
11
+ #### Authors: 2
12
+
13
+ - Arian Flores ([@Ariflo](https://github.com/Ariflo))
14
+ - Mushfi Chowdhury ([@mushfichowdhury-magic](https://github.com/mushfichowdhury-magic))
15
+
16
+ ---
17
+
18
+ # v8.2.1 (Tue Feb 14 2023)
19
+
20
+ #### 🐛 Bug Fix
21
+
22
+ - Permit React Native SDK to Utlize Bitcoin extension [#451](https://github.com/magiclabs/magic-js/pull/451) ([@Ariflo](https://github.com/Ariflo))
23
+ - Permit React Native SDK to Utlize Bitcoin extension ([@Ariflo](https://github.com/Ariflo))
24
+
25
+ #### Authors: 1
26
+
27
+ - Arian Flores ([@Ariflo](https://github.com/Ariflo))
28
+
29
+ ---
30
+
31
+ # v3.0.1 (Tue Jan 25 2022)
32
+
33
+ #### 🐛 Bug Fix
34
+
35
+ - Fix CDN build targets [#270](https://github.com/magiclabs/magic-js/pull/270) ([@smithki](https://github.com/smithki))
36
+ - Fix CDN issues related to ESBuild ([@smithki](https://github.com/smithki))
37
+
38
+ #### Authors: 1
39
+
40
+ - Ian K Smith ([@smithki](https://github.com/smithki))
41
+
42
+ ---
43
+
44
+ # v3.0.0 (Tue Jan 25 2022)
45
+
46
+ #### 💥 Breaking Change
47
+
48
+ - Switch from `microbundle` to `esbuild` [#220](https://github.com/magiclabs/magic-js/pull/220) ([@smithki](https://github.com/smithki))
49
+
50
+ #### 🐛 Bug Fix
51
+
52
+ - Merge with master ([@smithki](https://github.com/smithki))
53
+ - Merge branch 'master' into feat/faster-builds ([@smithki](https://github.com/smithki))
54
+ - Modify CDN default exports ([@smithki](https://github.com/smithki))
55
+ - Support newly added Magic JS extensions in ESBuild ([@smithki](https://github.com/smithki))
56
+
57
+ #### Authors: 1
58
+
59
+ - Ian K Smith ([@smithki](https://github.com/smithki))
60
+
61
+ ---
62
+
63
+ # v1.0.0 (Wed Oct 27 2021)
64
+
65
+ #### 💥 Breaking Change
66
+
67
+ - add bitcoin extension for web and react native [#233](https://github.com/magiclabs/magic-js/pull/233) ([@hcote](https://github.com/hcote))
68
+
69
+ #### Authors: 1
70
+
71
+ - Hunter Cote ([@hcote](https://github.com/hcote))
72
+
73
+ ---
74
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-ext/bitcoin",
3
- "version": "8.2.1-e2c2b0b",
3
+ "version": "8.3.0",
4
4
  "description": "magic bitcoin extension",
5
5
  "author": "Magic <team@magic.link> (https://magic.link/)",
6
6
  "license": "MIT",
@@ -27,6 +27,7 @@
27
27
  ]
28
28
  },
29
29
  "devDependencies": {
30
- "@magic-sdk/commons": "^9.2.0"
31
- }
30
+ "@magic-sdk/commons": "^9.3.0"
31
+ },
32
+ "gitHead": "b47d6e0f3679e61fc9b87e5b9bd72c9fc0120249"
32
33
  }