@metamask/gator-permissions-snap 0.4.0 → 0.5.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 +29 -1
- package/dist/bundle.js +1 -1
- package/dist/preinstalled-snap.json +1 -1
- package/package.json +1 -1
- package/snap.manifest.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- New RPC `permissionsProvider_submitRevocation` for marking permission as revoked ([#171](https://github.com/MetaMask/snap-7715-permissions/pull/171))
|
|
15
|
+
- Add basic metrics generation via metrics tracking service ([#198](https://github.com/MetaMask/snap-7715-permissions/pull/198)) and ([#216](https://github.com/MetaMask/snap-7715-permissions/pull/216))
|
|
16
|
+
- Check, and if necessary request, upgrade to smart account ([#188](https://github.com/MetaMask/snap-7715-permissions/pull/188))
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Removes testnet restriction, now supports all chains ([#215](https://github.com/MetaMask/snap-7715-permissions/pull/215))
|
|
21
|
+
- Only display "show more" button when justification long enough to be truncated ([#213](https://github.com/MetaMask/snap-7715-permissions/pull/213))
|
|
22
|
+
- Improve justification visibility, with improved text color ([#212](https://github.com/MetaMask/snap-7715-permissions/pull/212))
|
|
23
|
+
- Improve permission picker layout to be more consistent with Sign Permission confirmation ([#202](https://github.com/MetaMask/snap-7715-permissions/pull/202))
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Race condition on debounce events allowing validation to be bypassed (resulting in error) ([#210](https://github.com/MetaMask/snap-7715-permissions/pull/210))
|
|
28
|
+
- Fixed: handle dialog closure case in confirmation flow ([#195](https://github.com/MetaMask/snap-7715-permissions/pull/195))
|
|
29
|
+
|
|
30
|
+
## [0.4.1]
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Granted permissions are no longer persisted (GitHub actions configuration change)
|
|
35
|
+
|
|
10
36
|
## [0.4.0]
|
|
11
37
|
|
|
12
38
|
### Changed
|
|
@@ -191,7 +217,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
191
217
|
- Ensure create-release-branch cli tool passes ([#54](https://github.com/MetaMask/snap-7715-permissions/pull/54))
|
|
192
218
|
- Add changelog scripts ([#55](https://github.com/MetaMask/snap-7715-permissions/pull/55))
|
|
193
219
|
|
|
194
|
-
[Unreleased]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.
|
|
220
|
+
[Unreleased]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.5.0...HEAD
|
|
221
|
+
[0.5.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.4.1...@metamask/gator-permissions-snap@0.5.0
|
|
222
|
+
[0.4.1]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.4.0...@metamask/gator-permissions-snap@0.4.1
|
|
195
223
|
[0.4.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.3.0...@metamask/gator-permissions-snap@0.4.0
|
|
196
224
|
[0.3.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.2.1...@metamask/gator-permissions-snap@0.3.0
|
|
197
225
|
[0.2.1]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.2.0...@metamask/gator-permissions-snap@0.2.1
|