From 09fc214a7966a982ab837aedd010e3732c5ed7d1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 20 Mar 2024 16:11:31 -0400 Subject: [PATCH] git: raise soft version to 2.7.4 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 Reviewed-by: Josip Sokcevic Commit-Queue: Mike Frysinger --- docs/release-process.md | 11 ++++++----- requirements.json | 6 +++++- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/release-process.md b/docs/release-process.md index 5e3fb630..8cec2b47 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -241,7 +241,7 @@ Things in italics are things we used to care about but probably don't anymore. | Feb 2014 | *Dec 2014* | **1.9.0** | | | *14.04 Trusty* | | Mar 2014 | *Mar 2019* | | *3.4.0* | | *14.04 Trusty* - 15.10 Wily / *Jessie* | | Mar 2014 | | | | 6.6 | *14.04 Trusty* - 14.10 Utopic | -| Apr 2014 | *Apr 2022* | | | | *14.04 Trusty* | 1.9.1 | 2.7.5 3.4.0 | 6.6 | +| Apr 2014 | *Apr 2024* | | | | *14.04 Trusty* | 1.9.1 | 2.7.5 3.4.0 | 6.6 | | May 2014 | *Dec 2014* | 2.0.0 | | Aug 2014 | *Dec 2014* | *2.1.0* | | | 14.10 Utopic - 15.04 Vivid / *Jessie* | | Oct 2014 | | | | 6.7 | 15.04 Vivid | @@ -262,7 +262,7 @@ Things in italics are things we used to care about but probably don't anymore. | Jan 2016 | *Jul 2017* | *2.7.0* | | | *16.04 Xenial* | | Feb 2016 | | | | 7.2 | *16.04 Xenial* | | Mar 2016 | *Jul 2017* | 2.8.0 | -| Apr 2016 | *Apr 2024* | | | | *16.04 Xenial* | 2.7.4 | 2.7.11 3.5.1 | 7.2 | +| Apr 2016 | *Apr 2026* | | | | *16.04 Xenial* | 2.7.4 | 2.7.11 3.5.1 | 7.2 | | Jun 2016 | *Jul 2017* | 2.9.0 | | | 16.10 Yakkety | | Jul 2016 | | | | 7.3 | 16.10 Yakkety | | Sep 2016 | *Sep 2017* | 2.10.0 | @@ -319,10 +319,11 @@ Things in italics are things we used to care about but probably don't anymore. | Aug 2021 | | 2.33.0 | | 8.7 | | Aug 2021 | **Aug 2026** | | | | **Debian 11 Bullseye** | 2.30.2 | 2.7.18 3.9.2 | 8.4 | | Sep 2021 | | | | 8.8 | -| Oct 2021 | | 2.34.0 | 3.10.0 | +| Oct 2021 | | 2.34.0 | 3.10.0 | | **22.04 Jammy** | | Jan 2022 | | 2.35.0 | -| Feb 2022 | | | | 8.9 | +| Feb 2022 | | | | 8.9 | **22.04 Jammy** | | Apr 2022 | | 2.36.0 | | 9.0 | +| Apr 2022 | **Apr 2032** | | | | **22.04 Jammy** | 2.34.1 | 2.7.18 3.10.6 | 8.9 | | Jun 2022 | | 2.37.0 | | Oct 2022 | | 2.38.0 | | 9.1 | | Oct 2022 | | | 3.11.0 | | **Bookworm** | @@ -346,7 +347,7 @@ Things in italics are things we used to care about but probably don't anymore. [rel-g]: https://en.wikipedia.org/wiki/Git#Releases [rel-o]: https://www.openssh.com/releasenotes.html [rel-p]: https://en.wikipedia.org/wiki/History_of_Python#Table_of_versions -[rel-u]: https://en.wikipedia.org/wiki/Ubuntu_version_history#Table_of_versions +[rel-u]: https://wiki.ubuntu.com/Releases [example announcement]: https://groups.google.com/d/topic/repo-discuss/UGBNismWo1M/discussion [repo-discuss@googlegroups.com]: https://groups.google.com/forum/#!forum/repo-discuss [go/repo-release]: https://goto.google.com/repo-release diff --git a/requirements.json b/requirements.json index a4413417..dac9a4f2 100644 --- a/requirements.json +++ b/requirements.json @@ -50,8 +50,12 @@ # 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": [1, 9, 1] + "soft": [2, 7, 4] } }