mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
09fc214a79
git-1.9.1 was released in 2014 while git-2.7.4 was released in 2016. Debian Stretch was released in 2017 and Ubuntu Xenial was released in 2016 which are plenty old at this point. Both of those include at least git-2.7.4. We will start warning users of Debian Jessie (released in 2015 & EOL in 2020) and Ubuntu Trusty (released in 2014 & EOL Apr 2024) that they will need to upgrade. Change-Id: I6be3809bc45968fdcb02cad3f7daf75ded1bb5b1 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/415137 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Josip Sokcevic <sokcevic@google.com> Commit-Queue: Mike Frysinger <vapier@google.com>
62 lines
2.3 KiB
JSON
62 lines
2.3 KiB
JSON
# This file declares various requirements for this version of repo. The
|
|
# launcher script will load it and check the constraints before trying to run
|
|
# us. This avoids issues of the launcher using an old version of Python (e.g.
|
|
# 3.5) while the codebase has moved on to requiring something much newer (e.g.
|
|
# 3.8). If the launcher tried to import us, it would fail with syntax errors.
|
|
|
|
# This is a JSON file with line-level comments allowed.
|
|
|
|
# Always keep backwards compatibility in mine. The launcher script is robust
|
|
# against missing values, but when a field is renamed/removed, it means older
|
|
# versions of the launcher script won't be able to enforce the constraint.
|
|
|
|
# When requiring versions, always use lists as they are easy to parse & compare
|
|
# in Python. Strings would require futher processing to turn into a list.
|
|
|
|
# Version constraints should be expressed in pairs: soft & hard. Soft versions
|
|
# are when we start warning users that their software too old and we're planning
|
|
# on dropping support for it, so they need to start planning system upgrades.
|
|
# Hard versions are when we refuse to work the tool. Users will be shown an
|
|
# error message before we abort entirely.
|
|
|
|
# When deciding whether to upgrade a version requirement, check out the distro
|
|
# lists to see who will be impacted:
|
|
# https://gerrit.googlesource.com/git-repo/+/HEAD/docs/release-process.md#Project-References
|
|
|
|
{
|
|
# The repo launcher itself. This allows us to force people to upgrade as some
|
|
# ignore the warnings about it being out of date, or install ancient versions
|
|
# to start with for whatever reason.
|
|
#
|
|
# NB: Repo launchers started checking this file with repo-2.12, so listing
|
|
# versions older than that won't make a difference.
|
|
"repo": {
|
|
"hard": [2, 11],
|
|
"soft": [2, 11]
|
|
},
|
|
|
|
# Supported Python versions.
|
|
#
|
|
# python-3.6 is in Ubuntu Bionic.
|
|
# python-3.7 is in Debian Buster.
|
|
"python": {
|
|
"hard": [3, 6],
|
|
"soft": [3, 6]
|
|
},
|
|
|
|
# Supported git versions.
|
|
#
|
|
# git-1.7.9 is in Ubuntu Precise.
|
|
# git-1.7.10 is in Debian Wheezy.
|
|
# git-1.9.1 is in Ubuntu Trusty.
|
|
# git-2.1.4 is in Debian Jessie.
|
|
# git-2.7.4 is in Ubuntu Xenial.
|
|
# git-2.11.0 is in Debian Stretch.
|
|
# git-2.17.0 is in Ubuntu Bionic.
|
|
# git-2.20.1 is in Debian Buster.
|
|
"git": {
|
|
"hard": [1, 7, 9],
|
|
"soft": [2, 7, 4]
|
|
}
|
|
}
|