@metamask-previews/transaction-controller 41.0.0-preview-57e6ab5d → 41.1.0-preview-9e30e90a

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 +5 -5
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
+ ## [41.1.0]
11
+
12
+ ### Added
13
+
14
+ - Add optional `destinationChainId` property to `TransactionMeta` to facilitate Bridge transactions ([#4988](https://github.com/MetaMask/core/pull/4988))
15
+
16
+ ### Changed
17
+
18
+ - Bump `@metamask/controller-utils` from `^11.4.3` to `^11.4.4` ([#5012](https://github.com/MetaMask/core/pull/5012))
19
+
10
20
  ### Fixed
11
21
 
12
22
  - Make implicit peer dependencies explicit ([#4974](https://github.com/MetaMask/core/pull/4974))
@@ -15,6 +25,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
25
  - `@metamask/eth-block-tracker` `>=9` (required by `@metamask/nonce-tracker`)
16
26
  - These dependencies really should be present in projects that consume this package (e.g. MetaMask clients), and this change ensures that they now are.
17
27
  - Furthermore, we are assuming that clients already use these dependencies, since otherwise it would be impossible to consume this package in its entirety or even create a working build. Hence, the addition of these peer dependencies is really a formality and should not be breaking.
28
+ - Correct ESM-compatible build so that imports of the following packages that re-export other modules via `export *` are no longer corrupted: ([#5011](https://github.com/MetaMask/core/pull/5011))
29
+ - `@ethereumjs/common`
30
+ - `@ethereumjs/util`
31
+ - `@metamask/eth-query`
32
+ - `bn.js`
33
+ - `fast-json-patch`
34
+ - `lodash`
18
35
 
19
36
  ## [41.0.0]
20
37
 
@@ -1172,7 +1189,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1172
1189
 
1173
1190
  All changes listed after this point were applied to this package following the monorepo conversion.
1174
1191
 
1175
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@41.0.0...HEAD
1192
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@41.1.0...HEAD
1193
+ [41.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@41.0.0...@metamask/transaction-controller@41.1.0
1176
1194
  [41.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@40.1.0...@metamask/transaction-controller@41.0.0
1177
1195
  [40.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@40.0.0...@metamask/transaction-controller@40.1.0
1178
1196
  [40.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@39.1.0...@metamask/transaction-controller@40.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/transaction-controller",
3
- "version": "41.0.0-preview-57e6ab5d",
3
+ "version": "41.1.0-preview-9e30e90a",
4
4
  "description": "Stores transactions alongside their periodically updated statuses and manages interactions such as approval and cancellation",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -54,7 +54,7 @@
54
54
  "@ethersproject/contracts": "^5.7.0",
55
55
  "@ethersproject/providers": "^5.7.0",
56
56
  "@metamask/base-controller": "^7.0.2",
57
- "@metamask/controller-utils": "^11.4.3",
57
+ "@metamask/controller-utils": "^11.4.4",
58
58
  "@metamask/eth-query": "^4.0.0",
59
59
  "@metamask/metamask-eth-abis": "^3.1.1",
60
60
  "@metamask/nonce-tracker": "^6.0.0",
@@ -69,14 +69,14 @@
69
69
  },
70
70
  "devDependencies": {
71
71
  "@babel/runtime": "^7.23.9",
72
- "@metamask/accounts-controller": "^20.0.0",
72
+ "@metamask/accounts-controller": "^20.0.1",
73
73
  "@metamask/approval-controller": "^7.1.1",
74
74
  "@metamask/auto-changelog": "^3.4.4",
75
75
  "@metamask/eth-block-tracker": "^11.0.2",
76
76
  "@metamask/eth-json-rpc-provider": "^4.1.6",
77
77
  "@metamask/ethjs-provider-http": "^0.3.0",
78
- "@metamask/gas-fee-controller": "^22.0.1",
79
- "@metamask/network-controller": "^22.0.2",
78
+ "@metamask/gas-fee-controller": "^22.0.2",
79
+ "@metamask/network-controller": "^22.1.0",
80
80
  "@types/bn.js": "^5.1.5",
81
81
  "@types/jest": "^27.4.1",
82
82
  "@types/node": "^16.18.54",