File tree 5 files changed +15
-6
lines changed
5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -749,7 +749,7 @@ jobs:
749
749
steps :
750
750
- run :
751
751
name : build:prod
752
- command : yarn build --build-type flask prod
752
+ command : ENABLE_MV3=false yarn build --build-type flask prod
753
753
- run :
754
754
name : build:debug
755
755
command : find dist/ -type f -exec md5sum {} \; | sort -k 2
Original file line number Diff line number Diff line change 69
69
release_body= " $( awk -v version=" ${tag## v} " -f .circleci/scripts/show-changelog.awk CHANGELOG.md) "
70
70
hub release create \
71
71
--attach builds/metamask-chrome-* .zip \
72
- --attach builds/metamask-firefox-* .zip \
72
+ --attach builds-mv2 /metamask-firefox-* .zip \
73
73
--attach builds-flask/metamask-flask-chrome-* .zip \
74
- --attach builds-flask/metamask-flask-firefox-* .zip \
74
+ --attach builds-flask-mv2 /metamask-flask-firefox-* .zip \
75
75
--attach builds-mmi/metamask-mmi-chrome-* .zip \
76
76
--attach builds-mmi/metamask-mmi-firefox-* .zip \
77
77
--message " Version ${tag## v} " \
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 11.16.10]
10
+ ### Fixed
11
+ - Capture Segment errors during initialization ([ #25253 ] ( https://github.com/MetaMask/metamask-extension/pull/25253 ) )
12
+
9
13
## [ 11.16.9]
10
14
### Fixed
11
15
- 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
4804
4808
- Added the ability to restore accounts from seed words.
4805
4809
4806
4810
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
4808
4813
[ 11.16.9 ] : https://github.com/MetaMask/metamask-extension/compare/v11.16.8...v11.16.9
4809
4814
[ 11.16.8 ] : https://github.com/MetaMask/metamask-extension/compare/v11.16.7...v11.16.8
4810
4815
[ 11.16.7 ] : https://github.com/MetaMask/metamask-extension/compare/v11.16.6...v11.16.7
Original file line number Diff line number Diff line change @@ -188,7 +188,11 @@ export default class MetaMetricsController {
188
188
// Code below submits any pending segmentApiCalls to Segment if/when the controller is re-instantiated
189
189
if ( isManifestV3 ) {
190
190
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
+ }
192
196
} ) ;
193
197
}
194
198
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " metamask-crx" ,
3
- "version" : " 11.16.9 " ,
3
+ "version" : " 11.16.10 " ,
4
4
"private" : true ,
5
5
"repository" : {
6
6
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments