@metamask/gator-permissions-snap 0.6.1 → 0.8.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 +31 -1
- package/dist/bundle.js +1 -1
- package/dist/preinstalled-snap.json +1 -1
- package/images/advanced-permissions.svg +15 -0
- package/images/new-permission-type.svg +15 -0
- package/package.json +3 -3
- package/snap.manifest.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.8.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- An introduction shown to user explaining each permission type ([#238](https://github.com/MetaMask/snap-7715-permissions/pull/238))
|
|
15
|
+
- Request now times out when user doesn't respond ([#237](https://github.com/MetaMask/snap-7715-permissions/pull/237))
|
|
16
|
+
- New `erc-20-token-revocation` permission type ([#234](https://github.com/MetaMask/snap-7715-permissions/pull/234))
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Expiry is now optional ([#240](https://github.com/MetaMask/snap-7715-permissions/pull/240))
|
|
21
|
+
- Recipient field is now shown in permission dialog ([#239](https://github.com/MetaMask/snap-7715-permissions/pull/239))
|
|
22
|
+
- Datetime picker used in permission dialog ([#235](https://github.com/MetaMask/snap-7715-permissions/pull/235))
|
|
23
|
+
- More meaningful error messages ([#232](https://github.com/MetaMask/snap-7715-permissions/pull/232))
|
|
24
|
+
- Initial amount is now allowed ([#230](https://github.com/MetaMask/snap-7715-permissions/pull/230))
|
|
25
|
+
- Default streaming period is now Monthly ([#229](https://github.com/MetaMask/snap-7715-permissions/pull/229))
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Resolve 0 balance when token data is returned, but not the requested token ([#241](https://github.com/MetaMask/snap-7715-permissions/pull/241))
|
|
30
|
+
|
|
31
|
+
## [0.7.0]
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- Add zero address validation ([#226](https://github.com/MetaMask/snap-7715-permissions/pull/226))
|
|
36
|
+
- Fix: throw proper errors ([#225](https://github.com/MetaMask/snap-7715-permissions/pull/225))
|
|
37
|
+
|
|
10
38
|
## [0.6.1]
|
|
11
39
|
|
|
12
40
|
### Fixed
|
|
@@ -229,7 +257,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
229
257
|
- Ensure create-release-branch cli tool passes ([#54](https://github.com/MetaMask/snap-7715-permissions/pull/54))
|
|
230
258
|
- Add changelog scripts ([#55](https://github.com/MetaMask/snap-7715-permissions/pull/55))
|
|
231
259
|
|
|
232
|
-
[Unreleased]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.
|
|
260
|
+
[Unreleased]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.8.0...HEAD
|
|
261
|
+
[0.8.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.7.0...@metamask/gator-permissions-snap@0.8.0
|
|
262
|
+
[0.7.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.6.1...@metamask/gator-permissions-snap@0.7.0
|
|
233
263
|
[0.6.1]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.6.0...@metamask/gator-permissions-snap@0.6.1
|
|
234
264
|
[0.6.0]: https://github.com/MetaMask/snap-7715-permissions/compare/@metamask/gator-permissions-snap@0.5.0...@metamask/gator-permissions-snap@0.6.0
|
|
235
265
|
[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
|