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
`No release version was found in body of bug report issue ${labelable?.number}.`,
138
-
);
139
-
}
140
133
}else{
141
134
consterrorMessage=
142
135
"Issue body does not match any of expected templates ('general-issue.yml' or 'bug-report.yml').\n\nMake sure issue's body includes all section titles.\n\nSections titles are listed here: https://github.com/MetaMask/metamask-extension/blob/develop/.github/scripts/shared/template.ts#L14-L37";
@@ -215,6 +208,28 @@ function extractTemplateTypeFromBody(body: string): TemplateType {
215
208
returnTemplateType.None;
216
209
}
217
210
211
+
// This helper function extracts regression stage (Development, Testing, Production) from bug report issue's body.
// This function checks if issue is a release candidate (RC) issue, discovered during release regression testing phase. If so, it means it is not a production issue.
description: `Regression bug that was found on development branch, but not yet present in production`,
340
+
};
341
+
342
+
caseRegressionStage.Testing:
343
+
return{
344
+
name: `regression-RC-${releaseVersion||'*'}`,
345
+
color: '744C11',// orange
346
+
description: releaseVersion ? `Regression bug that was found in release candidate (RC) for release ${releaseVersion}` : `TODO: Unknown release version. Please replace with correct 'regression-RC-x.y.z' label, where 'x.y.z' is the number of the release where bug was found.`,
347
+
};
348
+
349
+
caseRegressionStage.Beta:
350
+
return{
351
+
name: `regression-beta-${releaseVersion||'*'}`,
352
+
color: 'D94A83',// pink
353
+
description: releaseVersion ? `Regression bug that was found in beta in release ${releaseVersion}` : `TODO: Unknown release version. Please replace with correct 'regression-beta-x.y.z' label, where 'x.y.z' is the number of the release where bug was found.`,
354
+
};
355
+
356
+
caseRegressionStage.Production:
357
+
return{
358
+
name: `regression-prod-${releaseVersion||'*'}`,
359
+
color: '5319E7',// violet
360
+
description: releaseVersion ? `Regression bug that was found in production in release ${releaseVersion}` : `TODO: Unknown release version. Please replace with correct 'regression-prod-x.y.z' label, where 'x.y.z' is the number of the release where bug was found.`,
361
+
};
362
+
363
+
default:
364
+
return{
365
+
name: `regression-*`,
366
+
color: 'EDEDED',// grey
367
+
description: `TODO: Unknown regression stage. Please replace with correct regression label: 'regression-develop', 'regression-RC-x.y.z', or 'regression-prod-x.y.z' label, where 'x.y.z' is the number of the release where bug was found.`,
Copy file name to clipboardExpand all lines: CHANGELOG.md
+53-1Lines changed: 53 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
9
+
## [11.16.15]
10
+
### Changed
11
+
- Updates MMI packages, support for a custodian has been removed ([#25502](https://github.com/MetaMask/metamask-extension/pull/25502))
12
+
13
+
### Fixed
14
+
- Fix bug preventing connection of Trezor hardware wallets on firefox ([#25487](https://github.com/MetaMask/metamask-extension/pull/25487))
15
+
16
+
## [11.16.14]
17
+
### Fixed
18
+
- Fix bug that could result in failure of some swap transactions ([#25488](https://github.com/MetaMask/metamask-extension/pull/25488))
19
+
20
+
## [11.16.13]
21
+
### Changed
22
+
- Update Blockaid feature for latest security protections ([#25442](https://github.com/MetaMask/metamask-extension/pull/25442))
23
+
24
+
## [11.16.12]
25
+
26
+
## [11.16.11]
27
+
### Fixed
28
+
- Ensure network requests for phishing lists are not sent if the Basic Functionality Toggle is off ([#25306](https://github.com/MetaMask/metamask-extension/pull/25306))
29
+
30
+
## [11.16.10]
31
+
### Fixed
32
+
- Capture Segment errors during initialization ([#25253](https://github.com/MetaMask/metamask-extension/pull/25253))
33
+
34
+
## [11.16.9]
35
+
### Fixed
36
+
- Fix an issue where Snaps would be unable to decrypt older state ([#25172](https://github.com/MetaMask/metamask-extension/pull/25172))
37
+
38
+
## [11.16.8]
39
+
### Changed
40
+
- Prepare for increasing the minimum Chromium version supported by MetaMask ([#25142](https://github.com/MetaMask/metamask-extension/pull/25142))
41
+
- Users on Chromium versions lower than 109 will now see a warning that they need to update their browser.
42
+
Assuming their Chromium browser does not support the Offscreen Document api, the warning will include a note
43
+
that Snaps and Hardware wallets do not work on their current browser version.
44
+
-[MMI] Updates MMI packages to latest versions ([#24581](https://github.com/MetaMask/metamask-extension/pull/24581))
45
+
46
+
### Fixed
47
+
- Fix bug that could cause users to be locked out of MetaMask if they previously emptied the "Auto-lock timer" advanced setting
48
+
input field and save it in that empty state. ([#25109](https://github.com/MetaMask/metamask-extension/pull/25109))
49
+
- Fix bug that can prevent updates to network data in connected dapps after manually switching the network in the wallet ui ([#25127](https://github.com/MetaMask/metamask-extension/pull/25127))
50
+
-[MMI] Fixed an issue that prevented MMI transactions from being sent correctly ([#24947](https://github.com/MetaMask/metamask-extension/pull/24947))
51
+
-[MMI] Better support for MMI Portfolio Dashboard with an update to the allow list ([#24992](https://github.com/MetaMask/metamask-extension/pull/24992))
52
+
9
53
## [11.16.7]
10
54
### Fixed
11
55
- Fix bug that breaks dapps that expect users to switch chains manually([#25046]https://github.com/MetaMask/metamask-extension/pull/25046)
@@ -4785,7 +4829,15 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
4785
4829
- Added the ability to restore accounts from seed words.
0 commit comments