@magic-sdk/provider 18.2.0-canary.557.5361107278.0 → 18.2.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 +35 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
# v18.2.0 (Fri Jun 23 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Auto version bumping [#557](https://github.com/magiclabs/magic-js/pull/557) ([@Ethella](https://github.com/Ethella) [@Ariflo](https://github.com/Ariflo))
|
|
6
|
+
- Updates License to Apache 2.0 [#551](https://github.com/magiclabs/magic-js/pull/551) ([@Ariflo](https://github.com/Ariflo))
|
|
7
|
+
- Implement view-in-wallet [#548](https://github.com/magiclabs/magic-js/pull/548) ([@octave08](https://github.com/octave08))
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fix
|
|
10
|
+
|
|
11
|
+
- Match NPM Version ([@Ariflo](https://github.com/Ariflo))
|
|
12
|
+
- Update CHANGELOG.md \[skip ci\] ([@Ethella](https://github.com/Ethella))
|
|
13
|
+
- Replace `magic-sdk` w/ `@magic-sdk/commons` for `@magic-ext/oidc` Package [#550](https://github.com/magiclabs/magic-js/pull/550) ([@Ariflo](https://github.com/Ariflo))
|
|
14
|
+
- White space bump ([@Ariflo](https://github.com/Ariflo))
|
|
15
|
+
- Add typings to package.json export [#517](https://github.com/magiclabs/magic-js/pull/517) ([@octave08](https://github.com/octave08))
|
|
16
|
+
- Remove approval step for canary releases [sc-80045] [#549](https://github.com/magiclabs/magic-js/pull/549) ([@bcleary06](https://github.com/bcleary06))
|
|
17
|
+
- Add test suite for nft checkout ([@octave08](https://github.com/octave08))
|
|
18
|
+
- Implement view-in-wallet ([@octave08](https://github.com/octave08))
|
|
19
|
+
- Add typings to package.json export ([@octave08](https://github.com/octave08))
|
|
20
|
+
- Merge branch 'master' into briancleary7114-sc-80045-remove-approval-step-for-canary-releases ([@bcleary06](https://github.com/bcleary06))
|
|
21
|
+
- Fix Failing CI [#556](https://github.com/magiclabs/magic-js/pull/556) ([@Ariflo](https://github.com/Ariflo))
|
|
22
|
+
- Fix Failing CI ([@Ariflo](https://github.com/Ariflo))
|
|
23
|
+
- Fix CI Tests [#552](https://github.com/magiclabs/magic-js/pull/552) ([@Ariflo](https://github.com/Ariflo))
|
|
24
|
+
- Add Testing for isMajorVersionAtLeast ([@Ariflo](https://github.com/Ariflo))
|
|
25
|
+
- DRYify isMajorVersionAtLeast ([@Ariflo](https://github.com/Ariflo))
|
|
26
|
+
|
|
27
|
+
#### Authors: 4
|
|
28
|
+
|
|
29
|
+
- Arian Flores ([@Ariflo](https://github.com/Ariflo))
|
|
30
|
+
- Brian Cleary ([@bcleary06](https://github.com/bcleary06))
|
|
31
|
+
- Jay Hwang ([@octave08](https://github.com/octave08))
|
|
32
|
+
- Jerry Liu ([@Ethella](https://github.com/Ethella))
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
1
36
|
# v18.1.0 (Fri Jun 23 2023)
|
|
2
37
|
|
|
3
38
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-sdk/provider",
|
|
3
|
-
"version": "18.2.0
|
|
3
|
+
"version": "18.2.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",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"tslib": "^2.3.1"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@magic-sdk/types": "15.6.0
|
|
38
|
+
"@magic-sdk/types": "^15.6.0",
|
|
39
39
|
"eventemitter3": "^4.0.4",
|
|
40
40
|
"web3-core": "1.5.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"localforage": "^1.7.4"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "49d171b23611e73d2354677a5bbef9d276b42867"
|
|
46
46
|
}
|