Skip to content

Commit f795589

Browse files
authored
Merge pull request #25254 from MetaMask/Version-v11.16.10
Version v11.16.10
2 parents d392c02 + 87d2795 commit f795589

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ jobs:
749749
steps:
750750
- run:
751751
name: build:prod
752-
command: yarn build --build-type flask prod
752+
command: ENABLE_MV3=false yarn build --build-type flask prod
753753
- run:
754754
name: build:debug
755755
command: find dist/ -type f -exec md5sum {} \; | sort -k 2

.circleci/scripts/release-create-gh-release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ then
6969
release_body="$(awk -v version="${tag##v}" -f .circleci/scripts/show-changelog.awk CHANGELOG.md)"
7070
hub release create \
7171
--attach builds/metamask-chrome-*.zip \
72-
--attach builds/metamask-firefox-*.zip \
72+
--attach builds-mv2/metamask-firefox-*.zip \
7373
--attach builds-flask/metamask-flask-chrome-*.zip \
74-
--attach builds-flask/metamask-flask-firefox-*.zip \
74+
--attach builds-flask-mv2/metamask-flask-firefox-*.zip \
7575
--attach builds-mmi/metamask-mmi-chrome-*.zip \
7676
--attach builds-mmi/metamask-mmi-firefox-*.zip \
7777
--message "Version ${tag##v}" \

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [11.16.10]
10+
### Fixed
11+
- Capture Segment errors during initialization ([#25253](https://github.com/MetaMask/metamask-extension/pull/25253))
12+
913
## [11.16.9]
1014
### Fixed
1115
- Fix an issue where Snaps would be unable to decrypt older state ([#25172](https://github.com/MetaMask/metamask-extension/pull/25172))
@@ -4804,7 +4808,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
48044808
- Added the ability to restore accounts from seed words.
48054809

48064810

4807-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.16.9...HEAD
4811+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.16.10...HEAD
4812+
[11.16.10]: https://github.com/MetaMask/metamask-extension/compare/v11.16.9...v11.16.10
48084813
[11.16.9]: https://github.com/MetaMask/metamask-extension/compare/v11.16.8...v11.16.9
48094814
[11.16.8]: https://github.com/MetaMask/metamask-extension/compare/v11.16.7...v11.16.8
48104815
[11.16.7]: https://github.com/MetaMask/metamask-extension/compare/v11.16.6...v11.16.7

app/scripts/controllers/metametrics.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,11 @@ export default class MetaMetricsController {
188188
// Code below submits any pending segmentApiCalls to Segment if/when the controller is re-instantiated
189189
if (isManifestV3) {
190190
Object.values(segmentApiCalls).forEach(({ eventType, payload }) => {
191-
this._submitSegmentAPICall(eventType, payload);
191+
try {
192+
this._submitSegmentAPICall(eventType, payload);
193+
} catch (error) {
194+
this._captureException(error);
195+
}
192196
});
193197
}
194198

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-crx",
3-
"version": "11.16.9",
3+
"version": "11.16.10",
44
"private": true,
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)