Packages changed:
  Mesa
  Mesa-drivers
  abseil-cpp (20250127.0 -> 20250127.1)
  bind (9.20.5 -> 9.20.7)
  ca-certificates-mozilla
  cfitsio
  cpio
  dbus-1-glib
  gegl (0.4.56 -> 0.4.58)
  gimp (3.0.0 -> 3.0.2)
  gnutls
  kernel-firmware-amdgpu (20250318 -> 20250322)
  kernel-firmware-ath10k
  kernel-firmware-bluetooth
  kernel-firmware-media
  kernel-firmware-mediatek
  kernel-firmware-nvidia
  kernel-firmware-platform
  kernel-firmware-qcom
  kernel-firmware-sound (20250318 -> 20250321)
  kernel-source (6.13.7 -> 6.13.8)
  libcap (2.73 -> 2.75)
  libpinyin (2.8.1 -> 2.10.1)
  librist (0.2.10 -> 0.2.11)
  linux-glibc-devel (6.13 -> 6.14)
  openSUSE-release (20250325 -> 20250326)
  ovmf (202411 -> 202502)
  poppler (25.02.0 -> 25.03.0)
  poppler-qt6 (25.02.0 -> 25.03.0)
  python-Pillow
  python-linux-procfs
  rasqal
  salt
  sdbootutil (1+git20250311.8d3db8b -> 1+git20250324.c1cd393)
  sendmail
  soxr
  spiel
  timezone (2025a -> 2025b)
  xscreensaver

=== Details ===

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

