diff options
| author | Julian Andres Klode <julian.klode@canonical.com> | 2025-02-07 21:17:53 +0100 |
|---|---|---|
| committer | Julian Andres Klode <julian.klode@canonical.com> | 2025-02-07 21:17:53 +0100 |
| commit | e30a024ad521f22ca8d8b0511dbd78538388843f (patch) | |
| tree | 7bfd4c9cbdc4654deb38c0791f92a607c9bfd15b | |
| parent | cdf57541faf59ea5594c8e52c9e635ff0d7dbecc (diff) | |
Release 2.9.282.9.28
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | debian/changelog | 35 | ||||
| -rw-r--r-- | doc/apt-verbatim.ent | 2 | ||||
| -rw-r--r-- | doc/po/apt-doc.pot | 4 | ||||
| -rw-r--r-- | po/apt-all.pot | 4 |
5 files changed, 41 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1302955f1..0601ba40e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -204,7 +204,7 @@ endif() # Configure some variables like package, version and architecture. set(PACKAGE ${PROJECT_NAME}) set(PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>") -set(PACKAGE_VERSION "2.9.27") +set(PACKAGE_VERSION "2.9.28") string(REGEX MATCH "^[0-9.]+" PROJECT_VERSION ${PACKAGE_VERSION}) if (NOT DEFINED DPKG_DATADIR) diff --git a/debian/changelog b/debian/changelog index a760ee1e7..bdcad4310 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,38 @@ +apt (2.9.28) unstable; urgency=medium + + [ Julian Andres Klode ] + * modernize-sources: Avoid opening /dev/stdout for simulate + * dpkg: Pass --admindir if a different one is specified; fixes issue + where foreign architectures from the host were used when Dir is set. + * Various updates to the '3.0' solver: Particularly it now has a clause + database for reals rather than rediscovering clauses when backtracking. + - refactor: Drop unused code, annotate [[nodiscard]] and const, simplify, + extract functions, and particularly introduce the Clause class. + - algorithm: Simplify work ordering. This may cause some changes in + how dependencies are resolved. + - algorithm: Replace PropagateInstall() with Discover() and then + propagate based on the stored clauses. Clauses are discovered + from package dependencies and persistent, i.e. they have no + decision level associated. Discovery is incremental so far. + - algorithm: Support comparing packages and versions, such that + we can store both package and version variables in a clause. + - algorithm: Use a package clause for optional roots. This allows + deciding to keep an automatically installed package installed, + without having to decide the version (and hence enqueue common + dependencies first). + - performance: Cache calls to policy. + - performance: Cache all configuration calls + - performance: Point to stored clauses, do not copy them + - performance: Avoid std::vector for statically sized arrays. Due + to adding libstdc++ assertions, vector range checks accounted + for up to 20% of solver runtime. + + [ Christopher Bock ] + * completion: Add modernize-sources (Closes: #1094904) + * edit-sources: don't force .list + + -- Julian Andres Klode <jak@debian.org> Fri, 07 Feb 2025 21:00:48 +0100 + apt (2.9.27) unstable; urgency=medium [ Julian Andres Klode ] diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 78eddb935..5bc758453 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -268,7 +268,7 @@ "> <!-- this will be updated by 'prepare-release' --> -<!ENTITY apt-product-version "2.9.27"> +<!ENTITY apt-product-version "2.9.28"> <!-- (Code)names for various things used all over the place --> <!ENTITY debian-oldstable-codename "bookworm"> diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index f98e5d490..d0a3c3bc7 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.9.27\n" +"Project-Id-Version: apt-doc 2.9.28\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2025-02-03 12:45+0000\n" +"POT-Creation-Date: 2025-02-07 20:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/po/apt-all.pot b/po/apt-all.pot index e523c9cd2..b55299b49 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 2.9.27\n" +"Project-Id-Version: apt 2.9.28\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2025-02-03 12:45+0000\n" +"POT-Creation-Date: 2025-02-07 20:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" |
