Merge remote-tracking branch 'origin/dev' into bookworm

This commit is contained in:
Alexandre Aubin 2024-04-11 15:51:19 +02:00
commit 7a077b5de9
2 changed files with 25 additions and 1 deletions

24
debian/changelog vendored
View file

@ -4,6 +4,30 @@ yunohost (12.0.0) unstable; urgency=low
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 04 May 2023 20:30:19 +0200
yunohost (11.2.11.1) stable; urgency=low
- Missing import oopsi (29c597ed)
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 11 Apr 2024 14:32:52 +0200
yunohost (11.2.11) stable; urgency=low
- maintenance: make_changelog.sh enhancements ([#1790](http://github.com/YunoHost/yunohost/pull/1790))
- maintenance: switch from gitlab CI to github actions for autoblacking code ([#1800](http://github.com/YunoHost/yunohost/pull/1800))
- readme: add images alt text, fix some links and some markdown formating ([#1802](http://github.com/YunoHost/yunohost/pull/1802))
- doc: fix markdown for autogenerated doc for app helpers and resources ([#1793](http://github.com/YunoHost/yunohost/pull/1793))
- helpers/apt: Do not wait for dpkg lock when calling ynh_package_is_installed ([#1811](http://github.com/YunoHost/yunohost/pull/1811))
- helpers/misc: Protect more path on ynh secure remove ([#1810](http://github.com/YunoHost/yunohost/pull/1810))
- perf: add cache for system utils that fetch debian_version, debian_version_id, system_arch, system_virt (85f83af8)
- app resources: be able to use __APP__, __YNH_ARCH__ and __YNH_DEBIAN_VERSION__, __YNH_DEBIAN_VERSION_ID__ in properties ([#1751](http://github.com/YunoHost/yunohost/pull/1751), a3ab7c91)
- app configpanels: add settings in bash context when running config scripts (c9d570e6, 006318ef)
- app configpanels: fix quoting issue when returning values from config scripts ([#1789](http://github.com/YunoHost/yunohost/pull/1789))
- i18n: Translations updated for Arabic, Basque, Catalan, Chinese (Simplified), Czech, Dutch, English, Esperanto, French, Galician, German, Hindi, Indonesian, Italian, Japanese, Norwegian Bokmål, Occitan, Persian, Polish, Portuguese, Russian, Slovak, Spanish, Telugu, Turkish, Ukrainian
Thanks to all contributors <3 ! (Bram, Christian Wehrli, Félix Piédallu, Francescc, José M, Josué Tille, Kayou, OniriCorpe, ppr, Tagada, tituspijean, xabirequejo, xaloc33, yolateng0)
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 11 Apr 2024 12:24:07 +0200
yunohost (11.2.10.3) stable; urgency=low
- fix: latest release was tagged 'testing' by error

View file

@ -32,7 +32,7 @@ from moulinette.utils.filesystem import mkdir, chown, chmod, write_to_file
from moulinette.utils.filesystem import (
rm,
)
from yunohost.utils.system import system_arch, debian_version
from yunohost.utils.system import system_arch, debian_version, debian_version_id
from yunohost.utils.error import YunohostError, YunohostValidationError
logger = getLogger("yunohost.utils.resources")