@metamask-previews/multichain-account-service 0.4.0-preview-7b6467c → 0.5.0-preview-541d905c

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 +10 -1
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Changed
11
+
12
+ - Bump `@metamask/base-controller` from `^8.1.0` to `^8.2.0` ([#6355](https://github.com/MetaMask/core/pull/6355))
13
+
14
+ ## [0.5.0]
15
+
10
16
  ### Added
11
17
 
12
18
  - Allow for multichain account group alignment through the `align` method ([#6326](https://github.com/MetaMask/core/pull/6326))
@@ -14,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
20
 
15
21
  ### Changed
16
22
 
23
+ - **BREAKING:** Bump peer dependency `@metamask/accounts-controller` from `^32.0.0` to `^33.0.0` ([#6345](https://github.com/MetaMask/core/pull/6345))
24
+ - **BREAKING:** Bump peer dependency `@metamask/keyring-controller` from `^22.0.0` to `^23.0.0` ([#6345](https://github.com/MetaMask/core/pull/6345))
17
25
  - Bump `@metamask/base-controller` from `^8.0.1` to `^8.1.0` ([#6284](https://github.com/MetaMask/core/pull/6284))
18
26
  - Bump accounts related packages ([#6309](https://github.com/MetaMask/core/pull/6309))
19
27
  - Bump `@metamask/keyring-api` from `^20.0.0` to `^20.1.0`
@@ -70,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
70
78
  - Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141)), ([#6165](https://github.com/MetaMask/core/pull/6165))
71
79
  - This service manages multichain accounts/wallets.
72
80
 
73
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.4.0...HEAD
81
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.5.0...HEAD
82
+ [0.5.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.4.0...@metamask/multichain-account-service@0.5.0
74
83
  [0.4.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.3.0...@metamask/multichain-account-service@0.4.0
75
84
  [0.3.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.2.1...@metamask/multichain-account-service@0.3.0
76
85
  [0.2.1]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.2.0...@metamask/multichain-account-service@0.2.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/multichain-account-service",
3
- "version": "0.4.0-preview-7b6467c",
3
+ "version": "0.5.0-preview-541d905c",
4
4
  "description": "Service to manage multichain accounts",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -47,7 +47,7 @@
47
47
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
48
48
  },
49
49
  "dependencies": {
50
- "@metamask/base-controller": "^8.1.0",
50
+ "@metamask/base-controller": "^8.2.0",
51
51
  "@metamask/eth-snap-keyring": "^16.1.0",
52
52
  "@metamask/keyring-api": "^20.1.0",
53
53
  "@metamask/keyring-internal-api": "^8.1.0",
@@ -59,9 +59,9 @@
59
59
  },
60
60
  "devDependencies": {
61
61
  "@metamask/account-api": "^0.9.0",
62
- "@metamask/accounts-controller": "^32.0.2",
62
+ "@metamask/accounts-controller": "^33.0.0",
63
63
  "@metamask/auto-changelog": "^3.4.4",
64
- "@metamask/keyring-controller": "^22.1.1",
64
+ "@metamask/keyring-controller": "^23.0.0",
65
65
  "@metamask/providers": "^22.1.0",
66
66
  "@metamask/snaps-controllers": "^14.0.1",
67
67
  "@types/jest": "^27.4.1",
@@ -77,8 +77,8 @@
77
77
  },
78
78
  "peerDependencies": {
79
79
  "@metamask/account-api": "^0.9.0",
80
- "@metamask/accounts-controller": "^32.0.0",
81
- "@metamask/keyring-controller": "^22.0.0",
80
+ "@metamask/accounts-controller": "^33.0.0",
81
+ "@metamask/keyring-controller": "^23.0.0",
82
82
  "@metamask/providers": "^22.0.0",
83
83
  "@metamask/snaps-controllers": "^14.0.0",
84
84
  "webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0"