[Git][security-tracker-team/security-tracker][master] 9 commits: Only list packages for stable for dsa-needed list
Salvatore Bonaccorso
carnil at debian.org
Sat Jun 16 20:52:45 BST 2018
Salvatore Bonaccorso pushed to branch master at Debian Security Tracker / security-tracker
Commits:
8d287dad by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
Only list packages for stable for dsa-needed list
- - - - -
268b5790 by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
DLA template: Switch to mention jessie as the LTS release
- - - - -
8a6a4423 by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
DSA template: Do not mention the oldstable distribution
Support has ended for the oldstable distribution (jessie) on 2018-06-17.
- - - - -
faf1c38f by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
security-team overview: Do not mention jessie-security anymore
- - - - -
3bfd4606 by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
Reduce list of supported architectures for jessie under LTS support
- - - - -
34c55285 by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
Makefile: Reduce list of supported architectures for jessie under LTS support
- - - - -
db2777ba by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
Move support of jessie to LTS team
distributions.json is used by reportbug to decide where to redirect
potential regression reports. Move support for jessie to the LTS team.
- - - - -
b9ffa88b by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
Drop support and contact information for wheezy (eol)
- - - - -
2eb301e7 by Salvatore Bonaccorso at 2018-06-16T21:52:34+02:00
LTS templates: Replace use of Wheezy with Jessie
- - - - -
9 changed files:
- Makefile
- bin/add-dsa-needed.sh
- doc/DLA.template
- doc/DSA.template
- doc/security-team.d.o/index
- lib/python/dist_config.py
- static/distributions.json
- templates/lts-no-dsa.txt
- templates/lts-update-planned.txt
Changes:
=====================================
Makefile
=====================================
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ MIRROR = http://debian.csail.mit.edu/debian
SECURITY_MIRROR = http://security.debian.org/debian-security
wheezy_ARCHS = amd64 armel armhf i386
-jessie_ARCHS = amd64 arm64 armel armhf i386 mips mipsel powerpc ppc64el s390x
+jessie_ARCHS = amd64 armel armhf i386
stretch_ARCHS = amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x
buster_ARCHS = amd64 arm64 armel armhf i386 mips mips64el mipsel ppc64el s390x
sid_ARCHS = amd64 arm64 armel armhf hurd-i386 i386 kfreebsd-i386 kfreebsd-amd64 mips mips64el mipsel powerpc ppc64el s390x
=====================================
bin/add-dsa-needed.sh
=====================================
--- a/bin/add-dsa-needed.sh
+++ b/bin/add-dsa-needed.sh
@@ -20,7 +20,7 @@
set -eu
-include_oldstable=true
+include_oldstable=false
turl="https://security-tracker.debian.org/tracker/status/release"
[ -f data/dsa-needed.txt ] || {
=====================================
doc/DLA.template
=====================================
--- a/doc/DLA.template
+++ b/doc/DLA.template
@@ -3,15 +3,15 @@ To: debian-lts-announce at lists.debian.org
Subject: [SECURITY] [DLA $DLAID] $PACKAGE security update
Package : $PACKAGE
-Version : $wheezy_VERSION
+Version : $jessie_VERSION
CVE ID : $CVE
Debian Bug : $BUGNUM
$TEXT
-For Debian 7 "Wheezy", these problems have been fixed in version
-$wheezy_VERSION.
+For Debian 8 "Jessie", these problems have been fixed in version
+$jessie_VERSION.
We recommend that you upgrade your $PACKAGE packages.
=====================================
doc/DSA.template
=====================================
--- a/doc/DSA.template
+++ b/doc/DSA.template
@@ -14,9 +14,6 @@ Debian Bug : $BUGNUM
$TEXT
-For the oldstable distribution ($OLDSTABLE), this problem has been fixed
-in version $$OLDSTABLE_VERSION.
-
For the stable distribution ($STABLE), this problem has been fixed in
version $$STABLE_VERSION.
=====================================
doc/security-team.d.o/index
=====================================
--- a/doc/security-team.d.o/index
+++ b/doc/security-team.d.o/index
@@ -1,11 +1,9 @@
<table style="margin: 0 auto 0 auto;width: 100%;text-align:center;">
<tbody>
- <tr><th>Jessie 8</th><th>Stretch 9</th><th>Buster</th><th>Sid</th></tr>
- <tr><th>jessie-security</th><th>stretch-security</th><th>testing</th><th>unstable</th></tr>
+ <tr><th>Stretch 9</th><th>Buster</th><th>Sid</th></tr>
+ <tr><th>stretch-security</th><th>testing</th><th>unstable</th></tr>
<tr>
</td><td valign="top">
- <a href="https://security-tracker.debian.org/tracker/status/release/oldstable">Vulnerable Packages</a><br\>
- </td><td valign="top">
<a href="https://security-tracker.debian.org/tracker/status/release/stable">Vulnerable Packages</a><br\>
</td><td valign="top">
<a href="https://security-tracker.debian.org/tracker/status/release/testing">Vulnerable Packages</a><br\>
@@ -13,8 +11,6 @@
<a href="https://security-tracker.debian.org/tracker/status/release/unstable">Vulnerable Packages</a><br\>
</td></tr>
<tr><td valign="top">
- <a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/next-oldstable-point-update.txt">Next point update</a><br\>
- </td><td valign="top">
<a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/next-point-update.txt">Next point update</a><br\>
</td><td valign="top">
Next point update<br\>
=====================================
lib/python/dist_config.py
=====================================
--- a/lib/python/dist_config.py
+++ b/lib/python/dist_config.py
@@ -40,7 +40,7 @@ def apply_config():
common_archs = 'amd64,armel,i386,mips,mipsel,powerpc'.split(',')
squeeze_archs = common_archs + ['s390','ia64','kfreebsd-amd64','kfreebsd-i386','sparc' ]
wheezy_archs = [ 'amd64','armel','armhf','i386' ]
- jessie_archs = common_archs + [ 'arm64','armhf','ppc64el' ]
+ jessie_archs = [ 'amd64','armel','armhf','i386' ]
stretch_archs = [ 'amd64','arm64','armel','armhf','i386','mips','mips64el','mipsel','ppc64el','s390x' ]
buster_archs = [ 'amd64','arm64','armel','armhf','i386','mips','mips64el','mipsel','ppc64el','s390x' ]
sid_archs = [ 'amd64','arm64','armel','armhf','i386','mips','mips64el','mipsel','ppc64el','s390x' ]
=====================================
static/distributions.json
=====================================
--- a/static/distributions.json
+++ b/static/distributions.json
@@ -1,13 +1,13 @@
{
"wheezy": {
"major-version": "7",
- "support": "lts",
- "contact": "debian-lts at lists.debian.org"
+ "support": "none",
+ "contact": ""
},
"jessie": {
"major-version": "8",
- "support": "security",
- "contact": "team at security.debian.org"
+ "support": "lts",
+ "contact": "debian-lts at lists.debian.org"
},
"stretch": {
"major-version": "9",
=====================================
templates/lts-no-dsa.txt
=====================================
--- a/templates/lts-no-dsa.txt
+++ b/templates/lts-no-dsa.txt
@@ -1,12 +1,12 @@
Content-Type: text/plain; charset=utf-8
To: {{ to }}
Cc: {{ cc }}
-Subject: About the security issues affecting {{ package }} in Wheezy
+Subject: About the security issues affecting {{ package }} in Jessie
Dear maintainer(s),
The Debian LTS team recently reviewed the security issue(s) affecting your
-package in Wheezy:
+package in Jessie:
{%- if cve -%}
{% for entry in cve %}
https://security-tracker.debian.org/tracker/{{ entry }}
=====================================
templates/lts-update-planned.txt
=====================================
--- a/templates/lts-update-planned.txt
+++ b/templates/lts-update-planned.txt
@@ -1,12 +1,12 @@
Content-Type: text/plain; charset=utf-8
To: {{ to }}
Cc: {{ cc }}
-Subject: Wheezy update of {{ package }}?
+Subject: Jessie update of {{ package }}?
Dear maintainer(s),
The Debian LTS team would like to fix the security issues which are
-currently open in the Wheezy version of {{ package }}:
+currently open in the Jessie version of {{ package }}:
{%- if cve -%}
{% for entry in cve %}
https://security-tracker.debian.org/tracker/{{ entry }}
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/25b56dfde464413a7af095364469aa40dab99519...2eb301e768a571930ef96c29a16f9fe2bdbd3e69
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/compare/25b56dfde464413a7af095364469aa40dab99519...2eb301e768a571930ef96c29a16f9fe2bdbd3e69
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20180616/cea0aa2d/attachment-0001.html>
More information about the debian-security-tracker-commits
mailing list