From 3f9e5bedf1c9b15db8960d2daa32f703c3cc2346 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Fri, 8 Jan 2021 21:58:58 +0100 Subject: Release 2.1.16 - "Happy build-essential freeeze" release --- CMakeLists.txt | 2 +- debian/NEWS | 9 +- debian/changelog | 38 +++++++++ doc/apt-get.8.xml | 2 +- doc/apt-verbatim.ent | 2 +- doc/po/apt-doc.pot | 183 ++++++++++++++++++++++++++++++++++++++++- doc/po/de.po | 224 +++++++++++++++++++++++++++++++++++++++++++++++++- doc/po/es.po | 188 +++++++++++++++++++++++++++++++++++++++++- doc/po/fr.po | 190 +++++++++++++++++++++++++++++++++++++++++- doc/po/it.po | 227 +++++++++++++++++++++++++++++++++++++++++++++++++-- doc/po/ja.po | 190 +++++++++++++++++++++++++++++++++++++++++- doc/po/nl.po | 224 +++++++++++++++++++++++++++++++++++++++++++++++++- doc/po/pl.po | 188 +++++++++++++++++++++++++++++++++++++++++- doc/po/pt.po | 224 +++++++++++++++++++++++++++++++++++++++++++++++++- doc/po/pt_BR.po | 182 ++++++++++++++++++++++++++++++++++++++++- po/apt-all.pot | 8 +- po/ar.po | 6 +- po/ast.po | 6 +- po/bg.po | 6 +- po/bs.po | 6 +- po/ca.po | 9 +- po/cs.po | 6 +- po/cy.po | 6 +- po/da.po | 6 +- po/de.po | 31 ++++--- po/dz.po | 6 +- po/el.po | 6 +- po/es.po | 6 +- po/eu.po | 6 +- po/fi.po | 6 +- po/fr.po | 6 +- po/gl.po | 6 +- po/hu.po | 6 +- po/it.po | 6 +- po/ja.po | 6 +- po/km.po | 6 +- po/ko.po | 6 +- po/ku.po | 6 +- po/lt.po | 6 +- po/mr.po | 6 +- po/nb.po | 6 +- po/ne.po | 6 +- po/nl.po | 6 +- po/nn.po | 6 +- po/pl.po | 6 +- po/pt.po | 6 +- po/pt_BR.po | 6 +- po/ro.po | 6 +- po/ru.po | 6 +- po/sk.po | 6 +- po/sl.po | 6 +- po/sv.po | 6 +- po/th.po | 6 +- po/tl.po | 6 +- po/tr.po | 6 +- po/uk.po | 6 +- po/vi.po | 6 +- po/zh_CN.po | 6 +- po/zh_TW.po | 6 +- 59 files changed, 2279 insertions(+), 88 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dfabe182a..48a182529 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -205,7 +205,7 @@ check_cxx_target(HAVE_FMV_SSE42_AND_CRC32DI "sse4.2" "__builtin_ia32_crc32di(0,i # Configure some variables like package, version and architecture. set(PACKAGE ${PROJECT_NAME}) set(PACKAGE_MAIL "APT Development Team ") -set(PACKAGE_VERSION "2.1.15") +set(PACKAGE_VERSION "2.1.16") string(REGEX MATCH "^[0-9.]+" PROJECT_VERSION ${PACKAGE_VERSION}) if (NOT DEFINED DPKG_DATADIR) diff --git a/debian/NEWS b/debian/NEWS index eb8e2c116..7e46f4444 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,7 +1,8 @@ -apt (2.1.16) UNRELEASED; urgency=medium +apt (2.1.16) unstable; urgency=medium - Automatically remove unused kernels on dist-upgrade. To revert to previous - behavior, set APT::Get::AutomaticRemove::Kernels to false. + Automatically remove unused kernels on apt {dist,full}-upgrade. To revert + to previous behavior, set APT::Get::AutomaticRemove::Kernels to false or + pass --no-auto-remove to the command. apt-get remains unchanged. Packages files can now set the Phased-Update-Percentage field to restrict update rollout to a specified percentage of machines. Previously, this has @@ -10,7 +11,7 @@ apt (2.1.16) UNRELEASED; urgency=medium the same updates. Phased updates are disabled in chroots for now to not break buildd-style setups. - -- Julian Andres Klode Mon, 04 Jan 2021 10:47:14 +0100 + -- Julian Andres Klode Fri, 08 Jan 2021 22:01:50 +0100 apt (1.9.11) experimental; urgency=medium diff --git a/debian/changelog b/debian/changelog index 5e341d674..48e689499 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,41 @@ +apt (2.1.16) unstable; urgency=medium + + [ Faidon Liambotis ] + * Various fixes to http and connect method + - basehttp: also consider Access when a Server's URI + - connect: convert a C-style string to std::string + - connect: use ServiceNameOrPort, not Port, as the cache key + + [ Julian Andres Klode ] + * patterns: Add dependency patterns ?depends, ?conflicts, etc. + Note that the -broken- variants are not implemented yet. + * Rewrite of the kernel autoremoval code: + - Determine autoremovable kernels at run-time (LP: #1615381), this fixes the + issue where apt could consider a running kernel autoremovable + - Automatically remove unused kernels on apt {full,dist}-upgrade. + This helps ensuring that we don't run out of /boot space. + - Only keep up to 3 (not 4) kernels. + Ubuntu boot partitions were sized for 3 kernels, not 4. + * Bump codenames to bullseye/hirsute and adjust -security codename for + bullseye (Closes: #969932) + * Ignore failures from immediate configuration. This does not change the + actual installation ordering - we never passed the return code to the + caller and installation went underway anyway if it could be ordered at a + later stage, this just removes spurious after-the-fact errors. + (Closes: #973305, #188161, #211075, #649588) (LP: #1871268) + * Add support for Phased-Update-Percentage, previously used only by + update-manager. + * Implement update --error-on=any so that scripts can reliably check for + transient failures as well. (Closes: #594813) + + [ Demi M. Obenour ] + * test/integration/framework: Be compatible with Bash + + [ Vangelis Skarmoutsos ] + * Greek program translation update + + -- Julian Andres Klode Fri, 08 Jan 2021 21:49:15 +0100 + apt (2.1.15) unstable; urgency=medium [ Julian Andres Klode ] diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 0bdece955..9ecd10c19 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -14,7 +14,7 @@ &apt-email; &apt-product; - 2020-02-27T00:00:00Z + 2021-01-08T00:00:00Z diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 2d70dc9e5..110677450 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -274,7 +274,7 @@ "> - + diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index 987abecd8..6cc81a31c 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 2.1.15\n" +"Project-Id-Version: apt-doc 2.1.16\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2020-12-27 09:54+0100\n" +"POT-Creation-Date: 2021-01-08 22:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1535,6 +1535,16 @@ msgid "" "&apt-cache; for further details." msgstr "" +#. type: Content of: