@magic-ext/gdkms 2.0.0-canary.538.5685356349.0 → 2.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.
- package/CHANGELOG.md +19 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# v2.0.0 (Thu Jul 27 2023)
|
|
2
|
+
|
|
3
|
+
#### 💥 Breaking Change
|
|
4
|
+
|
|
5
|
+
- Magic SDK Node version bump [#538](https://github.com/magiclabs/magic-js/pull/538) ([@makrandgupta](https://github.com/makrandgupta))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- add types as dev dep for gdkms ([@makrandgupta](https://github.com/makrandgupta))
|
|
10
|
+
- remove unnecessary externals, bring peer deps up to date ([@makrandgupta](https://github.com/makrandgupta))
|
|
11
|
+
- add missing webcrypto package ([@makrandgupta](https://github.com/makrandgupta))
|
|
12
|
+
- force canary build for all packages. ([@makrandgupta](https://github.com/makrandgupta))
|
|
13
|
+
|
|
14
|
+
#### Authors: 1
|
|
15
|
+
|
|
16
|
+
- Makrand Gupta ([@makrandgupta](https://github.com/makrandgupta))
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
# v1.3.0 (Fri Jul 07 2023)
|
|
2
21
|
|
|
3
22
|
#### ⚠️ Pushed to `master`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-ext/gdkms",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "G-DKMS extension",
|
|
5
5
|
"author": "Magic <team@magic.link> (https://magic.link/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
]
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@magic-sdk/commons": "15.0.0
|
|
31
|
+
"@magic-sdk/commons": "^15.0.0",
|
|
32
|
+
"@magic-sdk/types": "^16.0.0",
|
|
32
33
|
"@peculiar/webcrypto": "^1.4.3"
|
|
33
34
|
},
|
|
34
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "81160c687cec8dc3a579616d9eaf934cf4791b80"
|
|
35
36
|
}
|