- Fix regression in winsys/amdgpu (boo#1239657)
  revert_8c91624614c1f939974fe0d2d1a3baf83335cecb.patch
  https://gitlab.freedesktop.org/mesa/mesa/-/issues/12809
  https://gitlab.freedesktop.org/mesa/mesa/-/commit/8c91624614c1f939974fe0d2d1a3baf83335cecb

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

- Fix regression in winsys/amdgpu (boo#1239657)
  revert_8c91624614c1f939974fe0d2d1a3baf83335cecb.patch
  https://gitlab.freedesktop.org/mesa/mesa/-/issues/12809
  https://gitlab.freedesktop.org/mesa/mesa/-/commit/8c91624614c1f939974fe0d2d1a3baf83335cecb

==== abseil-cpp ====
Version update (20250127.0 -> 20250127.1)
Subpackages: libabsl_2501_0_0 libabsl_lite_2501_0_0

- Update to 20250127.1:
  * Improved Bazel support
  * Added ABSL_ATTRIBUTE_VIEW and ABSL_ATTRIBUTE_OWNER for
    diagnosing certain lifetime issues
  * Many performance improvements
  * potential integer overflow in hash container create/resize
    fixed again - boo#1236438

==== bind ====
Version update (9.20.5 -> 9.20.7)
Subpackages: bind-doc bind-utils

- Upgrade to release 9.20.7
  New Features:
  * Implement the min-transfer-rate-in configuration option.
    A new option min-transfer-rate-in has been added to the view
    and zone configurations. It can abort incoming zone transfers
    that run very slowly due to network-related issues, for
    example. The default value is 10240 bytes in five minutes. [GL
    [#3914]]
  * Add HTTPS record query to host command line tool.
    The host command was extended to also query for the HTTPS RR
    type by default.
  * Implement sig0key-checks-limit and sig0message-checks-limit.
    Previously, a hard-coded limitation of a maximum of two key or
    message verification checks was introduced when checking a
    message’s SIG(0) signature, to protect against possible DoS
    attacks. Two as a maximum was chosen so that more than a single
    key should only be required during key rotations, and in that
    case two keys are enough. It later became apparent that there
    are other use cases where even more keys are required; see the
    related GitLab issue for examples.
    This change introduces two new configuration options for the
    views: sig0key-checks-limit and sig0message-checks-limit. They
    define how many keys can be checked to find a matching key, and
    how many message verifications are allowed to take place once a
    matching key has been found. The former provides slightly less
    “expensive” key parsing operations and defaults to 16. The
    latter protects against expensive cryptographic operations when
    there are keys with colliding tags and algorithm numbers; the
    default is 2. [GL #5050]
  * Adds support for EDE code 1 and 2.
    Support was added for EDE codes 1 and 2, which might occur
    during DNSSEC validation in the case of an unsupported RRSIG
    algorithm or DNSKEY digest. [GL #2715]
  * Add an rndc command to toggle jemalloc profiling.
    The new command is rndc memprof; the memory profiling status is
    also reported inside rndc status. The status shows whether
    named can toggle memory profiling, and whether the server is
    built with jemalloc. [GL #4759]
  * Add support for multiple extended DNS errors.
    The Extended DNS Error (EDE) mechanism may raise errors during
    a DNS resolution. named is now able to add up to three EDE
    codes in a DNS response. If there are duplicate error codes,
    only the first one is part of the DNS response. [GL #5085]
  * Print the expiration time of stale records.
    BIND now prints the expiration time of any stale RRsets in the
    cache dump.
  Bug Fixes:
  * Fix dual-stack-servers configuration option.
    The dual-stack-servers configuration option was not working as
    expected; the specified servers were not being used when they
    should have been, leading to resolution failures. This has been
    fixed. [GL #5019]
  * Fix a data race causing a permanent active client increase.
    Previously, a data race could cause a newly created fetch
    context for a new client to be used before it had been fully
    initialized, which would cause the query to become stuck;
    queries for the same data would be either paused indefinitely
    or dropped because of the clients-per-query limit. This has
    been fixed. [GL #5053]
  * Fix deferred validation of unsigned DS and DNSKEY records.
    When processing a query with the “checking disabled” bit set
    (CD=1), named stores the invalidated result in the cache,
    marked “pending”. When the same query is sent with CD=0, the
    cached data is validated and either accepted as an answer, or
    ejected from the cache as invalid. This deferred validation was
    not attempted for DS and DNSKEY records if they had no cached
    signatures, causing spurious validation failures. The deferred
    validation is now completed in this scenario.
    Also, if deferred validation fails, the data is now re-queried
    to find out whether the zone has been corrected since the
    invalid data was cached. [GL #5066]
  * Fix RPZ race condition during a reconfiguration.
    With RPZ in use, named could terminate unexpectedly because of
    a race condition when a reconfiguration command was received
    using rndc. This has been fixed. [GL #5146]
  * “CNAME and other data check” not applied to all types.
    An incorrect optimization caused “CNAME and other data” errors
    not to be detected if certain types were at the same node as a
    CNAME. This has been fixed. [GL #5150]
  * Relax private DNSKEY and RRSIG constraints.
    DNSKEY, KEY, RRSIG, and SIG constraints have been relaxed to
    allow empty key and signature material after the algorithm
    identifier for PRIVATEOID and PRIVATEDNS. It is arguable
    whether this falls within the expected use of these types, as
    no key material is shared and the signatures are ineffective,
    but these are private algorithms and they can be totally
    insecure. [GL #5167]
  * Remove NSEC/DS/NSEC3 RRSIG check from dns_message_parse().
    Previously, when parsing responses, named incorrectly rejected
    responses without matching RRSIG records for NSEC/DS/NSEC3
    records in the authority section. This rejection, if
    appropriate, should have been left for the validator to
    determine and has been fixed. [GL #5185]
  * Fix TTL issue with ANY queries processed through RPZ
    “passthru”.
    Answers to an “ANY” query which were processed by the RPZ
    “passthru” policy had the response-policy’s max-policy-ttl
    value unexpectedly applied. This has been fixed. [GL #5187]
  * dnssec-signzone needs to check for a NULL key when setting
    ... changelog too long, skipping 49 lines ...
    situations. This has been fixed. [GL #5137]

==== ca-certificates-mozilla ====

- Fix awk to compare (missing a =) and give the following output:
  [#] NSS_BUILTINS_LIBRARY_VERSION "2.74"
- pass file argument to awk (bsc#1240009)

==== cfitsio ====

- Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to fix FTBFS on cmake4

==== cpio ====
Subpackages: cpio-lang cpio-mt

- Use -std=gnu11 to avoid extra diagnostics when calling an
  unprototyped function which is no longer possible with C23,
  the new default with GCC 15.

==== dbus-1-glib ====

- Fix build with GCC 15 via exporting -std=gnu17 to cflags. GCC 15
  defaults to C23, but the latest release is from 2021, and this is
  deprecated upstream and no longer under development.

==== gegl ====
Version update (0.4.56 -> 0.4.58)
Subpackages: gegl-0_4 gegl-0_4-lang libgegl-0_4-0 typelib-1_0-Gegl-0_4

- Update to version 0.4.58:
  - dither: fixed crash when applied to pixels with negative pixel
    coordinates.

==== gimp ====
Version update (3.0.0 -> 3.0.2)
Subpackages: gimp-plugin-aa gimp-plugin-python3 libgimp-3_0-0 libgimpui-3_0-0

- Update to 3.0.2
  This is a bug-fix only release.
  - Core:
  - Mark some strings translatable.
  - Fix crash when choosing a brush in grid view.
  - Windows: temporary revert of some Input Device handling code
    which was breaking pressure sensitivity for some graphics
    tablets (though this revert may make issues with the eraser
    tip).
  - Fix crash when choosing a non-existing font in text tool
    options.
  - Tools:
  - Reorder Line Art Detection options per design decision.
  - Graphical User Interface:
  - Keep headerbar color consistent when out of focus.
  - Histogram uses the luminance value of the foreground color as
    a threshold to lighten or darken the border color for
    contrast with the histogram itself.
  - Improve separation between panels in dark theme.
  - Add default response for GimpQueryBox dialogues.
  - Spacing between toolbox widgets improved.
  - GimpSpinScale slider colors inverted.
  - New icons: "gimp-toggle-on" and "gimp-toggle-off" and using
    them in the Search Action's list as icons for toggle actions.
  - Plug-ins:
  - Python Console uses the luminance of the background color for
    error text.
  - Metadata Editor: fix buffer overflow.
  - Gradient Flare: fix crash when setting the size to 0.
  - Screenshot: X11 implementation is bypassed (in favor of
    portals) when running on XWayland.
  - Build:
  - Various packaging fixes and cleanup.
  - The Windows installer now prompts (only in user installation)
    about deleting GIMP config files when uninstalling.
  - GEGL 0.4.58 is now our minimum requirement.
  - Windows installer: create Restore Point on system-wide
    install.

==== gnutls ====
Subpackages: libgnutls-dane0 libgnutls30 libgnutls30-32bit

- FIPS: Mark SHA-1 as non-approved in the SLI for all operations. [jsc#PED-12224]
  * Add gnutls-FIPS-disable-mac-sha1.patch
- bsc#1237101, FIPS selfcheck fails on tumbleweed
  * Match dependent library names ( nettle, gmp, hogweed ) even when they include full verison in soname
  * Add gnutls-fips-sonames-check.patch

==== kernel-firmware-amdgpu ====
Version update (20250318 -> 20250322)

- Fix a typo in download URL
- Update to version 20250322 (git commit 710a336b3198):
  * amdgpu: update dcn 4.01 firmware to 0.1.3.0
  * amdgpu: update dcn 3.5 firmware to 0.1.0.0
- Update kernel-firmware-tools scripts to be downloadable

==== kernel-firmware-ath10k ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-bluetooth ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-media ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-mediatek ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-nvidia ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-platform ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-qcom ====

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update spec to make kernel-firmware-tools downloadable

==== kernel-firmware-sound ====
Version update (20250318 -> 20250321)

- Fix a typo in download URL
- Correct aliases with comma (bsc#1239877)
- Update to version 20250321 (git commit e61b8981aeef):
  * cirrus: cs35l41: Add Firmware for various HP Laptops using CS35L41 HDA
- Update to version 20250320 (git commit a60087f7c925):
  * cirrus: Add cs35l56 firmware symlinks for Asus UM5606KA
- Update kernel-firmware-tools scripts to be downloadable

==== kernel-source ====
Version update (6.13.7 -> 6.13.8)

- Revert "Update config files. Disable OVPN temporarily."
  This reverts commit bca56f08ab2271cfe4d6ff271d57fb773cca295c.
  The issue has been fixed.
- commit 7089702
- Refresh
  patches.suse/drm-amd-display-Use-HW-lock-mgr-for-PSR1-when-only-o.patch.
  Update upstream status.
- commit 614d9ea
- Revert "gre: Fix IPv6 link-local address
  generation." (git-fixes).
- commit 5d9714b
- Linux 6.13.8 (bsc#1012628).
- mm: fix kernel BUG when userfaultfd_move encounters swapcache
  (bsc#1012628).
- userfaultfd: fix PTE unmapping stack-allocated PTE copies
  (bsc#1012628).
- mm/slab/kvfree_rcu: Switch to WQ_MEM_RECLAIM wq (bsc#1012628).
- virt: sev-guest: Move SNP Guest Request data pages handling
  under snp_cmd_mutex (bsc#1012628).
- fbdev: hyperv_fb: iounmap() the correct memory when removing
  a device (bsc#1012628).
- pinctrl: bcm281xx: Fix incorrect regmap max_registers value
  (bsc#1012628).
- pinctrl: nuvoton: npcm8xx: Add NULL check in npcm8xx_gpio_fw
  (bsc#1012628).
- netfilter: nft_ct: Use __refcount_inc() for per-CPU
  nft_ct_pcpu_template (bsc#1012628).
- ice: do not configure destination override for switchdev
  (bsc#1012628).
- ice: fix memory leak in aRFS after reset (bsc#1012628).
- ice: Fix switchdev slow-path in LAG (bsc#1012628).
- netfilter: nf_conncount: garbage collection is not skipped
  when jiffies wrap around (bsc#1012628).
- netfilter: nf_tables: make destruction work queue pernet
  (bsc#1012628).
- sched: address a potential NULL pointer dereference in the
  GRED scheduler (bsc#1012628).
- wifi: iwlwifi: mvm: fix PNVM timeout for non-MSI-X platforms
  (bsc#1012628).
- wifi: mac80211: don't queue sdata::work for a non-running sdata
  (bsc#1012628).
- wifi: cfg80211: cancel wiphy_work before freeing wiphy
  (bsc#1012628).
- Bluetooth: SCO: fix sco_conn refcounting on sco_conn_ready
  (bsc#1012628).
- Bluetooth: hci_event: Fix enabling passive scanning
  (bsc#1012628).
- Revert "Bluetooth: hci_core: Fix sleeping function called from
  invalid context" (bsc#1012628).
- net/mlx5: Fill out devlink dev info only for PFs (bsc#1012628).
- net: dsa: mv88e6xxx: Verify after ATU Load ops (bsc#1012628).
- net: mctp i3c: Copy headers if cloned (bsc#1012628).
- net: mctp i2c: Copy headers if cloned (bsc#1012628).
- netpoll: hold rcu read lock in __netpoll_send_skb()
  (bsc#1012628).
- drm/hyperv: Fix address space leak when Hyper-V DRM device is
  removed (bsc#1012628).
- fbdev: hyperv_fb: Fix hang in kdump kernel when on Hyper-V
  Gen 2 VMs (bsc#1012628).
- fbdev: hyperv_fb: Simplify hvfb_putmem (bsc#1012628).
- fbdev: hyperv_fb: Allow graceful removal of framebuffer
  (bsc#1012628).
- Drivers: hv: vmbus: Don't release fb_mmio resource in
  vmbus_free_mmio() (bsc#1012628).
- net/mlx5: handle errors in mlx5_chains_create_table()
  (bsc#1012628).
- eth: bnxt: fix truesize for mb-xdp-pass case (bsc#1012628).
- eth: bnxt: return fail if interface is down in
  bnxt_queue_mem_alloc() (bsc#1012628).
- eth: bnxt: do not use BNXT_VNIC_NTUPLE unconditionally in
  queue restart logic (bsc#1012628).
- eth: bnxt: do not update checksum in bnxt_xdp_build_skb()
  (bsc#1012628).
- eth: bnxt: fix kernel panic in the bnxt_get_queue_stats{rx |
  tx} (bsc#1012628).
- eth: bnxt: fix memory leak in queue reset (bsc#1012628).
- net: switchdev: Convert blocking notification chain to a raw
  one (bsc#1012628).
- net: mctp: unshare packets when reassembling (bsc#1012628).
- bonding: fix incorrect MAC address setting to receive NS
  messages (bsc#1012628).
- selftests: bonding: fix incorrect mac address (bsc#1012628).
- rtase: Fix improper release of ring list entries in
  rtase_sw_reset (bsc#1012628).
- wifi: mac80211: fix MPDU length parsing for EHT 5/6 GHz
  (bsc#1012628).
- netfilter: nf_conncount: Fully initialize struct
  nf_conncount_tuple in insert_tree() (bsc#1012628).
- ipvs: prevent integer overflow in do_ip_vs_get_ctl()
  (bsc#1012628).
- net_sched: Prevent creation of classes with TC_H_ROOT
  (bsc#1012628).
- netfilter: nft_exthdr: fix offset with ipv4_find_option()
  (bsc#1012628).
- gre: Fix IPv6 link-local address generation (bsc#1012628).
- net: openvswitch: remove misbehaving actions length check
  (bsc#1012628).
- Revert "openvswitch: switch to per-action label counting in
  conntrack" (bsc#1012628).
    ... changelog too long, skipping 325 lines ...
- commit 41f5788

==== libcap ====
Version update (2.73 -> 2.75)
Subpackages: libcap2 libcap2-32bit

- update to 1.2.75:
  * go related fixes
- includes changes from 1.2.74:
  * Group syntax parsing bugfix for pam_cap
  * Doc typo fix for cap_get_proc.3
  * Fix transitive include in capsh.c
  * go related changes

==== libpinyin ====
Version update (2.8.1 -> 2.10.1)
Subpackages: libpinyin-data libpinyin15 libzhuyin15

- Update version to 2.10.1
  * Bug fixes
- changes in 2.9.92
  * Support punctuation candidate
- changes in 2.9.91
  * auto clean user data when data corruption
  * support to export bigram phrase

==== librist ====
Version update (0.2.10 -> 0.2.11)

- update to 0.2.11:
  * Adds support for ephemeral listening ports, which allows for
    adding or taking down ports, primarily for new connections,
    after initialization
  * Adds a sender function rist_sender_npd_get to obtain current
    status of null_packet_deletion in client code
  * Adds a new function rist_peer_get_cname to allow for the
    extraction of the private cname property of a peer
  * various bug fixes and code improvements

==== linux-glibc-devel ====
Version update (6.13 -> 6.14)

- Update to kernel headers 6.14

==== openSUSE-release ====
Version update (20250325 -> 20250326)
Subpackages: openSUSE-release-appliance-custom openSUSE-release-dvd

- automatically generated by openSUSE-release-tools/pkglistgen

==== ovmf ====
Version update (202411 -> 202502)
Subpackages: qemu-ovmf-x86_64

- Update to edk2-stable202502
  - New Features & Bug Fixes (https://github.com/tianocore/edk2/releases):
  - DynamicTablesPkg: Adds X64 support to SRAT table generator
  - DynamicTablesPkg: Generates X64 MADT and CPU SSDT Topology Table
  - Add RNG PPI
  - Update to openssl-3.4.x
  - Update CI to VS2022
  - Produce EFI memory attribute protocol
  - UefiCpuPkg: Add TdxMeasurementLib
  - DxeRngLib: GetRandomNumber spurious success
  - SecurityPkg: Update libspdm
  - OvmfPkg: Use the OvmfPkg version of CcProbeLib
  - ShellPkg: Fix bug #3080, OOB, minor UefiShellLib fixes
  - MdePkg: Fix overflow issue in PeCoffLoaderRelocateImageForRuntime
  - Add Dynamic Stack Cookie Support to IA32/X64/AARCH64
  - Patches (git log --oneline --date-order edk2-stable202411..edk2-stable202502):
    fbe0805b20 MdeModulePkg/HiiDatabaseDxe: Remove buffer error for string default.
    0192f2d7cb MdeModulePkg/UsbBusPei: Improve PEI USB enumeration
    bc664d1830 Revert "FatPkg: Validate Reserved FAT Entries on Volume Open"
    523dbb6d59 ArmPkg: ArmFfaStandaloneMmLib: Fix non-FFA path
    96cf70951f MdePkg/DynamicStackCookieEntryPointLib: Drop execute-in-place versions
    5c3dcef94c MdePkg/DynamicStackCookieEntryPointLib: Remove unused files
    23007f7ae2 UefiPayloadPkg: Add StackCheckLib to fix FIT build issue
    7308568dd6 StandaloneMmPkg StandaloneMmCoreMemoryAllocationLib: Rename gMmst
    0d61f52fe3 Add MockVariablePolicyHelperLib
    2b3ea9334f DynamicTablesPkg: Adds X64 support to SRAT table generator
    1f1182c396 ArmVirtPkg: ArmVirtQemu: Add Custom Stack Cookies
    861b91d975 ArmVirtPkg: Add RNDR Support to QEMU
    30547859f2 OvmfPkg: OvmfIA32X64: Add Custom Stack Cookie Checking
    6d741357c2 OvmfPkg: Add RDRAND Support To QEMU
    e6b6aa90d4 MdePkg: Add Dynamic Stack Cookie Support
    efbf5ed08c MdePkg: Move StackCheckLibStaticInit to StackCheckLib
    db03bf1d9d StandaloneMmPkg: Consume X64 StandaloneMmCoreEntryPoint From MdePkg
    885bcca649 MdePkg: Add StandaloneMmCoreEntryPoint for X64
    e63cdeebb8 MdePkg: Add StackCheckLib Library Class
    d9715c133f MdePkg: Centralize RNDR Register Definition
    5c02a64823 Maintainers.txt: adding Ard and Michael to stewards team
    1cb349e4bb IntelFsp2WrapperPkg: Remove inactive maintainer email
    edf1450f3e SecurityPkg: Add RngPei
    bcab6996a0 MdePkg: Add PeiRngLib
    de5c1198c1 MdePkg: Add Random Number Generator (RNG) PPI
    7518b93f77 MdePkg: Split RNG protocol definitions
    15e225d06a Maintainers.txt: add myself as PrmPkg maintainer
    258f2d1563 ReadMe.rst: reflect bugzilla migration
    f7cf6ce299 License-History.txt: Reflect bugzilla migration
    fe5c2df49e SignedCapsulePkg: make Doxygen interpret ASCII art as verbatim text
    259e1f04c6 BaseTools: Add @verbatim as allowed Doxygen tag
    0664c4e3b9 UefiPayloadPkg: Revert 4KB alignment of CLANGDWARF build
    cd87106d26 BaseTools: Add /DRIVER to CLANGPDB link flags
    074f61e4c6 MdePkg/IndustryStandard: add definitions for CXL CEDT
    62b0698309 BaseTools/AutoGen: GenMake response file quotes strings
    15a7d311a8 BaseTools/tools_def: Remove no-warn-rwx-segments linker options
    f2b42c83dd BaseTools/Scripts/GccBase.lds: Use separate R-W and RW- ELF segments
    e5d95c786b BaseTools/Scripts: Merge GCC and Clang ELF linker scripts
    f5d585b46b BaseTools/Scripts/ClangBase.lds: Move .entry into .text section
    7fd3c89ff4 UefiPayloadPkg: Update Elf segment/section syncup process
    d844a7eab5 BaseTools/tools_def: Use no-warn-rwx-segments only for GCC5
    09d4e6f7c7 MdePkg: Add Hot pluggable resource attribute
    4ec3539e34 MdePkg: Add UEFI 2.11 specification macro
    2e6359a088 MdePkg: Add Confidential Computing Extension for RISC-V AP-TEE
    12ceee664a MdePkg: Add HotPlug Memory Attribute
    62cd7d338b ArmPkg: Retire ArmDisassemblerLib
    fbe19844e0 Revert "ArmVirtPkg/ArmVirtQemu: Reduce MMIO region mapped by default"
    4dd8b9e0f7 ArmVirtPkg: turn off debug logging for VirtioSerialDxe
    c1ab2d6397 Maintainers: update my email address
    e063f8b8a5 BaseTools/Pccts: set C standard
    c0796335d3 MdePkg/BaseFdtLib: fix build with gcc 15
    7742247d1c MdePkg: Add SM3 crypto algorithm GUID definition
    d949ed05d4 Devcontainer: Use latest Fedora 40 image
    31abbed237 .github/codeql.yml: Drop ArmPkg IA32 and X64 from build matrix
    87f14322da ArmVirtPkg: Drop reference to ArmDisassemblerLib
    ef80dd8fad ArmPkg: Stop using ArmDisassemblerLib
    74376f0b72 ArmPkg,ArmPkg/ArmExceptionLib: drop vector relocation variant/support
    43233ff9f8 ArmVirtPkg/ArmVirtQemu: Reduce MMIO region mapped by default
    c558a3b18b ArmPkg/ArmGicDxe: Map GIC MMIO regions before use
    3c4c7a0fc9 ArmPkg/ArmGicDxe: Remove pointless passing around of MMIO addresses
    e68e784649 ArmPkg/ArmGicDxe: Avoid pointless repeated iteration over GIC frames
    387fcf4fa1 ArmPkg/ArmGicDxe: Replace CpuArch registration event with DEPEX
    fb7497cbf9 ArmPkg/CpuDxe: Replace DEPEX on h/w protocol with event notification
    0422dd0669 ArmPkg/CpuDxe: Remove rudimentary vector handoff logic
    e5b56d6ef9 ArmPkg/CpuDxe: Use STATIC linkage where possible
    afdae789cd ArmPkg/CpuDxe: Fix error handling in driver initialization
    b64f735867 Maintainers.txt: Update EmulatorPkg maintainers
    2cb8bf6c69 UnitTestFrameworkPkg: Fix false positives from address sanitizer
    3600675368 MdePkg/BasePeCoffLib: Remove DEBUG() statements from runtime code
    254937f0bc ShellPkg: fix warnings about uninitialized variable
    755d4b9397 OvmfPkg: fix warning about uninitialized variable
    ceb87029c5 SecurityPkg/RngDxe: fix warning about uninitialized variable
    c58501aa1a MdeModulePkg: NvmExpressDxe: fix warning about uninitialized variable
    0f12a5f722 MdeModulePkg: fix warning about uninitialized variable
    a5cb67fb8d MdeModulePkg: PeiMain: fix warning about uninitialized variable
    bba72ffbe1 OvmfPkg/QemuKernelLoaderFsDxe: use SIZE_OF_EFI_FILE_INFO
    df84bb5eda Resolved Coverity Issues in Http Dxe
    428cd8a46f MdePkg: Fix Clang Build Error
    18984b68fe OvmfPkg: make legacy direct kernel loader code nx clean
    6d2143f685 BaseTools: Fix NoneType parent reference in FMMT operations
    8c1e786e50 OvmfPkg/XenPvBlkDxe: Update disk size calculation
    3cf7a644eb OvmfPkg/IndustryStandard/Xen: Update io/blkif.h
    7c5ec51175 MdeModulePkg PeiMain: Remove return for PeiCoreBuildHobHandoffInfoTable()
    ... changelog too long, skipping 360 lines ...
  - Update openssl library to 3.4

==== poppler ====
Version update (25.02.0 -> 25.03.0)
Subpackages: libpoppler-cpp2 libpoppler-glib8 poppler-tools

- version update to 25.03.0
    core:
  * Fix opening some slightly malformed files
  * Signing: Support custom PGP signing
  * Signing: Do not embed fonts in the case of signatures
    without appearance
  * Signing: Improve error handling on bad passphrase
  * Signing-GPGME: more correct validation handling
  * Internal code improvements
    glib:
  * Fix default signature colors
  * Check file attachment annotation for this class before
    casting
- gcc12: build with PIE [bsc#1239939]
- Bump poppler sover following upstream changes.

==== poppler-qt6 ====
Version update (25.02.0 -> 25.03.0)

- version update to 25.03.0
    core:
  * Fix opening some slightly malformed files
  * Signing: Support custom PGP signing
  * Signing: Do not embed fonts in the case of signatures
    without appearance
  * Signing: Improve error handling on bad passphrase
  * Signing-GPGME: more correct validation handling
  * Internal code improvements
    glib:
  * Fix default signature colors
  * Check file attachment annotation for this class before
    casting
- gcc12: build with PIE [bsc#1239939]
- Bump poppler sover following upstream changes.

==== python-Pillow ====

- Add patch libwebp150.patch to skip tests failing on s390x
  * reported: https://github.com/python-pillow/Pillow/issues/8831

==== python-linux-procfs ====

- Use libalternatives instead of update-alternatives, bsc#1240096

==== rasqal ====

- build with pcre2, add rasqal-0.9.33-pcre2.patch from upstream

==== salt ====
Subpackages: python311-salt salt-master salt-minion

- Make "salt" package to obsolete "python3-salt" package on SLE15SP7+
- Fix issue requiring proper Python flavor for dependencies
  and recommended package.
- Do not build "python3-salt" anymore for SLE15SP7+

==== sdbootutil ====
Version update (1+git20250311.8d3db8b -> 1+git20250324.c1cd393)
Subpackages: sdbootutil-dracut-measure-pcr sdbootutil-snapper

- Update to version 1+git20250324.c1cd393:
  * Use filesystem order in grub2-bls

==== sendmail ====
Subpackages: libmilter1_0

- Update keyring

==== soxr ====

- Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to fix FTBFS with cmake4
- Add %check section
- Remove Group: declarations, no longer used

==== spiel ====
Subpackages: libspeech-provider-1_0 libspiel-1_0 typelib-1_0-Spiel-1_0

- Add 42ad1741.patch: prevent crash when the host has no voice
  provider installed.

==== timezone ====
Version update (2025a -> 2025b)
Subpackages: tzselect

- Update to 2025b:
  * New zone for Aysén Region in Chile (America/Coyhaique) which
    moves from -04/-03 to -03

==== xscreensaver ====
Subpackages: xscreensaver-data xscreensaver-lang

- Remove dependency on unused unix2_chkpwd