@metamask/multichain-transactions-controller 0.9.0 → 0.10.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 +12 -1
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.10.0]
11
+
12
+ ### Changed
13
+
14
+ - **BREAKING:** Bump `@metamask/accounts-controllers` peer dependency to `^28.0.0` ([#5763](https://github.com/MetaMask/core/pull/5763))
15
+ - **BREAKING:** Bump `@metamask/snaps-controllers` peer dependency to `^11.0.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
16
+ - Bump `@metamask/base-controller` from `^8.0.0` to `^8.0.1` ([#5722](https://github.com/MetaMask/core/pull/5722))
17
+ - Bump `@metamask/snaps-sdk` from `^6.17.1` to `^6.22.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
18
+ - Bump `@metamask/snaps-utils` from `^8.10.0` to `^9.2.0` ([#5639](https://github.com/MetaMask/core/pull/5639))
19
+
10
20
  ## [0.9.0]
11
21
 
12
22
  ### Added
@@ -108,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108
118
 
109
119
  - Initial release ([#5133](https://github.com/MetaMask/core/pull/5133)), ([#5177](https://github.com/MetaMask/core/pull/5177))
110
120
 
111
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.9.0...HEAD
121
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.10.0...HEAD
122
+ [0.10.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.9.0...@metamask/multichain-transactions-controller@0.10.0
112
123
  [0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.8.0...@metamask/multichain-transactions-controller@0.9.0
113
124
  [0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-transactions-controller@0.7.2...@metamask/multichain-transactions-controller@0.8.0
114
125
  [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.10.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": "^28.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": "^21.0.6",
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": "^28.0.0",
77
+ "@metamask/snaps-controllers": "^11.0.0"
78
78
  },
79
79
  "engines": {
80
80
  "node": "^18.18 || >=20"