@metamask-previews/bridge-status-controller 61.0.0-preview-4cd9da8d → 63.0.0-preview-e3eb8eca
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.
- package/CHANGELOG.md +18 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [63.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/bridge-controller` from `^62.0.0` to `^63.0.0` ([#7207](https://github.com/MetaMask/core/pull/7207))
|
|
15
|
+
|
|
16
|
+
## [62.0.0]
|
|
17
|
+
|
|
10
18
|
### Changed
|
|
11
19
|
|
|
20
|
+
- Bump `@metamask/polling-controller` from `^15.0.0` to `^16.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
21
|
+
- Bump `@metamask/controller-utils` from `^11.15.0` to `^11.16.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
22
|
+
- **BREAKING:** Bump `@metamask/transaction-controller` from `^61.0.0` to `^62.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
23
|
+
- **BREAKING:** Bump `@metamask/network-controller` from `^25.0.0` to `^26.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
24
|
+
- **BREAKING:** Bump `@metamask/gas-fee-controller` from `^25.0.0` to `^26.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
25
|
+
- **BREAKING:** Bump `@metamask/bridge-controller` from `^61.0.0` to `^62.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
26
|
+
- **BREAKING:** Bump `@metamask/accounts-controller` from `^34.0.0` to `^35.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
12
27
|
- Update `submitTx` handler to accept optional `isLoading` and `warnings` arguments. When `isLoading=true`, the QuotesReceived event is published ([#7182](https://github.com/MetaMask/core/pull/7182))
|
|
13
28
|
|
|
14
29
|
## [61.0.0]
|
|
@@ -762,7 +777,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
762
777
|
|
|
763
778
|
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
|
|
764
779
|
|
|
765
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@
|
|
780
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@63.0.0...HEAD
|
|
781
|
+
[63.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@62.0.0...@metamask/bridge-status-controller@63.0.0
|
|
782
|
+
[62.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@61.0.0...@metamask/bridge-status-controller@62.0.0
|
|
766
783
|
[61.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@60.1.0...@metamask/bridge-status-controller@61.0.0
|
|
767
784
|
[60.1.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@60.0.0...@metamask/bridge-status-controller@60.1.0
|
|
768
785
|
[60.0.0]: https://github.com/MetaMask/core/compare/@metamask/bridge-status-controller@59.0.0...@metamask/bridge-status-controller@60.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/bridge-status-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "63.0.0-preview-e3eb8eca",
|
|
4
4
|
"description": "Manages bridge-related status fetching functionality for MetaMask",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@metamask/base-controller": "^9.0.0",
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
53
|
-
"@metamask/polling-controller": "^
|
|
52
|
+
"@metamask/controller-utils": "^11.16.0",
|
|
53
|
+
"@metamask/polling-controller": "^16.0.0",
|
|
54
54
|
"@metamask/superstruct": "^3.1.0",
|
|
55
55
|
"@metamask/utils": "^11.8.1",
|
|
56
56
|
"bignumber.js": "^9.1.2",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@metamask/accounts-controller": "^
|
|
60
|
+
"@metamask/accounts-controller": "^35.0.0",
|
|
61
61
|
"@metamask/auto-changelog": "^3.4.4",
|
|
62
|
-
"@metamask/bridge-controller": "^
|
|
63
|
-
"@metamask/gas-fee-controller": "^
|
|
64
|
-
"@metamask/network-controller": "^
|
|
62
|
+
"@metamask/bridge-controller": "^63.0.0",
|
|
63
|
+
"@metamask/gas-fee-controller": "^26.0.0",
|
|
64
|
+
"@metamask/network-controller": "^26.0.0",
|
|
65
65
|
"@metamask/snaps-controllers": "^14.0.1",
|
|
66
|
-
"@metamask/transaction-controller": "^
|
|
66
|
+
"@metamask/transaction-controller": "^62.0.0",
|
|
67
67
|
"@ts-bridge/cli": "^0.6.4",
|
|
68
68
|
"@types/jest": "^27.4.1",
|
|
69
69
|
"deepmerge": "^4.2.2",
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
"typescript": "~5.3.3"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
|
-
"@metamask/accounts-controller": "^
|
|
81
|
-
"@metamask/bridge-controller": "^
|
|
82
|
-
"@metamask/gas-fee-controller": "^
|
|
83
|
-
"@metamask/network-controller": "^
|
|
80
|
+
"@metamask/accounts-controller": "^35.0.0",
|
|
81
|
+
"@metamask/bridge-controller": "^63.0.0",
|
|
82
|
+
"@metamask/gas-fee-controller": "^26.0.0",
|
|
83
|
+
"@metamask/network-controller": "^26.0.0",
|
|
84
84
|
"@metamask/snaps-controllers": "^14.0.0",
|
|
85
|
-
"@metamask/transaction-controller": "^
|
|
85
|
+
"@metamask/transaction-controller": "^62.0.0"
|
|
86
86
|
},
|
|
87
87
|
"engines": {
|
|
88
88
|
"node": "^18.18 || >=20"
|