@metamask/multichain-transactions-controller 0.9.0 → 0.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.11.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** bump `@metamask/accounts-controller` peer dependency to `^29.0.0` ([#5802](https://github.com/MetaMask/core/pull/5802))
15
+
16
+ ## [0.10.0]
17
+
18
+ ### Changed
19
+
20
+ - **BREAKING:** Bump `@metamask/accounts-controllers` peer dependency to `^28.0.0` ([#5763](https://github.com/MetaMask/core/pull/5763))
21
+ - **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency to `^11.0.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
22
+ - Bump `@metamask/base-controller` from `^8.0.0` to `^8.0.1` ([#5722](https://github.com/MetaMask/core/pull/5722))
23
+ - Bump `@metamask/snaps-sdk` from `^6.17.1` to `^6.22.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
24
+ - Bump `@metamask/snaps-utils` from `^8.10.0` to `^9.2.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
25
+
10
26
  ## [0.9.0]
11
27
 
12
28
  ### Added
@@ -108,7 +124,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108
124
 
109
125
  - Initial release ([#5133](https://github.com/MetaMask/core/pull/5133)), ([#5177](https://github.com/MetaMask/core/pull/5177))
110
126
 
111
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.9.0...HEAD
127
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.11.0...HEAD
128
+ [0.11.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.10.0...@metamask/multichain-transactions-controller@0.11.0
129
+ [0.10.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.9.0...@metamask/multichain-transactions-controller@0.10.0
112
130
  [0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.8.0...@metamask/multichain-transactions-controller@0.9.0
113
131
  [0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.2...@metamask/multichain-transactions-controller@0.8.0
114
132
  [0.7.2]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.1...@metamask/multichain-transactions-controller@0.7.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/multichain-transactions-controller",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "description": "This package is responsible for getting transactions from our Bitcoin and Solana snaps",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -47,23 +47,23 @@
47
47
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
48
48
  },
49
49
  "dependencies": {
50
- "@metamask/base-controller": "^8.0.0",
50
+ "@metamask/base-controller": "^8.0.1",
51
51
  "@metamask/keyring-api": "^17.4.0",
52
52
  "@metamask/keyring-internal-api": "^6.0.1",
53
53
  "@metamask/keyring-snap-client": "^4.1.0",
54
54
  "@metamask/polling-controller": "^13.0.0",
55
- "@metamask/snaps-sdk": "^6.17.1",
56
- "@metamask/snaps-utils": "^8.10.0",
55
+ "@metamask/snaps-sdk": "^6.22.0",
56
+ "@metamask/snaps-utils": "^9.2.0",
57
57
  "@metamask/utils": "^11.2.0",
58
58
  "@types/uuid": "^8.3.0",
59
59
  "immer": "^9.0.6",
60
60
  "uuid": "^8.3.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@metamask/accounts-controller": "^27.0.0",
63
+ "@metamask/accounts-controller": "^29.0.0",
64
64
  "@metamask/auto-changelog": "^3.4.4",
65
- "@metamask/keyring-controller": "^21.0.1",
66
- "@metamask/snaps-controllers": "^9.19.0",
65
+ "@metamask/keyring-controller": "^22.0.0",
66
+ "@metamask/snaps-controllers": "^11.2.1",
67
67
  "@types/jest": "^27.4.1",
68
68
  "deepmerge": "^4.2.2",
69
69
  "jest": "^27.5.1",
@@ -73,8 +73,8 @@
73
73
  "typescript": "~5.2.2"
74
74
  },
75
75
  "peerDependencies": {
76
- "@metamask/accounts-controller": "^27.0.0",
77
- "@metamask/snaps-controllers": "^9.19.0"
76
+ "@metamask/accounts-controller": "^29.0.0",
77
+ "@metamask/snaps-controllers": "^11.0.0"
78
78
  },
79
79
  "engines": {
80
80
  "node": "^18.18 || >=20"