You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "::error::Release conflict detected in \`$package_name\`. This package is being released in this PR, but files in the package were also modified ahead of this PR. Please ensure that all changes are included in the release."
const mergeQueueNote = context.eventName === 'merge_group' ? ' while this pull request was in the merge queue' : '';
190
+
191
+
const body = `
192
+
## Release conflict detected
193
+
194
+
The following packages are being released in this pull request, but files in these packages were also modified ahead of this pull request${mergeQueueNote}:
195
+
196
+
${packageList}
197
+
198
+
Please ensure that all changes are included in the release by updating this pull request, and adjusting the changelogs and version bumps as necessary.
Copy file name to clipboardExpand all lines: packages/assets-controllers/CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [89.0.0]
11
+
12
+
### Changed
13
+
14
+
-**BREAKING:** Remove fallback to CryptoCompare on `CurrencyRatesController` and `TokenRatesController` ([#7167](https://github.com/MetaMask/core/pull/7167))
15
+
- Bump `@metamask/core-backend` from `^4.0.0` to `^4.1.0`
16
+
10
17
### Fixed
11
18
12
19
- Enable RPC fallback when Accounts API fails or times out in `TokenBalancesController` ([#7155](https://github.com/MetaMask/core/pull/7155))
@@ -2279,7 +2286,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2279
2286
2280
2287
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/core/pull/845))
0 commit comments