diff --git a/HISTORY.rst b/HISTORY.rst index 945a5022..f052a237 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,8 +4,12 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. -43.8.0 - TBD -------------------- +44.0.0 - TBD +------------ +Removed +~~~~~~~ +- Removed esr91 support + Added ~~~~~ - Restricted Android-Components scopes to both `android-components` and `firefox-android` repos diff --git a/src/scriptworker/constants.py b/src/scriptworker/constants.py index e6cc6dd4..d7b21596 100644 --- a/src/scriptworker/constants.py +++ b/src/scriptworker/constants.py @@ -450,17 +450,13 @@ "all-release-branches": ( "/releases/mozilla-beta", "/releases/mozilla-release", - "/releases/mozilla-esr91", "/releases/mozilla-esr102", ), # Limit things like pushapk to just these branches "release": ("/releases/mozilla-release",), "beta": ("/releases/mozilla-beta",), "beta-or-release": ("/releases/mozilla-beta", "/releases/mozilla-release"), - "esr": ( - "/releases/mozilla-esr91", - "/releases/mozilla-esr102", - ), + "esr": ("/releases/mozilla-esr102",), "nightly": ("/mozilla-central",), # Which repos can do nightly signing? # XXX remove /projects/oak when we no longer test updates against it @@ -471,7 +467,6 @@ "/releases/mozilla-unified", "/releases/mozilla-beta", "/releases/mozilla-release", - "/releases/mozilla-esr91", "/releases/mozilla-esr102", "/projects/oak", "/projects/pine", @@ -481,14 +476,12 @@ "/mozilla-central", "/releases/mozilla-beta", "/releases/mozilla-release", - "/releases/mozilla-esr91", "/releases/mozilla-esr102", ), "all-production-branches-and-autoland": ( "/mozilla-central", "/releases/mozilla-beta", "/releases/mozilla-release", - "/releases/mozilla-esr91", "/releases/mozilla-esr102", "/integration/autoland", ), @@ -496,13 +489,10 @@ ), "thunderbird": immutabledict( { - "all-release-branches": ("/releases/comm-beta", "/releases/comm-esr91", "/releases/comm-esr102"), + "all-release-branches": ("/releases/comm-beta", "/releases/comm-esr102"), "beta": ("/releases/comm-beta",), - "esr": ( - "/releases/comm-esr91", - "/releases/comm-esr102", - ), - "all-nightly-branches": ("/comm-central", "/releases/comm-beta", "/releases/comm-esr91", "/releases/comm-esr102"), + "esr": ("/releases/comm-esr102",), + "all-nightly-branches": ("/comm-central", "/releases/comm-beta", "/releases/comm-esr102"), "nightly": ("/comm-central",), } ),