@metamask/institutional-wallet-snap 0.3.1 → 1.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 +13 -1
- package/dist/bundle.js +1 -1
- package/dist/preinstalled-snap.json +1 -1
- package/package.json +2 -1
- package/snap.manifest.json +26 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- Show account creation errors to the user ([#46](https://github.com/MetaMask/snap-institutional-wallet/pull/46))
|
|
12
|
+
- Explicitly check if a method is suppported for an account ([#45](https://github.com/MetaMask/snap-institutional-wallet/pull/45))
|
|
13
|
+
- Fix potential redos finding ([#44](https://github.com/MetaMask/snap-institutional-wallet/pull/44))
|
|
14
|
+
- Don't poll requests if the client is locked ([#43](https://github.com/MetaMask/snap-institutional-wallet/pull/43))
|
|
15
|
+
- Add waterballoons dev environments ([#39](https://github.com/MetaMask/snap-institutional-wallet/pull/39))
|
|
16
|
+
- Add tests for ECA-3 Custodian type ([#38](https://github.com/MetaMask/snap-institutional-wallet/pull/38))
|
|
17
|
+
- Audit remediation ([#37](https://github.com/MetaMask/snap-institutional-wallet/pull/37))
|
|
18
|
+
- Add tests for keyring.ts ([#36](https://github.com/MetaMask/snap-institutional-wallet/pull/36))
|
|
19
|
+
|
|
9
20
|
## [0.3.1]
|
|
10
21
|
### Changed
|
|
11
22
|
- Fix custodian permissions ([#34](https://github.com/MetaMask/snap-institutional-wallet/pull/34))
|
|
@@ -27,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
27
38
|
### Changed
|
|
28
39
|
- Initial release
|
|
29
40
|
|
|
30
|
-
[Unreleased]: https://github.com/MetaMask/snap-institutional-wallet/compare/
|
|
41
|
+
[Unreleased]: https://github.com/MetaMask/snap-institutional-wallet/compare/v1.0.0...HEAD
|
|
42
|
+
[1.0.0]: https://github.com/MetaMask/snap-institutional-wallet/compare/v0.3.1...v1.0.0
|
|
31
43
|
[0.3.1]: https://github.com/MetaMask/snap-institutional-wallet/compare/v0.3.0...v0.3.1
|
|
32
44
|
[0.3.0]: https://github.com/MetaMask/snap-institutional-wallet/compare/v0.2.10...v0.3.0
|
|
33
45
|
[0.2.10]: https://github.com/MetaMask/snap-institutional-wallet/compare/v0.2.9...v0.2.10
|