From 1e3fd2989a639d18d2f3e20b03b67b0fc111caae Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 11 Apr 2024 13:59:07 +0200 Subject: [PATCH 1/3] Update changelog for 11.2.11 --- debian/changelog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/debian/changelog b/debian/changelog index c9e3537d3..d079d74f7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,21 @@ +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 Thu, 11 Apr 2024 12:24:07 +0200 + yunohost (11.2.10.3) stable; urgency=low - fix: latest release was tagged 'testing' by error From 29c597ed8ee4b1f8201c14aa5249f723876db4a4 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 11 Apr 2024 14:32:39 +0200 Subject: [PATCH 2/3] Missing import oopsi --- src/utils/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/resources.py b/src/utils/resources.py index 7b2bbee96..b433dd596 100644 --- a/src/utils/resources.py +++ b/src/utils/resources.py @@ -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 = getActionLogger("yunohost.app_resources") From bf5b2ae53296b61310f5b728f185763fe2e81765 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 11 Apr 2024 14:33:58 +0200 Subject: [PATCH 3/3] Update changelog for 11.2.11.1 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index d079d74f7..b596f71d9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +yunohost (11.2.11.1) stable; urgency=low + + - Missing import oopsi (29c597ed) + + -- Alexandre Aubin 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))