@magic-sdk/provider 21.4.0-canary.82f1080.0 → 21.4.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 +40 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,43 @@
1
+ # v21.4.0 (Thu Dec 14 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Split key device share [#678](https://github.com/magiclabs/magic-js/pull/678) ([@Dizigen](https://github.com/Dizigen))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Merge branch 'master' into split-key-device-share ([@Dizigen](https://github.com/Dizigen))
10
+ - update comment for format of the device share ([@Dizigen](https://github.com/Dizigen))
11
+ - store the iv directly ([@Dizigen](https://github.com/Dizigen))
12
+ - add asserts for the unit tests ([@Dizigen](https://github.com/Dizigen))
13
+ - update implementation to not deal directly with non-base64 encoded strings ([@Dizigen](https://github.com/Dizigen))
14
+ - update tests ([@Dizigen](https://github.com/Dizigen))
15
+ - add test coverage ([@Dizigen](https://github.com/Dizigen))
16
+ - refactor code to move device logic out of view controller ([@Dizigen](https://github.com/Dizigen))
17
+ - move the device share retrieval into the lib itself. ([@Dizigen](https://github.com/Dizigen))
18
+ - use existing iv and ek to encrypt and decrypt other multichain keys ([@Dizigen](https://github.com/Dizigen))
19
+ - await iterate ([@Dizigen](https://github.com/Dizigen))
20
+ - add more log lines to debug multichain error ([@Dizigen](https://github.com/Dizigen))
21
+ - make sure to clear all device share keys at once ([@Dizigen](https://github.com/Dizigen))
22
+ - remove log lines ([@Dizigen](https://github.com/Dizigen))
23
+ - debugging why deviceShare is not emitted in the payload ([@Dizigen](https://github.com/Dizigen))
24
+ - add device share to magic message request ([@Dizigen](https://github.com/Dizigen))
25
+ - debug device share retrieval ([@Dizigen](https://github.com/Dizigen))
26
+ - fix the way the iv is retrieved ([@Dizigen](https://github.com/Dizigen))
27
+ - correctly encodes and stores the device share ([@Dizigen](https://github.com/Dizigen))
28
+ - clear device shares when user denies account access + disconnects ([@Dizigen](https://github.com/Dizigen))
29
+ - network hash implementation ([@Dizigen](https://github.com/Dizigen))
30
+ - use console.warn so the test makes it to the console output ([@Dizigen](https://github.com/Dizigen))
31
+ - implementation for device share + debug line for extConfig ([@Dizigen](https://github.com/Dizigen))
32
+ - device share encryption, decryption, store, retrieve implementation ([@Dizigen](https://github.com/Dizigen))
33
+ - add setting and retrieving device share ([@Dizigen](https://github.com/Dizigen))
34
+
35
+ #### Authors: 1
36
+
37
+ - David He ([@Dizigen](https://github.com/Dizigen))
38
+
39
+ ---
40
+
1
41
  # v21.3.1 (Tue Nov 28 2023)
2
42
 
3
43
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-sdk/provider",
3
- "version": "21.4.0-canary.82f1080.0",
3
+ "version": "21.4.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": "17.3.0-canary.82f1080.0",
38
+ "@magic-sdk/types": "^17.3.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": "82f1080943e277c9a6581740933b14e60f6670ac"
45
+ "gitHead": "f415ba6772dbac1d68a54dcc1b1c184bf55c5ad0"
46
46
  }