@metamask-previews/wallet 2.0.0-preview-cf351fcd3 → 3.0.0-preview-35bdba6

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 +11 -1
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -7,12 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.0.0]
11
+
10
12
  ### Added
11
13
 
12
14
  - **BREAKING:** Wire `ApprovalController` into the default wallet initialization ([#8953](https://github.com/MetaMask/core/pull/8953))
13
15
  - The default `Wallet` now constructs an `ApprovalController` and registers its `ApprovalController:*` messenger actions. Consumers that pass their own `messenger` and already wire an `ApprovalController` must remove their own before upgrading, or the duplicate registration will collide.
14
16
  - Adds an `approvalController` slot to `instanceOptions` with `showApprovalRequest` (the callback that surfaces pending approval requests to the user; defaults to a no-op) and `typesExcludedFromRateLimiting` (the approval types exempt from per-origin rate limiting; defaults to a baseline of EVM approval types). Both let consumers (extension, mobile, wallet-cli) inject their platform-specific values.
15
17
 
18
+ ### Changed
19
+
20
+ - Bump `@metamask/approval-controller` from `^9.0.1` to `^9.0.2` ([#9058](https://github.com/MetaMask/core/pull/9058))
21
+ - Bump `@metamask/controller-utils` from `^12.1.0` to `^12.1.1` ([#9058](https://github.com/MetaMask/core/pull/9058))
22
+ - Bump `@metamask/keyring-controller` from `^26.0.0` to `^27.0.0` ([#9058](https://github.com/MetaMask/core/pull/9058))
23
+ - Bump `@metamask/storage-service` from `^1.0.1` to `^1.0.2` ([#9058](https://github.com/MetaMask/core/pull/9058))
24
+
16
25
  ## [2.0.0]
17
26
 
18
27
  ### Added
@@ -34,7 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
43
 
35
44
  - Initial release ([#8838](https://github.com/MetaMask/core/pull/8838))
36
45
 
37
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/wallet@2.0.0...HEAD
46
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/wallet@3.0.0...HEAD
47
+ [3.0.0]: https://github.com/MetaMask/core/compare/@metamask/wallet@2.0.0...@metamask/wallet@3.0.0
38
48
  [2.0.0]: https://github.com/MetaMask/core/compare/@metamask/wallet@1.0.1...@metamask/wallet@2.0.0
39
49
  [1.0.1]: https://github.com/MetaMask/core/compare/@metamask/wallet@1.0.0...@metamask/wallet@1.0.1
40
50
  [1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/wallet@1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/wallet",
3
- "version": "2.0.0-preview-cf351fcd3",
3
+ "version": "3.0.0-preview-35bdba6",
4
4
  "description": "Provides a shared framework for building MetaMask wallets",
5
5
  "keywords": [
6
6
  "Ethereum",
@@ -53,14 +53,14 @@
53
53
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
54
54
  },
55
55
  "dependencies": {
56
- "@metamask/approval-controller": "^9.0.1",
56
+ "@metamask/approval-controller": "^9.0.2",
57
57
  "@metamask/base-controller": "^9.1.0",
58
58
  "@metamask/browser-passworder": "^6.0.0",
59
- "@metamask/controller-utils": "^12.1.0",
60
- "@metamask/keyring-controller": "^26.0.0",
59
+ "@metamask/controller-utils": "^12.1.1",
60
+ "@metamask/keyring-controller": "^27.0.0",
61
61
  "@metamask/messenger": "^1.2.0",
62
62
  "@metamask/scure-bip39": "^2.1.1",
63
- "@metamask/storage-service": "^1.0.1",
63
+ "@metamask/storage-service": "^1.0.2",
64
64
  "@metamask/utils": "^11.9.0"
65
65
  },
66
66
  "devDependencies": {