thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-reviewcommit ae8dee09f32b3abbc90744c66e088fe6686c7239
parent 37a9f897c6d0d3651af13758a7f33f91b3365116
Author: Pi Agent <agent@pi.local>
Date: Wed, 22 Jul 2026 15:23:26 +0200
Pin strict_max_version for the patchHost experiment
The linter's experiment-missing-strict-max-version check rejects an
experiment add-on with no cap: experiments depend on internal
Thunderbird APIs that shift between majors, so an uncapped experiment
risks loading on a version whose internals moved and breaking there.
Cap at 153.* — the release schema the linter validated the add-on
against — so the add-on won't load on an untested 154+. Bump the cap
per release once tested on the next major.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/extension/manifest.json b/extension/manifest.json
@@ -6,7 +6,8 @@
"browser_specific_settings": {
"gecko": {
"id": "patchreview@mccd.space",
- "strict_min_version": "115.0"
+ "strict_min_version": "115.0",
+ "strict_max_version": "153.*"
}
},
"background": {