Packages changed:
  AppStream (0.16.1 -> 0.16.2)
  Mesa
  Mesa-drivers
  cockpit (276.1 -> 293)
  cockpit-podman (53 -> 70)
  docker-buildx
  gstreamer-plugins-good
  open-iscsi
  openpgm
  tree (2.1.0 -> 2.1.1)

=== Details ===

==== AppStream ====
Version update (0.16.1 -> 0.16.2)
Subpackages: AppStream-lang libAppStreamQt2 libappstream4

- Update to 0.16.2:
  Features:
  * Add API for asking whether the pool is empty
  * Add DDE to known desktop-environment list
  * validator: Check if Release Description is inside description tag
  * Make AppStream use BCP47 for locale in XML data
  Bugfixes:
  * Add missing standard::is-hidden attribute to file search enumerator
  * spdx: Accept brackets in spdx license expression check
  * introspection: Bring back AS_FORMAT_STYLE_COLLECTION into its enum
  * compose: Fix crash in asc_l10n_search_translations_qt()
  * compose: Set lower-cased CID for synthesized components again
  * Don't crash when non-YAML documents are read as YAML
  Miscellaneous:
  * sanitizers: Allow null-dereference check again
- Drop patch, merged upstream:
  * bfa8fa6ac4ef645368a93384a6c16ac551a40922.patch
- Add upstream change:
  * 0001-Do-not-override-default-priority-when-parsing-multip.patch

==== Mesa ====
Subpackages: Mesa-libEGL1 Mesa-libGL1 Mesa-libglapi0 libgbm1

- use -Dxlib-lease=enabled also for -drivers build
- Fix of bsc#1212345
  * After update to 23.1.1 this change affected our build split:
    https://gitlab.freedesktop.org/mesa/mesa/-/commit/2630f4b310f534c830250be44d285e485da83869

==== Mesa-drivers ====
Subpackages: Mesa-dri Mesa-gallium Mesa-libva

- use -Dxlib-lease=enabled also for -drivers build
- Fix of bsc#1212345
  * After update to 23.1.1 this change affected our build split:
    https://gitlab.freedesktop.org/mesa/mesa/-/commit/2630f4b310f534c830250be44d285e485da83869

==== cockpit ====
Version update (276.1 -> 293)
Subpackages: cockpit-bridge cockpit-packagekit cockpit-system

- Add fake openSUSE branding target when building on non-openSUSE
  builds so branding does not need to be removed
- Remove tests package so we don't have to ship a test PAM module
- new version 293:
  - https://cockpit-project.org/blog/cockpit-293.html
- refreshed: css-overrides.patch
- new version 292:
  - https://cockpit-project.org/blog/cockpit-292.html
- refreshed patches: css-overrides.patch, hide-pcp.patch,
  0001-selinux-allow-login-to-read-motd-file.patch

==== cockpit-podman ====
Version update (53 -> 70)

- New version 70. Changes since 53 include,
  * Add ability to prune unused containers
  * Translation updates
  * Container list can be sorted
  * Custom healthcheck actions
  * Dark theme support
  * Pod CPU, memory, port and volume details
  * Create new pod group functionality
  * Show all containers by default
  * Stability and performance improvements
- load-css-overrides.patch: refreshed
- 1299.patch: fixes build with new PF5

==== docker-buildx ====

- Move /usr/lib/docker and /usr/lib/docker/cli-plugins to the main docker
  package, where it belongs.
- Bump Go requirement to 1.20 to match upstream.

==== gstreamer-plugins-good ====
Subpackages: gstreamer-plugins-good-gtk gstreamer-plugins-good-lang

- Add patch to fix bug with data url scheme.
  * adaptivedemux2-uri-data.patch.

==== open-iscsi ====
Subpackages: iscsiuio libopeniscsiusr0

- Upgrade to upstream version 2.1.9 with tag "2.1.9-suse"
  (bsc#1210514), replacing open-iscsi-2.1.8-suse.tar.bz2 with
  open-iscsi-2.1.9-suse.tar.bz2, and resetting
  open-iscsi-SUSE-latest.diff.bz2. A summary rom the ChangeLog
  file:
  * Fix discoveryd compiler warning
  * Sync iscsi_if.h with kernel
  * Handle old DB records correctly
  * Make IQN configuration for iscsi-iname
  * remove OFFLOAD_BOOT_SUPPORTED, which is always true
  * Use UUID for IPC, not "root"
  * do not support SHA3 for libressl
  * build meson cleanups, including changing default DB home
  * Updated README about NOPs
  * Remove "BindTo" in systemd service file
  * Some iscsiuio fixes, including licensing and memory leaks
    (bsc#1210514)
  * Small netlink fixes
  * Fix OOM adjustment
  * Some error recovery fixes
  * Some spelling fixes

==== openpgm ====

- Add Mark-pgm_family_string-as-inline.patch to fix building packages that
  include the PGM headers without using pgm_family_string() by marking it
  'inline' to avoid unused-function warnings. Sent upstream:
  https://github.com/steve-o/openpgm/pull/74

==== tree ====
Version update (2.1.0 -> 2.1.1)

- tree 2.1.1:
  * Various spelling corrections.
  * Fix issue where following links while doing JSON output would lead to
    incorrect JSON output. (simonpmind)
  * Fix issue where .info patterns relative to the .info file that did not use
    a wildcard for matching the prefix were not matching files properly.
    (German Lashevich)
  * Added support for making trees from tab indented files (--fromtabfile)
    (gitlab @AvidSeeker), also cleaned up some other issues in the fromfile
    code.
  * Fix buffer overflow in listdir() when file names are allowed to be longer
    than 256 characters (like when using fromfile.) (Javier Jaramago Fernández)
  * If when attempting to open a .gitignore or .info file from a top level
    directory and failing, recursively check the parents for such a file.  This
    stops when successful at opening such a file. This behavior might in the
    future be modified to open all such files in all parents to until root is
    reached. (Damien Bezborodov) Note that this requires the use of realpath()
    which I think may be an issue for some OSes.
  * Fix issue where tree would never descend (-l) a symbolic link when a full
    tree is gathered (--du/matchdirs/prune) (gitlab @6ramr)