Skip to content

Commit

Permalink
Bug 1786291 - Remove esr91 support
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanLorenzo committed Sep 22, 2022
1 parent b743c6c commit 3171ad7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
8 changes: 6 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to `Semantic Versioning <http://semver.org/>`__.

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
Expand Down
18 changes: 4 additions & 14 deletions src/scriptworker/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -471,7 +467,6 @@
"/releases/mozilla-unified",
"/releases/mozilla-beta",
"/releases/mozilla-release",
"/releases/mozilla-esr91",
"/releases/mozilla-esr102",
"/projects/oak",
"/projects/pine",
Expand All @@ -481,28 +476,23 @@
"/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",
),
}
),
"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",),
}
),
Expand Down

0 comments on commit 3171ad7

Please sign in to comment.