Compare commits
17 Commits
bundle_tes
...
bundle_nex
| Author | SHA256 | Date | |
|---|---|---|---|
|
a9af70fdfc
|
|||
|
|
2c4cb6a49d
|
||
|
07d10e5c04
|
|||
|
b5b9e366ab
|
|||
|
7a6e524c26
|
|||
|
e47a09559d
|
|||
|
e8cbad0b66
|
|||
|
d158669a7b
|
|||
| c82c8457ef | |||
|
bac9f2891f
|
|||
| 4c2171938d | |||
|
68e077d533
|
|||
| f5c0fb66ba | |||
|
bd11ef84a5
|
|||
|
ef65277ae2
|
|||
| af9c3d8691 | |||
|
d47848c9d1
|
@@ -1,9 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 07:55:57 UTC 2026 - Victor Zhestkov <vzhestkov@suse.com>
|
||||
|
||||
- Fix the issue preventing SELinux profile to be loaded on SLES 16
|
||||
deployed using cloud images (bsc#1258957)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 16 13:46:38 UTC 2026 - Victor Zhestkov <vzhestkov@suse.com>
|
||||
|
||||
@@ -15,7 +9,7 @@ Mon Feb 2 13:50:23 UTC 2026 - Michael Calmer <mc@suse.com>
|
||||
- Rebuild because of maintenance release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:31:06 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
Mon Jan 19 09:28:31 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
|
||||
- Make syntax in httputil_test compatible with Python 3.6
|
||||
- Fix KeyError in postgres module with PostgreSQL 17 (bsc#1254325)
|
||||
@@ -25,7 +19,7 @@ Mon Jan 19 09:31:06 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
* backport-add-maintain-m-privilege-to-postgres-module.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 14 14:25:41 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
Wed Jan 14 14:29:54 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
|
||||
- Use internal deb classes instead of external aptsource lib
|
||||
* Drop dependency on saltbundlepy-apt
|
||||
@@ -46,16 +40,9 @@ Wed Jan 14 14:25:41 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
* include-deb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 8 08:39:12 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
Thu Jan 8 08:39:44 UTC 2026 - Marek Czernek <marek.czernek@suse.com>
|
||||
|
||||
- Extend warn_until period to 2027
|
||||
|
||||
- Added:
|
||||
* extend-fails-to-warnings-until-2027-742.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 24 21:02:49 UTC 2025 - Alexander Graul <alexander.graul@suse.com>
|
||||
|
||||
- CVE-2025-62349: Add minimum_auth_version to enforce security (bsc#1254257)
|
||||
- Backport security fixes for vendored tornado
|
||||
* BDSA-2024-3438
|
||||
@@ -64,6 +51,7 @@ Mon Nov 24 21:02:49 UTC 2025 - Alexander Graul <alexander.graul@suse.com>
|
||||
- CVE-2025-62348: Junos module yaml loader fix (bsc#1254256)
|
||||
|
||||
- Added:
|
||||
* extend-fails-to-warnings-until-2027-742.patch
|
||||
* backport-3006.17-security-fixes-739.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
@@ -1040,7 +1040,7 @@ if [ $1 -gt 1 ] && [ ! -d "%{salt_venv}%{venv}/lib/%{python_ver_short}" ]; then
|
||||
# Upgrading python version; save the previous environment
|
||||
prev_python_ver_short="$(find %{salt_venv}%{venv}/lib/python* -maxdepth 0 -type d | xargs basename || :)"
|
||||
rm -rf %{salt_venv}%{venv}/lib/prev_env
|
||||
if [ ! -z "$prev_python_ver_short" ]; then
|
||||
if [ ! -z "$prev_python_ver_short" ]; then
|
||||
cp -r "%{salt_venv}%{venv}/lib/$prev_python_ver_short" "%{salt_venv}%{venv}/lib/prev_env"
|
||||
echo $prev_python_ver_short > "%{salt_venv}%{venv}/lib/prev_env/prev_python_ver_short"
|
||||
fi
|
||||
@@ -1048,7 +1048,7 @@ fi
|
||||
|
||||
%post
|
||||
if test -f %{salt_venv}%{venv}/selinux/venv-salt-minion.pp ; then
|
||||
if command -v semodule > /dev/null 2>&1 ; then
|
||||
if which semodule > /dev/null 2>&1 ; then
|
||||
semodule -n -i %{salt_venv}%{venv}/selinux/venv-salt-minion.pp 2> /dev/null || :
|
||||
if /usr/sbin/selinuxenabled ; then
|
||||
/usr/sbin/load_policy
|
||||
@@ -1143,7 +1143,7 @@ if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
%endif
|
||||
if command -v semodule > /dev/null 2>&1 ; then
|
||||
if which semodule > /dev/null 2>&1 ; then
|
||||
semodule -n -r venv-salt-minion 2> /dev/null || :
|
||||
if /usr/sbin/selinuxenabled ; then
|
||||
/usr/sbin/load_policy
|
||||
|
||||
Reference in New Issue
Block a user