Packages changed:
  WindowMaker
  aaa_base (84.87+git20240402.16596d1 -> 84.87+git20240415.e6815bf)
  dracut (059+suse.560.g145cde90 -> 059+suse.563.g4900899a)
  icewm
  openSUSE-release (20240416 -> 20240417)
  power-profiles-daemon (0.20 -> 0.21)
  python-kiwi (10.0.10 -> 10.0.12)

=== Details ===

==== WindowMaker ====

- Use png for default wallpaper as SLES, TW, Leap 15.6+ are using png
  * Article https://news.opensuse.org/2024/04/09/common-wallpaper-path/
  * Updated style inside theme.tar.bz and symlinks in spec

==== aaa_base ====
Version update (84.87+git20240402.16596d1 -> 84.87+git20240415.e6815bf)
Subpackages: aaa_base-extras

- Update to version 84.87+git20240415.e6815bf:
  * drop obsolete 50-default-s390.conf (bsc#1211721)
  * fix typo in alljava.csh and drop stderr redirection

==== dracut ====
Version update (059+suse.560.g145cde90 -> 059+suse.563.g4900899a)

- Update to version 059+suse.563.g4900899a:
  * feat(dracut): add option to disable automatic guessing of output file (bsc#1213648)

==== icewm ====
Subpackages: icewm-config-upstream icewm-default icewm-lang icewm-lite

- Change DesktopBackgroundImage from .jpg to .png (boo#1222877)

==== openSUSE-release ====
Version update (20240416 -> 20240417)
Subpackages: openSUSE-release-appliance-custom openSUSE-release-dvd

- automatically generated by openSUSE-release-tools/pkglistgen

==== power-profiles-daemon ====
Version update (0.20 -> 0.21)

- Drop BuildRequires on python-pylint by disabling pylint option
  during configure.
- Split out bash-completion into own package:
  powerprofilesctl-bash-completion.
- Update to version 0.21:
  * power-profiles-daemon is now battery-state aware and some
    drivers use a more power efficient state when using the
    balanced profile on battery.
  * Various fixes for the powerprofilesctl command line tool when
    using the launch or version commands.
  * Generate manual page for powerprofilesctl and shell
    completions.
  * Improved daemon command line interface for debugging, see
    `--help-debug` for more information.
  * More restrictive systemd service lockdown settings.
  * Various code optimizations.
- Drop python3-shebang.patch: no longer required since
  %python3_fix_shebang is used anyway.
- New BuildRequires: cmake, pkgconfig(bash-completion),
  python3-argparse-manpage, python3-pylint, python3-shtab.
- New Requires: bash-completion, python3-gobject.
- Build completions for zsh shell and split off new package
  powerprofilesctl-zsh-completion to be automatically installed
  when both zsh and power-profiles-daemon are installed.

==== python-kiwi ====
Version update (10.0.10 -> 10.0.12)

- Bump version: 10.0.11 → 10.0.12
- Drop concept of volumes_mounted_initially
  The volume mount should be the same process no matter
  if it happens for the first time or subsequently
- Fixed mountpoint to use for read-only property
  Make sure get_mountpoint() is used to retrieve the correct
  mountpoint for the root entry point. Using the self.mountpoint
  member is not always correct
- Prevent extra volume mount/umount on btrfs
  For setting up the read-only property an extra mount of the
  btrfs sub-volumes was issued. However, all volumes are mounted
  at that time. Thus it's not required to mount them again, resulting
  in a busy state because of the auto-snapshot mounts which does
  not get umounted and keeps a busy state until the lazy umount
  kicks in. This Fixes #2529
- Fix typo in documentation main page
  Superfluous format sequence
- Added another search path for signed EFI binaries
  Add /usr/lib/grub/*-efi-signed to search for shim signed EFI
  binaries too. This Fixes #2525
- Bump version: 10.0.10 → 10.0.11
- Add schema upgrade opportunity for old schemas
  kiwi files using a schema version < 7.4 are no longer supported
  by kiwi >= v10.x.x. Thus this commit provides the required
  XSL stylesheets to upgrade older schemas to v74 such that they
  can be consumed by the latest kiwi version. The needed xsltproc
  instruction is placed on the main page of the documentation.
- Delete kiwi compat mode
  The compat mode allowed a kiwi v7 legacy argument translation
  and is obsolete since a long time
- Make excludes in bootstrap effective for dnf
  Followup fix to really use the ignore information in the dnf
  package manager implementation. This Fixes #2499