openSUSE-Leap-16.0-100 Recommended update of rust1.89, rust1.90 moderate SUSE SLFO 1.2 This update for rust 1.89 and 1.90 supplies both to SLES 16.0. This update ships rust1.89: Version 1.89.0 (2025-08-07) ========================== ## Language - Stabilize explicitly inferred const arguments (`feature(generic_arg_infer)`) - Add a warn-by-default `mismatched_lifetime_syntaxes` lint. This lint detects when the same lifetime is referred to by different syntax categories between function arguments and return values, which can be confusing to read, especially in unsafe code. This lint supersedes the warn-by-default `elided_named_lifetimes` lint. - Expand `unpredictable_function_pointer_comparisons` to also lint on function pointer comparisons in external macros - Make the `dangerous_implicit_autorefs` lint deny-by-default - Stabilize the avx512 target features - Stabilize `kl` and `widekl` target features for x86 - Stabilize `sha512`, `sm3` and `sm4` target features for x86 - Stabilize LoongArch target features `f`, `d`, `frecipe`, `lasx`, `lbt`, `lsx`, and `lvz` - Remove `i128` and `u128` from `improper_ctypes_definitions` - Stabilize `repr128` (`#[repr(u128)]`, `#[repr(i128)]`) - Allow `#![doc(test(attr(..)))]` everywhere - Extend temporary lifetime extension to also go through tuple struct and tuple variant constructors - `extern "C"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/ ## Compiler - Default to non-leaf frame pointers on aarch64-linux - Enable non-leaf frame pointers for Arm64EC Windows - Set Apple frame pointers by architecture ## Platform Support - Add new Tier-3 targets `loongarch32-unknown-none` and `loongarch32-unknown-none-softfloat` - `x86_64-apple-darwin` is in the process of being demoted to Tier 2 with host tools Refer to Rust's platform support page for more information on Rust's tiered platform support. [platform-support-doc]: https://doc.rust-lang.org/rustc/platform-support.html ## Libraries - Specify the base path for `file!` - Allow storing `format_args!()` in a variable - Add `#[must_use]` to `[T; N]::map` - Implement `DerefMut` for `Lazy{Cell,Lock}` - Implement `Default` for `array::IntoIter` - Implement `Clone` for `slice::ChunkBy` - Implement `io::Seek` for `io::Take` ## Stabilized APIs - `NonZero<char>` https://doc.rust-lang.org/stable/std/num/struct.NonZero.html - Many intrinsics for x86, not enumerated here - [AVX512 intrinsics - [`SHA512`, `SM3` and `SM4` intrinsics - `File::lock` https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock - `File::lock_shared` https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock_shared - `File::try_lock` https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock - `File::try_lock_shared` https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock_shared - `File::unlock` https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.unlock - `NonNull::from_ref` https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_ref - `NonNull::from_mut` https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_mut - `NonNull::without_provenance` https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.without_provenance - `NonNull::with_exposed_provenance` https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.with_exposed_provenance - `NonNull::expose_provenance` https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.expose_provenance - `OsString::leak` https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.leak - `PathBuf::leak` https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.leak - `Result::flatten` https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.flatten - `std::os::linux::net::TcpStreamExt::quickack` https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.quickack - `std::os::linux::net::TcpStreamExt::set_quickack` https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.set_quickack These previously stable APIs are now stable in const contexts: - `<[T; N]>::as_mut_slice` https://doc.rust-lang.org/stable/std/primitive.array.html#method.as_mut_slice - `<[u8]>::eq_ignore_ascii_case` https://doc.rust-lang.org/stable/std/primitive.slice.html#impl-%5Bu8%5D/method.eq_ignore_ascii_case - `str::eq_ignore_ascii_case` https://doc.rust-lang.org/stable/std/primitive.str.html#impl-str/method.eq_ignore_ascii_case ## Cargo - `cargo fix` and `cargo clippy --fix` now default to the same Cargo target selection as other build commands. Previously it would apply to all targets (like binaries, examples, tests, etc.). The `--edition` flag still applies to all targets. - Stabilize doctest-xcompile. Doctests are now tested when cross-compiling. Just like other tests, it will use the [`runner` setting https://doc.rust-lang.org/cargo/reference/config.html#targettriplerunner to run the tests. If you need to disable tests for a target, you can use the ignore doctest attribute https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#ignoring-targets to specify the targets to ignore. ## Rustdoc - On mobile, make the sidebar full width and linewrap. This makes long section and item names much easier to deal with on mobile. ## Compatibility Notes - Make `missing_fragment_specifier` an unconditional error - Enabling the `neon` target feature on `aarch64-unknown-none-softfloat` causes a warning because mixing code with and without that target feature is not properly supported by LLVM - Sized Hierarchy: Part I - Introduces a small breaking change affecting `?Sized` bounds on impls on recursive types which contain associated type projections. It is not expected to affect any existing published crates. Can be fixed by refactoring the involved types or opting into the `sized_hierarchy` unstable feature. See the FCP report for a code example. - The warn-by-default `elided_named_lifetimes` lint is [superseded by the warn-by-default `mismatched_lifetime_syntaxes` lint. - Error on recursive opaque types earlier in the type checker - Type inference side effects from requiring element types of array repeat expressions are `Copy` are now only available at the end of type checking - The deprecated accidentally-stable `std::intrinsics::{copy,copy_nonoverlapping,write_bytes}` are now proper intrinsics. There are no debug assertions guarding against UB, and they cannot be coerced to function pointers. - Remove long-deprecated `std::intrinsics::drop_in_place` - Make well-formedness predicates no longer coinductive - Remove hack when checking impl method compatibility - Remove unnecessary type inference due to built-in trait object impls - Lint against "stdcall", "fastcall", and "cdecl" on non-x86-32 targets - Future incompatibility warnings relating to the never type (`!`) are now reported in dependencies - Ensure `std::ptr::copy_*` intrinsics also perform the static self-init checks - `extern "C"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/ ## Internal Changes These changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools. - Correctly un-remap compiler sources paths with the `rustc-dev` component Version 1.90.0 (2025-09-18) =========================== # Language - Split up the `unknown_or_malformed_diagnostic_attributes` lint. This lint has been split up into four finer-grained lints, with `unknown_or_malformed_diagnostic_attributes` now being the lint group that contains these lints: 1. `unknown_diagnostic_attributes`: unknown to the current compiler 2. `misplaced_diagnostic_attributes`: placed on the wrong item 3. `malformed_diagnostic_attributes`: malformed attribute syntax or options 4. `malformed_diagnostic_format_literals`: malformed format string literal - Allow constants whose final value has references to mutable/external memory, but reject such constants as patterns - Allow volatile access to non-Rust memory, including address 0 # Compiler - Use `lld` by default on `x86_64-unknown-linux-gnu` - Tier 3 `musl` targets now link dynamically by default. Affected targets: - `mips64-unknown-linux-muslabi64` - `powerpc64-unknown-linux-musl` - `powerpc-unknown-linux-musl` - `powerpc-unknown-linux-muslspe` - `riscv32gc-unknown-linux-musl` - `s390x-unknown-linux-musl` - `thumbv7neon-unknown-linux-musleabihf` # Platform Support - Demote `x86_64-apple-darwin` to Tier 2 with host tools Refer to Rust's platform support page for more information on Rust's tiered platform support. # Libraries - Stabilize `u*::{checked,overflowing,saturating,wrapping}_sub_signed` - Allow comparisons between `CStr`, `CString`, and `Cow<CStr>` - Remove some unsized tuple impls since unsized tuples can't be constructed - Set `MSG_NOSIGNAL` for `UnixStream` - `proc_macro::Ident::new` now supports `$crate`. - Guarantee the pointer returned from `Thread::into_raw` has at least 8 bytes of alignment # Stabilized APIs - `u{n}::checked_sub_signed` https://doc.rust-lang.org/stable/std/primitive.usize.html#method.checked_sub_signed - `u{n}::overflowing_sub_signed` https://doc.rust-lang.org/stable/std/primitive.usize.html#method.overflowing_sub_signed - `u{n}::saturating_sub_signed` https://doc.rust-lang.org/stable/std/primitive.usize.html#method.saturating_sub_signed - `u{n}::wrapping_sub_signed` https://doc.rust-lang.org/stable/std/primitive.usize.html#method.wrapping_sub_signed) - `impl Copy for IntErrorKind` https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Copy-for-IntErrorKind - `impl Hash for IntErrorKind` https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Hash-for-IntErrorKind - `impl PartialEq<&CStr> for CStr` https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3C%26CStr%3E-for-CStr - `impl PartialEq<CString> for CStr` https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCString%3E-for-CStr - `impl PartialEq<Cow<CStr>> for CStr` https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CStr - `impl PartialEq<&CStr> for CString` https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3C%26CStr%3E-for-CString - `impl PartialEq<CStr> for CString` https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCStr%3E-for-CString - `impl PartialEq<Cow<CStr>> for CString` https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CString - `impl PartialEq<&CStr> for Cow<CStr>` https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3C%26CStr%3E-for-Cow%3C'_,+CStr%3E - `impl PartialEq<CStr> for Cow<CStr>` https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCStr%3E-for-Cow%3C'_,+CStr%3E - `impl PartialEq<CString> for Cow<CStr>` https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCString%3E-for-Cow%3C'_,+CStr%3E These previously stable APIs are now stable in const contexts: - `<[T]>::reverse` https://doc.rust-lang.org/stable/std/primitive.slice.html#method.reverse - `f32::floor` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.floor - `f32::ceil` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.ceil - `f32::trunc` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.trunc - `f32::fract` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.fract - `f32::round` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round - `f32::round_ties_even` https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round_ties_even - `f64::floor` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.floor - `f64::ceil` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.ceil - `f64::trunc` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.trunc - `f64::fract` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.fract - `f64::round` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round - `f64::round_ties_even` https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round_ties_even # Cargo - Add `http.proxy-cainfo` config for proxy certs - Use `gix` for `cargo package` - feat(publish): Stabilize multi-package publishing # Rustdoc - Add ways to collapse all impl blocks. Previously the "Summary" button and "-" keyboard shortcut would never collapse `impl` blocks, now they do when shift is held - Display unsafe attributes with `unsafe()` wrappers # Compatibility Notes - Use `lld` by default on `x86_64-unknown-linux-gnu` See also <https://blog.rust-lang.org/2025/09/01/rust-lld-on-1.90.0-stable/>. - Make `core::iter::Fuse`'s `Default` impl construct `I::default()` internally as promised in the docs instead of always being empty - Set `MSG_NOSIGNAL` for `UnixStream` This may change program behavior but results in the same behavior as other primitives (e.g., stdout, network sockets). Programs relying on signals to terminate them should update handling of sockets to handle errors on write by exiting. - On Unix `std::env::home_dir` will use the fallback if the `HOME` environment variable is empty - We now reject unsupported `extern "{abi}"`s consistently in all positions. This primarily affects the use of implementing traits on an `extern "{abi}"` function pointer, like `extern "stdcall" fn()`, on a platform that doesn't support that, like aarch64-unknown-linux-gnu. Direct usage of these unsupported ABI strings by declaring or defining functions was already rejected, so this is only a change for consistency. - const-eval: error when initializing a static writes to that static - Check that the `proc_macro_derive` macro has correct arguments when applied to the crate root cargo1.89-1.89.0-160000.1.1.aarch64.rpm cargo1.89-debuginfo-1.89.0-160000.1.1.aarch64.rpm rust1.89-1.89.0-160000.1.1.aarch64.rpm rust1.89-1.89.0-160000.1.1.nosrc.rpm rust1.89-debuginfo-1.89.0-160000.1.1.aarch64.rpm rust1.89-src-1.89.0-160000.1.1.noarch.rpm cargo1.90-1.90.0-160000.1.1.aarch64.rpm cargo1.90-debuginfo-1.90.0-160000.1.1.aarch64.rpm rust1.90-1.90.0-160000.1.1.aarch64.rpm rust1.90-1.90.0-160000.1.1.nosrc.rpm rust1.90-debuginfo-1.90.0-160000.1.1.aarch64.rpm rust1.90-src-1.90.0-160000.1.1.noarch.rpm cargo1.89-1.89.0-160000.1.1.ppc64le.rpm cargo1.89-debuginfo-1.89.0-160000.1.1.ppc64le.rpm rust1.89-1.89.0-160000.1.1.ppc64le.rpm rust1.89-debuginfo-1.89.0-160000.1.1.ppc64le.rpm cargo1.90-1.90.0-160000.1.1.ppc64le.rpm cargo1.90-debuginfo-1.90.0-160000.1.1.ppc64le.rpm rust1.90-1.90.0-160000.1.1.ppc64le.rpm rust1.90-debuginfo-1.90.0-160000.1.1.ppc64le.rpm cargo1.89-1.89.0-160000.1.1.s390x.rpm cargo1.89-debuginfo-1.89.0-160000.1.1.s390x.rpm rust1.89-1.89.0-160000.1.1.s390x.rpm rust1.89-debuginfo-1.89.0-160000.1.1.s390x.rpm cargo1.90-1.90.0-160000.1.1.s390x.rpm cargo1.90-debuginfo-1.90.0-160000.1.1.s390x.rpm rust1.90-1.90.0-160000.1.1.s390x.rpm rust1.90-debuginfo-1.90.0-160000.1.1.s390x.rpm cargo1.89-1.89.0-160000.1.1.x86_64.rpm cargo1.89-debuginfo-1.89.0-160000.1.1.x86_64.rpm rust1.89-1.89.0-160000.1.1.x86_64.rpm rust1.89-debuginfo-1.89.0-160000.1.1.x86_64.rpm cargo1.90-1.90.0-160000.1.1.x86_64.rpm cargo1.90-debuginfo-1.90.0-160000.1.1.x86_64.rpm rust1.90-1.90.0-160000.1.1.x86_64.rpm rust1.90-debuginfo-1.90.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-101 Recommended update for az-cli-cmd moderate SUSE SLFO 1.2 This update for az-cli-cmd fixes the following issues: Changes in az-cli-cmd: - Update postun scriplet (bsc#1253743) - Do not run the postun scriptlet on upgrade as it will remove the just created command. az-cli-cmd-1.37.1-160000.1.1.noarch.rpm az-cli-cmd-1.37.1-160000.1.1.src.rpm openSUSE-Leap-16.0-102 Security update for go1.25 important SUSE SLFO 1.2 This update for go1.25 fixes the following issues: Update to go1.25.5. Security issues fixed: - CVE-2025-61729: crypto/x509: excessive resource consumption in printing error string for host certificate validation (bsc#1254431). - CVE-2025-61727: crypto/x509: excluded subdomain constraint doesn't preclude wildcard SAN (bsc#1254430). - CVE-2025-61725: net/mail: excessive CPU consumption in ParseAddress (bsc#1251253). - CVE-2025-61724: net/textproto: excessive CPU consumption in Reader.ReadResponse (bsc#1251262). - CVE-2025-61723: encoding/pem: quadratic complexity when parsing some invalid inputs (bsc#1251256). - CVE-2025-58189: crypto/tls: ALPN negotiation error contains attacker controlled information (bsc#1251255). - CVE-2025-58188: crypto/x509: panic when validating certificates with DSA public keys (bsc#1251260). - CVE-2025-58187: crypto/x509: quadratic complexity when checking name constraints (bsc#1251254). - CVE-2025-58186: net/http: lack of limit when parsing cookies can cause memory exhaustion (bsc#1251259). - CVE-2025-58185: encoding/asn1: pre-allocating memory when parsing DER payload can cause memory exhaustion (bsc#1251258). - CVE-2025-58183: archive/tar: unbounded allocation when parsing GNU sparse map (bsc#1251261). - CVE-2025-47912: net/url: insufficient validation of bracketed IPv6 hostnames (bsc#1251257). - CVE-2025-47910: net/http: CrossOriginProtection insecure bypass patterns not limited to exact matches (bsc#1249141). Other issues fixed and changes: - Version 1.25.5: * go#76245 mime: FormatMediaType and ParseMediaType not compatible across 1.24 to 1.25 * go#76360 os: on windows RemoveAll removing directories containing read-only files errors with unlinkat ... Access is denied, ReOpenFile error handling followup - Version 1.25.4: * go#75480 cmd/link: linker panic and relocation errors with complex generics inlining * go#75775 runtime: build fails when run via QEMU for linux/amd64 running on linux/arm64 * go#75790 crypto/internal/fips140/subtle: Go 1.25 subtle.xorBytes panic on MIPS * go#75832 net/url: ipv4 mapped ipv6 addresses should be valid in square brackets * go#75952 encoding/pem: regression when decoding blocks with leading garbage * go#75989 os: on windows RemoveAll removing directories containing read-only files errors with unlinkat ... Access is denied * go#76010 cmd/compile: any(func(){})==any(func(){}) does not panic but should * go#76029 pem/encoding: malformed line endings can cause panics - Version 1.25.3: * go#75861 crypto/x509: TLS validation fails for FQDNs with trailing dot * go#75777 spec: Go1.25 spec should be dated closer to actual release date - Version 1.25.2: * go#75111 os, syscall: volume handles with FILE_FLAG_OVERLAPPED fail when calling ReadAt * go#75116 os: Root.MkdirAll can return "file exists" when called concurrently on the same path * go#75139 os: Root.OpenRoot sets incorrect name, losing prefix of original root * go#75221 debug/pe: pe.Open fails on object files produced by llvm-mingw 21 * go#75255 cmd/compile: export to DWARF types only referenced through interfaces * go#75347 testing/synctest: test timeout with no runnable goroutines * go#75357 net: new test TestIPv4WriteMsgUDPAddrPortTargetAddrIPVersion fails on plan9 * go#75524 crypto/internal/fips140/rsa: requires a panic if self-tests fail * go#75537 context: Err can return non-nil before Done channel is closed * go#75539 net/http: internal error: connCount underflow * go#75595 cmd/compile: internal compiler error with GOEXPERIMENT=cgocheck2 on github.com/leodido/go-urn * go#75610 sync/atomic: comment for Uintptr.Or incorrectly describes return value * go#75669 runtime: debug.decoratemappings don't work as expected - Version 1.25.1: * go#74822 cmd/go: "get toolchain@latest" should ignore release candidates * go#74999 net: WriteMsgUDPAddrPort should accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets * go#75008 os/exec: TestLookPath fails on plan9 after CL 685755 * go#75021 testing/synctest: bubble not terminating * go#75083 os: File.Seek doesn't set the correct offset with Windows overlapped handles - Packaging: migrate from update-alternatives to libalternatives (bsc#1245878). - Fix runtime condition for gcc/gcc7 dependency. - Use at least gcc 7 for all architectures (bsc#1254227). - Package svgpan.js to fix issues with "go tool pprof" (boo#1249985). - Drop unused gccgo bootstrap code in go1.22+ (bsc#1248082). go1.25-1.25.5-160000.1.1.aarch64.rpm go1.25-1.25.5-160000.1.1.src.rpm go1.25-debuginfo-1.25.5-160000.1.1.aarch64.rpm go1.25-doc-1.25.5-160000.1.1.aarch64.rpm go1.25-libstd-1.25.5-160000.1.1.aarch64.rpm go1.25-libstd-debuginfo-1.25.5-160000.1.1.aarch64.rpm go1.25-race-1.25.5-160000.1.1.aarch64.rpm go1.25-1.25.5-160000.1.1.ppc64le.rpm go1.25-doc-1.25.5-160000.1.1.ppc64le.rpm go1.25-race-1.25.5-160000.1.1.ppc64le.rpm go1.25-1.25.5-160000.1.1.s390x.rpm go1.25-doc-1.25.5-160000.1.1.s390x.rpm go1.25-race-1.25.5-160000.1.1.s390x.rpm go1.25-1.25.5-160000.1.1.x86_64.rpm go1.25-debuginfo-1.25.5-160000.1.1.x86_64.rpm go1.25-doc-1.25.5-160000.1.1.x86_64.rpm go1.25-libstd-1.25.5-160000.1.1.x86_64.rpm go1.25-libstd-debuginfo-1.25.5-160000.1.1.x86_64.rpm go1.25-race-1.25.5-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-103 Security update for go1.24 important SUSE SLFO 1.2 This update for go1.24 fixes the following issues: Update to go1.24.11. Security issues fixed: - CVE-2025-47912: net/url: insufficient validation of bracketed IPv6 hostnames (bsc#1251257). - CVE-2025-58183: archive/tar: unbounded allocation when parsing GNU sparse map (bsc#1251261). - CVE-2025-58185: encoding/asn1: pre-allocating memory when parsing DER payload can cause memory exhaustion (bsc#1251258). - CVE-2025-58186: net/http: lack of limit when parsing cookies can cause memory exhaustion (bsc#1251259). - CVE-2025-58187: crypto/x509: quadratic complexity when checking name constraints (bsc#1251254). - CVE-2025-58188: crypto/x509: panic when validating certificates with DSA public keys (bsc#1251260). - CVE-2025-58189: crypto/tls: ALPN negotiation error contains attacker controlled information (bsc#1251255). - CVE-2025-61723: encoding/pem: quadratic complexity when parsing some invalid inputs (bsc#1251256). - CVE-2025-61724: net/textproto: excessive CPU consumption in Reader.ReadResponse (bsc#1251262). - CVE-2025-61725: net/mail: excessive CPU consumption in ParseAddress (bsc#1251253). - CVE-2025-61727: crypto/x509: excluded subdomain constraint doesn't preclude wildcard SAN (bsc#1254430). - CVE-2025-61729: crypto/x509: excessive resource consumption in printing error string for host certificate validation (bsc#1254431). Other issues fixed and changes: - Version 1.24.11: * go#76378 internal/cpu: incorrect CPU features bit parsing on loong64 cause illegal instruction core dumps on LA364 cores - Version 1.24.10: * go#75831 net/url: ipv4 mapped ipv6 addresses should be valid in square brackets * go#75951 encoding/pem: regression when decoding blocks with leading garbage * go#76028 pem/encoding: malformed line endings can cause panics - Version 1.24.9: * go#75860 crypto/x509: TLS validation fails for FQDNs with trailing dot - Version 1.24.8: * go#75138 os: Root.OpenRoot sets incorrect name, losing prefix of original root * go#75220 debug/pe: pe.Open fails on object files produced by llvm-mingw 21 * go#75351 cmd/link: panic on riscv64 with CGO enabled due to empty container symbol * go#75356 net: new test TestIPv4WriteMsgUDPAddrPortTargetAddrIPVersion fails on plan9 * go#75359 os: new test TestOpenFileCreateExclDanglingSymlink fails on Plan 9 * go#75523 crypto/internal/fips140/rsa: requires a panic if self-tests fail * go#75538 net/http: internal error: connCount underflow * go#75594 cmd/compile: internal compiler error with GOEXPERIMENT=cgocheck2 on github.com/leodido/go-urn * go#75609 sync/atomic: comment for Uintptr.Or incorrectly describes return value - Version 1.24.7: * go#75007 os/exec: TestLookPath fails on plan9 after CL 685755 * go#74821 cmd/go: "get toolchain@latest" should ignore release candidates * go#74818 net: WriteMsgUDPAddrPort should accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets - Packaging: migrate from update-alternatives to libalternatives (bsc#1245878). - Package svgpan.js to fix issues with "go tool pprof" (bsc#1249985). - Drop unused gccgo bootstrap code in go1.22+ (bsc#1248082). go1.24-1.24.11-160000.1.1.aarch64.rpm go1.24-1.24.11-160000.1.1.src.rpm go1.24-debuginfo-1.24.11-160000.1.1.aarch64.rpm go1.24-doc-1.24.11-160000.1.1.aarch64.rpm go1.24-libstd-1.24.11-160000.1.1.aarch64.rpm go1.24-libstd-debuginfo-1.24.11-160000.1.1.aarch64.rpm go1.24-race-1.24.11-160000.1.1.aarch64.rpm go1.24-1.24.11-160000.1.1.ppc64le.rpm go1.24-doc-1.24.11-160000.1.1.ppc64le.rpm go1.24-race-1.24.11-160000.1.1.ppc64le.rpm go1.24-1.24.11-160000.1.1.s390x.rpm go1.24-doc-1.24.11-160000.1.1.s390x.rpm go1.24-race-1.24.11-160000.1.1.s390x.rpm go1.24-1.24.11-160000.1.1.x86_64.rpm go1.24-debuginfo-1.24.11-160000.1.1.x86_64.rpm go1.24-doc-1.24.11-160000.1.1.x86_64.rpm go1.24-libstd-1.24.11-160000.1.1.x86_64.rpm go1.24-libstd-debuginfo-1.24.11-160000.1.1.x86_64.rpm go1.24-race-1.24.11-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-104 Security update for keylime critical SUSE SLFO 1.2 This update for keylime fixes the following issues: Update to version 7.13.0+40. Security issues fixed: - CVE-2025-13609: possible agent identity takeover due to registrar allowing the registration of agents with duplicate UUIDs (bsc#1254199). - CVE-2025-1057: registrar denial-of-service due to backward incompatibility in database type handling (bsc#1237153). Other issues fixed and changes: - Version 7.13.0+40: * Include new attestation information fields (#1818) * Fix Database race conditions and SQLAlchemy 2.0 compatibility (#1823) * push-model: require HTTPS for authentication and attestation endpoints * Fix operational_state tracking in push mode attestations * templates: add push model authentication config options to 2.5 templates * Security: Hash authentication tokens in logs * Fix stale IMA policy cache in verification * Fix authentication behavior on failed attestations for push mode * Add shared memory infrastructure for multiprocess communication * Add agent authentication (challenge/response) protocol for push mode * Add agent-driven (push) attestation protocol with PULL mode regression fixes (#1814) * docs: Fix man page RST formatting for rst2man compatibility (#1813) * Apply limit on keylime-policy workers * tpm: fix ECC signature parsing to support variable-length coordinates * tpm: fix ECC P-521 credential activation with consistent marshaling * tpm: fix ECC P-521 coordinate validation * Remove deprecated disabled_signing_algorithms configuration option (#1804) * algorithms: add support for specific RSA algorithms * algorithms: add support for specific ECC curve algorithms * Created manpage for keylime-policy and edited manpages for keylime verifier, registrar, agent * Manpage for keylime agent * Manpage for keylime verifier * Manpage for keylime registrar * Use constants for timeout and max retries defaults * verifier: Use timeout from `request_timeout` config option * revocation_notifier: Use timeout setting from config file * tenant: Set timeout when getting version from agent * verify/evidence: SEV-SNP evidence type/verifier * verify/evidence: Add evidence type to request JSON - Version v7.13.0: * Avoid re-encoding certificate stored in DB * Revert "models: Do not re-encode certificate stored in DB" * Revert "registrar_agent: Use pyasn1 to parse PEM" * policy/sign: use print() when writing to /dev/stdout * registrar_agent: Use pyasn1 to parse PEM * models: Do not re-encode certificate stored in DB * mba: normalize vendor_db in EV_EFI_VARIABLE_AUTHORITY events * mb: support vendor_db as logged by newer shim versions * mb: support EV_EFI_HANDOFF_TABLES events on PCR1 * Remove unnecessary configuration values * cloud_verifier_tornado: handle exception in notify_error() * requests_client: close the session at the end of the resource manager * Manpage for keylime_tenant (#1786) * Add 2.5 templates including Push Model changes * Initial version of verify evidence API * db: Do not read pool size and max overflow for sqlite * Use context managers to close DB sessions * revocations: Try to send notifications on shutdown * verifier: Gracefully shutdown on signal * Use `fork` as `multiprocessing` start method * Fix inaccuracy in threat model and add reference to SBAT * Explain TPM properties and expand vTPM discussion * Fix invalid RST and update TOC * Expand threat model page to include adversarial model * Add --push-model option to avoid requests to agents * templates: duplicate str_to_version() in the adjust script * policy: fix mypy issues with rpm_repo * revocation_notifier: fix mypy issue by replacing deprecated call * Fix create_runtime_policy in python < 3.12 * Fix after review * fixed CONSTANT names C0103 errors * Extend meta_data field in verifierdb * docs: update issue templates * docs: add GitHub PR template with documentation reminders * tpm_util: fix quote signature extraction for ECDSA * registrar: Log API versions during startup * Remove excessive logging on exception * scripts: Fix coverage information downloading script - Version v7.12.1: * models: Add Base64Bytes type to read and write from the database * Simplify response check from registrar - Version v7.12.0: * API: Add /version endpoint to registrar * scripts: Download coverage data directly from Testing Farm * docs: Add separate documentation for each API version * scripts/create_runtime_policy.sh: fix path for the exclude list * docs: add documentation for keylime-policy * templates: Add the new agent.conf option 'api_versions' * Enable autocompletion using argcomplete * build(deps): bump codecov/codecov-action from 5.1.1 to 5.1.2 * Configure EPEL-10 repo in packit-ci.fmf * build(deps): bump codecov/codecov-action from 5.0.2 to 5.1.1 * build(deps): bump pypa/gh-action-pypi-publish from 1.12.0 to 1.12.3 * build(deps): bump docker/metadata-action from 5.5.1 to 5.6.1 * build(deps): bump docker/build-push-action from 6.9.0 to 6.10.0 * keylime-policy: improve error handling when provided a bad key (sign) * keylime-policy: exit with status 1 when the commands failed * keylime-policy: use Certificate() from models.base to validate certs * keylime-policy: check for valid cert file when using x509 backend (sign) * keylime-policy: fix help for "keylime-policy sign" verb * tenant: Correctly log number of tries when deleting * update TCTI environment variable usage * build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.2 * keylime-policy: add `create measured-boot' subcommand * keylime-policy: add `sign runtime' subcommand * keylime-policy: add logger to use with the policy tool * installer.sh: Restore execution permission * installer: Fix string comparison * build(deps): bump docker/build-push-action from 6.7.0 to 6.9.0 * build(deps): bump codecov/codecov-action from 4.5.0 to 4.6.0 * build(deps): bump pypa/gh-action-pypi-publish from 1.11.0 to 1.12.0 * build(deps): bump actions/setup-python from 5.2.0 to 5.3.0 * installer.sh: updated EPEL, PEP668 Fix, logic fix * build(deps): bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 * build(deps): bump actions/checkout from 4.2.1 to 4.2.2 * postgresql support for docker using psycopg2 * installer.sh: update package list, add workaround for PEP 668 * build(deps): bump actions/checkout from 4.2.0 to 4.2.1 * keylime.conf: full removal * Drop pending SPDX-License-Identifier headers * create_runtime_policy: Validate algorithm from IMA measurement log * create-runtime-policy: Deal with SHA-256 and SM3_256 ambiguity * create_runtime_policy: drop commment with test data * create_runtime_policy: Use a common method to guess algorithm * keylime-policy: rename tool to keylime-policy instead of keylime_policy * keylime_policy: create runtime: remove --use-ima-measurement-list * keylime_policy: use consistent arg names for create_runtime_policy * build(deps): bump pypa/gh-action-pypi-publish from 1.10.2 to 1.10.3 * build(deps): bump actions/checkout from 4.1.7 to 4.2.0 * elchecking/example: workaround empty PK, KEK, db and dbx * elchecking: add handling for EV_EFI_PLATFORM_FIRMWARE_BLOB2 * create_runtime_policy: Fix log level for debug messages * build(deps): bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 * build(deps): bump peter-evans/create-pull-request from 6.1.0 to 7.0.5 * pylintrc: Ignore too-many-positional-arguments check * keylime/web/base/controller: Move TypeAlias definition out of class * create_runtime_policy: Calculate digests in multiple threads * create_runtime_policy: Allow rootfs to be in any directory * keylime_policy: Calculate digests from each source separately * create_runtime_policy: Simplify boot_aggregate parsing * ima: Validate JSON when loading IMA Keyring from string * docs: include IDevID page also in the sidebar * docs: point to installation guide from RHEL and SLE Micro * build(deps): bump actions/setup-python from 5.1.1 to 5.2.0 * build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.1 * change check_tpm_origin_check to a warning that does not prevent registration * docs: Fix Runtime Policy JSON schema to reflect the reality * Sets absolute path for files inside a rootfs dir * policy/create_runtime_policy: fix handling of empty lines in exclude list * keylime_policy: setting 'log_hash_alg' to 'sha1' (template-hash algo) * codestyle: Assign CERTIFICATE_PRIVATE_KEY_TYPES directly (pyright) * codestyle: convert bytearrays to bytes to get expected type (pyright) * codestyle: Use new variables after changing datatype (pyright) * cert_utils: add description why loading using cryptography might fail * ima: list names of the runtime policies * build(deps): bump docker/build-push-action from 6.6.1 to 6.7.0 * tox: Use python 3.10 instead of 3.6 * revocation_notifier: Use web_util to generate TLS context * mba: Add a skip custom policies option when loading mba. * build(deps): bump docker/build-push-action from 6.5.0 to 6.6.1 * build(deps): bump docker/metadata-action from 4.6.0 to 5.5.1 * cmd/keylime_policy: add tool to handle keylime policies * cert_utils: add is_x509_cert() * common/algorithms: transform Encrypt and Sign class into enums * common/algorithms: add method to calculate digest of a file * build(deps): bump docker/build-push-action from 4.2.1 to 6.5.0 * build(deps): bump docker/login-action from 3.2.0 to 3.3.0 * build(deps): bump docker/metadata-action from 4.6.0 to 5.5.1 * build(deps): bump docker/login-action from 3.2.0 to 3.3.0 * build(deps): bump docker/build-push-action from 6.4.1 to 6.5.0 * build(deps): bump docker/build-push-action from 4.2.1 to 6.4.1 * build(deps): bump docker/metadata-action from 4.6.0 to 5.5.1 * build(deps): bump pre-commit/action from 3.0.0 to 3.0.1 * tpm: Replace KDFs and ECDH implementations with python-cryptography * build(deps): bump codecov/codecov-action from 2.1.0 to 4.5.0 * build(deps): bump docker/login-action from 2.2.0 to 3.2.0 * build(deps): bump actions/setup-python from 2.3.4 to 5.1.1 * build(deps): bump actions/first-interaction * build(deps): bump actions/checkout from 2.7.0 to 4.1.7 * revocation_notifier: Explicitly add CA certificate bundle * Introduce new REST API framework and refactor registrar implementation * mba: Support named measured boot policies * tenant: add friendlier error message if mTLS CA is wrongly configured * ca_impl_openssl: Mark extensions as critical following RFC 5280 * Include Authority Key Identifier in KL-generated certs * verifier, tenant: make payload for agent completely optional keylime-7.13.0+40-160000.1.1.src.rpm keylime-config-7.13.0+40-160000.1.1.noarch.rpm keylime-firewalld-7.13.0+40-160000.1.1.noarch.rpm keylime-logrotate-7.13.0+40-160000.1.1.noarch.rpm keylime-registrar-7.13.0+40-160000.1.1.noarch.rpm keylime-tenant-7.13.0+40-160000.1.1.noarch.rpm keylime-tpm_cert_store-7.13.0+40-160000.1.1.noarch.rpm keylime-verifier-7.13.0+40-160000.1.1.noarch.rpm python313-keylime-7.13.0+40-160000.1.1.noarch.rpm openSUSE-Leap-16.0-105 Security update for ImageMagick important SUSE SLFO 1.2 This update for ImageMagick fixes the following issues: - CVE-2025-62594: unsigned underflow and division-by-zero can lead to OOB pointer arithmetic and process crash (bsc#1252749). - CVE-2025-57807: BlobStream Forward-Seek Under-Allocation (bsc#1249362). - CVE-2025-62171: incomplete fix for integer overflow in BMP Decoder (bsc#1252282). - CVE-2025-55298: format string bug vulnerability can lead to heap overflow (bsc#1248780). - CVE-2025-57803: 32-bit integer overflow can lead to heap out-of-bounds (OOB) write (bsc#1248784). - CVE-2025-55212: division-by-zero in ThumbnailImage() when passing a geometry string containing only a colon to `montage -geometry` (bsc#1248767). ImageMagick-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-7.1.2.0-160000.4.1.src.rpm ImageMagick-config-7-SUSE-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-debugsource-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-devel-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-doc-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-extra-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.4.1.aarch64.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm libMagick++-devel-7.1.2.0-160000.4.1.aarch64.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.4.1.aarch64.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.4.1.aarch64.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm perl-PerlMagick-7.1.2.0-160000.4.1.aarch64.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.4.1.aarch64.rpm ImageMagick-config-7-upstream-open-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-config-7-upstream-limited-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-config-7-upstream-secure-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-config-7-upstream-websafe-7.1.2.0-160000.4.1.noarch.rpm ImageMagick-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-debugsource-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-devel-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-extra-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.4.1.ppc64le.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm libMagick++-devel-7.1.2.0-160000.4.1.ppc64le.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.4.1.ppc64le.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.4.1.ppc64le.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm perl-PerlMagick-7.1.2.0-160000.4.1.ppc64le.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.4.1.ppc64le.rpm ImageMagick-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-debuginfo-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-debugsource-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-devel-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-extra-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.4.1.s390x.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.4.1.s390x.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.4.1.s390x.rpm libMagick++-devel-7.1.2.0-160000.4.1.s390x.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.4.1.s390x.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.s390x.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.4.1.s390x.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.s390x.rpm perl-PerlMagick-7.1.2.0-160000.4.1.s390x.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.4.1.s390x.rpm ImageMagick-7.1.2.0-160000.4.1.x86_64.rpm ImageMagick-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm ImageMagick-debugsource-7.1.2.0-160000.4.1.x86_64.rpm ImageMagick-devel-7.1.2.0-160000.4.1.x86_64.rpm ImageMagick-extra-7.1.2.0-160000.4.1.x86_64.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.4.1.x86_64.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm libMagick++-devel-7.1.2.0-160000.4.1.x86_64.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.4.1.x86_64.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.4.1.x86_64.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm perl-PerlMagick-7.1.2.0-160000.4.1.x86_64.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-106 Security update for grub2 important SUSE SLFO 1.2 This update for grub2 fixes the following issues: Changes in grub2: - CVE-2025-54771: Fixed grub_file_close() does not properly controls the fs refcount (bsc#1252931) - CVE-2025-54770: Fixed missing unregister call for net_set_vlan command may lead to use-after-free (bsc#1252930) - CVE-2025-61662: Fixed missing unregister call for gettext command may lead to use-after-free (bsc#1252933) - CVE-2025-61663: Fixed missing unregister call for normal commands may lead to use-after-free (bsc#1252934) - CVE-2025-61664: Fixed missing unregister call for normal_exit command may lead to use-after-free (bsc#1252935) - CVE-2025-61661: Fixed out-of-bounds write in grub_usb_get_string() function (bsc#1252932) - Bump upstream SBAT generation to 6 - Fix "sparse file not allowed" error after grub2-reboot (bsc#1245738) - Fix PowerPC network boot prefix to correctly locate grub.cfg (bsc#1249385) - turn off page flipping for i386-pc using VBE video backend (bsc#1245636) - Fix boot hangs in setting up serial console when ACPI SPCR table is present and redirection is disabled (bsc#1249088) - Fix timeout when loading initrd via http after PPC CAS reboot (bsc#1245953) - Skip mount point in grub_find_device function (bsc#1246231) - CVE-2024-56738: Fixed side-channel attack due to not constant-time algorithm in grub_crypto_memcmp (bsc#1234959) grub2-2.12-160000.3.1.aarch64.rpm grub2-2.12-160000.3.1.src.rpm grub2-arm64-efi-2.12-160000.3.1.noarch.rpm grub2-arm64-efi-bls-2.12-160000.3.1.noarch.rpm grub2-arm64-efi-debug-2.12-160000.3.1.noarch.rpm grub2-arm64-efi-extras-2.12-160000.3.1.noarch.rpm grub2-branding-upstream-2.12-160000.3.1.noarch.rpm grub2-common-2.12-160000.3.1.aarch64.rpm grub2-common-debuginfo-2.12-160000.3.1.aarch64.rpm grub2-debugsource-2.12-160000.3.1.aarch64.rpm grub2-snapper-plugin-2.12-160000.3.1.noarch.rpm grub2-systemd-sleep-plugin-2.12-160000.3.1.noarch.rpm grub2-2.12-160000.3.1.ppc64le.rpm grub2-common-2.12-160000.3.1.ppc64le.rpm grub2-common-debuginfo-2.12-160000.3.1.ppc64le.rpm grub2-powerpc-ieee1275-2.12-160000.3.1.noarch.rpm grub2-powerpc-ieee1275-debug-2.12-160000.3.1.noarch.rpm grub2-powerpc-ieee1275-extras-2.12-160000.3.1.noarch.rpm grub2-2.12-160000.3.1.s390x.rpm grub2-common-2.12-160000.3.1.s390x.rpm grub2-common-debuginfo-2.12-160000.3.1.s390x.rpm grub2-debugsource-2.12-160000.3.1.s390x.rpm grub2-s390x-emu-2.12-160000.3.1.s390x.rpm grub2-s390x-emu-debug-2.12-160000.3.1.s390x.rpm grub2-s390x-emu-extras-2.12-160000.3.1.noarch.rpm grub2-2.12-160000.3.1.x86_64.rpm grub2-common-2.12-160000.3.1.x86_64.rpm grub2-common-debuginfo-2.12-160000.3.1.x86_64.rpm grub2-debugsource-2.12-160000.3.1.x86_64.rpm grub2-i386-pc-2.12-160000.3.1.noarch.rpm grub2-i386-pc-debug-2.12-160000.3.1.noarch.rpm grub2-i386-pc-extras-2.12-160000.3.1.noarch.rpm grub2-x86_64-efi-2.12-160000.3.1.noarch.rpm grub2-x86_64-efi-bls-2.12-160000.3.1.noarch.rpm grub2-x86_64-efi-debug-2.12-160000.3.1.noarch.rpm grub2-x86_64-efi-extras-2.12-160000.3.1.noarch.rpm grub2-x86_64-xen-2.12-160000.3.1.noarch.rpm grub2-x86_64-xen-debug-2.12-160000.3.1.noarch.rpm grub2-x86_64-xen-extras-2.12-160000.3.1.noarch.rpm openSUSE-Leap-16.0-107 Security update for openssl-3 important SUSE SLFO 1.2 This update for openssl-3 fixes the following issues: - CVE-2025-9230: Fixed out-of-bounds read & write in RFC 3211 KEK unwrap (bsc#1250232) - CVE-2025-9231: Fixedk timing side-channel in SM2 algorithm on 64 bit ARM (bsc#1250233) - CVE-2025-9232: Fixed out-of-bounds read in HTTP client no_proxy handling (bsc#1250234) libopenssl-3-devel-3.5.0-160000.4.1.aarch64.rpm libopenssl-3-fips-provider-3.5.0-160000.4.1.aarch64.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.4.1.aarch64.rpm libopenssl3-3.5.0-160000.4.1.aarch64.rpm libopenssl3-debuginfo-3.5.0-160000.4.1.aarch64.rpm openssl-3-3.5.0-160000.4.1.aarch64.rpm openssl-3-3.5.0-160000.4.1.src.rpm openssl-3-debuginfo-3.5.0-160000.4.1.aarch64.rpm openssl-3-debugsource-3.5.0-160000.4.1.aarch64.rpm openssl-3-doc-3.5.0-160000.4.1.noarch.rpm libopenssl-3-devel-3.5.0-160000.4.1.ppc64le.rpm libopenssl-3-fips-provider-3.5.0-160000.4.1.ppc64le.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.4.1.ppc64le.rpm libopenssl3-3.5.0-160000.4.1.ppc64le.rpm libopenssl3-debuginfo-3.5.0-160000.4.1.ppc64le.rpm openssl-3-3.5.0-160000.4.1.ppc64le.rpm openssl-3-debuginfo-3.5.0-160000.4.1.ppc64le.rpm openssl-3-debugsource-3.5.0-160000.4.1.ppc64le.rpm libopenssl-3-devel-3.5.0-160000.4.1.s390x.rpm libopenssl-3-fips-provider-3.5.0-160000.4.1.s390x.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.4.1.s390x.rpm libopenssl3-3.5.0-160000.4.1.s390x.rpm libopenssl3-debuginfo-3.5.0-160000.4.1.s390x.rpm openssl-3-3.5.0-160000.4.1.s390x.rpm openssl-3-debuginfo-3.5.0-160000.4.1.s390x.rpm openssl-3-debugsource-3.5.0-160000.4.1.s390x.rpm libopenssl-3-devel-3.5.0-160000.4.1.x86_64.rpm libopenssl-3-fips-provider-3.5.0-160000.4.1.x86_64.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.4.1.x86_64.rpm libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.4.1.x86_64.rpm libopenssl-3-fips-provider-x86-64-v3-debuginfo-3.5.0-160000.4.1.x86_64.rpm libopenssl3-3.5.0-160000.4.1.x86_64.rpm libopenssl3-debuginfo-3.5.0-160000.4.1.x86_64.rpm libopenssl3-x86-64-v3-3.5.0-160000.4.1.x86_64.rpm libopenssl3-x86-64-v3-debuginfo-3.5.0-160000.4.1.x86_64.rpm openssl-3-3.5.0-160000.4.1.x86_64.rpm openssl-3-debuginfo-3.5.0-160000.4.1.x86_64.rpm openssl-3-debugsource-3.5.0-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-108 Recommended update for openldap2_6 moderate SUSE SLFO 1.2 This update for openldap2_6 fixes the following issues: Changes in openldap2_6: - Add limited support for libldap-2.4 library compatibility (jsc#PED-13833) libldap-2-2.6.10+10-160000.3.1.aarch64.rpm libldap-2-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm libldap-data-2.6.10+10-160000.3.1.noarch.rpm libldap2-sap-compat-2.6.10+10-160000.3.1.aarch64.rpm libldap2-sap-compat-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-2.6.10+10-160000.3.1.src.rpm openldap2_6-client-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-client-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-contrib-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-contrib-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-debugsource-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-devel-2.6.10+10-160000.3.1.aarch64.rpm openldap2_6-doc-2.6.10+10-160000.3.1.noarch.rpm libldapcpp-devel-2.6.10+10-160000.3.1.aarch64.rpm libldapcpp0-2.6.10+10-160000.3.1.aarch64.rpm libldapcpp0-debuginfo-2.6.10+10-160000.3.1.aarch64.rpm libldap-2-2.6.10+10-160000.3.1.ppc64le.rpm libldap-2-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm libldap2-sap-compat-2.6.10+10-160000.3.1.ppc64le.rpm libldap2-sap-compat-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-client-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-client-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-contrib-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-contrib-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-debugsource-2.6.10+10-160000.3.1.ppc64le.rpm openldap2_6-devel-2.6.10+10-160000.3.1.ppc64le.rpm libldapcpp-devel-2.6.10+10-160000.3.1.ppc64le.rpm libldapcpp0-2.6.10+10-160000.3.1.ppc64le.rpm libldapcpp0-debuginfo-2.6.10+10-160000.3.1.ppc64le.rpm libldap-2-2.6.10+10-160000.3.1.s390x.rpm libldap-2-debuginfo-2.6.10+10-160000.3.1.s390x.rpm libldap2-sap-compat-2.6.10+10-160000.3.1.s390x.rpm libldap2-sap-compat-debuginfo-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-client-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-client-debuginfo-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-contrib-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-contrib-debuginfo-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-debuginfo-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-debugsource-2.6.10+10-160000.3.1.s390x.rpm openldap2_6-devel-2.6.10+10-160000.3.1.s390x.rpm libldapcpp-devel-2.6.10+10-160000.3.1.s390x.rpm libldapcpp0-2.6.10+10-160000.3.1.s390x.rpm libldapcpp0-debuginfo-2.6.10+10-160000.3.1.s390x.rpm libldap-2-2.6.10+10-160000.3.1.x86_64.rpm libldap-2-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm libldap2-sap-compat-2.6.10+10-160000.3.1.x86_64.rpm libldap2-sap-compat-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-client-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-client-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-contrib-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-contrib-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-debugsource-2.6.10+10-160000.3.1.x86_64.rpm openldap2_6-devel-2.6.10+10-160000.3.1.x86_64.rpm libldapcpp-devel-2.6.10+10-160000.3.1.x86_64.rpm libldapcpp0-2.6.10+10-160000.3.1.x86_64.rpm libldapcpp0-debuginfo-2.6.10+10-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-109 Recommended update for freetype2 moderate SUSE SLFO 1.2 This update for freetype2 fixes the following issues: Changes in freetype2: - update to 2.13.3: - Do not build the ft2demos flavor in SLE16 where Qt5 will not be available freetype2-2.13.3-160000.3.1.src.rpm freetype2-debugsource-2.13.3-160000.3.1.aarch64.rpm freetype2-devel-2.13.3-160000.3.1.aarch64.rpm freetype2-profile-tti35-2.13.3-160000.3.1.noarch.rpm ftdump-2.13.3-160000.3.1.aarch64.rpm ftdump-debuginfo-2.13.3-160000.3.1.aarch64.rpm libfreetype6-2.13.3-160000.3.1.aarch64.rpm libfreetype6-debuginfo-2.13.3-160000.3.1.aarch64.rpm freetype2-debugsource-2.13.3-160000.3.1.ppc64le.rpm freetype2-devel-2.13.3-160000.3.1.ppc64le.rpm ftdump-2.13.3-160000.3.1.ppc64le.rpm ftdump-debuginfo-2.13.3-160000.3.1.ppc64le.rpm libfreetype6-2.13.3-160000.3.1.ppc64le.rpm libfreetype6-debuginfo-2.13.3-160000.3.1.ppc64le.rpm freetype2-debugsource-2.13.3-160000.3.1.s390x.rpm freetype2-devel-2.13.3-160000.3.1.s390x.rpm ftdump-2.13.3-160000.3.1.s390x.rpm ftdump-debuginfo-2.13.3-160000.3.1.s390x.rpm libfreetype6-2.13.3-160000.3.1.s390x.rpm libfreetype6-debuginfo-2.13.3-160000.3.1.s390x.rpm freetype2-debugsource-2.13.3-160000.3.1.x86_64.rpm freetype2-devel-2.13.3-160000.3.1.x86_64.rpm ftdump-2.13.3-160000.3.1.x86_64.rpm ftdump-debuginfo-2.13.3-160000.3.1.x86_64.rpm libfreetype6-2.13.3-160000.3.1.x86_64.rpm libfreetype6-debuginfo-2.13.3-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-110 Recommended update for libnvme, nvme-cli important SUSE SLFO 1.2 This update for libnvme, nvme-cli fixes the following issues: Changes for libnvme: - linux: use EVP_PKEY_CTX_add1_hkdf_info only once in compat function (bsc#1246914) - nvme/linux: check for empty digest in gen_tls_identity() (bsc#1246914) - nvme/linux: add fallback implementation for nvme_insert_tls_key_compat() (bsc#1246914) - linux: fix HKDF TLS key derivation back to OpenSSL 3.0.8 (bsc#1246914) - libnvme: TLS PSK derivation fixes (bsc#1246914) - linux: rename __nvme_insert_tls_key_versioned() to __nvme_insert_tls_key() (bsc#1246914) - linux: rename __nvme_insert_tls_key() to __nvme_import_tls_key() (bsc#1246914) - test/psk: add testcase for TLS identity derivation (bsc#1246914) - linux: set errno when nvme_generate_tls_key_identity() fails (bsc#1246914) - tree: do not try to strdup NULL pointer (bsc#1247225) - tree: always set the host key (bsc#1246560) - tree: add routine to fetch subsys firmware rev (bsc#1240518) - tree: add routine to fetch subsys model (bsc#1240518) Changes for nvme-cli: - nvme: add --compat flag for 'gen-tls-key' and 'check-tls-key' (bsc#1246914) - netapp-ontapdev: update invalid device handling (bsc#1247017) - netapp-smdev: update invalid device handling (bsc#1247017) - nvme-print: display fw-rev in list-subsys output (bsc#1240518) - nvme-print: display model in list-subsys output (bsc#1240518) - netapp-ontapdev: add subsysname to regular output (bsc#1240518) - netapp-ontapdev: add subsysname to the verbose output (bsc#1240518) - Revert "nvme-print-json: display only verbose output" - nvme: check for valid output format (bsc#1237275) - nvme: make get-feature JSON output print everything (bsc#1237275) - nvme: make -v output consistent with -H output for nvme get-feature (bsc#1237275) - nvme: make -v output consistent with -H output for nvme get-property (bsc#1237275) - nvme-print-stdout: add details in list-ns verbose output (bsc#1237275) - nvme-print-stdout: add descriptions for nsze, ncap and nuse (bsc#1237275) - netapp-ontapdev: correct the basestr header (bsc#1237275) - netapp-smdev: update err msg for no smdevices (bsc#1237275) - netapp-ontapdev: update err msg for no ontapdevices (bsc#1237275) - netapp-smdev: update basestr header in verbose output (bsc#1237275) - netapp-ontapdev: update basestr headers in verbose output - netapp-smdev: add verbose output - netapp-smdev: remove redundant code - nvme-netapp: update err messages - netapp-ontapdev: fix JSON output for nsze and nuse - netapp-ontapdev: fix fw version handling - netapp-ontapdev: add verbose output libnvme-1.11+17.g6d55624d-160000.1.1.src.rpm libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme-debugsource-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme-devel-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme-mi1-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme-mi1-debuginfo-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme1-1.11+17.g6d55624d-160000.1.1.aarch64.rpm libnvme1-debuginfo-1.11+17.g6d55624d-160000.1.1.aarch64.rpm python3-libnvme-1.11+17.g6d55624d-160000.1.1.aarch64.rpm python3-libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.aarch64.rpm nvme-cli-2.11+29.g35e62868-160000.1.1.aarch64.rpm nvme-cli-2.11+29.g35e62868-160000.1.1.src.rpm nvme-cli-bash-completion-2.11+29.g35e62868-160000.1.1.noarch.rpm nvme-cli-debuginfo-2.11+29.g35e62868-160000.1.1.aarch64.rpm nvme-cli-debugsource-2.11+29.g35e62868-160000.1.1.aarch64.rpm nvme-cli-regress-script-2.11+29.g35e62868-160000.1.1.noarch.rpm nvme-cli-zsh-completion-2.11+29.g35e62868-160000.1.1.noarch.rpm libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme-debugsource-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme-devel-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme-mi1-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme-mi1-debuginfo-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme1-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm libnvme1-debuginfo-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm python3-libnvme-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm python3-libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.ppc64le.rpm nvme-cli-2.11+29.g35e62868-160000.1.1.ppc64le.rpm nvme-cli-debuginfo-2.11+29.g35e62868-160000.1.1.ppc64le.rpm nvme-cli-debugsource-2.11+29.g35e62868-160000.1.1.ppc64le.rpm libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme-debugsource-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme-devel-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme-mi1-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme-mi1-debuginfo-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme1-1.11+17.g6d55624d-160000.1.1.s390x.rpm libnvme1-debuginfo-1.11+17.g6d55624d-160000.1.1.s390x.rpm python3-libnvme-1.11+17.g6d55624d-160000.1.1.s390x.rpm python3-libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.s390x.rpm nvme-cli-2.11+29.g35e62868-160000.1.1.s390x.rpm nvme-cli-debuginfo-2.11+29.g35e62868-160000.1.1.s390x.rpm nvme-cli-debugsource-2.11+29.g35e62868-160000.1.1.s390x.rpm libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme-debugsource-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme-devel-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme-mi1-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme-mi1-debuginfo-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme1-1.11+17.g6d55624d-160000.1.1.x86_64.rpm libnvme1-debuginfo-1.11+17.g6d55624d-160000.1.1.x86_64.rpm python3-libnvme-1.11+17.g6d55624d-160000.1.1.x86_64.rpm python3-libnvme-debuginfo-1.11+17.g6d55624d-160000.1.1.x86_64.rpm nvme-cli-2.11+29.g35e62868-160000.1.1.x86_64.rpm nvme-cli-debuginfo-2.11+29.g35e62868-160000.1.1.x86_64.rpm nvme-cli-debugsource-2.11+29.g35e62868-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-111 Recommended update for nvidia-open-driver-G06-signed moderate SUSE SLFO 1.2 This update for nvidia-open-driver-G06-signed fixes the following issues: - readded kernel-6.18.patch still needed for cuda driver version 580.105.08 - update non-CUDA variant to version 580.119.02 (bsc#1254801) - fixed build against kernel 6.18 - introduced extra %gfx_aarch64_version and appropriate tarball/pci_id file in the hope that build service will no longer complain - update CUDA variant to 580.105.08 - back to 580.95.05 on aarch64, since userspace drivers have not been updated for this platform - update non-CUDA variant to version 580.105.08 (bsc#1252978) nvidia-open-driver-G06-signed-580.119.02-160000.1.1.src.rpm nvidia-open-driver-G06-signed-64kb-devel-580.119.02-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-check-580.119.02-160000.1.1.noarch.rpm nvidia-open-driver-G06-signed-debugsource-580.119.02-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-default-devel-580.119.02-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-64kb-580.119.02_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-64kb-debuginfo-580.119.02_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-default-580.119.02_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-default-debuginfo-580.119.02_k6.12.0_160000.7-160000.1.1.aarch64.rpm nv-prefer-signed-open-driver-580.105.08-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-580.105.08-160000.1.1.src.rpm nvidia-open-driver-G06-signed-cuda-64kb-devel-580.105.08-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-check-580.105.08-160000.1.1.noarch.rpm nvidia-open-driver-G06-signed-cuda-debugsource-580.105.08-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-default-devel-580.105.08-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-64kb-580.105.08_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-64kb-debuginfo-580.105.08_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-580.105.08_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-debuginfo-580.105.08_k6.12.0_160000.7-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-debugsource-580.119.02-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-default-devel-580.119.02-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-kmp-default-580.119.02_k6.12.0_160000.7-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-kmp-default-debuginfo-580.119.02_k6.12.0_160000.7-160000.1.1.x86_64.rpm nv-prefer-signed-open-driver-580.105.08-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-debugsource-580.105.08-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-default-devel-580.105.08-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-580.105.08_k6.12.0_160000.7-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-debuginfo-580.105.08_k6.12.0_160000.7-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-112 Security update for qemu important SUSE SLFO 1.2 This update for qemu fixes the following issues: Update to version 10.0.7. Security issues fixed: - CVE-2025-12464: stack-based buffer overflow in the e1000 network device operations can be exploited by a malicious guest user to crash the QEMU process on the host (bsc#1253002). - CVE-2025-11234: use-after-free in WebSocket handshake operations can be exploited by a malicious client with network access to the VNC WebSocket port to cause a denial-of-service (bsc#1250984). Other updates and bugfixes: - Version 10.0.7: * kvm: Fix kvm_vm_ioctl() and kvm_device_ioctl() return value * docs/devel: Update URL for make-pullreq script * target/arm: Fix assert on BRA. * hw/aspeed/{xdma, rtc, sdhci}: Fix endianness to DEVICE_LITTLE_ENDIAN * hw/core/machine: Provide a description for aux-ram-share property * hw/pci: Make msix_init take a uint32_t for nentries * block/io_uring: avoid potentially getting stuck after resubmit at the end of ioq_submit() * block-backend: Fix race when resuming queued requests * ui/vnc: Fix qemu abort when query vnc info * chardev/char-pty: Do not ignore chr_write() failures * hw/display/exynos4210_fimd: Account for zero length in fimd_update_memory_section() * hw/arm/armv7m: Disable reentrancy guard for v7m_sysreg_ns_ops MRs * hw/arm/aspeed: Fix missing SPI IRQ connection causing DMA interrupt failure * migration: Fix transition to COLO state from precopy * Full backport list: https://lore.kernel.org/qemu-devel/1765037524.347582.2700543.nullmailer@tls.msk.ru/ - Version 10.0.6: * linux-user/microblaze: Fix little-endianness binary * target/hppa: correct size bit parity for fmpyadd * target/i386: user: do not set up a valid LDT on reset * async: access bottom half flags with qatomic_read * target/i386: fix x86_64 pushw op * i386/tcg/smm_helper: Properly apply DR values on SMM entry / exit * i386/cpu: Prevent delivering SIPI during SMM in TCG mode * i386/kvm: Expose ARCH_CAP_FB_CLEAR when invulnerable to MDS * target/i386: Fix CR2 handling for non-canonical addresses * block/curl.c: Use explicit long constants in curl_easy_setopt calls * pcie_sriov: Fix broken MMIO accesses from SR-IOV VFs * target/riscv: rvv: Fix vslide1[up|down].vx unexpected result when XLEN2 and SEWd * target/riscv: Fix ssamoswap error handling * Full backport list: https://lore.kernel.org/qemu-devel/1761022287.744330.6357.nullmailer@tls.msk.ru/ - Version 10.0.5: * tests/functional/test_aarch64_sbsaref_freebsd: Fix the URL of the ISO image * tests/functional/test_ppc_bamboo: Replace broken link with working assets * physmem: Destroy all CPU AddressSpaces on unrealize * memory: New AS helper to serialize destroy+free * include/system/memory.h: Clarify address_space_destroy() behaviour * migration: Fix state transition in postcopy_start() error handling * target/riscv: rvv: Modify minimum VLEN according to enabled vector extensions * target/riscv: rvv: Replace checking V by checking Zve32x * target/riscv: Fix endianness swap on compressed instructions * hw/riscv/riscv-iommu: Fixup PDT Nested Walk * Full backport list: https://lore.kernel.org/qemu-devel/1759986125.676506.643525.nullmailer@tls.msk.ru/ - [openSUSE][RPM]: really fix *-virtio-gpu-pci dependency on ARM (bsc#1254286). - [openSUSE][RPM] spec: make glusterfs support conditional (bsc#1254494). qemu-10.0.7-160000.1.1.aarch64.rpm qemu-10.0.7-160000.1.1.src.rpm qemu-SLOF-10.0.7-160000.1.1.noarch.rpm qemu-accel-qtest-10.0.7-160000.1.1.aarch64.rpm qemu-accel-qtest-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-arm-10.0.7-160000.1.1.aarch64.rpm qemu-arm-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-alsa-10.0.7-160000.1.1.aarch64.rpm qemu-audio-alsa-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-dbus-10.0.7-160000.1.1.aarch64.rpm qemu-audio-dbus-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-jack-10.0.7-160000.1.1.aarch64.rpm qemu-audio-jack-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-oss-10.0.7-160000.1.1.aarch64.rpm qemu-audio-oss-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-pa-10.0.7-160000.1.1.aarch64.rpm qemu-audio-pa-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-pipewire-10.0.7-160000.1.1.aarch64.rpm qemu-audio-pipewire-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-audio-spice-10.0.7-160000.1.1.aarch64.rpm qemu-audio-spice-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-curl-10.0.7-160000.1.1.aarch64.rpm qemu-block-curl-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-dmg-10.0.7-160000.1.1.aarch64.rpm qemu-block-dmg-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-iscsi-10.0.7-160000.1.1.aarch64.rpm qemu-block-iscsi-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-nfs-10.0.7-160000.1.1.aarch64.rpm qemu-block-nfs-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-rbd-10.0.7-160000.1.1.aarch64.rpm qemu-block-rbd-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-block-ssh-10.0.7-160000.1.1.aarch64.rpm qemu-block-ssh-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-chardev-baum-10.0.7-160000.1.1.aarch64.rpm qemu-chardev-baum-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-chardev-spice-10.0.7-160000.1.1.aarch64.rpm qemu-chardev-spice-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-debugsource-10.0.7-160000.1.1.aarch64.rpm qemu-doc-10.0.7-160000.1.1.noarch.rpm qemu-extra-10.0.7-160000.1.1.aarch64.rpm qemu-extra-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-guest-agent-10.0.7-160000.1.1.aarch64.rpm qemu-guest-agent-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-headless-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-qxl-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-qxl-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-pci-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-vga-10.0.7-160000.1.1.aarch64.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.7-160000.1.1.aarch64.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-host-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-host-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-redirect-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-redirect-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-smartcard-10.0.7-160000.1.1.aarch64.rpm qemu-hw-usb-smartcard-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-img-10.0.7-160000.1.1.aarch64.rpm qemu-img-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ipxe-10.0.7-160000.1.1.noarch.rpm qemu-ivshmem-tools-10.0.7-160000.1.1.aarch64.rpm qemu-ivshmem-tools-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ksm-10.0.7-160000.1.1.aarch64.rpm qemu-lang-10.0.7-160000.1.1.noarch.rpm qemu-microvm-10.0.7-160000.1.1.noarch.rpm qemu-ppc-10.0.7-160000.1.1.aarch64.rpm qemu-ppc-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-pr-helper-10.0.7-160000.1.1.aarch64.rpm qemu-pr-helper-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-s390x-10.0.7-160000.1.1.aarch64.rpm qemu-s390x-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-seabios-10.0.71.16.3_3_g3d33c746-160000.1.1.noarch.rpm qemu-skiboot-10.0.7-160000.1.1.noarch.rpm qemu-spice-10.0.7-160000.1.1.aarch64.rpm qemu-tools-10.0.7-160000.1.1.aarch64.rpm qemu-tools-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-curses-10.0.7-160000.1.1.aarch64.rpm qemu-ui-curses-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-dbus-10.0.7-160000.1.1.aarch64.rpm qemu-ui-dbus-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-gtk-10.0.7-160000.1.1.aarch64.rpm qemu-ui-gtk-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-opengl-10.0.7-160000.1.1.aarch64.rpm qemu-ui-opengl-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-spice-app-10.0.7-160000.1.1.aarch64.rpm qemu-ui-spice-app-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-ui-spice-core-10.0.7-160000.1.1.aarch64.rpm qemu-ui-spice-core-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-vgabios-10.0.71.16.3_3_g3d33c746-160000.1.1.noarch.rpm qemu-vhost-user-gpu-10.0.7-160000.1.1.aarch64.rpm qemu-vhost-user-gpu-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-x86-10.0.7-160000.1.1.aarch64.rpm qemu-x86-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-linux-user-10.0.7-160000.1.1.aarch64.rpm qemu-linux-user-10.0.7-160000.1.1.src.rpm qemu-linux-user-debuginfo-10.0.7-160000.1.1.aarch64.rpm qemu-linux-user-debugsource-10.0.7-160000.1.1.aarch64.rpm qemu-10.0.7-160000.1.1.ppc64le.rpm qemu-accel-qtest-10.0.7-160000.1.1.ppc64le.rpm qemu-accel-qtest-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-arm-10.0.7-160000.1.1.ppc64le.rpm qemu-arm-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-alsa-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-alsa-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-dbus-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-dbus-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-jack-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-jack-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-oss-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-oss-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-pa-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-pa-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-pipewire-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-pipewire-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-spice-10.0.7-160000.1.1.ppc64le.rpm qemu-audio-spice-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-curl-10.0.7-160000.1.1.ppc64le.rpm qemu-block-curl-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-dmg-10.0.7-160000.1.1.ppc64le.rpm qemu-block-dmg-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-iscsi-10.0.7-160000.1.1.ppc64le.rpm qemu-block-iscsi-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-nfs-10.0.7-160000.1.1.ppc64le.rpm qemu-block-nfs-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-rbd-10.0.7-160000.1.1.ppc64le.rpm qemu-block-rbd-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-block-ssh-10.0.7-160000.1.1.ppc64le.rpm qemu-block-ssh-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-chardev-baum-10.0.7-160000.1.1.ppc64le.rpm qemu-chardev-baum-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-chardev-spice-10.0.7-160000.1.1.ppc64le.rpm qemu-chardev-spice-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-debugsource-10.0.7-160000.1.1.ppc64le.rpm qemu-extra-10.0.7-160000.1.1.ppc64le.rpm qemu-extra-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-guest-agent-10.0.7-160000.1.1.ppc64le.rpm qemu-guest-agent-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-headless-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-qxl-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-qxl-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-pci-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-vga-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-host-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-host-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-redirect-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-redirect-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-smartcard-10.0.7-160000.1.1.ppc64le.rpm qemu-hw-usb-smartcard-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-img-10.0.7-160000.1.1.ppc64le.rpm qemu-img-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ivshmem-tools-10.0.7-160000.1.1.ppc64le.rpm qemu-ivshmem-tools-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ksm-10.0.7-160000.1.1.ppc64le.rpm qemu-ppc-10.0.7-160000.1.1.ppc64le.rpm qemu-ppc-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-pr-helper-10.0.7-160000.1.1.ppc64le.rpm qemu-pr-helper-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-s390x-10.0.7-160000.1.1.ppc64le.rpm qemu-s390x-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-spice-10.0.7-160000.1.1.ppc64le.rpm qemu-tools-10.0.7-160000.1.1.ppc64le.rpm qemu-tools-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-curses-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-curses-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-dbus-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-dbus-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-gtk-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-gtk-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-opengl-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-opengl-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-spice-app-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-spice-app-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-spice-core-10.0.7-160000.1.1.ppc64le.rpm qemu-ui-spice-core-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-vhost-user-gpu-10.0.7-160000.1.1.ppc64le.rpm qemu-vhost-user-gpu-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-x86-10.0.7-160000.1.1.ppc64le.rpm qemu-x86-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-linux-user-10.0.7-160000.1.1.ppc64le.rpm qemu-linux-user-debuginfo-10.0.7-160000.1.1.ppc64le.rpm qemu-linux-user-debugsource-10.0.7-160000.1.1.ppc64le.rpm qemu-10.0.7-160000.1.1.s390x.rpm qemu-accel-qtest-10.0.7-160000.1.1.s390x.rpm qemu-accel-qtest-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-arm-10.0.7-160000.1.1.s390x.rpm qemu-arm-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-alsa-10.0.7-160000.1.1.s390x.rpm qemu-audio-alsa-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-dbus-10.0.7-160000.1.1.s390x.rpm qemu-audio-dbus-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-jack-10.0.7-160000.1.1.s390x.rpm qemu-audio-jack-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-oss-10.0.7-160000.1.1.s390x.rpm qemu-audio-oss-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-pa-10.0.7-160000.1.1.s390x.rpm qemu-audio-pa-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-pipewire-10.0.7-160000.1.1.s390x.rpm qemu-audio-pipewire-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-audio-spice-10.0.7-160000.1.1.s390x.rpm qemu-audio-spice-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-curl-10.0.7-160000.1.1.s390x.rpm qemu-block-curl-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-dmg-10.0.7-160000.1.1.s390x.rpm qemu-block-dmg-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-iscsi-10.0.7-160000.1.1.s390x.rpm qemu-block-iscsi-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-nfs-10.0.7-160000.1.1.s390x.rpm qemu-block-nfs-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-rbd-10.0.7-160000.1.1.s390x.rpm qemu-block-rbd-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-block-ssh-10.0.7-160000.1.1.s390x.rpm qemu-block-ssh-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-chardev-baum-10.0.7-160000.1.1.s390x.rpm qemu-chardev-baum-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-chardev-spice-10.0.7-160000.1.1.s390x.rpm qemu-chardev-spice-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-debugsource-10.0.7-160000.1.1.s390x.rpm qemu-extra-10.0.7-160000.1.1.s390x.rpm qemu-extra-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-guest-agent-10.0.7-160000.1.1.s390x.rpm qemu-guest-agent-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-headless-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-qxl-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-qxl-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-pci-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-vga-10.0.7-160000.1.1.s390x.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.7-160000.1.1.s390x.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-host-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-host-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-redirect-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-redirect-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-smartcard-10.0.7-160000.1.1.s390x.rpm qemu-hw-usb-smartcard-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-img-10.0.7-160000.1.1.s390x.rpm qemu-img-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ivshmem-tools-10.0.7-160000.1.1.s390x.rpm qemu-ivshmem-tools-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ksm-10.0.7-160000.1.1.s390x.rpm qemu-ppc-10.0.7-160000.1.1.s390x.rpm qemu-ppc-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-pr-helper-10.0.7-160000.1.1.s390x.rpm qemu-pr-helper-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-s390x-10.0.7-160000.1.1.s390x.rpm qemu-s390x-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-spice-10.0.7-160000.1.1.s390x.rpm qemu-tools-10.0.7-160000.1.1.s390x.rpm qemu-tools-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-curses-10.0.7-160000.1.1.s390x.rpm qemu-ui-curses-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-dbus-10.0.7-160000.1.1.s390x.rpm qemu-ui-dbus-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-gtk-10.0.7-160000.1.1.s390x.rpm qemu-ui-gtk-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-opengl-10.0.7-160000.1.1.s390x.rpm qemu-ui-opengl-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-spice-app-10.0.7-160000.1.1.s390x.rpm qemu-ui-spice-app-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-ui-spice-core-10.0.7-160000.1.1.s390x.rpm qemu-ui-spice-core-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-vhost-user-gpu-10.0.7-160000.1.1.s390x.rpm qemu-vhost-user-gpu-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-x86-10.0.7-160000.1.1.s390x.rpm qemu-x86-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-linux-user-10.0.7-160000.1.1.s390x.rpm qemu-linux-user-debuginfo-10.0.7-160000.1.1.s390x.rpm qemu-linux-user-debugsource-10.0.7-160000.1.1.s390x.rpm qemu-10.0.7-160000.1.1.x86_64.rpm qemu-accel-qtest-10.0.7-160000.1.1.x86_64.rpm qemu-accel-qtest-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-arm-10.0.7-160000.1.1.x86_64.rpm qemu-arm-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-alsa-10.0.7-160000.1.1.x86_64.rpm qemu-audio-alsa-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-dbus-10.0.7-160000.1.1.x86_64.rpm qemu-audio-dbus-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-jack-10.0.7-160000.1.1.x86_64.rpm qemu-audio-jack-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-oss-10.0.7-160000.1.1.x86_64.rpm qemu-audio-oss-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-pa-10.0.7-160000.1.1.x86_64.rpm qemu-audio-pa-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-pipewire-10.0.7-160000.1.1.x86_64.rpm qemu-audio-pipewire-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-audio-spice-10.0.7-160000.1.1.x86_64.rpm qemu-audio-spice-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-curl-10.0.7-160000.1.1.x86_64.rpm qemu-block-curl-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-dmg-10.0.7-160000.1.1.x86_64.rpm qemu-block-dmg-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-iscsi-10.0.7-160000.1.1.x86_64.rpm qemu-block-iscsi-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-nfs-10.0.7-160000.1.1.x86_64.rpm qemu-block-nfs-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-rbd-10.0.7-160000.1.1.x86_64.rpm qemu-block-rbd-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-block-ssh-10.0.7-160000.1.1.x86_64.rpm qemu-block-ssh-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-chardev-baum-10.0.7-160000.1.1.x86_64.rpm qemu-chardev-baum-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-chardev-spice-10.0.7-160000.1.1.x86_64.rpm qemu-chardev-spice-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-debugsource-10.0.7-160000.1.1.x86_64.rpm qemu-extra-10.0.7-160000.1.1.x86_64.rpm qemu-extra-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-guest-agent-10.0.7-160000.1.1.x86_64.rpm qemu-guest-agent-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-headless-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-qxl-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-qxl-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-pci-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-vga-10.0.7-160000.1.1.x86_64.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.7-160000.1.1.x86_64.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-host-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-host-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-redirect-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-redirect-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-smartcard-10.0.7-160000.1.1.x86_64.rpm qemu-hw-usb-smartcard-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-img-10.0.7-160000.1.1.x86_64.rpm qemu-img-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ivshmem-tools-10.0.7-160000.1.1.x86_64.rpm qemu-ivshmem-tools-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ksm-10.0.7-160000.1.1.x86_64.rpm qemu-ppc-10.0.7-160000.1.1.x86_64.rpm qemu-ppc-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-pr-helper-10.0.7-160000.1.1.x86_64.rpm qemu-pr-helper-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-s390x-10.0.7-160000.1.1.x86_64.rpm qemu-s390x-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-spice-10.0.7-160000.1.1.x86_64.rpm qemu-tools-10.0.7-160000.1.1.x86_64.rpm qemu-tools-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-curses-10.0.7-160000.1.1.x86_64.rpm qemu-ui-curses-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-dbus-10.0.7-160000.1.1.x86_64.rpm qemu-ui-dbus-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-gtk-10.0.7-160000.1.1.x86_64.rpm qemu-ui-gtk-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-opengl-10.0.7-160000.1.1.x86_64.rpm qemu-ui-opengl-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-spice-app-10.0.7-160000.1.1.x86_64.rpm qemu-ui-spice-app-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-ui-spice-core-10.0.7-160000.1.1.x86_64.rpm qemu-ui-spice-core-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-vhost-user-gpu-10.0.7-160000.1.1.x86_64.rpm qemu-vhost-user-gpu-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-vmsr-helper-10.0.7-160000.1.1.x86_64.rpm qemu-vmsr-helper-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-x86-10.0.7-160000.1.1.x86_64.rpm qemu-x86-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-linux-user-10.0.7-160000.1.1.x86_64.rpm qemu-linux-user-debuginfo-10.0.7-160000.1.1.x86_64.rpm qemu-linux-user-debugsource-10.0.7-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-113 Security update for the Linux Kernel important SUSE SLFO 1.2 The SUSE Linux Enterprise 16.0 kernel was updated to fix various security issues The following security issues were fixed: - CVE-2022-50253: bpf: make sure skb->len != 0 when redirecting to a tunneling device (bsc#1249912). - CVE-2025-37916: pds_core: remove write-after-free of client_id (bsc#1243474). - CVE-2025-38084: mm/hugetlb: unshare page tables during VMA split, not before (bsc#1245431 bsc#1245498). - CVE-2025-38085: mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race (bsc#1245431 bsc#1245499). - CVE-2025-38321: smb: Log an error when close_all_cached_dirs fails (bsc#1246328). - CVE-2025-38728: smb3: fix for slab out of bounds on mount to ksmbd (bsc#1249256). - CVE-2025-39805: net: macb: fix unregister_netdev call order in macb_remove() (bsc#1249982). - CVE-2025-39819: fs/smb: Fix inconsistent refcnt update (bsc#1250176). - CVE-2025-39822: io_uring/kbuf: fix signedness in this_len calculation (bsc#1250034). - CVE-2025-39831: fbnic: Move phylink resume out of service_task and into open/close (bsc#1249977). - CVE-2025-39859: ptp: ocp: fix use-after-free bugs causing by ptp_ocp_watchdog (bsc#1250252). - CVE-2025-39897: net: xilinx: axienet: Add error handling for RX metadata pointer retrieval (bsc#1250746). - CVE-2025-39917: bpf: Fix out-of-bounds dynptr write in bpf_crypto_crypt (bsc#1250723). - CVE-2025-39944: octeontx2-pf: Fix use-after-free bugs in otx2_sync_tstamp() (bsc#1251120). - CVE-2025-39961: iommu/amd/pgtbl: Fix possible race while increase page table level (bsc#1251817). - CVE-2025-39980: nexthop: Forbid FDB status change while nexthop is in a group (bsc#1252063). - CVE-2025-39990: bpf: Check the helper function is valid in get_helper_proto (bsc#1252054). - CVE-2025-40001: scsi: mvsas: Fix use-after-free bugs in mvs_work_queue (bsc#1252303). - CVE-2025-40003: net: mscc: ocelot: Fix use-after-free caused by cyclic delayed work (bsc#1252301). - CVE-2025-40006: mm/hugetlb: fix folio is still mapped when deleted (bsc#1252342). - CVE-2025-40021: tracing: dynevent: Add a missing lockdown check on dynevent (bsc#1252681). - CVE-2025-40024: vhost: Take a reference on the task in struct vhost_task (bsc#1252686). - CVE-2025-40027: net/9p: fix double req put in p9_fd_cancelled (bsc#1252763). - CVE-2025-40031: tee: fix register_shm_helper() (bsc#1252779). - CVE-2025-40033: remoteproc: pru: Fix potential NULL pointer dereference in pru_rproc_set_ctable() (bsc#1252824). - CVE-2025-40038: KVM: SVM: Skip fastpath emulation on VM-Exit if next RIP isn't valid (bsc#1252817). - CVE-2025-40047: io_uring/waitid: always prune wait queue entry in io_waitid_wait() (bsc#1252790). - CVE-2025-40053: net: dlink: handle copy_thresh allocation failure (bsc#1252808). - CVE-2025-40055: ocfs2: fix double free in user_cluster_connect() (bsc#1252821). - CVE-2025-40059: coresight: Fix incorrect handling for return value of devm_kzalloc (bsc#1252809). - CVE-2025-40064: smc: Fix use-after-free in __pnet_find_base_ndev() (bsc#1252845). - CVE-2025-40070: pps: fix warning in pps_register_cdev when register device fail (bsc#1252836). - CVE-2025-40074: tcp: convert to dev_net_rcu() (bsc#1252794). - CVE-2025-40075: tcp_metrics: use dst_dev_net_rcu() (bsc#1252795). - CVE-2025-40081: perf: arm_spe: Prevent overflow in PERF_IDX2OFF() (bsc#1252776). - CVE-2025-40083: net/sched: sch_qfq: Fix null-deref in agg_dequeue (bsc#1252912). - CVE-2025-40086: drm/xe: Don't allow evicting of BOs in same VM in array of VM binds (bsc#1252923). - CVE-2025-40098: ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_get_acpi_mute_state() (bsc#1252917). - CVE-2025-40101: btrfs: fix memory leaks when rejecting a non SINGLE data profile without an RST (bsc#1252901). - CVE-2025-40102: KVM: arm64: Prevent access to vCPU events before init (bsc#1252919). - CVE-2025-40105: vfs: Don't leak disconnected dentries on umount (bsc#1252928). - CVE-2025-40133: mptcp: Call dst_release() in mptcp_active_enable() (bsc#1253328). - CVE-2025-40134: dm: fix NULL pointer dereference in __dm_suspend() (bsc#1253386). - CVE-2025-40135: ipv6: use RCU in ip6_xmit() (bsc#1253342). - CVE-2025-40139: smc: Use __sk_dst_get() and dst_dev_rcu() in in smc_clc_prfx_set() (bsc#1253409). - CVE-2025-40149: tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock() (bsc#1253355). - CVE-2025-40153: mm: hugetlb: avoid soft lockup when mprotect to large memory area (bsc#1253408). - CVE-2025-40157: EDAC/i10nm: Skip DIMM enumeration on a disabled memory controller (bsc#1253423). - CVE-2025-40158: ipv6: use RCU in ip6_output() (bsc#1253402). - CVE-2025-40159: xsk: Harden userspace-supplied xdp_desc validation (bsc#1253403). - CVE-2025-40168: smc: Use __sk_dst_get() and dst_dev_rcu() in smc_clc_prfx_match() (bsc#1253427). - CVE-2025-40169: bpf: Reject negative offsets for ALU ops (bsc#1253416). - CVE-2025-40173: net/ip6_tunnel: Prevent perpetual tunnel growth (bsc#1253421). - CVE-2025-40175: idpf: cleanup remaining SKBs in PTP flows (bsc#1253426). - CVE-2025-40176: tls: wait for pending async decryptions if tls_strp_msg_hold fails (bsc#1253425). - CVE-2025-40178: pid: Add a judgment for ns null in pid_nr_ns (bsc#1253463). - CVE-2025-40185: ice: ice_adapter: release xa entry on adapter allocation failure (bsc#1253394). - CVE-2025-40201: kernel/sys.c: fix the racy usage of task_lock(tsk->group_leader) in sys_prlimit64() paths (bsc#1253455). - CVE-2025-40203: listmount: don't call path_put() under namespace semaphore (bsc#1253457). The following non security issues were fixed: - ACPI: scan: Update honor list for RPMI System MSI (stable-fixes). - ACPICA: Update dsmethod.c to get rid of unused variable warning (stable-fixes). - Disable CONFIG_CPU5_WDT The cpu5wdt driver doesn't implement a proper watchdog interface and has many code issues. It only handles obscure and obsolete hardware. Stop building and supporting this driver (jsc#PED-14062). - Fix "drm/xe: Don't allow evicting of BOs in same VM in array of VM binds" (bsc#1252923) - KVM: SVM: Delete IRTE link from previous vCPU before setting new IRTE (git-fixes). - KVM: SVM: Delete IRTE link from previous vCPU irrespective of new routing (git-fixes). - KVM: SVM: Mark VMCB_LBR dirty when MSR_IA32_DEBUGCTLMSR is updated (git-fixes). - KVM: s390: improve interrupt cpu for wakeup (bsc#1235463). - KVM: s390: kABI backport for 'last_sleep_cpu' (bsc#1252352). - KVM: x86/mmu: Return -EAGAIN if userspace deletes/moves memslot during prefault (git-fixes). - PCI/ERR: Update device error_state already after reset (stable-fixes). - PM: EM: Slightly reduce em_check_capacity_update() overhead (stable-fixes). - Revert "net/mlx5e: Update and set Xon/Xoff upon MTU set" (git-fixes). - Revert "net/mlx5e: Update and set Xon/Xoff upon port speed set" (git-fixes). - Update config files: enable zstd module decompression (jsc#PED-14115). - bpf/selftests: Fix test_tcpnotify_user (bsc#1253635). - btrfs: do not clear read-only when adding sprout device (bsc#1253238). - btrfs: do not update last_log_commit when logging inode due to a new name (git-fixes). - dm: fix queue start/stop imbalance under suspend/load/resume races (bsc#1253386) - drm/amd/display: Add AVI infoframe copy in copy_stream_update_to_stream (stable-fixes). - drm/amd/display: update color on atomic commit time (stable-fixes). - drm/amd/display: update dpp/disp clock from smu clock table (stable-fixes). - drm/radeon: delete radeon_fence_process in is_signaled, no deadlock (stable-fixes). - hwmon: (lenovo-ec-sensors) Update P8 supprt (stable-fixes). - media: amphion: Delete v4l2_fh synchronously in .release() (stable-fixes). - mount: handle NULL values in mnt_ns_release() (bsc#1254308) - net/smc: Remove validation of reserved bits in CLC Decline (bsc#1252357). - net: phy: move realtek PHY driver to its own subdirectory (jsc#PED-14353). - net: phy: realtek: add defines for shadowed c45 standard registers (jsc#PED-14353). - net: phy: realtek: add helper RTL822X_VND2_C22_REG (jsc#PED-14353). - net: phy: realtek: change order of calls in C22 read_status() (jsc#PED-14353). - net: phy: realtek: clear 1000Base-T link partner advertisement (jsc#PED-14353). - net: phy: realtek: improve mmd register access for internal PHY's (jsc#PED-14353). - net: phy: realtek: read duplex and gbit master from PHYSR register (jsc#PED-14353). - net: phy: realtek: switch from paged to MMD ops in rtl822x functions (jsc#PED-14353). - net: phy: realtek: use string choices helpers (jsc#PED-14353). - net: xilinx: axienet: Fix IRQ coalescing packet count overflow (bsc#1250746) - net: xilinx: axienet: Fix RX skb ring management in DMAengine mode (bsc#1250746) - net: xilinx: axienet: Fix Tx skb circular buffer occupancy check in dmaengine xmit (bsc#1250746) - nvmet-auth: update sc_c in host response (git-fixes bsc#1249397). - nvmet-auth: update sc_c in target host hash calculation (git-fixes). - perf list: Add IBM z17 event descriptions (jsc#PED-13611). - platform/x86:intel/pmc: Update Arrow Lake telemetry GUID (git-fixes). - powercap: intel_rapl: Add support for Panther Lake platform (jsc#PED-13949). - pwm: pca9685: Use bulk write to atomicially update registers (stable-fixes). - r8169: add PHY c45 ops for MDIO_MMD_VENDOR2 registers (jsc#PED-14353). - r8169: add support for Intel Killer E5000 (jsc#PED-14353). - r8169: add support for RTL8125BP rev.b (jsc#PED-14353). - r8169: add support for RTL8125D rev.b (jsc#PED-14353). - r8169: adjust version numbering for RTL8126 (jsc#PED-14353). - r8169: align RTL8125 EEE config with vendor driver (jsc#PED-14353). - r8169: align RTL8125/RTL8126 PHY config with vendor driver (jsc#PED-14353). - r8169: align RTL8126 EEE config with vendor driver (jsc#PED-14353). - r8169: align WAKE_PHY handling with r8125/r8126 vendor drivers (jsc#PED-14353). - r8169: avoid duplicated messages if loading firmware fails and switch to warn level (jsc#PED-14353). - r8169: don't take RTNL lock in rtl_task() (jsc#PED-14353). - r8169: enable EEE at 2.5G per default on RTL8125B (jsc#PED-14353). - r8169: enable RTL8168H/RTL8168EP/RTL8168FP ASPM support (jsc#PED-14353). - r8169: fix inconsistent indenting in rtl8169_get_eth_mac_stats (jsc#PED-14353). - r8169: implement additional ethtool stats ops (jsc#PED-14353). - r8169: improve __rtl8169_set_wol (jsc#PED-14353). - r8169: improve initialization of RSS registers on RTL8125/RTL8126 (jsc#PED-14353). - r8169: improve rtl_set_d3_pll_down (jsc#PED-14353). - r8169: increase max jumbo packet size on RTL8125/RTL8126 (jsc#PED-14353). - r8169: remove leftover locks after reverted change (jsc#PED-14353). - r8169: remove original workaround for RTL8125 broken rx issue (jsc#PED-14353). - r8169: remove rtl_dash_loop_wait_high/low (jsc#PED-14353). - r8169: remove support for chip version 11 (jsc#PED-14353). - r8169: remove unused flag RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE (jsc#PED-14353). - r8169: replace custom flag with disable_work() et al (jsc#PED-14353). - r8169: switch away from deprecated pcim_iomap_table (jsc#PED-14353). - r8169: use helper r8169_mod_reg8_cond to simplify rtl_jumbo_config (jsc#PED-14353). - ring-buffer: Update pages_touched to reflect persistent buffer content (git-fixes). - s390/mm: Fix __ptep_rdp() inline assembly (bsc#1253643). - sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() (bsc#1246843). - sched/fair: Have SD_SERIALIZE affect newidle balancing (bsc#1248792). - sched/fair: Proportional newidle balance (bsc#1248792). - sched/fair: Proportional newidle balance -KABI (bsc#1248792). - sched/fair: Revert max_newidle_lb_cost bump (bsc#1248792). - sched/fair: Skip sched_balance_running cmpxchg when balance is not due (bsc#1248792). - sched/fair: Small cleanup to sched_balance_newidle() (bsc#1248792). - sched/fair: Small cleanup to update_newidle_cost() (bsc#1248792). - scsi: lpfc: Add capability to register Platform Name ID to fabric (bsc#1254119). - scsi: lpfc: Allow support for BB credit recovery in point-to-point topology (bsc#1254119). - scsi: lpfc: Ensure unregistration of rpis for received PLOGIs (bsc#1254119). - scsi: lpfc: Fix leaked ndlp krefs when in point-to-point topology (bsc#1254119). - scsi: lpfc: Fix reusing an ndlp that is marked NLP_DROPPED during FLOGI (bsc#1254119). - scsi: lpfc: Modify kref handling for Fabric Controller ndlps (bsc#1254119). - scsi: lpfc: Remove redundant NULL ptr assignment in lpfc_els_free_iocb() (bsc#1254119). - scsi: lpfc: Revise discovery related function headers and comments (bsc#1254119). - scsi: lpfc: Update lpfc version to 14.4.0.12 (bsc#1254119). - scsi: lpfc: Update various NPIV diagnostic log messaging (bsc#1254119). - selftests/run_kselftest.sh: Add `--skip` argument option (bsc#1254221). - smpboot: introduce SDTL_INIT() helper to tidy sched topology setup (bsc#1246843). - soc/tegra: fuse: speedo-tegra210: Update speedo IDs (git-fixes). - spi: tegra210-quad: Check hardware status on timeout (bsc#1253155) - spi: tegra210-quad: Fix timeout handling (bsc#1253155) - spi: tegra210-quad: Refactor error handling into helper functions (bsc#1253155) - spi: tegra210-quad: Update dummy sequence configuration (git-fixes) - tcp_bpf: Call sk_msg_free() when tcp_bpf_send_verdict() fails to allocate psock->cork (bsc#1250705). - wifi: ath11k: Add quirk entries for Thinkpad T14s Gen3 AMD (bsc#1254181). - wifi: mt76: do not add wcid entries to sta poll list during MCU reset (bsc#1254315). - wifi: mt76: introduce mt792x_config_mac_addr_list routine (bsc#1254315). - wifi: mt76: mt7925: Fix logical vs bitwise typo (bsc#1254315). - wifi: mt76: mt7925: Remove unnecessary if-check (bsc#1254315). - wifi: mt76: mt7925: Simplify HIF suspend handling to avoid suspend fail (bsc#1254315). - wifi: mt76: mt7925: add EHT control support based on the CLC data (bsc#1254315). - wifi: mt76: mt7925: add handler to hif suspend/resume event (bsc#1254315). - wifi: mt76: mt7925: add pci restore for hibernate (bsc#1254315). - wifi: mt76: mt7925: config the dwell time by firmware (bsc#1254315). - wifi: mt76: mt7925: extend MCU support for testmode (bsc#1254315). - wifi: mt76: mt7925: fix CLC command timeout when suspend/resume (bsc#1254315). - wifi: mt76: mt7925: fix missing hdr_trans_tlv command for broadcast wtbl (bsc#1254315). - wifi: mt76: mt7925: fix the unfinished command of regd_notifier before suspend (bsc#1254315). - wifi: mt76: mt7925: refine the txpower initialization flow (bsc#1254315). - wifi: mt76: mt7925: replace zero-length array with flexible-array member (bsc#1254315). - wifi: mt76: mt7925: update the channel usage when the regd domain changed (bsc#1254315). - wifi: mt76: mt7925e: fix too long of wifi resume time (bsc#1254315). - x86/smpboot: avoid SMT domain attach/destroy if SMT is not enabled (bsc#1246843). - x86/smpboot: moves x86_topology to static initialize and truncate (bsc#1246843). - x86/smpboot: remove redundant CONFIG_SCHED_SMT (bsc#1246843). kernel-devel-6.12.0-160000.8.1.noarch.rpm True kernel-macros-6.12.0-160000.8.1.noarch.rpm True kernel-source-6.12.0-160000.8.1.noarch.rpm True kernel-source-6.12.0-160000.8.1.src.rpm True kernel-source-vanilla-6.12.0-160000.8.1.noarch.rpm True kernel-default-base-6.12.0-160000.8.1.160000.2.5.aarch64.rpm True kernel-default-base-6.12.0-160000.8.1.160000.2.5.src.rpm True dtb-aarch64-6.12.0-160000.8.1.nosrc.rpm True dtb-allwinner-6.12.0-160000.8.1.aarch64.rpm True dtb-altera-6.12.0-160000.8.1.aarch64.rpm True dtb-amazon-6.12.0-160000.8.1.aarch64.rpm True dtb-amd-6.12.0-160000.8.1.aarch64.rpm True dtb-amlogic-6.12.0-160000.8.1.aarch64.rpm True dtb-apm-6.12.0-160000.8.1.aarch64.rpm True dtb-apple-6.12.0-160000.8.1.aarch64.rpm True dtb-arm-6.12.0-160000.8.1.aarch64.rpm True dtb-broadcom-6.12.0-160000.8.1.aarch64.rpm True dtb-cavium-6.12.0-160000.8.1.aarch64.rpm True dtb-exynos-6.12.0-160000.8.1.aarch64.rpm True dtb-freescale-6.12.0-160000.8.1.aarch64.rpm True dtb-hisilicon-6.12.0-160000.8.1.aarch64.rpm True dtb-lg-6.12.0-160000.8.1.aarch64.rpm True dtb-marvell-6.12.0-160000.8.1.aarch64.rpm True dtb-mediatek-6.12.0-160000.8.1.aarch64.rpm True dtb-nvidia-6.12.0-160000.8.1.aarch64.rpm True dtb-qcom-6.12.0-160000.8.1.aarch64.rpm True dtb-renesas-6.12.0-160000.8.1.aarch64.rpm True dtb-rockchip-6.12.0-160000.8.1.aarch64.rpm True dtb-socionext-6.12.0-160000.8.1.aarch64.rpm True dtb-sprd-6.12.0-160000.8.1.aarch64.rpm True dtb-xilinx-6.12.0-160000.8.1.aarch64.rpm True cluster-md-kmp-64kb-6.12.0-160000.8.1.aarch64.rpm True cluster-md-kmp-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-64kb-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-64kb-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-6.12.0-160000.8.1.nosrc.rpm True kernel-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-debugsource-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-devel-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-extra-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-extra-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-optional-6.12.0-160000.8.1.aarch64.rpm True kernel-64kb-optional-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-64kb-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-64kb-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-64kb-debuginfo-6.12.0-160000.8.1.aarch64.rpm True cluster-md-kmp-default-6.12.0-160000.8.1.aarch64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-default-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-default-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-default-6.12.0-160000.8.1.aarch64.rpm True kernel-default-6.12.0-160000.8.1.nosrc.rpm True kernel-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-default-debugsource-6.12.0-160000.8.1.aarch64.rpm True kernel-default-devel-6.12.0-160000.8.1.aarch64.rpm True kernel-default-extra-6.12.0-160000.8.1.aarch64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-default-optional-6.12.0-160000.8.1.aarch64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-default-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-default-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-docs-6.12.0-160000.8.1.noarch.rpm True kernel-docs-6.12.0-160000.8.1.nosrc.rpm True kernel-docs-html-6.12.0-160000.8.1.noarch.rpm True kernel-kvmsmall-6.12.0-160000.8.1.aarch64.rpm True kernel-kvmsmall-6.12.0-160000.8.1.nosrc.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.8.1.aarch64.rpm True kernel-kvmsmall-devel-6.12.0-160000.8.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.8.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.8.1.src.rpm True kernel-obs-build-debugsource-6.12.0-160000.8.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.8.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.8.1.src.rpm True cluster-md-kmp-rt-6.12.0-160000.8.1.aarch64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-rt-6.12.0-160000.8.1.aarch64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-rt-6.12.0-160000.8.1.aarch64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-6.12.0-160000.8.1.nosrc.rpm True kernel-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-debugsource-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-devel-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-extra-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-optional-6.12.0-160000.8.1.aarch64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-rt-6.12.0-160000.8.1.aarch64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-rt-6.12.0-160000.8.1.aarch64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.8.1.aarch64.rpm True kernel-syms-6.12.0-160000.8.1.aarch64.rpm True kernel-syms-6.12.0-160000.8.1.src.rpm True kernel-default-base-6.12.0-160000.8.1.160000.2.5.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.8.1.ppc64le.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True dlm-kmp-default-6.12.0-160000.8.1.ppc64le.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True gfs2-kmp-default-6.12.0-160000.8.1.ppc64le.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-debugsource-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-devel-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-extra-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-extra-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-optional-6.12.0-160000.8.1.ppc64le.rpm True kernel-default-optional-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kselftests-kmp-default-6.12.0-160000.8.1.ppc64le.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True ocfs2-kmp-default-6.12.0-160000.8.1.ppc64le.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kernel-kvmsmall-6.12.0-160000.8.1.ppc64le.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.8.1.ppc64le.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.8.1.ppc64le.rpm True kernel-kvmsmall-devel-6.12.0-160000.8.1.ppc64le.rpm True kernel-obs-build-6.12.0-160000.8.1.ppc64le.rpm True kernel-obs-build-debugsource-6.12.0-160000.8.1.ppc64le.rpm True kernel-obs-qa-6.12.0-160000.8.1.ppc64le.rpm True kernel-syms-6.12.0-160000.8.1.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.8.1.s390x.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True dlm-kmp-default-6.12.0-160000.8.1.s390x.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True gfs2-kmp-default-6.12.0-160000.8.1.s390x.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True kernel-default-6.12.0-160000.8.1.s390x.rpm True kernel-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True kernel-default-debugsource-6.12.0-160000.8.1.s390x.rpm True kernel-default-devel-6.12.0-160000.8.1.s390x.rpm True kernel-default-extra-6.12.0-160000.8.1.s390x.rpm True kernel-default-extra-debuginfo-6.12.0-160000.8.1.s390x.rpm True kernel-default-optional-6.12.0-160000.8.1.s390x.rpm True kernel-default-optional-debuginfo-6.12.0-160000.8.1.s390x.rpm True kselftests-kmp-default-6.12.0-160000.8.1.s390x.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True ocfs2-kmp-default-6.12.0-160000.8.1.s390x.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.8.1.s390x.rpm True kernel-obs-build-6.12.0-160000.8.1.s390x.rpm True kernel-obs-build-debugsource-6.12.0-160000.8.1.s390x.rpm True kernel-obs-qa-6.12.0-160000.8.1.s390x.rpm True kernel-syms-6.12.0-160000.8.1.s390x.rpm True kernel-zfcpdump-6.12.0-160000.8.1.nosrc.rpm True kernel-zfcpdump-6.12.0-160000.8.1.s390x.rpm True kernel-zfcpdump-debuginfo-6.12.0-160000.8.1.s390x.rpm True kernel-zfcpdump-debugsource-6.12.0-160000.8.1.s390x.rpm True kernel-default-base-6.12.0-160000.8.1.160000.2.5.x86_64.rpm True cluster-md-kmp-default-6.12.0-160000.8.1.x86_64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True dlm-kmp-default-6.12.0-160000.8.1.x86_64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True gfs2-kmp-default-6.12.0-160000.8.1.x86_64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-default-6.12.0-160000.8.1.x86_64.rpm True kernel-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-default-debugsource-6.12.0-160000.8.1.x86_64.rpm True kernel-default-devel-6.12.0-160000.8.1.x86_64.rpm True kernel-default-devel-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-default-extra-6.12.0-160000.8.1.x86_64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-default-optional-6.12.0-160000.8.1.x86_64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-default-vdso-6.12.0-160000.8.1.x86_64.rpm True kernel-default-vdso-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kselftests-kmp-default-6.12.0-160000.8.1.x86_64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True ocfs2-kmp-default-6.12.0-160000.8.1.x86_64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-devel-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-devel-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-vdso-6.12.0-160000.8.1.x86_64.rpm True kernel-kvmsmall-vdso-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-obs-build-6.12.0-160000.8.1.x86_64.rpm True kernel-obs-build-debugsource-6.12.0-160000.8.1.x86_64.rpm True kernel-obs-qa-6.12.0-160000.8.1.x86_64.rpm True cluster-md-kmp-rt-6.12.0-160000.8.1.x86_64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True dlm-kmp-rt-6.12.0-160000.8.1.x86_64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True gfs2-kmp-rt-6.12.0-160000.8.1.x86_64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-debugsource-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-devel-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-devel-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-extra-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-optional-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-vdso-6.12.0-160000.8.1.x86_64.rpm True kernel-rt-vdso-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kselftests-kmp-rt-6.12.0-160000.8.1.x86_64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True ocfs2-kmp-rt-6.12.0-160000.8.1.x86_64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.8.1.x86_64.rpm True kernel-syms-6.12.0-160000.8.1.x86_64.rpm True openSUSE-Leap-16.0-114 Recommended update for the initial kernel livepatch important SUSE SLFO 1.2 This update contains initial livepatches for the SUSE Linux Enterprise Server 16.0 and SUSE Linux Micro 6.2 kernel update. kernel-livepatch-6_12_0-160000_8-default-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_8-default-debuginfo-1-160000.1.1.ppc64le.rpm True kernel-livepatch-SLE16_Update_3-1-160000.1.1.src.rpm True kernel-livepatch-SLE16_Update_3-debugsource-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_8-default-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_8-default-debuginfo-1-160000.1.1.s390x.rpm True kernel-livepatch-SLE16_Update_3-debugsource-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_8-default-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_8-default-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16_Update_3-debugsource-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_8-rt-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_8-rt-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16-RT_Update_3-1-160000.1.1.src.rpm True kernel-livepatch-SLE16-RT_Update_3-debugsource-1-160000.1.1.x86_64.rpm True openSUSE-Leap-16.0-115 Security update for fontforge low SUSE SLFO 1.2 This update for fontforge fixes the following issues: - CVE-2025-50949: Fixed memory leak in function DlgCreate8 (bsc#1252652). fontforge-20230101-160000.3.1.aarch64.rpm fontforge-20230101-160000.3.1.src.rpm fontforge-debuginfo-20230101-160000.3.1.aarch64.rpm fontforge-debugsource-20230101-160000.3.1.aarch64.rpm fontforge-devel-20230101-160000.3.1.aarch64.rpm fontforge-doc-20230101-160000.3.1.noarch.rpm fontforge-20230101-160000.3.1.ppc64le.rpm fontforge-debuginfo-20230101-160000.3.1.ppc64le.rpm fontforge-debugsource-20230101-160000.3.1.ppc64le.rpm fontforge-devel-20230101-160000.3.1.ppc64le.rpm fontforge-20230101-160000.3.1.s390x.rpm fontforge-debuginfo-20230101-160000.3.1.s390x.rpm fontforge-debugsource-20230101-160000.3.1.s390x.rpm fontforge-devel-20230101-160000.3.1.s390x.rpm fontforge-20230101-160000.3.1.x86_64.rpm fontforge-debuginfo-20230101-160000.3.1.x86_64.rpm fontforge-debugsource-20230101-160000.3.1.x86_64.rpm fontforge-devel-20230101-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-116 Security update for mariadb important SUSE SLFO 1.2 This update for mariadb fixes the following issues: - Update to 11.8.5: * CVE-2025-13699: Fixed Directory Traversal Remote Code Execution Vulnerability (bsc#1254313) Other fixes: - Add %license tags to license files (bsc#1252162) - Add INSTALL_DOCREADMEDIR cmake flag to install readme and license files - Remove client plugin parsec.so, it is shipped by libmariadb_plugins (bsc#1243040, bsc#1254476) Updating mariadb might impact the database service. Do you want to proceed with the update? libmariadbd-devel-11.8.5-160000.1.1.aarch64.rpm libmariadbd19-11.8.5-160000.1.1.aarch64.rpm libmariadbd19-debuginfo-11.8.5-160000.1.1.aarch64.rpm mariadb-11.8.5-160000.1.1.aarch64.rpm mariadb-11.8.5-160000.1.1.src.rpm mariadb-bench-11.8.5-160000.1.1.aarch64.rpm mariadb-bench-debuginfo-11.8.5-160000.1.1.aarch64.rpm mariadb-client-11.8.5-160000.1.1.aarch64.rpm mariadb-client-debuginfo-11.8.5-160000.1.1.aarch64.rpm mariadb-debuginfo-11.8.5-160000.1.1.aarch64.rpm mariadb-debugsource-11.8.5-160000.1.1.aarch64.rpm mariadb-errormessages-11.8.5-160000.1.1.noarch.rpm mariadb-galera-11.8.5-160000.1.1.aarch64.rpm mariadb-rpm-macros-11.8.5-160000.1.1.aarch64.rpm mariadb-test-11.8.5-160000.1.1.aarch64.rpm mariadb-test-debuginfo-11.8.5-160000.1.1.aarch64.rpm mariadb-tools-11.8.5-160000.1.1.aarch64.rpm mariadb-tools-debuginfo-11.8.5-160000.1.1.aarch64.rpm libmariadbd-devel-11.8.5-160000.1.1.ppc64le.rpm libmariadbd19-11.8.5-160000.1.1.ppc64le.rpm libmariadbd19-debuginfo-11.8.5-160000.1.1.ppc64le.rpm mariadb-11.8.5-160000.1.1.ppc64le.rpm mariadb-bench-11.8.5-160000.1.1.ppc64le.rpm mariadb-bench-debuginfo-11.8.5-160000.1.1.ppc64le.rpm mariadb-client-11.8.5-160000.1.1.ppc64le.rpm mariadb-client-debuginfo-11.8.5-160000.1.1.ppc64le.rpm mariadb-debuginfo-11.8.5-160000.1.1.ppc64le.rpm mariadb-debugsource-11.8.5-160000.1.1.ppc64le.rpm mariadb-galera-11.8.5-160000.1.1.ppc64le.rpm mariadb-rpm-macros-11.8.5-160000.1.1.ppc64le.rpm mariadb-test-11.8.5-160000.1.1.ppc64le.rpm mariadb-test-debuginfo-11.8.5-160000.1.1.ppc64le.rpm mariadb-tools-11.8.5-160000.1.1.ppc64le.rpm mariadb-tools-debuginfo-11.8.5-160000.1.1.ppc64le.rpm libmariadbd-devel-11.8.5-160000.1.1.s390x.rpm libmariadbd19-11.8.5-160000.1.1.s390x.rpm libmariadbd19-debuginfo-11.8.5-160000.1.1.s390x.rpm mariadb-11.8.5-160000.1.1.s390x.rpm mariadb-bench-11.8.5-160000.1.1.s390x.rpm mariadb-bench-debuginfo-11.8.5-160000.1.1.s390x.rpm mariadb-client-11.8.5-160000.1.1.s390x.rpm mariadb-client-debuginfo-11.8.5-160000.1.1.s390x.rpm mariadb-debuginfo-11.8.5-160000.1.1.s390x.rpm mariadb-debugsource-11.8.5-160000.1.1.s390x.rpm mariadb-galera-11.8.5-160000.1.1.s390x.rpm mariadb-rpm-macros-11.8.5-160000.1.1.s390x.rpm mariadb-test-11.8.5-160000.1.1.s390x.rpm mariadb-test-debuginfo-11.8.5-160000.1.1.s390x.rpm mariadb-tools-11.8.5-160000.1.1.s390x.rpm mariadb-tools-debuginfo-11.8.5-160000.1.1.s390x.rpm libmariadbd-devel-11.8.5-160000.1.1.x86_64.rpm libmariadbd19-11.8.5-160000.1.1.x86_64.rpm libmariadbd19-debuginfo-11.8.5-160000.1.1.x86_64.rpm mariadb-11.8.5-160000.1.1.x86_64.rpm mariadb-bench-11.8.5-160000.1.1.x86_64.rpm mariadb-bench-debuginfo-11.8.5-160000.1.1.x86_64.rpm mariadb-client-11.8.5-160000.1.1.x86_64.rpm mariadb-client-debuginfo-11.8.5-160000.1.1.x86_64.rpm mariadb-debuginfo-11.8.5-160000.1.1.x86_64.rpm mariadb-debugsource-11.8.5-160000.1.1.x86_64.rpm mariadb-galera-11.8.5-160000.1.1.x86_64.rpm mariadb-rpm-macros-11.8.5-160000.1.1.x86_64.rpm mariadb-test-11.8.5-160000.1.1.x86_64.rpm mariadb-test-debuginfo-11.8.5-160000.1.1.x86_64.rpm mariadb-tools-11.8.5-160000.1.1.x86_64.rpm mariadb-tools-debuginfo-11.8.5-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-117 Recommended update for wicked2nm moderate SUSE SLFO 1.2 This update for wicked2nm fixes the following issues: - Update to v1.4.0 * Activate only connections if present in the current system * Improve error output, exit codes and add flag to disable user hints * Add support for autoip-fallback wicked2nm-1.4.0-160000.1.1.aarch64.rpm wicked2nm-1.4.0-160000.1.1.src.rpm wicked2nm-debuginfo-1.4.0-160000.1.1.aarch64.rpm wicked2nm-debugsource-1.4.0-160000.1.1.aarch64.rpm wicked2nm-1.4.0-160000.1.1.ppc64le.rpm wicked2nm-debuginfo-1.4.0-160000.1.1.ppc64le.rpm wicked2nm-debugsource-1.4.0-160000.1.1.ppc64le.rpm wicked2nm-1.4.0-160000.1.1.s390x.rpm wicked2nm-debuginfo-1.4.0-160000.1.1.s390x.rpm wicked2nm-debugsource-1.4.0-160000.1.1.s390x.rpm wicked2nm-1.4.0-160000.1.1.x86_64.rpm wicked2nm-debuginfo-1.4.0-160000.1.1.x86_64.rpm wicked2nm-debugsource-1.4.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-118 Security update for salt important SUSE SLFO 1.2 This update for salt fixes the following issues: Changes in salt: - Add minimum_auth_version to enforce security (CVE-2025-62349) - Backport security fixes for vendored tornado * BDSA-2024-3438 * BDSA-2024-3439 * BDSA-2024-9026 - Junos module yaml loader fix (CVE-2025-62348) - Require Python dependencies only for used Python version - Fix TLS and x509 modules for OSes with older cryptography module - Fix Salt for Python > 3.11 (bsc#1252285, bsc#1252244) - Fix payload signature verification on Tumbleweed (bsc#1251776) - Fix broken symlink on migration to Leap 16.0 (bsc#1250755) - Use versioned python interpreter for salt-ssh - Fix known_hosts error on gitfs (bsc#1250520, bsc#1227207) - Revert require M2Crypto >= 0.44.0 for SUSE Family distros - Improve SL Micro 6.2 detection with grains - Fix the tests failing on AlmaLinux 10 and other clones python313-salt-3006.0-160000.3.1.aarch64.rpm salt-3006.0-160000.3.1.aarch64.rpm salt-3006.0-160000.3.1.src.rpm salt-api-3006.0-160000.3.1.aarch64.rpm salt-bash-completion-3006.0-160000.3.1.noarch.rpm salt-cloud-3006.0-160000.3.1.aarch64.rpm salt-doc-3006.0-160000.3.1.aarch64.rpm salt-fish-completion-3006.0-160000.3.1.noarch.rpm salt-master-3006.0-160000.3.1.aarch64.rpm salt-minion-3006.0-160000.3.1.aarch64.rpm salt-proxy-3006.0-160000.3.1.aarch64.rpm salt-ssh-3006.0-160000.3.1.aarch64.rpm salt-standalone-formulas-configuration-3006.0-160000.3.1.aarch64.rpm salt-syndic-3006.0-160000.3.1.aarch64.rpm salt-transactional-update-3006.0-160000.3.1.aarch64.rpm salt-zsh-completion-3006.0-160000.3.1.noarch.rpm python313-salt-testsuite-3006.0-160000.3.1.aarch64.rpm salt-test-3006.0-160000.3.1.src.rpm python313-salt-3006.0-160000.3.1.ppc64le.rpm salt-3006.0-160000.3.1.ppc64le.rpm salt-api-3006.0-160000.3.1.ppc64le.rpm salt-cloud-3006.0-160000.3.1.ppc64le.rpm salt-doc-3006.0-160000.3.1.ppc64le.rpm salt-master-3006.0-160000.3.1.ppc64le.rpm salt-minion-3006.0-160000.3.1.ppc64le.rpm salt-proxy-3006.0-160000.3.1.ppc64le.rpm salt-ssh-3006.0-160000.3.1.ppc64le.rpm salt-standalone-formulas-configuration-3006.0-160000.3.1.ppc64le.rpm salt-syndic-3006.0-160000.3.1.ppc64le.rpm salt-transactional-update-3006.0-160000.3.1.ppc64le.rpm python313-salt-testsuite-3006.0-160000.3.1.ppc64le.rpm python313-salt-3006.0-160000.3.1.s390x.rpm salt-3006.0-160000.3.1.s390x.rpm salt-api-3006.0-160000.3.1.s390x.rpm salt-cloud-3006.0-160000.3.1.s390x.rpm salt-doc-3006.0-160000.3.1.s390x.rpm salt-master-3006.0-160000.3.1.s390x.rpm salt-minion-3006.0-160000.3.1.s390x.rpm salt-proxy-3006.0-160000.3.1.s390x.rpm salt-ssh-3006.0-160000.3.1.s390x.rpm salt-standalone-formulas-configuration-3006.0-160000.3.1.s390x.rpm salt-syndic-3006.0-160000.3.1.s390x.rpm salt-transactional-update-3006.0-160000.3.1.s390x.rpm python313-salt-testsuite-3006.0-160000.3.1.s390x.rpm python313-salt-3006.0-160000.3.1.x86_64.rpm salt-3006.0-160000.3.1.x86_64.rpm salt-api-3006.0-160000.3.1.x86_64.rpm salt-cloud-3006.0-160000.3.1.x86_64.rpm salt-doc-3006.0-160000.3.1.x86_64.rpm salt-master-3006.0-160000.3.1.x86_64.rpm salt-minion-3006.0-160000.3.1.x86_64.rpm salt-proxy-3006.0-160000.3.1.x86_64.rpm salt-ssh-3006.0-160000.3.1.x86_64.rpm salt-standalone-formulas-configuration-3006.0-160000.3.1.x86_64.rpm salt-syndic-3006.0-160000.3.1.x86_64.rpm salt-transactional-update-3006.0-160000.3.1.x86_64.rpm python313-salt-testsuite-3006.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-119 Security update for sssd important SUSE SLFO 1.2 This update for sssd fixes the following issues: - CVE-2025-11561: Fixed default Kerberos configuration allowing privilege escalation on AD-joined Linux systems (bsc#1244325) libipa_hbac-devel-2.9.5-160000.3.1.aarch64.rpm libipa_hbac0-2.9.5-160000.3.1.aarch64.rpm libipa_hbac0-debuginfo-2.9.5-160000.3.1.aarch64.rpm libnfsidmap-sss-2.9.5-160000.3.1.aarch64.rpm libnfsidmap-sss-debuginfo-2.9.5-160000.3.1.aarch64.rpm libsss_certmap-devel-2.9.5-160000.3.1.aarch64.rpm libsss_certmap0-2.9.5-160000.3.1.aarch64.rpm libsss_certmap0-debuginfo-2.9.5-160000.3.1.aarch64.rpm libsss_idmap-devel-2.9.5-160000.3.1.aarch64.rpm libsss_idmap0-2.9.5-160000.3.1.aarch64.rpm libsss_idmap0-debuginfo-2.9.5-160000.3.1.aarch64.rpm libsss_nss_idmap-devel-2.9.5-160000.3.1.aarch64.rpm libsss_nss_idmap0-2.9.5-160000.3.1.aarch64.rpm libsss_nss_idmap0-debuginfo-2.9.5-160000.3.1.aarch64.rpm python3-ipa_hbac-2.9.5-160000.3.1.aarch64.rpm python3-ipa_hbac-debuginfo-2.9.5-160000.3.1.aarch64.rpm python3-sss-murmur-2.9.5-160000.3.1.aarch64.rpm python3-sss-murmur-debuginfo-2.9.5-160000.3.1.aarch64.rpm python3-sss_nss_idmap-2.9.5-160000.3.1.aarch64.rpm python3-sss_nss_idmap-debuginfo-2.9.5-160000.3.1.aarch64.rpm python3-sssd-config-2.9.5-160000.3.1.aarch64.rpm python3-sssd-config-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-2.9.5-160000.3.1.aarch64.rpm sssd-2.9.5-160000.3.1.src.rpm sssd-ad-2.9.5-160000.3.1.aarch64.rpm sssd-ad-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-cifs-idmap-plugin-2.9.5-160000.3.1.aarch64.rpm sssd-cifs-idmap-plugin-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-dbus-2.9.5-160000.3.1.aarch64.rpm sssd-dbus-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-debugsource-2.9.5-160000.3.1.aarch64.rpm sssd-ipa-2.9.5-160000.3.1.aarch64.rpm sssd-ipa-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-kcm-2.9.5-160000.3.1.aarch64.rpm sssd-kcm-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-krb5-2.9.5-160000.3.1.aarch64.rpm sssd-krb5-common-2.9.5-160000.3.1.aarch64.rpm sssd-krb5-common-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-krb5-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-ldap-2.9.5-160000.3.1.aarch64.rpm sssd-ldap-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-proxy-2.9.5-160000.3.1.aarch64.rpm sssd-proxy-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-tools-2.9.5-160000.3.1.aarch64.rpm sssd-tools-debuginfo-2.9.5-160000.3.1.aarch64.rpm sssd-winbind-idmap-2.9.5-160000.3.1.aarch64.rpm sssd-winbind-idmap-debuginfo-2.9.5-160000.3.1.aarch64.rpm libipa_hbac-devel-2.9.5-160000.3.1.ppc64le.rpm libipa_hbac0-2.9.5-160000.3.1.ppc64le.rpm libipa_hbac0-debuginfo-2.9.5-160000.3.1.ppc64le.rpm libnfsidmap-sss-2.9.5-160000.3.1.ppc64le.rpm libnfsidmap-sss-debuginfo-2.9.5-160000.3.1.ppc64le.rpm libsss_certmap-devel-2.9.5-160000.3.1.ppc64le.rpm libsss_certmap0-2.9.5-160000.3.1.ppc64le.rpm libsss_certmap0-debuginfo-2.9.5-160000.3.1.ppc64le.rpm libsss_idmap-devel-2.9.5-160000.3.1.ppc64le.rpm libsss_idmap0-2.9.5-160000.3.1.ppc64le.rpm libsss_idmap0-debuginfo-2.9.5-160000.3.1.ppc64le.rpm libsss_nss_idmap-devel-2.9.5-160000.3.1.ppc64le.rpm libsss_nss_idmap0-2.9.5-160000.3.1.ppc64le.rpm libsss_nss_idmap0-debuginfo-2.9.5-160000.3.1.ppc64le.rpm python3-ipa_hbac-2.9.5-160000.3.1.ppc64le.rpm python3-ipa_hbac-debuginfo-2.9.5-160000.3.1.ppc64le.rpm python3-sss-murmur-2.9.5-160000.3.1.ppc64le.rpm python3-sss-murmur-debuginfo-2.9.5-160000.3.1.ppc64le.rpm python3-sss_nss_idmap-2.9.5-160000.3.1.ppc64le.rpm python3-sss_nss_idmap-debuginfo-2.9.5-160000.3.1.ppc64le.rpm python3-sssd-config-2.9.5-160000.3.1.ppc64le.rpm python3-sssd-config-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-2.9.5-160000.3.1.ppc64le.rpm sssd-ad-2.9.5-160000.3.1.ppc64le.rpm sssd-ad-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-cifs-idmap-plugin-2.9.5-160000.3.1.ppc64le.rpm sssd-cifs-idmap-plugin-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-dbus-2.9.5-160000.3.1.ppc64le.rpm sssd-dbus-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-debugsource-2.9.5-160000.3.1.ppc64le.rpm sssd-ipa-2.9.5-160000.3.1.ppc64le.rpm sssd-ipa-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-kcm-2.9.5-160000.3.1.ppc64le.rpm sssd-kcm-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-krb5-2.9.5-160000.3.1.ppc64le.rpm sssd-krb5-common-2.9.5-160000.3.1.ppc64le.rpm sssd-krb5-common-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-krb5-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-ldap-2.9.5-160000.3.1.ppc64le.rpm sssd-ldap-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-proxy-2.9.5-160000.3.1.ppc64le.rpm sssd-proxy-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-tools-2.9.5-160000.3.1.ppc64le.rpm sssd-tools-debuginfo-2.9.5-160000.3.1.ppc64le.rpm sssd-winbind-idmap-2.9.5-160000.3.1.ppc64le.rpm sssd-winbind-idmap-debuginfo-2.9.5-160000.3.1.ppc64le.rpm libipa_hbac-devel-2.9.5-160000.3.1.s390x.rpm libipa_hbac0-2.9.5-160000.3.1.s390x.rpm libipa_hbac0-debuginfo-2.9.5-160000.3.1.s390x.rpm libnfsidmap-sss-2.9.5-160000.3.1.s390x.rpm libnfsidmap-sss-debuginfo-2.9.5-160000.3.1.s390x.rpm libsss_certmap-devel-2.9.5-160000.3.1.s390x.rpm libsss_certmap0-2.9.5-160000.3.1.s390x.rpm libsss_certmap0-debuginfo-2.9.5-160000.3.1.s390x.rpm libsss_idmap-devel-2.9.5-160000.3.1.s390x.rpm libsss_idmap0-2.9.5-160000.3.1.s390x.rpm libsss_idmap0-debuginfo-2.9.5-160000.3.1.s390x.rpm libsss_nss_idmap-devel-2.9.5-160000.3.1.s390x.rpm libsss_nss_idmap0-2.9.5-160000.3.1.s390x.rpm libsss_nss_idmap0-debuginfo-2.9.5-160000.3.1.s390x.rpm python3-ipa_hbac-2.9.5-160000.3.1.s390x.rpm python3-ipa_hbac-debuginfo-2.9.5-160000.3.1.s390x.rpm python3-sss-murmur-2.9.5-160000.3.1.s390x.rpm python3-sss-murmur-debuginfo-2.9.5-160000.3.1.s390x.rpm python3-sss_nss_idmap-2.9.5-160000.3.1.s390x.rpm python3-sss_nss_idmap-debuginfo-2.9.5-160000.3.1.s390x.rpm python3-sssd-config-2.9.5-160000.3.1.s390x.rpm python3-sssd-config-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-2.9.5-160000.3.1.s390x.rpm sssd-ad-2.9.5-160000.3.1.s390x.rpm sssd-ad-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-cifs-idmap-plugin-2.9.5-160000.3.1.s390x.rpm sssd-cifs-idmap-plugin-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-dbus-2.9.5-160000.3.1.s390x.rpm sssd-dbus-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-debugsource-2.9.5-160000.3.1.s390x.rpm sssd-ipa-2.9.5-160000.3.1.s390x.rpm sssd-ipa-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-kcm-2.9.5-160000.3.1.s390x.rpm sssd-kcm-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-krb5-2.9.5-160000.3.1.s390x.rpm sssd-krb5-common-2.9.5-160000.3.1.s390x.rpm sssd-krb5-common-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-krb5-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-ldap-2.9.5-160000.3.1.s390x.rpm sssd-ldap-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-proxy-2.9.5-160000.3.1.s390x.rpm sssd-proxy-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-tools-2.9.5-160000.3.1.s390x.rpm sssd-tools-debuginfo-2.9.5-160000.3.1.s390x.rpm sssd-winbind-idmap-2.9.5-160000.3.1.s390x.rpm sssd-winbind-idmap-debuginfo-2.9.5-160000.3.1.s390x.rpm libipa_hbac-devel-2.9.5-160000.3.1.x86_64.rpm libipa_hbac0-2.9.5-160000.3.1.x86_64.rpm libipa_hbac0-debuginfo-2.9.5-160000.3.1.x86_64.rpm libnfsidmap-sss-2.9.5-160000.3.1.x86_64.rpm libnfsidmap-sss-debuginfo-2.9.5-160000.3.1.x86_64.rpm libsss_certmap-devel-2.9.5-160000.3.1.x86_64.rpm libsss_certmap0-2.9.5-160000.3.1.x86_64.rpm libsss_certmap0-debuginfo-2.9.5-160000.3.1.x86_64.rpm libsss_idmap-devel-2.9.5-160000.3.1.x86_64.rpm libsss_idmap0-2.9.5-160000.3.1.x86_64.rpm libsss_idmap0-debuginfo-2.9.5-160000.3.1.x86_64.rpm libsss_nss_idmap-devel-2.9.5-160000.3.1.x86_64.rpm libsss_nss_idmap0-2.9.5-160000.3.1.x86_64.rpm libsss_nss_idmap0-debuginfo-2.9.5-160000.3.1.x86_64.rpm python3-ipa_hbac-2.9.5-160000.3.1.x86_64.rpm python3-ipa_hbac-debuginfo-2.9.5-160000.3.1.x86_64.rpm python3-sss-murmur-2.9.5-160000.3.1.x86_64.rpm python3-sss-murmur-debuginfo-2.9.5-160000.3.1.x86_64.rpm python3-sss_nss_idmap-2.9.5-160000.3.1.x86_64.rpm python3-sss_nss_idmap-debuginfo-2.9.5-160000.3.1.x86_64.rpm python3-sssd-config-2.9.5-160000.3.1.x86_64.rpm python3-sssd-config-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-2.9.5-160000.3.1.x86_64.rpm sssd-ad-2.9.5-160000.3.1.x86_64.rpm sssd-ad-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-cifs-idmap-plugin-2.9.5-160000.3.1.x86_64.rpm sssd-cifs-idmap-plugin-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-dbus-2.9.5-160000.3.1.x86_64.rpm sssd-dbus-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-debugsource-2.9.5-160000.3.1.x86_64.rpm sssd-ipa-2.9.5-160000.3.1.x86_64.rpm sssd-ipa-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-kcm-2.9.5-160000.3.1.x86_64.rpm sssd-kcm-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-krb5-2.9.5-160000.3.1.x86_64.rpm sssd-krb5-common-2.9.5-160000.3.1.x86_64.rpm sssd-krb5-common-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-krb5-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-ldap-2.9.5-160000.3.1.x86_64.rpm sssd-ldap-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-proxy-2.9.5-160000.3.1.x86_64.rpm sssd-proxy-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-tools-2.9.5-160000.3.1.x86_64.rpm sssd-tools-debuginfo-2.9.5-160000.3.1.x86_64.rpm sssd-winbind-idmap-2.9.5-160000.3.1.x86_64.rpm sssd-winbind-idmap-debuginfo-2.9.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-12 Recommended update for the initial kernel livepatch important SUSE SLFO 1.2 This update contains initial livepatches for the SUSE Linux Enterprise Server 16.0 and SUSE Linux Micro 6.2 kernel update. kernel-livepatch-6_12_0-160000_6-default-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_6-default-debuginfo-1-160000.1.1.ppc64le.rpm True kernel-livepatch-SLE16_Update_1-1-160000.1.1.src.rpm True kernel-livepatch-SLE16_Update_1-debugsource-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_6-default-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_6-default-debuginfo-1-160000.1.1.s390x.rpm True kernel-livepatch-SLE16_Update_1-debugsource-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_6-default-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_6-default-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16_Update_1-debugsource-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_6-rt-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_6-rt-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16-RT_Update_1-1-160000.1.1.src.rpm True kernel-livepatch-SLE16-RT_Update_1-debugsource-1-160000.1.1.x86_64.rpm True openSUSE-Leap-16.0-121 Security update of valkey critical SUSE SLFO 1.2 This update for valkey fixes the following issues: Update to 8.0.6: - Security fixes: - CVE-2025-49844: Fixed that a Lua script may lead to remote code execution (bsc#1250995) - CVE-2025-46817: Fixed that a Lua script may lead to integer overflow and potential RCE (bsc#1250995) - CVE-2025-46818: Fixed that a Lua script can be executed in the context of another user (bsc#1250995) - CVE-2025-46819: Fixed LUA out-of-bound read (bsc#1250995) - Bug fixes: * Fix accounting for dual channel RDB bytes in replication stats (#2614) * Fix EVAL to report unknown error when empty error table is provided (#2229) * Fix use-after-free when active expiration triggers hashtable to shrink (#2257) * Fix MEMORY USAGE to account for embedded keys (#2290) * Fix memory leak when shrinking a hashtable without entries (#2288) * Prevent potential assertion in active defrag handling large allocations (#2353) * Prevent bad memory access when NOTOUCH client gets unblocked (#2347) * Converge divergent shard-id persisted in nodes.conf to primary's shard id (#2174) * Fix client tracking memory overhead calculation (#2360) * Fix RDB load per slot memory pre-allocation when loading from RDB snapshot (#2466) * Don't use AVX2 instructions if the CPU doesn't support it (#2571) * Fix bug where active defrag may be unable to defrag sparsely filled pages (#2656) Changes from 8.0.5: https://github.com/valkey-io/valkey/releases/tag/8.0.5 valkey-8.0.6-160000.1.1.aarch64.rpm valkey-8.0.6-160000.1.1.src.rpm valkey-compat-redis-8.0.6-160000.1.1.noarch.rpm valkey-debuginfo-8.0.6-160000.1.1.aarch64.rpm valkey-debugsource-8.0.6-160000.1.1.aarch64.rpm valkey-devel-8.0.6-160000.1.1.aarch64.rpm valkey-8.0.6-160000.1.1.ppc64le.rpm valkey-debuginfo-8.0.6-160000.1.1.ppc64le.rpm valkey-debugsource-8.0.6-160000.1.1.ppc64le.rpm valkey-devel-8.0.6-160000.1.1.ppc64le.rpm valkey-8.0.6-160000.1.1.s390x.rpm valkey-debuginfo-8.0.6-160000.1.1.s390x.rpm valkey-debugsource-8.0.6-160000.1.1.s390x.rpm valkey-devel-8.0.6-160000.1.1.s390x.rpm valkey-8.0.6-160000.1.1.x86_64.rpm valkey-debuginfo-8.0.6-160000.1.1.x86_64.rpm valkey-debugsource-8.0.6-160000.1.1.x86_64.rpm valkey-devel-8.0.6-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-122 Recommended update for maven-parent, maven-invoker, maven-filtering, maven-file-management, maven-doxia-sitetools, maven-doxia, maven-dependency-tree, maven-dependency-analyzer, maven-artifact-transfer, maven-archiver, xom, maven-plugin-tools, objectweb-asm, plexus-xml, plexus-velocity, plexus-sec-dispatcher, velocity-engine, plexus-languages, plexus-io, plexus-interpolation, plexus-interactivity, plexus-i18n, plexus-compiler, plexus-classworlds, plexus-cipher, plexus-build-api, maven, maven-resolver, xmvn moderate SUSE SLFO 1.2 This update for maven-parent, maven-invoker, maven-filtering, maven-file-management, maven-doxia-sitetools, maven-doxia, maven-dependency-tree, maven-dependency-analyzer, maven-artifact-transfer, maven-archiver, xom, maven-plugin-tools, plexus-xml, plexus-velocity, plexus-sec-dispatcher, velocity-engine, plexus-languages, plexus-io, plexus-interpolation, plexus-interactivity, plexus-i18n, plexus-compiler, plexus-classworlds, plexus-cipher, plexus-build-api, maven, maven-resolver, xmvn fixes the following issues: Changes in maven-parent: - Upgrade to Apache Maven parent POM version 45 * New features and improvements + Use a standard tag template for releases * Bug Fixes + Use spotless / palantirJavaFormat - 2.56.0 for all JDKs * Build + Allow manually executing release-drafter - Upgrade to Apache Maven parent POM version 44 * Breaking changes + Move snapshot repositories in a profile + Check test code by checkstyle * New features and improvements + Move snapshot repositories in a profile + Introduce property maven.site.path.suffix to allow override site path + Use v@{project.version} as tag template for releases + import KEYS history from svn + Add licenseText to modello + Update site descriptor to 2.0 + Check test code by checkstyle + Add issues templates + Accept all line endings with spotless + Enable automatic formatter when not on CI * Bug Fixes + Fix asf.yaml syntax + Skip render empty taglist report Changes in maven-invoker: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-filtering: - Bogus dependency on plexus-xml (https://github.com/apache/maven-filtering/issues/286) - Upgrade to version 3.4.0 * Changes + Bump apache/maven-gh-actions-shared from 3 to 4 + Bump org.apache.maven.shared:maven-shared-components from 41 + MSHARED-1412: Allow to customize Interpolator used by filter - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-file-management: - Update to upstream version 3.2.0 * New features and improvements + Enable GitHub Issues + Add Release Drafter + MSHARED-1203: no longer need to shell out to create a symbolic link + Java 7 can detect symbolic links * Maintenance + Update site descriptor + Skip generating of xml reader and writer for FileSet + Use version of modello-maven-plugin from parent + Add PR Automation and Stale actions + MSHARED-1448: Refresh download page + remove duplicate tests and unneeded code + fix JUnit dependencies + MSHARED-1265: use JUnit assumptions + MSHARED-1203: use JUnit @TempDir + MSHARED-1264: Convert to JUnit5 + Add GitHub Actions setup and Dependabot * Dependency updates + Bump commons-io:commons-io from 2.18.0 to 2.19.0 + Bump org.apache.maven.shared:maven-shared-components from 43 to 44 + MSHARED-1380: Bump commons-io:commons-io from 2.17.0 to 2.18.0 + MSHARED-1381: Bump org.apache.maven.shared:maven-shared-components from 42 to 43 + MSHARED-1380: Bump commons-io:commons-io from 2.16.1 to 2.17.0 + MSHARED-1380: Bump commons-io:commons-io from 2.13.0 to 2.16.1 + MSHARED-1381: Upgrade parent pom to 42 + Bump apache/maven-gh-actions-shared from 3 to 4 + Bump org.junit:junit-bom from 5.10.1 to 5.10.2 + Bump org.junit:junit-bom from 5.10.0 to 5.10.1 + Bump org.junit:junit-bom from 5.9.3 to 5.10.0 + MSHARED-1266: upgrade commons-io 2.11.0 --> 2.13.0 + update to parent pom 39 Changes in maven-doxia-sitetools: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-doxia: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-dependency-tree: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-dependency-analyzer: - Upgrade to upstream version 1.16.0 * New features and improvements + Enable GitHub Issues * Bug Fixes + MSHARED-47: Don't flag xml-apis:xml-apis as undeclared * Maintenance + Remove unneeded suppression * Dependency updates + Bump org.apache.maven.shared:maven-shared-components from 43 to 44 + Bump org.ow2.asm:asm from 9.7.1 to 9.8 + Bump org.assertj:assertj-bom from 3.27.2 to 3.27.3 + Bump org.assertj:assertj-bom from 3.26.3 to 3.27.2 Changes in maven-artifact-transfer: + allow building against maven 4.x and maven-resolver 2.x Changes in maven-archiver: - Upgrade to maven-archiver 3.6.5 * New features and improvements + add Java-Version entry to default MANIFEST.MF * Bug Fixes + avoid negative entry time: upgrade plexus-archiver + don't limit outputTimestamp to zip (MS DOS) range * Documentation updates + remove extra newline in code blocks + reformat descriptor description to match usual Modello-generated ones + document Java-Version entry added in #298 * Maintenance + Update site descriptor to 2.0.0 * Dependency updates + Bump org.assertj:assertj-core from 3.27.3 to 3.27.6 + Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to 4.10.1 - Upgrade to maven-archiver 3.6.4 * New features and improvements + improve Reproducible Builds javadoc + Fall back on SOURCE_DATE_EPOCH if it exists * Bug Fixes + Treat empty Automatic-Module-Name as no Automatic-Module-Name at all * Maintenance + Enable GitHub Issues * Dependency updates + Bump org.apache.maven.shared:maven-shared-components from 43 to 45 + Bump org.codehaus.plexus:plexus-interpolation from 1.27 to 1.28 + Bump org.assertj:assertj-core from 3.26.0 to 3.27.3 Changes in xom: - Make build recipe compatible with POSIX sh. Use %autosetup. Changes in maven-plugin-tools: - Upgrade to upstream version 3.15.2 * Documentation updates + Fix run-on sentence + Update document to use Guice constructor injection + MNGSITE-529: Rename "Goals" to "Plugin Documentation" * Maintenance + Update site descriptors to 2.0 + Add support for Maven 4 PluginDescriptor.getRequiredJavaVersion() method + Cleanups dependencies + Use injection instead of Component annotation + Begin converting this plugin to Guice constructor injection + refactor: Replace Plexus AbstractLogEnabled with SLF4J + Use properties for versions in components.xml + JDK 25 build fix + MPLUGIN-543: Update to Parent 44 + Add release drafter + Add PR Automation action * Dependency updates + Bump org.jsoup:jsoup from 1.18.1 to 1.19.1 + Bump org.codehaus.plexus:plexus-testing from 1.4.0 to 1.6.1 + Bump org.codehaus.plexus:plexus-velocity from 2.2.0 to 2.3.0 + Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.17.8 + Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to 4.10.3 + Bump org.codehaus.plexus:plexus-java from 1.3.0 to 1.5.0 + Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 + Bump org.codehaus.plexus:plexus-classworlds from 2.8.0 to 2.9.0 + Bump org.assertj:assertj-core from 3.26.3 to 3.27.6 + Bump org.codehaus.plexus:plexus-utils from 4.0.1 to 4.0.2 + Bump asmVersion from 9.7.1 to 9.9 + Bump org.apache.velocity:velocity-engine-core from 2.4 to 2.4.1 + Bump org.codehaus.plexus:plexus-i18n from 1.0-beta-10 to 1.0.0 + Bump maven3Version from 3.9.9 to 3.9.11 + Bump org.codehaus.plexus:plexus-xml from 3.0.1 to 3.0.2 + Bump org.apache.maven:maven-parent from 44 to 45 + Bump antVersion from 1.10.14 to 1.10.15 Changes in maven-plugin-tools: - Upgrade to upstream version 3.15.2 * Documentation updates + Fix run-on sentence + Update document to use Guice constructor injection + MNGSITE-529: Rename "Goals" to "Plugin Documentation" * Maintenance + Update site descriptors to 2.0 + Add support for Maven 4 PluginDescriptor.getRequiredJavaVersion() method + Cleanups dependencies + Use injection instead of Component annotation + Begin converting this plugin to Guice constructor injection + refactor: Replace Plexus AbstractLogEnabled with SLF4J + Use properties for versions in components.xml + JDK 25 build fix + MPLUGIN-543: Update to Parent 44 + Add release drafter + Add PR Automation action * Dependency updates + Bump org.jsoup:jsoup from 1.18.1 to 1.19.1 + Bump org.codehaus.plexus:plexus-testing from 1.4.0 to 1.6.1 + Bump org.codehaus.plexus:plexus-velocity from 2.2.0 to 2.3.0 + Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.17.8 + Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to 4.10.3 + Bump org.codehaus.plexus:plexus-java from 1.3.0 to 1.5.0 + Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 + Bump org.codehaus.plexus:plexus-classworlds from 2.8.0 to 2.9.0 + Bump org.assertj:assertj-core from 3.26.3 to 3.27.6 + Bump org.codehaus.plexus:plexus-utils from 4.0.1 to 4.0.2 + Bump asmVersion from 9.7.1 to 9.9 + Bump org.apache.velocity:velocity-engine-core from 2.4 to 2.4.1 + Bump org.codehaus.plexus:plexus-i18n from 1.0-beta-10 to 1.0.0 + Bump maven3Version from 3.9.9 to 3.9.11 + Bump org.codehaus.plexus:plexus-xml from 3.0.1 to 3.0.2 + Bump org.apache.maven:maven-parent from 44 to 45 + Bump antVersion from 1.10.14 to 1.10.15 Changes in maven-plugin-tools: - Add the maven-plugin-report-plugin to the _multibuild file - Initial packaging of the maven-plugin-report-plugin 3.15.2 Changes in maven-plugin-tools: - Upgrade to upstream version 3.15.2 * Documentation updates + Fix run-on sentence + Update document to use Guice constructor injection + MNGSITE-529: Rename "Goals" to "Plugin Documentation" * Maintenance + Update site descriptors to 2.0 + Add support for Maven 4 PluginDescriptor.getRequiredJavaVersion() method + Cleanups dependencies + Use injection instead of Component annotation + Begin converting this plugin to Guice constructor injection + refactor: Replace Plexus AbstractLogEnabled with SLF4J + Use properties for versions in components.xml + JDK 25 build fix + MPLUGIN-543: Update to Parent 44 + Add release drafter + Add PR Automation action * Dependency updates + Bump org.jsoup:jsoup from 1.18.1 to 1.19.1 + Bump org.codehaus.plexus:plexus-testing from 1.4.0 to 1.6.1 + Bump org.codehaus.plexus:plexus-velocity from 2.2.0 to 2.3.0 + Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.17.8 + Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to 4.10.3 + Bump org.codehaus.plexus:plexus-java from 1.3.0 to 1.5.0 + Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 + Bump org.codehaus.plexus:plexus-classworlds from 2.8.0 to 2.9.0 + Bump org.assertj:assertj-core from 3.26.3 to 3.27.6 + Bump org.codehaus.plexus:plexus-utils from 4.0.1 to 4.0.2 + Bump asmVersion from 9.7.1 to 9.9 + Bump org.apache.velocity:velocity-engine-core from 2.4 to 2.4.1 + Bump org.codehaus.plexus:plexus-i18n from 1.0-beta-10 to 1.0.0 + Bump maven3Version from 3.9.9 to 3.9.11 + Bump org.codehaus.plexus:plexus-xml from 3.0.1 to 3.0.2 + Bump org.apache.maven:maven-parent from 44 to 45 + Bump antVersion from 1.10.14 to 1.10.15 Changes in plexus-xml: - Update to upstream version 3.0.2 * Dependency updates + Bump org.codehaus.plexus:plexus from 19 to 20 + Bump org.codehaus.plexus:plexus from 18 to 19 + Bump org.codehaus.plexus:plexus-utils from 4.0.1 to 4.0.2 * Maintenance + Cleanup tests and drop dependency to plexus-utils Changes in plexus-velocity: - Update to version 2.3.0 * New features and improvements + Use internal Nullable annotation, allow drop sisu-inject from runtime dependencies * Maintenance + Add LICENSE file to project, fix build badge + Enhance site information + Use plexus-testing instead of direct sisu InjectedTest * Dependency updates + Override version of commons-lang3 to avoid reporting of security issues + Bump org.codehaus.plexus:plexus from 20 to 24 + Bump org.eclipse.sisu:org.eclipse.sisu.inject from 0.9.0.M3 to 0.9.0.M4 - Update to version 2.2.1 * Dependency updates + Bump org.apache.velocity:velocity-engine-core from 2.4 to 2.4.1 + Bump org.apache.velocity:velocity-engine-core from 2.3 to 2.4 + Bump org.eclipse.sisu:org.eclipse.sisu.inject from 0.9.0.M2 to 0.9.0.M3 + Bump org.codehaus.plexus:plexus from 19 to 20 + Bump org.codehaus.plexus:plexus from 18 to 19 + Bump org.codehaus.plexus:plexus from 17 to 18 + Bump org.codehaus.plexus:plexus from 16 to 17 + Bump release-drafter/release-drafter from 5 to 6 - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in plexus-sec-dispatcher: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in velocity-engine: - Version 2.4.1: * Fixes + Finding the topmost method when introspecting a class should stop at the first static or accessible method found (Fixes VELOCITY-983) + Direct evaluation of VTL code via RuntimeInstance.evaluate() should update the current rendering template information for local velocimacros to be visible in string literals interpolation (Fixes VELOCITY-944) Changes in plexus-languages: - Upgrade to upstream version 1.5.0 * New features and improvements + Read only first 8 bytes of class in JavaClassfileVersion + Bump org.ow2.asm:asm from 9.6 to 9.7 - JDK 23 support + Bump org.ow2.asm:asm from 9.7 to 9.7.1 - JDK 24 support + Bump org.ow2.asm:asm from 9.7.1 to 9.8 * Maintenance + Project cleanups + Rename resources of test data + Bump release-drafter/release-drafter from 5 to 6 + Reuse plexus-pom action for CI + Disable deploy job on GitHub + Added CI for JDK 24-ea Changes in plexus-io: - Upgrade to version 3.5.1 * New features and improvements + Fix performance problem by caching unix group and user names * Dependency updates + Bump org.codehaus.plexus:plexus-testing from 1.3.0 to 1.4.0 + Bump org.codehaus.plexus:plexus from 16 to 18 + Bump org.eclipse.sisu:org.eclipse.sisu.inject from 0.9.0.M2 to 0.9.0.M3 + Bump org.codehaus.plexus:plexus-xml from 3.0.0 to 3.0.1 + Bump org.codehaus.plexus:plexus-utils from 4.0.0 to 4.0.1 + Bump commons-io:commons-io from 2.15.1 to 2.16.1 - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in plexus-interpolation: - Upgrade to version 1.28 * New features and improvements + Fix #16: StringSearchInterpolator does not cache answers. + Add FeedbackingValueSource + Pass delimiter information to ValueSource + Apply spotless re-formatting Changes in plexus-interactivity: - Upgrade to version 1.4 * Changes + Bump org.jline:jline-reader from 3.25.1 to 3.29.0 + Bump org.eclipse.sisu:org.eclipse.sisu.inject from 0.9.0.M2 to 0.9.0.M3 + Apply spotless re-formatting + Bump org.codehaus.plexus:plexus from 16 to 20 + Bump release-drafter/release-drafter from 5 to 6 - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in plexus-i18n: - Upgrade to 1.0.0 * no changelog provided by upstream Changes in plexus-compiler: - Upgrade to upstream release 2.15.0 * New features and improvements + Allow to override useUnsharedTable compiler argument + Lazy providers and better error reporting + Only use "-release" parameter with javac 9+ + Correctly determine the version of the underlying javac tool + Use a TreeSet instead of HashSet to get consistent ordering of results * Bug Fixes + Cleanup dependencies + Path.relativize() may throw exception if source and build directories are on different Windows drives + Fix ECJ not using annotation processor when defined via processorpath + Report "Error occurred during initialization of VM" as error * Maintenance + Bump project version to 2.15.0-SNAPSHOT + Use LocalRepositoryManager for resolving artifacts paths in tests - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in plexus-classworlds: - Upgrade to version 2.9.9 * New features and improvements + refine ConfigurationParser * Dependency updates + Bump org.codehaus.plexus:plexus from 19 to 20 + Bump org.codehaus.plexus:plexus from 18 to 19 + Bump org.codehaus.plexus:plexus from 17 to 18 + Bump org.apache.maven.plugins:maven-dependency-plugin from 3.7.1 to 3.8.1 + Bump org.apache.maven.plugins:maven-dependency-plugin from 3.7.0 to 3.7.1 + Bump org.apache.maven.plugins:maven-dependency-plugin from 3.6.1 to 3.7.0 * Maintenance + Apply spotless re-formatting + Align site.xml with used schema (2.0.0) + Bump jakarta.xml.bind:jakarta.xml.bind-api from 4.0.0 to 4.0.2 + Bump org.apache.logging.log4j:log4j-api from 2.20.0 to 2.23.1 + Bump org.apache.ant:ant from 1.10.13 to 1.10.14 + Bump org.codehaus.plexus:plexus from 16 to 17 Changes in plexus-cipher: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in plexus-build-api: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven: + Set Guice class loading to CHILD: avoid using terminally deprecated methods. Default Guice class loading uses a terminally deprecated JDK memory-access classes. - Upgrade to upstream version 3.9.11 * New features and improvements + Augment version range resolution used repositories * Bug Fixes + Deduplicate filtered dependency graph + Move ensure in boundaries of project lock * Maintenance + [MNGSITE-393] - remove references to Maven 2 + Update CONTRIBUTING after GitHub issues enabled + Enable Github Issues + [MNG-8763] - Remove name from site bannerLeft * Build + Pin GitHub action versions by hash + Build the project by JDK 21 as default + Use Maven 3.9.10 for build on GitHub - Upgrade to upstream version 3.9.10 * Bug + MNG-8096: Inconsistent dependency resolution behaviour for concurrent multi-module build can cause failures + MNG-8169: MINGW support requires --add-opens java.base/java.lang=ALL-UNNAMED + MNG-8170: Maven 3.9.8 contains weird native library for Jansi on Windows/arm64 + MNG-8211: Maven should fail builds that use CI Friendly versions but have no values set + MNG-8248: WARNING: A restricted method in java.lang.System has been called + MNG-8256: ProjectDependencyGraph bug: in case of filtering, non-direct module links are lost + MNG-8315: Failure of mvn.cmd if a .mvn directory is located at drive root + MNG-8396: Maven takes forever to resume + MNG-8711: "Duplicate artifact" in LifecycleDependencyResolver * Improvement + MNG-8370: Introduce maven.repo.local.head + MNG-8399: JDK 24+ issues warning about usage of sun.misc.Unsafe + MNG-8707: Add methods to remove compile and test source roots + MNG-8712: improve dependency version explanation: it's a requirement, not always effective version + MNG-8717: Remove maven-plugin-plugin:addPluginArtifactMetadata from default binding + MNG-8722: Use a single standalone version of asm + MNG-8731: Use https for xsi:schemaLocation in generated descriptors + MNG-8734: Simplify scripting like "get project version" cases * Task + MNG-8728: Bump Eclipse Sisu from 0.9.0.M3 to 0.9.0.M4 and use Java 24 on CI - Link also the objectweb-asm/asm to the lib directory + MNG-8177: Warning Changes in maven-resolver: - Update to upstream version 1.9.24 * New features and improvements + Metadata type out of coordinates + RFC9457 implementation + Intern context strings * Maintenance + Align plexus-util version with Maven + Align guice version with Maven + Enable Github Issues (1.9.x branch) - Build also maven-resolver-supplier package in separate spec file - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 - Update to upstream version 1.9.23 * Bug + MRESOLVER-659: NPE in trusted checksum post processor if * Improvement + MRESOLVER-680: Disable checksum by default for .sigstore.json as well + MRESOLVER-703: HTTP transport should expose config for max redirects - Upgrade to upstream version 1.9.22 * Bug + MRESOLVER-572: Resolver-Supplier unusable in OSGi runtimes + MRESOLVER-574: Invalid Cookie set under proxy conditions + MRESOLVER-586: In typical setups, DefaultArtifact copies the same maps over and over again + MRESOLVER-587: Memory consumption improvements * New Feature + MRESOLVER-571: Import o.e.aether packages with the exact same version in OSGi metadata * Improvement + MRESOLVER-570: Remove excessive strictness of OSGi dependency metadata * Task + MRESOLVER-576: Allow co-release of Resolver 1.x and 2.x - Upgrade to upstream version 1.9.20 * Bug + MRESOLVER-483: PreorderNodeListGenerator bug: may print trailing ":" + MRESOLVER-522: File locking threads not entering critical region were "oversleeping" + MRESOLVER-547: BF collector always copies artifacts, even when it should not * Improvement + MRESOLVER-536: Skip setting last modified time when FS does not support it - Add dependency on plexus-xml where relevant * this will be needed for smooth upgrade to plexus-utils 4.0.0 - Upgrade to upstream version 1.9.18 * Bug + MRESOLVER-372: Sporadic AccessDeniedEx on Windows + MRESOLVER-441: Undo FileUtils changes that altered non-Windows execution path * Improvement + MRESOLVER-396: Native transport should retry on HTTP 429 (Retry-After) * Task + MRESOLVER-397: Deprecate Guice modules + MRESOLVER-405: Get rid of component name string literals, make them constants and reusable + MRESOLVER-433: Expose configuration for inhibiting Expect-Continue handshake in 1.x + MRESOLVER-435: Refresh download page + MRESOLVER-437: Resolver should not override given HTTP transport default use of expect-continue handshake - Upgrade to upstream version 1.9.15 * Bug + MRESOLVER-373: Remove lock upgrading code + MRESOLVER-375: Several key aspects are broken in provided and trusted checksum feature + MRESOLVER-376: StackOverflowError at BfDependencyCollector.processDependency + MRESOLVER-380: Lock diagnostic: attempted lock step is recorded, but on failed attempt is not removed + MRESOLVER-393: Transport HTTP does not retain last modified as sent by remote end * Improvement + MRESOLVER-220: Modify signaling for unsupported operations + MRESOLVER-382: Define local outgoing (bind) address + MRESOLVER-385: Reduce default value for aether.connector.http.connectionMaxTtl * Task + MRESOLVER-378: Update parent POM to 40 + MRESOLVER-381: Undo MRESOLVER-373 as it was fixed by other means + MRESOLVER-386: Make all injected ctors public, deprecate all def ctors + MRESOLVER-388: Transport HTTP old codec proper override - Upgrade to upstream version 1.9.12 * Bug + [MRESOLVER-371] Unjustified WARNING log added by MRESOLVER-364 + [MRESOLVER-361] Unreliable TCP and retries on upload + [MRESOLVER-357] ConflictResolver STANDARD verbosity misbehaves + [MRESOLVER-352] Duplicate METADATA_DOWNLOADING event is being sent * Improvement + [MRESOLVER-360] disable checksum by default for .sigstore in addition to .asc * New Feature + [MRESOLVER-370] Lock factory should dump lock states on failure + [MRESOLVER-353] Make aether.checksums.algorithms settable per remote repository * Task + [MRESOLVER-366] Upgrade build plugins + [MRESOLVER-364] Revert MRESOLVER-132 + [MRESOLVER-359] Make build be explicit about build time requirements + [MRESOLVER-356] Remove Guava (is unused) + [MRESOLVER-354] Document expected checksums - Upgrade to upstream version 1.9.8 * Bug + [MRESOLVER-345] Conflict resolution in verbose mode is sensitive to version ordering + [MRESOLVER-348] SslConfig httpSecurityMode change is not detected + [MRESOLVER-339] Preemptive Auth broken when default ports used + [MRESOLVER-325] [REGRESSION] Suddenly seeing I/O errors under windows aborting the build + [MRESOLVER-330] Static name mapper is unusable with file-lock factory + [MRESOLVER-314] Getting "IllegalArgumentException: Comparison method violates its general contract!" + [MRESOLVER-316] DF collector enters endless loop when collecting org.webjars.npm:musquette:1.1.1 + [MRESOLVER-298] javax.inject should be provided or optional + [MRESOLVER-305] Evaluate blocked repositories also when retrieving metadata + [MRESOLVER-309] PrefixesRemoteRepositoryFilterSource aborts the build while it should not + [MRESOLVER-313] Artifact file permissions are 0600 and not implicitly set by umask + [MRESOLVER-296] FileProcessor.write( File, InputStream ) is defunct + [MRESOLVER-292] Documented and used param names mismatch + [MRESOLVER-294] Fix JapiCmp configuration and document it + [MRESOLVER-285] File locking on Windows knows to misbehave + [MRESOLVER-246] m-deploy-p will create hashes for hashes + [MRESOLVER-265] Discrepancy between produced and recognized checksums + [MRESOLVER-241] Resolver checksum calculation should be driven by layout + [MRESOLVER-242] When no remote checksums provided by layout, transfer inevitably fails/warns + [MRESOLVER-250] Usage of descriptors map in DataPool prevents gargabe collection * New Feature + [MRESOLVER-32] Support parallel artifact/metadata uploads + [MRESOLVER-319] Support parallel deploy + [MRESOLVER-297] Chained LRM + [MRESOLVER-167] Support forcing specific repositories for artifacts + [MRESOLVER-268] Apply artifact checksum verification for any resolved artifact + [MRESOLVER-274] Introduce Remote Repository Filter feature + [MRESOLVER-275] Introduce trusted checksums source + [MRESOLVER-276] Resolver post-processor + [MRESOLVER-278] BREAKING: Introduce RepositorySystem shutdown hooks + [MRESOLVER-236] Make it possible to resolve .asc on a 'fail' respository. * Improvement + [MRESOLVER-346] Too eager locking + [MRESOLVER-347] Better connection pool configuration (reuse, max TTL, maxPerRoute) + [MRESOLVER-349] Adapter when locking should "give up and retry" + [MRESOLVER-350] Get rid of commons-lang dependency + [MRESOLVER-327] Make tranport-http obey system properties regarding proxy settings + [MRESOLVER-340] Make WebDAV "dance" disabled by default + [MRESOLVER-341] Add option for preemptive PUT Auth + [MRESOLVER-315] Implement preemptive authentication feature for transport-http + [MRESOLVER-328] The transport-http should be able to ignore cert errors + [MRESOLVER-337] Real cause when artifact not found with repository filtering + [MRESOLVER-287] Get rid of deprecated finalize methods + [MRESOLVER-317] Improvements for BF collector + [MRESOLVER-318] Cleanup redundant code and centralize executor handling + [MRESOLVER-303] Make checksum detection reusable + [MRESOLVER-290] Improve file handling resolver wide + [MRESOLVER-7] Download dependency POMs in parallel in BF collector + [MRESOLVER-266] Simplify adapter creation and align configuration for it + [MRESOLVER-269] Allow more compact storage of provided checksums + [MRESOLVER-273] Create more compact File locking layout/mapper + [MRESOLVER-284] BREAKING: Some Sisu parameters needs to be bound + [MRESOLVER-286] Improve basic connector closed state handling + [MRESOLVER-240] Using breadth-first approach to resolve Maven dependencies + [MRESOLVER-247] Avoid unnecessary dependency resolution by a Skip solution based on BFS + [MRESOLVER-248] Make DF and BF collector implementations coexist * Task + [MRESOLVER-326] Resolver transport-http should retry on failures + [MRESOLVER-331] Make DefaultTrackingFileManager write directly to tracking files + [MRESOLVER-333] Distinguish better resolver errors for artifact availability + [MRESOLVER-320] Investigate slower resolving speeds as reported by users + [MRESOLVER-291] Undo MRESOLVER-284 + [MRESOLVER-279] Simplify and improve trusted checksum sources + [MRESOLVER-281] Update configurations page with new elements + [MRESOLVER-282] Drop PartialFile + [MRESOLVER-230] Make supported checksum algorithms extensible + [MRESOLVER-231] Extend “smart checksum” feature + [MRESOLVER-234] Introduce “provided” checksums feature + [MRESOLVER-237] Make all checksum mismatches handled same + [MRESOLVER-239] Update and sanitize dependencies + [MRESOLVER-244] Deprecate FileTransformer API + [MRESOLVER-245] Isolate Hazelcast tests * Dependency upgrade + [MRESOLVER-311] Upgrade Parent to 39 + [MRESOLVER-293] Update dependencies, align with Maven + [MRESOLVER-272] Update parent POM to 37, remove plugin version overrides, update bnd + [MRESOLVER-280] Upgrade invoker, install, deploy, require maven 3.8.4+ + [MRESOLVER-251] Upgrade Redisson to 3.17.5 + [MRESOLVER-249] Update Hazelcast to 5.1.1 in named-locks-hazelcast module - Add an alias for the wagon connector - Build against the standalone JavaEE modules unconditionally - Remove the javax.annotation:javax.annotation-api dependency on distribution versions that do not incorporate the JavaEE modules - Add the glassfish-annotation-api jar to the build classpath - Upgrade to upstream version 1.7.3 * Bug + [MRESOLVER-96] - Dependency Injection fails after upgrading to Maven 3.6.2 + [MRESOLVER-153] - resolver-status.properties file is corrupted due to concurrent writes + [MRESOLVER-171] - Resolver fails when compiled on Java 9+ an run on Java 8 due to JDK API breakage + [MRESOLVER-189] - Using semaphore-redisson followed by rwlock-redisson on many parallel build of the same project triggers redisson error * New Feature + [MRESOLVER-90] - HTML content in POM: Maven should validate content before storing in local repo + [MRESOLVER-145] - Introduce more SyncContext implementations * Improvement + [MRESOLVER-103] - Replace deprecated HttpClient classes + [MRESOLVER-104] - maven-resolver-demo-maven-plugin uses reserved artifactId + [MRESOLVER-147] - Upgrade to Java 8 + [MRESOLVER-148] - Use vanilla Guice 4 instead of forked Guice 3 + [MRESOLVER-156] - Active dependency management for Google Guice/Guava + [MRESOLVER-168] - add DEBUG message when downloading an artifact from repositories + [MRESOLVER-193] - Properly type lock key names in Redis + [MRESOLVER-197] - Minors improvements (umbrella) + [MRESOLVER-204] - Add a SessionData#computeIfAbsent method + [MRESOLVER-214] - Remove clirr configuration * Task + [MRESOLVER-141] - Review index-based access to collections + [MRESOLVER-151] - Enforce a checksum policy to be provided explicitly + [MRESOLVER-152] - Perform null checks when interface contracts require it + [MRESOLVER-154] - Move SyncContextFactory interface to SPI module + [MRESOLVER-155] - Make TrackingFileManager member of DefaultUpdateCheckManager + [MRESOLVER-158] - Simplify SimpleDigest class + [MRESOLVER-159] - Mark singleton components as Sisu Singletons + [MRESOLVER-160] - Deprecate ServiceLocator + [MRESOLVER-162] - Restore binary compatibility broken by MRESOLVER-154 + [MRESOLVER-170] - Deprecate org.eclipse.aether.spi.log + [MRESOLVER-172] - Make TrackingFileManager shared singleton component + [MRESOLVER-173] - Drop deprecated AetherModule + [MRESOLVER-174] - Use all bindings in UTs and tests + [MRESOLVER-175] - Drop SyncContextFactory delegates in favor of a selector approach + [MRESOLVER-177] - Move pre-/post-processing of metadata from ResolveTask to DefaultMetadataResolver + [MRESOLVER-183] - Don't require optional dependencies for Redisson + [MRESOLVER-184] - Destroy Redisson semaphores if not used anymore + [MRESOLVER-186] - Update Maven version in Resolver Demo Snippets + [MRESOLVER-188] - Improve documentation on using the named locks with redis/hazelcast (umbrella) + [MRESOLVER-190] - [Regression] Revert MRESOLVER-184 + [MRESOLVER-191] - Document how to analyze lock issues + [MRESOLVER-196] - Document named locks configuration options + [MRESOLVER-219] - Implement NamedLock with advisory file locking + [MRESOLVER-227] - Refactor NamedLockFactorySelector to a managed component + [MRESOLVER-232] - Make SimpleNamedLockFactorySelector logic reusable * Sub-task + [MRESOLVER-198] - Replace assert by simpler but equivalent calls + [MRESOLVER-199] - Java 8 improvements + [MRESOLVER-200] - Simplify conditions with the same result and avoid extra validations + [MRESOLVER-201] - Make variables final whenever possible + [MRESOLVER-202] - Use isEmpty() instead length() <= 0 * Dependency upgrade + [MRESOLVER-185] - Upgrade Redisson to 3.15.6 * Change of API and incompatible with maven-resolver < 1.7 - Upgrade to upstream version 1.6.3 * Bug + [MRESOLVER-153] - resolver-status.properties file is corrupted due to concurrent writes + [MRESOLVER-171] - Resolver fails when compiled on Java 9+ and run on Java 8 due to JDK API breakage * Improvement + [MRESOLVER-168] - add DEBUG message when downloading an artifact from repositories * Task + [MRESOLVER-177] - Move pre-/post-processing of metadata from ResolveTask to DefaultMetadataResolver * Needed for maven 3.8.4 - Do not build/run the tests against the legacy guava20 package - Upgrade to upstream version 1.6.2 * Sub-task + [MRESOLVER-139] - Make SimpleDigest use SHA-1 or MD5 only + [MRESOLVER-140] - Default to SHA-1 and MD5 hashing algorithms * Bug + [MRESOLVER-25] - Resume support is broken under high concurrency + [MRESOLVER-114] - ArtifactNotFoundExceptions when building in parallel + [MRESOLVER-129] - Exclusion has no setters + [MRESOLVER-137] - Make OSGi bundles reproducible + [MRESOLVER-138] - MRESOLVER-56 introduces severe performance regression * New Feature + [MRESOLVER-109] - AndDependencySelector should override toString + [MRESOLVER-115] - Make checksum algorithms configurable + [MRESOLVER-123] - Provide a global locking sync context by default + [MRESOLVER-131] - Introduce a Redisson-based SyncContextFactory + [MRESOLVER-165] - Add support for mirror selector on external:http:* + [MRESOLVER-166] - Add support for blocked repositories/mirrors * Improvement + [MRESOLVER-56] - Support SHA-256 and SHA-512 as checksums + [MRESOLVER-116] - Add page with all supported configuration options + [MRESOLVER-125] - Use type conversions returning primitives + [MRESOLVER-127] - Don't use boolean for property 'aether.updateCheckManager.sessionState' + [MRESOLVER-136] - Migrate from maven-bundle-plugin to bnd-maven-plugin * Task + [MRESOLVER-119] - Turn log messages to SLF4J placeholders + [MRESOLVER-130] - Move GlobalSyncContextFactory to a separate module + [MRESOLVER-132] - Remove synchronization in TrackingFileManager * Dependency upgrade + [MRESOLVER-105] - Update Plexus Components + [MRESOLVER-106] - Update HttpComponents + [MRESOLVER-107] - Update Wagon Provider API to 3.4.0 + [MRESOLVER-108] - Update mockito-core to 2.28.2 + [MRESOLVER-117] - Upgrade SLF4J to 1.7.30 + [MRESOLVER-118] - Upgrade Sisu Components to 0.3.4 * Needed for maven 3.8.x - Set buildshell to bash for "<<<". - Upgrade to upstream version 1.4.2 * Bug: + MRESOLVER-38 – SOE/OOME in DefaultDependencyNode.accept * Improvements: + MRESOLVER-93 – PathRecordingDependencyVisitor to handle 3 cycles + MRESOLVER-102 – make build Reproducible - Upgrade to upstream version 1.4.1 * Task + [MRESOLVER-92] - Revert MRESOLVER-7 * Bug + [MRESOLVER-86] - ResolveArtifactMojo from resolver example uses plugin repositories to resolve dependencies * New Feature + [MRESOLVER-10] - New 'TransitiveDependencyManager' supporting transitive dependency management + [MRESOLVER-33] - New 'DefaultDependencyManager' managing dependencies on all levels supporting transitive dependency management * Improvement + [MRESOLVER-7] - Download dependency POMs in parallel + [MRESOLVER-84] - Add support for "release" qualifier + [MRESOLVER-87] - Refresh examples to use maven-resolver artifacts for demo + [MRESOLVER-88] - Code style cleanup to use Java 7 features - Initial packaging of maven-resolver 1.3.1 - Generate and customize the ant build files Changes in maven-resolver: - Update to upstream version 1.9.24 * New features and improvements + Metadata type out of coordinates + RFC9457 implementation + Intern context strings * Maintenance + Align plexus-util version with Maven + Align guice version with Maven + Enable Github Issues (1.9.x branch) - Build also maven-resolver-supplier package in separate spec file - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 - Update to upstream version 1.9.23 * Bug + MRESOLVER-659: NPE in trusted checksum post processor if * Improvement + MRESOLVER-680: Disable checksum by default for .sigstore.json as well + MRESOLVER-703: HTTP transport should expose config for max redirects Changes in xmvn: - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in objectweb-asm: - Upgrade to version 9.9 * new Opcodes.V26 constant for Java 26 * new mapInvokeDynamicMethodName method in Remapper. Old method deprecated. New Remapper constructor, with an api parameter. * bug fixes + 318028: Textifier misinterprets ACC_SUPER of inner classes as ACC_SYNCHRONIZED + 318032: FIPS 140-3 and SerialVersionUIDAdder's SHA-1 Use + 318034: Many ASM contents lack API detection. - Upgrade to version 9.8 * new Opcodes.V25 constant for Java 25 * bug fixes + Fix one more copy operation on DUP2 + 318015: Valid bytecode for jvm, but failed to pass the CheckClassAdapter. + `ASMifier` should print calls to `valueOf` instead of deprecated constructors of primitive wrappers Changes in plexus-archiver: - Upgrade to upstream version 4.10.2 * New features and improvements + Utilize VT if possible * Bug Fixes + check minimum timestamp: avoid negative Zip 5455 Extended Timestamp * Maintenance + Cleanups of using deprecated methods + symLinks:Enhance the compatibility of regen.sh + Apply spotless re-formatting - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-surefire: - Upgrade to 3.5.4 * New features and improvements + Name the shutdown hook + Implement fail-fast behavior for JUnit Platform provider + Create a single LauncherSession for invocations of JUnitPlatformProvider * Bug Fixes * SUREFIRE-2298: fix xml output with junit 5 nested classes (fix integration with Cucumber and Archunit) * Maintenance + feat: enable prevent branch protection rules + Get rid of plexus-annotations + Remove maven-changes-plugin + Enable GitHub Issues - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 - Upgrade to 3.5.3 * Bug + SUREFIRE-1643: JUnit 5 in parallel execution mode confuses Surefire reports + SUREFIRE-1737: Disabling the JUnit5Xml30StatelessReporter has no effect + SUREFIRE-1751: Surefire report shows flaky tests as failures + SUREFIRE-2289: FailsafeSummary.toRunResult throws a raw exception Changes in maven-compiler-plugin: - Upgrade to upstream release 3.14.1 * New features and improvements + Improve DeltaList behavior for large projects + Allow to not use --module-version for the Java compiler * Bug Fixes + Add generatedSourcesPath back to the maven project + MCOMPILER-538: Do not add target/generated-sources/annotations to the source roots * Dependency updates + Enforce asm version used here, to not depend on brittle transitive + Bump mavenVersion from 3.9.9 to 3.9.11 + Bump org.apache.maven.plugins:maven-plugins from 43 to 45 + Bump org.codehaus.plexus:plexus-java from 1.4.0 to 1.5.0 Changes in maven-javadoc-plugin: - Upgrade to upstream version 3.12.0 * Breaking changes + remove fix mojo + detectOfflineLinks is now false per default for all jar mojo issue #1258 * Bug Fixes + Fix legacyMode + Fix package {...} does not exist in legacyMode + Ensure UTF-8 charset is used to avoid IllegalArgumentException: Null charset name + Remove Javadoc 1.4+ / -1.1 switch related warning * Maintenance + protect 3.8.x branch + feat: enable prevent branch protection rules - Upgrade to upstream version 3.11.3 * Removed + Remove workaround for long patched CVE in javadoc * New features and improvements + Issue #369 Support --no-fonts option per default for jdk 23+ * Bug Fixes + Make the legacyMode consistent (Filter out all of the module-info.java files in legacy mode, do not use --source-path in legacy mode) + MJAVADOC-826: Don't try to modify project source roots * Documentation updates + Correct javadoc-no-fork description on index-page + MNGSITE-529: Rename "Goals" to "Plugin Documentation" + (doc) Close links tag in links parameter javadoc example * Maintenance + Be consistent about data encoding when copying files + Clean up JavadocUtilTest + Use Java 7 relativization instead of hand-rolled code + Rephrase source code fix interactive messages for clarity + Reduce non-debug logging + Delete duplicate @throws clause + Use Java 7 relativization instead of our hand-rolled code + Clean up comments and argument names + Issue #378 Cleanup of code related to old non supported Java version + Cure deprecation warning + MJAVADOC-773: deprecate toRelative + Issue #373 Fix JDK 23 build + Fix aggregate Javadoc typo + Enable GH issues + MJAVADOC-825: Prefer NullPointerExceptions for null arguments - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 Changes in maven-assembly-plugin: Update to version 3.7.1 * Bug + MASSEMBLY-1020: Cannot invoke "java.io.File.isFile()" because "this.inputFile" is null + MASSEMBLY-1021: Nullpointer in assembly:single when upgrading to 3.7.0 + MASSEMBLY-1022: Unresolved artifacts should be not processed - Changes of 3.7.0 * Bug + MASSEMBLY-967: maven-assembly-plugin doesn't add target/class artifacts in generated jarfat but META-INF/MANIFEST.MF seems to be correct + MASSEMBLY-994: Items from unpacked dependency are not refreshed + MASSEMBLY-998: Transitive dependencies are not properly excluded as of 3.1.1 + MASSEMBLY-1008: Assembly plugin handles scopes wrongly + MASSEMBLY-1018: Fix examples about useStrictFiltering * New Feature + MASSEMBLY-992: Facility to define assembly descriptor in body of POM * Improvement + MASSEMBLY-1007: Upgrade maven-plugin parent to 41 + MASSEMBLY-1016: clarify and fix plugin system requirements history + MASSEMBLY-1017: Don't use deprecated methods in code * Task + MASSEMBLY-991: XSDs for 2.2.0 missing from Maven Project Web Site + MASSEMBLY-1000: ITs - cleanups, refresh plugins versions + MASSEMBLY-1003: Remove unused remoteRepositories + MASSEMBLY-1004: Remove ignored and deprecated parameter - useJvmChmod + MASSEMBLY-1010: Use IOUtils from commons-io instead of plexus + MASSEMBLY-1013: Code cleanups Changes in maven-bundle-plugin: - remove patch that is fixed in maven-archiver Changes in maven-dependency-plugin: - Upgrade to version 3.9.0 * New features and improvements + Use Resolver API in go-offline for dependencies resolving + Use Resolver API in go-offline for plugins resolving + Fixes #1522, add render-dependencies mojo + Use Resolver API in resolve-plugin + MDEP-964: unconditionally ignore dependencies known to be loaded by reflection + Update maven-dependency-analyzer to support Java24 + MDEP-972: copy-dependencies: copy signatures alongside artifacts + MDEP-776: Warn when multiple dependencies have the same file name + MDEP-966: Migrate AnalyzeDepMgt to Sisu + MDEP-957: By default, don't report slf4j-simple as unused * Bug Fixes + ProjectBuildingRequest should not be modified + Fix: markersDirectory is not working when unpack goal is executed from command line + Fix broken link for analyze-exclusions-mojo on usage-page + MDEP-839: Avoid extra blank lines in file + Update collect URL + MDEP-689: Fixes ignored dependency filtering in go-offline goal + MDEP-960: Repair silent logging * Documentation updates + MDEP-933: Document dependency tree output formats + Add additional comment to clarify the minimal supported version of outputing dependency tree in JSON fromat. + MNGSITE-529: Rename "Goals" to "Plugin Documentation" + Unix file separators * Maintenance + Simplify usage of RepositoryManager and DependencyResolver + Use Resolver API in copy and unpack + Update site descriptor to 2.0.0 + Enable prevent branch protection rules + Fix [MDEP-931: Replace PrintWriter with Writer in AbstractSerializing Visitor and subclasses + Cleanups dependencies + Copy edit parameter descriptions + Small Javadoc clarifications + MDEP-967: Change info to debug logging in AbstractFromConfigurationMojo + fix: remove duplicate maven-resolver-api and maven-resolver-util dependencies in pom.xml + Enable GH issues + Remove redundant/unneeded code + Add PR Automation and Stale actions + Keep files in temporary directory to be deleted after test + Drop unnecessary call + Avoid deprecated ArtifactFactory + MDEP-966: Convert remaining Mojos to Guice injection + MDEP-966: Convert Analyze Mojos to Guice constructor injection + MDEP-966: Prefer Guice injection + MDEP-966: Migrate TreeMojo/CopyMojo/AnalyzeExclusionsMojo/ /UnpackMojo/CopyDependenciesMojo from Plexus to Sisu Guice + MDEP-966: @component --> @Inject for DisplayAncestorsMojo + Fixing flaky test in TestCopyDependenciesMojo + MNG-2961: Remove workaround for fixed bug * Build + Build by Maven 4 * Dependency updates + Bump Maven in dependencies to 3.9.11 + Bump commons-io:commons-io from 2.16.1 to 2.20.0 + Bump jettyVersion from 9.4.56.v20240826 to 9.4.58.v20250814 + Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.19.0 + Bump org.apache.maven.plugins:maven-plugins from 43 to 45 + Bump org.codehaus.mojo:mrm-maven-plugin from 1.6.0 to 1.7.0 + Bump org.codehaus.plexus:plexus-archiver from 4.10.0 to 4.10.1 + Bump org.codehaus.plexus:plexus-i18n from 1.0-beta-10 to 1.0.0 + Bump org.jsoup:jsoup from 1.18.1 to 1.21.2 + MDEP-963: Bump org.apache.maven.shared:maven-dependency-analyzer from 1.15.0 to 1.15.1 Changes in maven-invoker-plugin: - Upgrade to upstream version 3.9.1 * Documentation updates + Add note about cloneProjectsTo being required for filtering * Maintenance + Use constant 3.6.3 in prerequisites/maven as minimal Maven version + Enable GH Issues + MNGSITE-529: Rename "Goals" to "Plugin Documentation" + Switch to Guice constructor injection + Specify UTF-8 when reading build log + Make utility class static * Build + Enable build by Maven 4 on GitHub * Dependency updates + Bump commons-beanutils:commons-beanutils from 1.9.4 to 1.11.0 + Bump commons-codec:commons-codec from 1.17.1 to 1.18.0 + Bump commons-io:commons-io from 2.18.0 to 2.19.0 + Bump mavenVersion from 3.6.3 to 3.9.10 + Bump org.apache.groovy:groovy-bom from 4.0.24 to 4.0.27 + Bump org.apache.maven.plugins:maven-plugins from 43 to 45 + Bump org.assertj:assertj-core from 3.26.3 to 3.27.3 + Bump org.codehaus.plexus:plexus-interpolation from 1.27 to 1.28 Changes in plexus-archiver: - Upgrade to upstream version 4.10.2 * New features and improvements + Utilize VT if possible * Bug Fixes + check minimum timestamp: avoid negative Zip 5455 Extended Timestamp * Maintenance + Cleanups of using deprecated methods + symLinks:Enhance the compatibility of regen.sh + Apply spotless re-formatting jaxb-api-4.0.0-160000.1.1.noarch.rpm jaxb-api-4.0.0-160000.1.1.src.rpm jaxb-api-javadoc-4.0.0-160000.1.1.noarch.rpm maven-archiver-3.6.5-160000.1.1.noarch.rpm maven-archiver-3.6.5-160000.1.1.src.rpm maven-archiver-javadoc-3.6.5-160000.1.1.noarch.rpm maven-artifact-transfer-0.13.1-160000.3.1.noarch.rpm maven-artifact-transfer-0.13.1-160000.3.1.src.rpm maven-artifact-transfer-javadoc-0.13.1-160000.3.1.noarch.rpm maven-assembly-plugin-3.7.1-160000.1.1.noarch.rpm maven-assembly-plugin-3.7.1-160000.1.1.src.rpm maven-assembly-plugin-javadoc-3.7.1-160000.1.1.noarch.rpm maven-bundle-plugin-5.1.9-160000.3.1.noarch.rpm maven-bundle-plugin-5.1.9-160000.3.1.src.rpm maven-bundle-plugin-javadoc-5.1.9-160000.3.1.noarch.rpm maven-compiler-plugin-3.14.1-160000.1.1.noarch.rpm maven-compiler-plugin-3.14.1-160000.1.1.src.rpm maven-compiler-plugin-javadoc-3.14.1-160000.1.1.noarch.rpm maven-compiler-plugin-bootstrap-3.14.1-160000.1.1.noarch.rpm maven-compiler-plugin-bootstrap-3.14.1-160000.1.1.src.rpm maven-dependency-analyzer-1.16.0-160000.1.1.noarch.rpm maven-dependency-analyzer-1.16.0-160000.1.1.src.rpm maven-dependency-analyzer-javadoc-1.16.0-160000.1.1.noarch.rpm maven-dependency-tree-3.2.1-160000.3.1.noarch.rpm maven-dependency-tree-3.2.1-160000.3.1.src.rpm maven-dependency-tree-javadoc-3.2.1-160000.3.1.noarch.rpm maven-doxia-2.0.0-160000.3.1.src.rpm maven-doxia-core-2.0.0-160000.3.1.noarch.rpm maven-doxia-javadoc-2.0.0-160000.3.1.noarch.rpm maven-doxia-module-apt-2.0.0-160000.3.1.noarch.rpm maven-doxia-module-fml-2.0.0-160000.3.1.noarch.rpm maven-doxia-module-xdoc-2.0.0-160000.3.1.noarch.rpm maven-doxia-module-xhtml5-2.0.0-160000.3.1.noarch.rpm maven-doxia-sink-api-2.0.0-160000.3.1.noarch.rpm maven-doxia-test-docs-2.0.0-160000.3.1.noarch.rpm maven-doxia-sitetools-2.0.0-160000.3.1.noarch.rpm maven-doxia-sitetools-2.0.0-160000.3.1.src.rpm maven-doxia-sitetools-javadoc-2.0.0-160000.3.1.noarch.rpm maven-file-management-3.2.0-160000.1.1.noarch.rpm maven-file-management-3.2.0-160000.1.1.src.rpm maven-file-management-javadoc-3.2.0-160000.1.1.noarch.rpm maven-filtering-3.4.0-160000.1.1.noarch.rpm maven-filtering-3.4.0-160000.1.1.src.rpm maven-filtering-javadoc-3.4.0-160000.1.1.noarch.rpm maven-invoker-3.3.0-160000.3.1.noarch.rpm maven-invoker-3.3.0-160000.3.1.src.rpm maven-invoker-javadoc-3.3.0-160000.3.1.noarch.rpm maven-invoker-plugin-3.9.1-160000.1.1.noarch.rpm maven-invoker-plugin-3.9.1-160000.1.1.src.rpm maven-invoker-plugin-javadoc-3.9.1-160000.1.1.noarch.rpm maven-jar-plugin-3.5.0-160000.1.1.noarch.rpm maven-jar-plugin-3.5.0-160000.1.1.src.rpm maven-jar-plugin-javadoc-3.5.0-160000.1.1.noarch.rpm maven-jar-plugin-bootstrap-3.5.0-160000.1.1.noarch.rpm maven-jar-plugin-bootstrap-3.5.0-160000.1.1.src.rpm maven-javadoc-plugin-3.12.0-160000.1.1.noarch.rpm maven-javadoc-plugin-3.12.0-160000.1.1.src.rpm maven-javadoc-plugin-javadoc-3.12.0-160000.1.1.noarch.rpm maven-javadoc-plugin-bootstrap-3.12.0-160000.1.1.noarch.rpm maven-javadoc-plugin-bootstrap-3.12.0-160000.1.1.src.rpm maven-3.9.11-160000.1.1.aarch64.rpm maven-3.9.11-160000.1.1.src.rpm maven-javadoc-3.9.11-160000.1.1.noarch.rpm maven-lib-3.9.11-160000.1.1.aarch64.rpm maven-parent-45-160000.1.1.noarch.rpm maven-parent-45-160000.1.1.src.rpm maven-plugin-plugin-bootstrap-3.15.2-160000.1.1.noarch.rpm maven-plugin-plugin-bootstrap-3.15.2-160000.1.1.src.rpm maven-plugin-plugin-3.15.2-160000.1.1.noarch.rpm maven-plugin-plugin-3.15.2-160000.1.1.src.rpm maven-plugin-plugin-javadoc-3.15.2-160000.1.1.noarch.rpm maven-plugin-report-plugin-3.15.2-160000.1.1.noarch.rpm maven-plugin-report-plugin-3.15.2-160000.1.1.src.rpm maven-plugin-report-plugin-javadoc-3.15.2-160000.1.1.noarch.rpm maven-plugin-annotations-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-3.15.2-160000.1.1.src.rpm maven-plugin-tools-annotations-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-ant-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-api-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-beanshell-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-generators-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-java-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-javadoc-3.15.2-160000.1.1.noarch.rpm maven-plugin-tools-model-3.15.2-160000.1.1.noarch.rpm maven-script-ant-3.15.2-160000.1.1.noarch.rpm maven-script-beanshell-3.15.2-160000.1.1.noarch.rpm maven-resolver-supplier-1.9.24-160000.1.1.noarch.rpm maven-resolver-supplier-1.9.24-160000.1.1.src.rpm maven-resolver-supplier-javadoc-1.9.24-160000.1.1.noarch.rpm maven-resolver-1.9.24-160000.1.1.noarch.rpm maven-resolver-1.9.24-160000.1.1.src.rpm maven-resolver-api-1.9.24-160000.1.1.noarch.rpm maven-resolver-connector-basic-1.9.24-160000.1.1.noarch.rpm maven-resolver-impl-1.9.24-160000.1.1.noarch.rpm maven-resolver-javadoc-1.9.24-160000.1.1.noarch.rpm maven-resolver-named-locks-1.9.24-160000.1.1.noarch.rpm maven-resolver-spi-1.9.24-160000.1.1.noarch.rpm maven-resolver-test-util-1.9.24-160000.1.1.noarch.rpm maven-resolver-transport-classpath-1.9.24-160000.1.1.noarch.rpm maven-resolver-transport-file-1.9.24-160000.1.1.noarch.rpm maven-resolver-transport-http-1.9.24-160000.1.1.noarch.rpm maven-resolver-transport-wagon-1.9.24-160000.1.1.noarch.rpm maven-resolver-util-1.9.24-160000.1.1.noarch.rpm maven-failsafe-plugin-bootstrap-3.5.4-160000.1.1.noarch.rpm maven-surefire-3.5.4-160000.1.1.noarch.rpm maven-surefire-3.5.4-160000.1.1.src.rpm maven-surefire-javadoc-3.5.4-160000.1.1.noarch.rpm maven-surefire-plugin-bootstrap-3.5.4-160000.1.1.noarch.rpm maven-surefire-provider-junit-3.5.4-160000.1.1.noarch.rpm maven-surefire-provider-testng-3.5.4-160000.1.1.noarch.rpm maven-surefire-report-parser-3.5.4-160000.1.1.noarch.rpm maven-surefire-report-plugin-bootstrap-3.5.4-160000.1.1.noarch.rpm maven-failsafe-plugin-3.5.4-160000.1.1.noarch.rpm maven-surefire-plugin-3.5.4-160000.1.1.noarch.rpm maven-surefire-plugins-3.5.4-160000.1.1.src.rpm maven-surefire-plugins-javadoc-3.5.4-160000.1.1.noarch.rpm maven-surefire-report-plugin-3.5.4-160000.1.1.noarch.rpm maven-surefire-provider-junit5-3.5.4-160000.1.1.noarch.rpm maven-surefire-provider-junit5-3.5.4-160000.1.1.src.rpm maven-surefire-provider-junit5-javadoc-3.5.4-160000.1.1.noarch.rpm objectweb-asm-9.9-160000.1.1.noarch.rpm objectweb-asm-9.9-160000.1.1.src.rpm objectweb-asm-javadoc-9.9-160000.1.1.noarch.rpm plexus-archiver-4.10.2-160000.1.1.noarch.rpm plexus-archiver-4.10.2-160000.1.1.src.rpm plexus-archiver-javadoc-4.10.2-160000.1.1.noarch.rpm plexus-build-api-1.2.0-160000.3.1.noarch.rpm plexus-build-api-1.2.0-160000.3.1.src.rpm plexus-build-api-javadoc-1.2.0-160000.3.1.noarch.rpm plexus-cipher-2.1.0-160000.3.1.noarch.rpm plexus-cipher-2.1.0-160000.3.1.src.rpm plexus-cipher-javadoc-2.1.0-160000.3.1.noarch.rpm plexus-classworlds-2.9.0-160000.1.1.noarch.rpm plexus-classworlds-2.9.0-160000.1.1.src.rpm plexus-classworlds-javadoc-2.9.0-160000.1.1.noarch.rpm plexus-compiler-2.15.0-160000.1.1.noarch.rpm plexus-compiler-2.15.0-160000.1.1.src.rpm plexus-compiler-extras-2.15.0-160000.1.1.noarch.rpm plexus-compiler-javadoc-2.15.0-160000.1.1.noarch.rpm plexus-i18n-1.0.0-160000.1.1.noarch.rpm plexus-i18n-1.0.0-160000.1.1.src.rpm plexus-i18n-javadoc-1.0.0-160000.1.1.noarch.rpm plexus-interactivity-1.4-160000.1.1.src.rpm plexus-interactivity-api-1.4-160000.1.1.noarch.rpm plexus-interactivity-javadoc-1.4-160000.1.1.noarch.rpm plexus-interpolation-1.28-160000.1.1.noarch.rpm plexus-interpolation-1.28-160000.1.1.src.rpm plexus-interpolation-javadoc-1.28-160000.1.1.noarch.rpm plexus-io-3.5.1-160000.1.1.noarch.rpm plexus-io-3.5.1-160000.1.1.src.rpm plexus-io-javadoc-3.5.1-160000.1.1.noarch.rpm plexus-languages-1.5.0-160000.1.1.noarch.rpm plexus-languages-1.5.0-160000.1.1.src.rpm plexus-languages-javadoc-1.5.0-160000.1.1.noarch.rpm plexus-sec-dispatcher-2.0-160000.3.1.noarch.rpm plexus-sec-dispatcher-2.0-160000.3.1.src.rpm plexus-sec-dispatcher-javadoc-2.0-160000.3.1.noarch.rpm plexus-velocity-2.3.0-160000.1.1.noarch.rpm plexus-velocity-2.3.0-160000.1.1.src.rpm plexus-velocity-javadoc-2.3.0-160000.1.1.noarch.rpm plexus-xml-3.0.2-160000.1.1.noarch.rpm plexus-xml-3.0.2-160000.1.1.src.rpm plexus-xml-javadoc-3.0.2-160000.1.1.noarch.rpm velocity-engine-core-2.4.1-160000.1.1.noarch.rpm velocity-engine-core-2.4.1-160000.1.1.src.rpm velocity-engine-core-javadoc-2.4.1-160000.1.1.noarch.rpm velocity-custom-parser-example-2.4.1-160000.1.1.noarch.rpm velocity-engine-2.4.1-160000.1.1.src.rpm velocity-engine-examples-2.4.1-160000.1.1.noarch.rpm velocity-engine-javadoc-2.4.1-160000.1.1.noarch.rpm velocity-engine-parent-2.4.1-160000.1.1.noarch.rpm velocity-engine-scripting-2.4.1-160000.1.1.noarch.rpm xmvn-4.3.0-160000.3.1.aarch64.rpm xmvn-4.3.0-160000.3.1.src.rpm xmvn-minimal-4.3.0-160000.3.1.aarch64.rpm xmvn-connector-4.3.0-160000.3.1.noarch.rpm xmvn-connector-4.3.0-160000.3.1.src.rpm xmvn-connector-javadoc-4.3.0-160000.3.1.noarch.rpm xmvn-mojo-4.3.0-160000.3.1.noarch.rpm xmvn-mojo-4.3.0-160000.3.1.src.rpm xmvn-mojo-javadoc-4.3.0-160000.3.1.noarch.rpm xmvn-parent-4.3.0-160000.3.1.noarch.rpm xmvn-parent-4.3.0-160000.3.1.src.rpm xmvn-api-4.3.0-160000.3.1.noarch.rpm xmvn-core-4.3.0-160000.3.1.noarch.rpm xmvn-install-4.3.0-160000.3.1.noarch.rpm xmvn-resolve-4.3.0-160000.3.1.noarch.rpm xmvn-subst-4.3.0-160000.3.1.noarch.rpm xmvn-tools-4.3.0-160000.3.1.src.rpm xmvn-tools-javadoc-4.3.0-160000.3.1.noarch.rpm xom-1.3.9-160000.3.1.noarch.rpm xom-1.3.9-160000.3.1.src.rpm xom-demo-1.3.9-160000.3.1.noarch.rpm xom-javadoc-1.3.9-160000.3.1.noarch.rpm maven-3.9.11-160000.1.1.ppc64le.rpm maven-lib-3.9.11-160000.1.1.ppc64le.rpm xmvn-4.3.0-160000.3.1.ppc64le.rpm xmvn-minimal-4.3.0-160000.3.1.ppc64le.rpm maven-3.9.11-160000.1.1.s390x.rpm maven-lib-3.9.11-160000.1.1.s390x.rpm xmvn-4.3.0-160000.3.1.s390x.rpm xmvn-minimal-4.3.0-160000.3.1.s390x.rpm maven-3.9.11-160000.1.1.x86_64.rpm maven-lib-3.9.11-160000.1.1.x86_64.rpm xmvn-4.3.0-160000.3.1.x86_64.rpm xmvn-minimal-4.3.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-123 Recommended update for elemental-register, elemental-toolkit, elemental-system-agent, elemental moderate SUSE SLFO 1.2 This update for elemental-register, elemental-toolkit, elemental-system-agent, elemental fixes the following issues: Changes in elemental-register: - Upgrade to v1.8.0: Add policycoreutils-python-utils (bsc#1240623) Include an empty /etc/machine-id file (bsc#1239623) elemental-register-1.8.0-160000.1.1.aarch64.rpm elemental-register-1.8.0-160000.1.1.src.rpm elemental-support-1.8.0-160000.1.1.aarch64.rpm elemental-toolkit-2.3.1-160000.1.1.aarch64.rpm elemental-toolkit-2.3.1-160000.1.1.src.rpm elemental-system-agent-0.3.13-160000.1.1.aarch64.rpm elemental-system-agent-0.3.13-160000.1.1.src.rpm elemental-2.3.0-160000.1.1.noarch.rpm elemental-2.3.0-160000.1.1.src.rpm elemental-updater-2.3.0-160000.1.1.noarch.rpm elemental-toolkit-2.3.1-160000.1.1.ppc64le.rpm elemental-system-agent-0.3.13-160000.1.1.ppc64le.rpm elemental-toolkit-2.3.1-160000.1.1.s390x.rpm elemental-system-agent-0.3.13-160000.1.1.s390x.rpm elemental-register-1.8.0-160000.1.1.x86_64.rpm elemental-support-1.8.0-160000.1.1.x86_64.rpm elemental-toolkit-2.3.1-160000.1.1.x86_64.rpm elemental-system-agent-0.3.13-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-124 Recommended update for libzypp critical SUSE SLFO 1.2 This update for libzypp fixes the following issues: Changes in libzypp: - runposttrans: strip root prefix from tmppath (bsc#1250343) - fixup! Make ld.so ignore the subarch packages during install (bsc#1246912) - version 17.37.18 libzypp-17.37.18-160000.1.1.aarch64.rpm libzypp-17.37.18-160000.1.1.src.rpm libzypp-debuginfo-17.37.18-160000.1.1.aarch64.rpm libzypp-debugsource-17.37.18-160000.1.1.aarch64.rpm libzypp-devel-17.37.18-160000.1.1.aarch64.rpm libzypp-devel-doc-17.37.18-160000.1.1.aarch64.rpm libzypp-17.37.18-160000.1.1.ppc64le.rpm libzypp-debuginfo-17.37.18-160000.1.1.ppc64le.rpm libzypp-debugsource-17.37.18-160000.1.1.ppc64le.rpm libzypp-devel-17.37.18-160000.1.1.ppc64le.rpm libzypp-devel-doc-17.37.18-160000.1.1.ppc64le.rpm libzypp-17.37.18-160000.1.1.s390x.rpm libzypp-debuginfo-17.37.18-160000.1.1.s390x.rpm libzypp-debugsource-17.37.18-160000.1.1.s390x.rpm libzypp-devel-17.37.18-160000.1.1.s390x.rpm libzypp-devel-doc-17.37.18-160000.1.1.s390x.rpm libzypp-17.37.18-160000.1.1.x86_64.rpm libzypp-debuginfo-17.37.18-160000.1.1.x86_64.rpm libzypp-debugsource-17.37.18-160000.1.1.x86_64.rpm libzypp-devel-17.37.18-160000.1.1.x86_64.rpm libzypp-devel-doc-17.37.18-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-125 Recommended update for valgrind moderate SUSE SLFO 1.2 This update for valgrind fixes the following issues: - update to 3.25.1: * Incorrect NAN-boxing for float registers in RISC-V * close_range syscalls started failing with 3.25.0 * mount syscall param filesystemtype may be NULL * FILE DESCRIPTORS banner shows when closing some inherited fds * FreeBSD: missing syscall wrappers for fchroot and setcred * Double close causes SEGV * The valgrind gdbserver now supports the GDB remote protocol packet 'x addr,len' (available in GDB release greater than or equal to 16). * Valgrind now supports zstd compressed debug sections. * The Linux Test Project (ltp) is integrated in the testsuite try 'make ltpchecks' * Added RISCV64 support for Linux. Specifically for the RV64GC instruction set. * Numerous bug fixes for Illumos, in particular fixed a Valgrind crash whenever a signal handler was called. * The --track-fds=yes and --track-fds=all options now treat all inherited file descriptors the same as 0, 1, 2 * A new option --modify-fds=high can be used together with --track-fds=yes to create new file descriptors with the highest possible number (and then decreasing) instead of always using the lowest possible number * There is a change to warnings about calls to pthread_cond_signal and pthread_cond_broadcast when the associated mutex is unlocked. - Add support for IBM z17 (jsc#PED-13403) valgrind-3.25.1-160000.1.1.aarch64.rpm valgrind-3.25.1-160000.1.1.src.rpm valgrind-debuginfo-3.25.1-160000.1.1.aarch64.rpm valgrind-debugsource-3.25.1-160000.1.1.aarch64.rpm valgrind-devel-3.25.1-160000.1.1.aarch64.rpm valgrind-client-headers-3.25.1-160000.1.1.noarch.rpm valgrind-client-headers-source-3.25.1-160000.1.1.src.rpm valgrind-3.25.1-160000.1.1.ppc64le.rpm valgrind-debuginfo-3.25.1-160000.1.1.ppc64le.rpm valgrind-debugsource-3.25.1-160000.1.1.ppc64le.rpm valgrind-devel-3.25.1-160000.1.1.ppc64le.rpm valgrind-3.25.1-160000.1.1.s390x.rpm valgrind-32bit-3.25.1-160000.1.1.s390x.rpm valgrind-debuginfo-3.25.1-160000.1.1.s390x.rpm valgrind-debugsource-3.25.1-160000.1.1.s390x.rpm valgrind-devel-3.25.1-160000.1.1.s390x.rpm valgrind-3.25.1-160000.1.1.x86_64.rpm valgrind-32bit-3.25.1-160000.1.1.x86_64.rpm valgrind-32bit-debuginfo-3.25.1-160000.1.1.x86_64.rpm valgrind-debuginfo-3.25.1-160000.1.1.x86_64.rpm valgrind-debugsource-3.25.1-160000.1.1.x86_64.rpm valgrind-devel-3.25.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-126 Recommended update for lz4 moderate SUSE SLFO 1.2 This update for lz4 fixes the following issues: - align rpm changelog with sle15 and do not ignore test suite result liblz4-1-1.10.0-160000.3.1.aarch64.rpm liblz4-1-debuginfo-1.10.0-160000.3.1.aarch64.rpm liblz4-devel-1.10.0-160000.3.1.aarch64.rpm lz4-1.10.0-160000.3.1.aarch64.rpm lz4-1.10.0-160000.3.1.src.rpm lz4-debuginfo-1.10.0-160000.3.1.aarch64.rpm lz4-debugsource-1.10.0-160000.3.1.aarch64.rpm liblz4-1-1.10.0-160000.3.1.ppc64le.rpm liblz4-1-debuginfo-1.10.0-160000.3.1.ppc64le.rpm liblz4-devel-1.10.0-160000.3.1.ppc64le.rpm lz4-1.10.0-160000.3.1.ppc64le.rpm lz4-debuginfo-1.10.0-160000.3.1.ppc64le.rpm lz4-debugsource-1.10.0-160000.3.1.ppc64le.rpm liblz4-1-1.10.0-160000.3.1.s390x.rpm liblz4-1-debuginfo-1.10.0-160000.3.1.s390x.rpm liblz4-devel-1.10.0-160000.3.1.s390x.rpm lz4-1.10.0-160000.3.1.s390x.rpm lz4-debuginfo-1.10.0-160000.3.1.s390x.rpm lz4-debugsource-1.10.0-160000.3.1.s390x.rpm liblz4-1-1.10.0-160000.3.1.x86_64.rpm liblz4-1-debuginfo-1.10.0-160000.3.1.x86_64.rpm liblz4-1-x86-64-v3-1.10.0-160000.3.1.x86_64.rpm liblz4-1-x86-64-v3-debuginfo-1.10.0-160000.3.1.x86_64.rpm liblz4-devel-1.10.0-160000.3.1.x86_64.rpm lz4-1.10.0-160000.3.1.x86_64.rpm lz4-debuginfo-1.10.0-160000.3.1.x86_64.rpm lz4-debugsource-1.10.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-127 Security update for avahi moderate SUSE SLFO 1.2 This update for avahi fixes the following issues: - CVE-2024-52615: Fixed DNS spoofing (bsc#1233421) avahi-0.8-160000.3.1.aarch64.rpm avahi-0.8-160000.3.1.src.rpm avahi-autoipd-0.8-160000.3.1.aarch64.rpm avahi-autoipd-debuginfo-0.8-160000.3.1.aarch64.rpm avahi-compat-howl-devel-0.8-160000.3.1.aarch64.rpm avahi-compat-mDNSResponder-devel-0.8-160000.3.1.aarch64.rpm avahi-debuginfo-0.8-160000.3.1.aarch64.rpm avahi-debugsource-0.8-160000.3.1.aarch64.rpm avahi-lang-0.8-160000.3.1.noarch.rpm avahi-utils-0.8-160000.3.1.aarch64.rpm avahi-utils-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-client3-0.8-160000.3.1.aarch64.rpm libavahi-client3-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-common3-0.8-160000.3.1.aarch64.rpm libavahi-common3-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-core7-0.8-160000.3.1.aarch64.rpm libavahi-core7-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-devel-0.8-160000.3.1.aarch64.rpm libavahi-libevent1-0.8-160000.3.1.aarch64.rpm libavahi-libevent1-debuginfo-0.8-160000.3.1.aarch64.rpm libdns_sd-0.8-160000.3.1.aarch64.rpm libdns_sd-debuginfo-0.8-160000.3.1.aarch64.rpm libhowl0-0.8-160000.3.1.aarch64.rpm libhowl0-debuginfo-0.8-160000.3.1.aarch64.rpm python313-avahi-0.8-160000.3.1.aarch64.rpm avahi-qt6-0.8-160000.3.1.src.rpm avahi-qt6-debugsource-0.8-160000.3.1.aarch64.rpm libavahi-qt6-1-0.8-160000.3.1.aarch64.rpm libavahi-qt6-1-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-qt6-devel-0.8-160000.3.1.aarch64.rpm avahi-glib2-0.8-160000.3.1.src.rpm avahi-glib2-debugsource-0.8-160000.3.1.aarch64.rpm avahi-utils-gtk-0.8-160000.3.1.aarch64.rpm avahi-utils-gtk-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-glib-devel-0.8-160000.3.1.aarch64.rpm libavahi-glib1-0.8-160000.3.1.aarch64.rpm libavahi-glib1-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-gobject-devel-0.8-160000.3.1.aarch64.rpm libavahi-gobject0-0.8-160000.3.1.aarch64.rpm libavahi-gobject0-debuginfo-0.8-160000.3.1.aarch64.rpm libavahi-ui-gtk3-0-0.8-160000.3.1.aarch64.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.3.1.aarch64.rpm python3-avahi-gtk-0.8-160000.3.1.aarch64.rpm typelib-1_0-Avahi-0_6-0.8-160000.3.1.aarch64.rpm avahi-0.8-160000.3.1.ppc64le.rpm avahi-autoipd-0.8-160000.3.1.ppc64le.rpm avahi-autoipd-debuginfo-0.8-160000.3.1.ppc64le.rpm avahi-compat-howl-devel-0.8-160000.3.1.ppc64le.rpm avahi-compat-mDNSResponder-devel-0.8-160000.3.1.ppc64le.rpm avahi-debuginfo-0.8-160000.3.1.ppc64le.rpm avahi-debugsource-0.8-160000.3.1.ppc64le.rpm avahi-utils-0.8-160000.3.1.ppc64le.rpm avahi-utils-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-client3-0.8-160000.3.1.ppc64le.rpm libavahi-client3-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-common3-0.8-160000.3.1.ppc64le.rpm libavahi-common3-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-core7-0.8-160000.3.1.ppc64le.rpm libavahi-core7-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-devel-0.8-160000.3.1.ppc64le.rpm libavahi-libevent1-0.8-160000.3.1.ppc64le.rpm libavahi-libevent1-debuginfo-0.8-160000.3.1.ppc64le.rpm libdns_sd-0.8-160000.3.1.ppc64le.rpm libdns_sd-debuginfo-0.8-160000.3.1.ppc64le.rpm libhowl0-0.8-160000.3.1.ppc64le.rpm libhowl0-debuginfo-0.8-160000.3.1.ppc64le.rpm python313-avahi-0.8-160000.3.1.ppc64le.rpm avahi-qt6-debugsource-0.8-160000.3.1.ppc64le.rpm libavahi-qt6-1-0.8-160000.3.1.ppc64le.rpm libavahi-qt6-1-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-qt6-devel-0.8-160000.3.1.ppc64le.rpm avahi-glib2-debugsource-0.8-160000.3.1.ppc64le.rpm avahi-utils-gtk-0.8-160000.3.1.ppc64le.rpm avahi-utils-gtk-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-glib-devel-0.8-160000.3.1.ppc64le.rpm libavahi-glib1-0.8-160000.3.1.ppc64le.rpm libavahi-glib1-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-gobject-devel-0.8-160000.3.1.ppc64le.rpm libavahi-gobject0-0.8-160000.3.1.ppc64le.rpm libavahi-gobject0-debuginfo-0.8-160000.3.1.ppc64le.rpm libavahi-ui-gtk3-0-0.8-160000.3.1.ppc64le.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.3.1.ppc64le.rpm python3-avahi-gtk-0.8-160000.3.1.ppc64le.rpm typelib-1_0-Avahi-0_6-0.8-160000.3.1.ppc64le.rpm avahi-0.8-160000.3.1.s390x.rpm avahi-autoipd-0.8-160000.3.1.s390x.rpm avahi-autoipd-debuginfo-0.8-160000.3.1.s390x.rpm avahi-compat-howl-devel-0.8-160000.3.1.s390x.rpm avahi-compat-mDNSResponder-devel-0.8-160000.3.1.s390x.rpm avahi-debuginfo-0.8-160000.3.1.s390x.rpm avahi-debugsource-0.8-160000.3.1.s390x.rpm avahi-utils-0.8-160000.3.1.s390x.rpm avahi-utils-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-client3-0.8-160000.3.1.s390x.rpm libavahi-client3-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-common3-0.8-160000.3.1.s390x.rpm libavahi-common3-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-core7-0.8-160000.3.1.s390x.rpm libavahi-core7-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-devel-0.8-160000.3.1.s390x.rpm libavahi-libevent1-0.8-160000.3.1.s390x.rpm libavahi-libevent1-debuginfo-0.8-160000.3.1.s390x.rpm libdns_sd-0.8-160000.3.1.s390x.rpm libdns_sd-debuginfo-0.8-160000.3.1.s390x.rpm libhowl0-0.8-160000.3.1.s390x.rpm libhowl0-debuginfo-0.8-160000.3.1.s390x.rpm python313-avahi-0.8-160000.3.1.s390x.rpm avahi-qt6-debugsource-0.8-160000.3.1.s390x.rpm libavahi-qt6-1-0.8-160000.3.1.s390x.rpm libavahi-qt6-1-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-qt6-devel-0.8-160000.3.1.s390x.rpm avahi-glib2-debugsource-0.8-160000.3.1.s390x.rpm avahi-utils-gtk-0.8-160000.3.1.s390x.rpm avahi-utils-gtk-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-glib-devel-0.8-160000.3.1.s390x.rpm libavahi-glib1-0.8-160000.3.1.s390x.rpm libavahi-glib1-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-gobject-devel-0.8-160000.3.1.s390x.rpm libavahi-gobject0-0.8-160000.3.1.s390x.rpm libavahi-gobject0-debuginfo-0.8-160000.3.1.s390x.rpm libavahi-ui-gtk3-0-0.8-160000.3.1.s390x.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.3.1.s390x.rpm python3-avahi-gtk-0.8-160000.3.1.s390x.rpm typelib-1_0-Avahi-0_6-0.8-160000.3.1.s390x.rpm avahi-0.8-160000.3.1.x86_64.rpm avahi-autoipd-0.8-160000.3.1.x86_64.rpm avahi-autoipd-debuginfo-0.8-160000.3.1.x86_64.rpm avahi-compat-howl-devel-0.8-160000.3.1.x86_64.rpm avahi-compat-mDNSResponder-devel-0.8-160000.3.1.x86_64.rpm avahi-debuginfo-0.8-160000.3.1.x86_64.rpm avahi-debugsource-0.8-160000.3.1.x86_64.rpm avahi-utils-0.8-160000.3.1.x86_64.rpm avahi-utils-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-client3-0.8-160000.3.1.x86_64.rpm libavahi-client3-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-common3-0.8-160000.3.1.x86_64.rpm libavahi-common3-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-core7-0.8-160000.3.1.x86_64.rpm libavahi-core7-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-devel-0.8-160000.3.1.x86_64.rpm libavahi-libevent1-0.8-160000.3.1.x86_64.rpm libavahi-libevent1-debuginfo-0.8-160000.3.1.x86_64.rpm libdns_sd-0.8-160000.3.1.x86_64.rpm libdns_sd-debuginfo-0.8-160000.3.1.x86_64.rpm libhowl0-0.8-160000.3.1.x86_64.rpm libhowl0-debuginfo-0.8-160000.3.1.x86_64.rpm python313-avahi-0.8-160000.3.1.x86_64.rpm avahi-qt6-debugsource-0.8-160000.3.1.x86_64.rpm libavahi-qt6-1-0.8-160000.3.1.x86_64.rpm libavahi-qt6-1-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-qt6-devel-0.8-160000.3.1.x86_64.rpm avahi-glib2-debugsource-0.8-160000.3.1.x86_64.rpm avahi-utils-gtk-0.8-160000.3.1.x86_64.rpm avahi-utils-gtk-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-glib-devel-0.8-160000.3.1.x86_64.rpm libavahi-glib1-0.8-160000.3.1.x86_64.rpm libavahi-glib1-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-gobject-devel-0.8-160000.3.1.x86_64.rpm libavahi-gobject0-0.8-160000.3.1.x86_64.rpm libavahi-gobject0-debuginfo-0.8-160000.3.1.x86_64.rpm libavahi-ui-gtk3-0-0.8-160000.3.1.x86_64.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.3.1.x86_64.rpm python3-avahi-gtk-0.8-160000.3.1.x86_64.rpm typelib-1_0-Avahi-0_6-0.8-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-128 Security update for MozillaFirefox important SUSE SLFO 1.2 This update for MozillaFirefox fixes the following issues: Changes in MozillaFirefox: Firefox Extended Support Release 140.6.0 ESR was released: * Fixed: Various security fixes. MFSA 2025-94 (bsc#1254551): * CVE-2025-14321: Use-after-free in the WebRTC: Signaling component * CVE-2025-14322: Sandbox escape due to incorrect boundary conditions in the Graphics: CanvasWebGL component * CVE-2025-14323: Privilege escalation in the DOM: Notifications component * CVE-2025-14324: JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14325: JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14328: Privilege escalation in the Netmonitor component * CVE-2025-14329: Privilege escalation in the Netmonitor component * CVE-2025-14330: JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14331: Same-origin policy bypass in the Request Handling component * CVE-2025-14333: Memory safety bugs fixed in Firefox ESR 140.6, Thunderbird ESR 140.6, Firefox 146 and Thunderbird 146 MozillaFirefox-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-140.6.0-160000.1.1.src.rpm MozillaFirefox-branding-upstream-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-debuginfo-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-debugsource-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-devel-140.6.0-160000.1.1.noarch.rpm MozillaFirefox-translations-common-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-translations-other-140.6.0-160000.1.1.aarch64.rpm MozillaFirefox-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-branding-upstream-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-debuginfo-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-debugsource-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-common-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-other-140.6.0-160000.1.1.ppc64le.rpm MozillaFirefox-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-branding-upstream-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-debuginfo-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-debugsource-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-translations-common-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-translations-other-140.6.0-160000.1.1.s390x.rpm MozillaFirefox-140.6.0-160000.1.1.x86_64.rpm MozillaFirefox-branding-upstream-140.6.0-160000.1.1.x86_64.rpm MozillaFirefox-debuginfo-140.6.0-160000.1.1.x86_64.rpm MozillaFirefox-debugsource-140.6.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-common-140.6.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-other-140.6.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-129 Security update for python-tornado6 important SUSE SLFO 1.2 This update for python-tornado6 fixes the following issues: - CVE-2025-67724: unescaped `reason` argument used in HTTP headers and in HTML default error pages can be used by attackers to launch header injection or XSS attacks (bsc#1254903). - CVE-2025-67725: quadratic complexity of string concatenation operations used by the `HTTPHeaders.add` method can lead o DoS when processing a maliciously crafted HTTP request (bsc#1254905). - CVE-2025-67726: quadratic complexity algorithm used in the `_parseparam` function of `httputil.py` can lead to DoS when processing maliciously crafted parameters in a `Content-Disposition` header (bsc#1254904). python-tornado6-6.5-160000.3.1.src.rpm python-tornado6-debugsource-6.5-160000.3.1.aarch64.rpm python313-tornado6-6.5-160000.3.1.aarch64.rpm python313-tornado6-debuginfo-6.5-160000.3.1.aarch64.rpm python-tornado6-debugsource-6.5-160000.3.1.ppc64le.rpm python313-tornado6-6.5-160000.3.1.ppc64le.rpm python313-tornado6-debuginfo-6.5-160000.3.1.ppc64le.rpm python-tornado6-debugsource-6.5-160000.3.1.s390x.rpm python313-tornado6-6.5-160000.3.1.s390x.rpm python313-tornado6-debuginfo-6.5-160000.3.1.s390x.rpm python-tornado6-debugsource-6.5-160000.3.1.x86_64.rpm python313-tornado6-6.5-160000.3.1.x86_64.rpm python313-tornado6-debuginfo-6.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-13 Recommended update for rust-bindgen moderate SUSE SLFO 1.2 This update for rust-bindgen fixes the following issues: Update to version 0.71.1: * Unbreak shell completion and --version without header * Add version field to `bindgen` as a dependency * docs(book): fix inconsistent use of Clang versions * docs(book): fix package name for the extra Clang tools * Use `KyleMayes/install-llvm-action` to install LLVM * Use `macos-latest` on CI * Fix regression spotted at #3027 * Bless all the tests * Update the `--merge-extern-blocks` tests * Test the `unsafe_extern_blocks` feature * Add support for unsafe extern blocks * Fix some markdown * Expose the name of the inner type of an alias * Add FieldInfo::field_type_name * Wrap the array representation of opaque types in a #[repr(C)] struct * example test for item discovery callback (new_item_found) * expose discovered composite types and aliases to parse callbacks * Improve debug str generator * Fix `manual_let_else` and `single_match_else` lint * Fix `explicit_iter_loop` lint * Fix `if_not_else` lint * Fix `map_unwrap_or` lint * Fix `cast_lossless` lint * Fix a lot of `unused_qualifications` lints * Bump some dependencies * Consolidate clippy configuration * automate MSRV in CI * consolidate versions in one place * sort dependencies * Linting semicolons * Inline more format args, spelink * Applied clippy cloned->copied, and cleanup * Make RustEdition public * Test the `literal_cstr` feature with different editions * Add support for edition 2024 * Introduce `--rust-edition` * Make nightly target compatible with every other target * Use `Display` for `Builder::generate` errors * Clippify, and hide some lints in test output * Inline format args * Use v2 cargo resolver * a few more lints * avoid compiler warning * Automatic support for C-String literals * Bump to 2021 edition * Update the help message for `--rust-target` * Ignore the `layout.h` test * Make clippy happy :) * Remove deprecated targets * Add constructors to `RustTarget` * Represent Rust versions with integers * Make `RustTarget` parsing more permissive * Recognize inline namespaces using clang's dedicated API for that * Add test of macro-generated inline namespace * Install libtinfo5 from jammy-updates * Add `raw_ref_macros` feature * Handle version and shell completions * Let clap handle missing headers * abstract away the control-flow for applying args * delete duplicated default logic for `--anon-fields-prefix` * Formatted `CONTRIBUTING.md`. - Passes `markdownlint` (mostly) - Removed `$` from shell instructions, as to be more copy/paste friendly - Annotated code-like things with backticks. - Annotated all shell blocks with `sh` to format nicely on GitHub.com. * make `RegexSet` non-public * Move CLI options to `bindgen` * Set edition for `bindgen-integration` * Use workspace inheritance for dependencies * Changelog: Move --with-attribute-custom to unreleased * Restrict release workflow to pushes * Use `field_visibility` callback for new-type aliases * Wrap __library.get calls for variables if wrap_unsafe_ops * Add test showing bad behavior for non-functions * Wrap libloading::Library::new call in unsafe if --wrap-unsafe-ops * update small typo * Docs: Fix example code error * Require libclang 9.0 or newer Adds a check for the loaded libclang version and logs a warning if the version is unsupported. * Add additional helpers to bitfield data structure * Update CHANGELOG.md * Stabilize `--wrap-static-fns` * Update CHANGELOG.md * Use `\r\n\r\n` on Windows * Add support for custom attributes * update to use annotate-snippets 0.11.4 * update to annotate-snippets 0.10.2 * ir: Dig into atomic types. * Explain how to generate documentation for system headers * Only publish on crates.io if the workflow event is called `'Release'` * Update cargo-dist config rust-bindgen-0.71.1-160000.1.1.aarch64.rpm rust-bindgen-0.71.1-160000.1.1.src.rpm rust-bindgen-debuginfo-0.71.1-160000.1.1.aarch64.rpm rust-bindgen-debugsource-0.71.1-160000.1.1.aarch64.rpm rust-bindgen-0.71.1-160000.1.1.ppc64le.rpm rust-bindgen-debuginfo-0.71.1-160000.1.1.ppc64le.rpm rust-bindgen-debugsource-0.71.1-160000.1.1.ppc64le.rpm rust-bindgen-0.71.1-160000.1.1.s390x.rpm rust-bindgen-debuginfo-0.71.1-160000.1.1.s390x.rpm rust-bindgen-debugsource-0.71.1-160000.1.1.s390x.rpm rust-bindgen-0.71.1-160000.1.1.x86_64.rpm rust-bindgen-debuginfo-0.71.1-160000.1.1.x86_64.rpm rust-bindgen-debugsource-0.71.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-130 Security update for libmicrohttpd important SUSE SLFO 1.2 This update for libmicrohttpd fixes the following issues: - CVE-2025-62689: Fixed heap-based buffer overflow through a specially crafted packet (bsc#1253178) - CVE-2025-59777: Fixed NULL pointer dereference through a specially crafted packet (bsc#1253177) libmicrohttpd-1.0.1-160000.3.1.src.rpm libmicrohttpd-debugsource-1.0.1-160000.3.1.aarch64.rpm libmicrohttpd-devel-1.0.1-160000.3.1.aarch64.rpm libmicrohttpd12-1.0.1-160000.3.1.aarch64.rpm libmicrohttpd12-debuginfo-1.0.1-160000.3.1.aarch64.rpm libmicrohttpd-debugsource-1.0.1-160000.3.1.ppc64le.rpm libmicrohttpd-devel-1.0.1-160000.3.1.ppc64le.rpm libmicrohttpd12-1.0.1-160000.3.1.ppc64le.rpm libmicrohttpd12-debuginfo-1.0.1-160000.3.1.ppc64le.rpm libmicrohttpd-debugsource-1.0.1-160000.3.1.s390x.rpm libmicrohttpd-devel-1.0.1-160000.3.1.s390x.rpm libmicrohttpd12-1.0.1-160000.3.1.s390x.rpm libmicrohttpd12-debuginfo-1.0.1-160000.3.1.s390x.rpm libmicrohttpd-debugsource-1.0.1-160000.3.1.x86_64.rpm libmicrohttpd-devel-1.0.1-160000.3.1.x86_64.rpm libmicrohttpd12-1.0.1-160000.3.1.x86_64.rpm libmicrohttpd12-debuginfo-1.0.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-131 Security update for libpng16 important SUSE SLFO 1.2 This update for libpng16 fixes the following issues: - CVE-2025-64505: heap buffer over-read in `png_do_quantize` when processing PNG files malformed palette indices (bsc#1254157). - CVE-2025-64506: heap buffer over-read in `png_write_image_8bit` when processing 8-bit input with `convert_to_8bit` enabled (bsc#1254158). - CVE-2025-64720: out-of-bounds read in `png_image_read_composite` when processing palette images with `PNG_FLAG_OPTIMIZE_ALPHA` enabled (bsc#1254159). - CVE-2025-65018: heap buffer overflow in `png_image_finish_read` when processing specially crafted 16-bit interlaced PNGs with 8-bit output format (bsc#1254160). - CVE-2025-66293: out-of-bounds read of the `png_sRGB_base` array when processing palette PNG images with partial transparency and gamma correction (bsc#1254480). libpng16-1.6.44-160000.3.1.src.rpm libpng16-16-1.6.44-160000.3.1.aarch64.rpm libpng16-16-debuginfo-1.6.44-160000.3.1.aarch64.rpm libpng16-compat-devel-1.6.44-160000.3.1.aarch64.rpm libpng16-debugsource-1.6.44-160000.3.1.aarch64.rpm libpng16-devel-1.6.44-160000.3.1.aarch64.rpm libpng16-tools-1.6.44-160000.3.1.aarch64.rpm libpng16-tools-debuginfo-1.6.44-160000.3.1.aarch64.rpm libpng16-16-1.6.44-160000.3.1.ppc64le.rpm libpng16-16-debuginfo-1.6.44-160000.3.1.ppc64le.rpm libpng16-compat-devel-1.6.44-160000.3.1.ppc64le.rpm libpng16-debugsource-1.6.44-160000.3.1.ppc64le.rpm libpng16-devel-1.6.44-160000.3.1.ppc64le.rpm libpng16-tools-1.6.44-160000.3.1.ppc64le.rpm libpng16-tools-debuginfo-1.6.44-160000.3.1.ppc64le.rpm libpng16-16-1.6.44-160000.3.1.s390x.rpm libpng16-16-debuginfo-1.6.44-160000.3.1.s390x.rpm libpng16-compat-devel-1.6.44-160000.3.1.s390x.rpm libpng16-debugsource-1.6.44-160000.3.1.s390x.rpm libpng16-devel-1.6.44-160000.3.1.s390x.rpm libpng16-tools-1.6.44-160000.3.1.s390x.rpm libpng16-tools-debuginfo-1.6.44-160000.3.1.s390x.rpm libpng16-16-1.6.44-160000.3.1.x86_64.rpm libpng16-16-debuginfo-1.6.44-160000.3.1.x86_64.rpm libpng16-16-x86-64-v3-1.6.44-160000.3.1.x86_64.rpm libpng16-16-x86-64-v3-debuginfo-1.6.44-160000.3.1.x86_64.rpm libpng16-compat-devel-1.6.44-160000.3.1.x86_64.rpm libpng16-compat-devel-x86-64-v3-1.6.44-160000.3.1.x86_64.rpm libpng16-debugsource-1.6.44-160000.3.1.x86_64.rpm libpng16-devel-1.6.44-160000.3.1.x86_64.rpm libpng16-devel-x86-64-v3-1.6.44-160000.3.1.x86_64.rpm libpng16-tools-1.6.44-160000.3.1.x86_64.rpm libpng16-tools-debuginfo-1.6.44-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-132 Security update for glib2 important SUSE SLFO 1.2 This update for glib2 fixes the following issues: Update to version 2.84.4. Security issues fixed: - CVE-2025-14512: integer overflow in the GIO `escape_byte_string()` function when processing malicious files or remote filesystem attribute values can lead to denial-of-service (bsc#1254878). - CVE-2025-14087: buffer underflow in the GVariant parser `bytestring_parse()` and `string_parse()` functions when processing attacker-influenced data may lead to crash or code execution (bsc#1254662). - CVE-2025-13601: heap-based buffer overflow in the `g_escape_uri_string()` function when processing strings with a large number of unacceptable characters may lead to crash or code execution (bsc#1254297). - CVE-2025-7039: integer overflow when creating temporary files may lead to an out-of-bounds memory access that can be used for path traversal or exposure of sensitive content in a temporary file (bsc#1249055). Other issues fixed and changes: - Fix GFile leak in `g_local_file_set_display_name` during error handling. - Fix incorrect output parameter handling in closure helper of `g_settings_bind_with_mapping_closures`. - `gfileutils`: fix computation of temporary file name. - Fix GFile leak in `g_local_file_set_display_name()`. - `gthreadpool`: catch `pool_spawner` creation failure. - `gio/filenamecompleter`: fix leaks. - `gfilenamecompleter`: fix `g_object_unref()` of undefined value. gio-branding-upstream-2.84.4-160000.1.1.noarch.rpm glib2-2.84.4-160000.1.1.src.rpm glib2-debugsource-2.84.4-160000.1.1.aarch64.rpm glib2-devel-2.84.4-160000.1.1.aarch64.rpm glib2-devel-debuginfo-2.84.4-160000.1.1.aarch64.rpm glib2-devel-static-2.84.4-160000.1.1.aarch64.rpm glib2-lang-2.84.4-160000.1.1.noarch.rpm glib2-tests-devel-2.84.4-160000.1.1.aarch64.rpm glib2-tests-devel-debuginfo-2.84.4-160000.1.1.aarch64.rpm glib2-tools-2.84.4-160000.1.1.aarch64.rpm glib2-tools-debuginfo-2.84.4-160000.1.1.aarch64.rpm libgio-2_0-0-2.84.4-160000.1.1.aarch64.rpm libgio-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm libgirepository-2_0-0-2.84.4-160000.1.1.aarch64.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm libglib-2_0-0-2.84.4-160000.1.1.aarch64.rpm libglib-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm libgmodule-2_0-0-2.84.4-160000.1.1.aarch64.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm libgobject-2_0-0-2.84.4-160000.1.1.aarch64.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm libgthread-2_0-0-2.84.4-160000.1.1.aarch64.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-GLib-2_0-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-GModule-2_0-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-GObject-2_0-2.84.4-160000.1.1.aarch64.rpm typelib-1_0-Gio-2_0-2.84.4-160000.1.1.aarch64.rpm glib2-doc-2.84.4-160000.1.1.aarch64.rpm glib2-doc-2.84.4-160000.1.1.src.rpm glib2-debugsource-2.84.4-160000.1.1.ppc64le.rpm glib2-devel-2.84.4-160000.1.1.ppc64le.rpm glib2-devel-debuginfo-2.84.4-160000.1.1.ppc64le.rpm glib2-devel-static-2.84.4-160000.1.1.ppc64le.rpm glib2-tests-devel-2.84.4-160000.1.1.ppc64le.rpm glib2-tests-devel-debuginfo-2.84.4-160000.1.1.ppc64le.rpm glib2-tools-2.84.4-160000.1.1.ppc64le.rpm glib2-tools-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libgio-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libgio-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libgirepository-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libglib-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libglib-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libgmodule-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libgobject-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm libgthread-2_0-0-2.84.4-160000.1.1.ppc64le.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-GLib-2_0-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-GModule-2_0-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-GObject-2_0-2.84.4-160000.1.1.ppc64le.rpm typelib-1_0-Gio-2_0-2.84.4-160000.1.1.ppc64le.rpm glib2-doc-2.84.4-160000.1.1.ppc64le.rpm glib2-debugsource-2.84.4-160000.1.1.s390x.rpm glib2-devel-2.84.4-160000.1.1.s390x.rpm glib2-devel-debuginfo-2.84.4-160000.1.1.s390x.rpm glib2-devel-static-2.84.4-160000.1.1.s390x.rpm glib2-tests-devel-2.84.4-160000.1.1.s390x.rpm glib2-tests-devel-debuginfo-2.84.4-160000.1.1.s390x.rpm glib2-tools-2.84.4-160000.1.1.s390x.rpm glib2-tools-debuginfo-2.84.4-160000.1.1.s390x.rpm libgio-2_0-0-2.84.4-160000.1.1.s390x.rpm libgio-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm libgirepository-2_0-0-2.84.4-160000.1.1.s390x.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm libglib-2_0-0-2.84.4-160000.1.1.s390x.rpm libglib-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm libgmodule-2_0-0-2.84.4-160000.1.1.s390x.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm libgobject-2_0-0-2.84.4-160000.1.1.s390x.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm libgthread-2_0-0-2.84.4-160000.1.1.s390x.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.1.1.s390x.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.1.1.s390x.rpm typelib-1_0-GLib-2_0-2.84.4-160000.1.1.s390x.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.1.1.s390x.rpm typelib-1_0-GModule-2_0-2.84.4-160000.1.1.s390x.rpm typelib-1_0-GObject-2_0-2.84.4-160000.1.1.s390x.rpm typelib-1_0-Gio-2_0-2.84.4-160000.1.1.s390x.rpm glib2-doc-2.84.4-160000.1.1.s390x.rpm glib2-debugsource-2.84.4-160000.1.1.x86_64.rpm glib2-devel-2.84.4-160000.1.1.x86_64.rpm glib2-devel-debuginfo-2.84.4-160000.1.1.x86_64.rpm glib2-devel-static-2.84.4-160000.1.1.x86_64.rpm glib2-tests-devel-2.84.4-160000.1.1.x86_64.rpm glib2-tests-devel-debuginfo-2.84.4-160000.1.1.x86_64.rpm glib2-tools-2.84.4-160000.1.1.x86_64.rpm glib2-tools-debuginfo-2.84.4-160000.1.1.x86_64.rpm libgio-2_0-0-2.84.4-160000.1.1.x86_64.rpm libgio-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm libgirepository-2_0-0-2.84.4-160000.1.1.x86_64.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm libglib-2_0-0-2.84.4-160000.1.1.x86_64.rpm libglib-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm libgmodule-2_0-0-2.84.4-160000.1.1.x86_64.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm libgobject-2_0-0-2.84.4-160000.1.1.x86_64.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm libgthread-2_0-0-2.84.4-160000.1.1.x86_64.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-GLib-2_0-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-GModule-2_0-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-GObject-2_0-2.84.4-160000.1.1.x86_64.rpm typelib-1_0-Gio-2_0-2.84.4-160000.1.1.x86_64.rpm glib2-doc-2.84.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-133 Recommended update for virt-manager important SUSE SLFO 1.2 This update for virt-manager fixes the following issues: - Unable to create an SEV-SNP enabled guest with virt-manager This simplifies the code from what used to be required for sev while adding initial tdx support (bsc#1252105). - Add support for creating TDX guests in virt-install (jsc#PED-9265) virt-install-5.0.0-160000.4.1.noarch.rpm virt-manager-5.0.0-160000.4.1.noarch.rpm virt-manager-5.0.0-160000.4.1.src.rpm virt-manager-common-5.0.0-160000.4.1.noarch.rpm openSUSE-Leap-16.0-134 Security update for hawk2 important SUSE SLFO 1.2 This update for hawk2 fixes the following issues: - Bump ruby gem rack to 3.1.18 (bsc#1251939). - Bump ruby gem uri to 1.0.4. - Fix the mtime in manifest.json (bsc#1230275). - Make builds determinitstic (bsc#1230275). - Bump rails version from 8.0.2 to 8.0.2.1 (bsc#1248100). - Require openssl explicitly (bsc#1247899). hawk2-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.aarch64.rpm hawk2-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.src.rpm hawk2-debuginfo-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.aarch64.rpm hawk2-debugsource-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.aarch64.rpm hawk2-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.ppc64le.rpm hawk2-debuginfo-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.ppc64le.rpm hawk2-debugsource-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.ppc64le.rpm hawk2-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.s390x.rpm hawk2-debuginfo-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.s390x.rpm hawk2-debugsource-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.s390x.rpm hawk2-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.x86_64.rpm hawk2-debuginfo-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.x86_64.rpm hawk2-debugsource-2.7.0+git.1742310530.bfcd0e2c-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-135 Security update for python-uv important SUSE SLFO 1.2 This update for python-uv fixes the following issues: - CVE-2025-62518: astral-tokio-tar: Fixed boundary parsing issue allowing attackers to smuggle additional archive entries (bsc#1252399) - CVE-2025-58160: tracing-subscriber: Fixed log pollution (bsc#1249011) python-uv-0.7.18-160000.3.1.src.rpm python-uv-debugsource-0.7.18-160000.3.1.aarch64.rpm python313-uv-0.7.18-160000.3.1.aarch64.rpm python313-uv-bash-completion-0.7.18-160000.3.1.noarch.rpm python313-uv-debuginfo-0.7.18-160000.3.1.aarch64.rpm python313-uv-fish-completion-0.7.18-160000.3.1.noarch.rpm python313-uv-zsh-completion-0.7.18-160000.3.1.noarch.rpm python-uv-debugsource-0.7.18-160000.3.1.ppc64le.rpm python313-uv-0.7.18-160000.3.1.ppc64le.rpm python313-uv-debuginfo-0.7.18-160000.3.1.ppc64le.rpm python-uv-debugsource-0.7.18-160000.3.1.s390x.rpm python313-uv-0.7.18-160000.3.1.s390x.rpm python313-uv-debuginfo-0.7.18-160000.3.1.s390x.rpm python-uv-debugsource-0.7.18-160000.3.1.x86_64.rpm python313-uv-0.7.18-160000.3.1.x86_64.rpm python313-uv-debuginfo-0.7.18-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-136 Security update for squid important SUSE SLFO 1.2 This update for squid fixes the following issues: - CVE-2025-62168: failure to redact HTTP authentication credentials in error handling leads to the disclosure of credentials a trusted client uses to authenticate (bsc#1252281). - CVE-2025-59362: SNMP message processing component of Squid Cache can lead to stack-based buffer overflow (bsc#1250627). squid-6.12-160000.3.1.aarch64.rpm squid-6.12-160000.3.1.src.rpm squid-debuginfo-6.12-160000.3.1.aarch64.rpm squid-debugsource-6.12-160000.3.1.aarch64.rpm squid-6.12-160000.3.1.ppc64le.rpm squid-debuginfo-6.12-160000.3.1.ppc64le.rpm squid-debugsource-6.12-160000.3.1.ppc64le.rpm squid-6.12-160000.3.1.s390x.rpm squid-debuginfo-6.12-160000.3.1.s390x.rpm squid-debugsource-6.12-160000.3.1.s390x.rpm squid-6.12-160000.3.1.x86_64.rpm squid-debuginfo-6.12-160000.3.1.x86_64.rpm squid-debugsource-6.12-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-137 Recommended update for hyper-v moderate SUSE SLFO 1.2 This update for hyper-v fixes the following issues: - fcopy: Fix irregularities with size of ring buffer - fcopy: Fix incorrect file path conversion - enable debug logs for hv_kvp_daemon (bsc#1244154) - update route parsing in kvp daemon - reduce resource usage in hv_kvp_daemon - reduce resouce usage in hv_get_dns_info helper - hv_kvp_daemon: Pass NIC name to hv_get_dns_info as well - terminate fcopy daemon if read from uio fails - change permissions of NetworkManager configuration file - fix a complier warning in the fcopy uio daemon - remove obsolete kvptest.ps1.txt which failed since a decade - remove obsolete rpm postinstall code for SLE11SP2 hyper-v-9-160000.3.1.aarch64.rpm hyper-v-9-160000.3.1.src.rpm hyper-v-debuginfo-9-160000.3.1.aarch64.rpm hyper-v-debugsource-9-160000.3.1.aarch64.rpm hyper-v-9-160000.3.1.x86_64.rpm hyper-v-debuginfo-9-160000.3.1.x86_64.rpm hyper-v-debugsource-9-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-138 Security update for gpg2 important SUSE SLFO 1.2 This update for gpg2 fixes the following issues: - CVE-2025-68973: out-of-bounds write when processing specially crafted input in the armor parser can lead to memory corruption (bsc#1255715). Other security fixes: - gpg: Avoid potential downgrade to SHA1 in 3rd party key signatures (bsc#1256246). - gpg: Error out on unverified output for non-detached signatures (bsc#1256244). - gpg: Deprecate the option --not-dash-escaped (bsc#1256390). dirmngr-2.5.5-160000.3.1.aarch64.rpm dirmngr-debuginfo-2.5.5-160000.3.1.aarch64.rpm gpg2-2.5.5-160000.3.1.aarch64.rpm gpg2-2.5.5-160000.3.1.src.rpm gpg2-debuginfo-2.5.5-160000.3.1.aarch64.rpm gpg2-debugsource-2.5.5-160000.3.1.aarch64.rpm gpg2-lang-2.5.5-160000.3.1.noarch.rpm gpg2-tpm-2.5.5-160000.3.1.aarch64.rpm gpg2-tpm-debuginfo-2.5.5-160000.3.1.aarch64.rpm dirmngr-2.5.5-160000.3.1.ppc64le.rpm dirmngr-debuginfo-2.5.5-160000.3.1.ppc64le.rpm gpg2-2.5.5-160000.3.1.ppc64le.rpm gpg2-debuginfo-2.5.5-160000.3.1.ppc64le.rpm gpg2-debugsource-2.5.5-160000.3.1.ppc64le.rpm gpg2-tpm-2.5.5-160000.3.1.ppc64le.rpm gpg2-tpm-debuginfo-2.5.5-160000.3.1.ppc64le.rpm dirmngr-2.5.5-160000.3.1.s390x.rpm dirmngr-debuginfo-2.5.5-160000.3.1.s390x.rpm gpg2-2.5.5-160000.3.1.s390x.rpm gpg2-debuginfo-2.5.5-160000.3.1.s390x.rpm gpg2-debugsource-2.5.5-160000.3.1.s390x.rpm gpg2-tpm-2.5.5-160000.3.1.s390x.rpm gpg2-tpm-debuginfo-2.5.5-160000.3.1.s390x.rpm dirmngr-2.5.5-160000.3.1.x86_64.rpm dirmngr-debuginfo-2.5.5-160000.3.1.x86_64.rpm gpg2-2.5.5-160000.3.1.x86_64.rpm gpg2-debuginfo-2.5.5-160000.3.1.x86_64.rpm gpg2-debugsource-2.5.5-160000.3.1.x86_64.rpm gpg2-tpm-2.5.5-160000.3.1.x86_64.rpm gpg2-tpm-debuginfo-2.5.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-139 Security update for apache2 moderate SUSE SLFO 1.2 This update for apache2 fixes the following issues: - CVE-2025-55753: Fixed mod_md (ACME), unintended retry intervals (bsc#1254511) - CVE-2025-58098: Fixed Server Side Includes adds query string to #exec cmd (bsc#1254512) - CVE-2025-65082: Fixed CGI environment variable override (bsc#1254514) - CVE-2025-66200: Fixed mod_userdir+suexec bypass via AllowOverride FileInfo (bsc#1254515) apache2-2.4.63-160000.3.1.aarch64.rpm apache2-2.4.63-160000.3.1.src.rpm apache2-debuginfo-2.4.63-160000.3.1.aarch64.rpm apache2-debugsource-2.4.63-160000.3.1.aarch64.rpm apache2-event-2.4.63-160000.3.1.aarch64.rpm apache2-event-2.4.63-160000.3.1.src.rpm apache2-event-debuginfo-2.4.63-160000.3.1.aarch64.rpm apache2-event-debugsource-2.4.63-160000.3.1.aarch64.rpm apache2-worker-2.4.63-160000.3.1.aarch64.rpm apache2-worker-2.4.63-160000.3.1.src.rpm apache2-worker-debuginfo-2.4.63-160000.3.1.aarch64.rpm apache2-worker-debugsource-2.4.63-160000.3.1.aarch64.rpm apache2-prefork-2.4.63-160000.3.1.aarch64.rpm apache2-prefork-2.4.63-160000.3.1.src.rpm apache2-prefork-debuginfo-2.4.63-160000.3.1.aarch64.rpm apache2-prefork-debugsource-2.4.63-160000.3.1.aarch64.rpm apache2-utils-2.4.63-160000.3.1.aarch64.rpm apache2-utils-2.4.63-160000.3.1.src.rpm apache2-utils-debuginfo-2.4.63-160000.3.1.aarch64.rpm apache2-utils-debugsource-2.4.63-160000.3.1.aarch64.rpm apache2-devel-2.4.63-160000.3.1.aarch64.rpm apache2-devel-2.4.63-160000.3.1.src.rpm apache2-manual-2.4.63-160000.3.1.noarch.rpm apache2-manual-2.4.63-160000.3.1.src.rpm apache2-2.4.63-160000.3.1.ppc64le.rpm apache2-debuginfo-2.4.63-160000.3.1.ppc64le.rpm apache2-debugsource-2.4.63-160000.3.1.ppc64le.rpm apache2-event-2.4.63-160000.3.1.ppc64le.rpm apache2-event-debuginfo-2.4.63-160000.3.1.ppc64le.rpm apache2-event-debugsource-2.4.63-160000.3.1.ppc64le.rpm apache2-worker-2.4.63-160000.3.1.ppc64le.rpm apache2-worker-debuginfo-2.4.63-160000.3.1.ppc64le.rpm apache2-worker-debugsource-2.4.63-160000.3.1.ppc64le.rpm apache2-prefork-2.4.63-160000.3.1.ppc64le.rpm apache2-prefork-debuginfo-2.4.63-160000.3.1.ppc64le.rpm apache2-prefork-debugsource-2.4.63-160000.3.1.ppc64le.rpm apache2-utils-2.4.63-160000.3.1.ppc64le.rpm apache2-utils-debuginfo-2.4.63-160000.3.1.ppc64le.rpm apache2-utils-debugsource-2.4.63-160000.3.1.ppc64le.rpm apache2-devel-2.4.63-160000.3.1.ppc64le.rpm apache2-2.4.63-160000.3.1.s390x.rpm apache2-debuginfo-2.4.63-160000.3.1.s390x.rpm apache2-debugsource-2.4.63-160000.3.1.s390x.rpm apache2-event-2.4.63-160000.3.1.s390x.rpm apache2-event-debuginfo-2.4.63-160000.3.1.s390x.rpm apache2-event-debugsource-2.4.63-160000.3.1.s390x.rpm apache2-worker-2.4.63-160000.3.1.s390x.rpm apache2-worker-debuginfo-2.4.63-160000.3.1.s390x.rpm apache2-worker-debugsource-2.4.63-160000.3.1.s390x.rpm apache2-prefork-2.4.63-160000.3.1.s390x.rpm apache2-prefork-debuginfo-2.4.63-160000.3.1.s390x.rpm apache2-prefork-debugsource-2.4.63-160000.3.1.s390x.rpm apache2-utils-2.4.63-160000.3.1.s390x.rpm apache2-utils-debuginfo-2.4.63-160000.3.1.s390x.rpm apache2-utils-debugsource-2.4.63-160000.3.1.s390x.rpm apache2-devel-2.4.63-160000.3.1.s390x.rpm apache2-2.4.63-160000.3.1.x86_64.rpm apache2-debuginfo-2.4.63-160000.3.1.x86_64.rpm apache2-debugsource-2.4.63-160000.3.1.x86_64.rpm apache2-event-2.4.63-160000.3.1.x86_64.rpm apache2-event-debuginfo-2.4.63-160000.3.1.x86_64.rpm apache2-event-debugsource-2.4.63-160000.3.1.x86_64.rpm apache2-worker-2.4.63-160000.3.1.x86_64.rpm apache2-worker-debuginfo-2.4.63-160000.3.1.x86_64.rpm apache2-worker-debugsource-2.4.63-160000.3.1.x86_64.rpm apache2-prefork-2.4.63-160000.3.1.x86_64.rpm apache2-prefork-debuginfo-2.4.63-160000.3.1.x86_64.rpm apache2-prefork-debugsource-2.4.63-160000.3.1.x86_64.rpm apache2-utils-2.4.63-160000.3.1.x86_64.rpm apache2-utils-debuginfo-2.4.63-160000.3.1.x86_64.rpm apache2-utils-debugsource-2.4.63-160000.3.1.x86_64.rpm apache2-devel-2.4.63-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-14 Recommended update for agama-products, agama-web-ui, agama, rubygem-agama-yast moderate SUSE SLFO 1.2 This update for agama-products, agama-web-ui, agama, rubygem-agama-yast fixes the following issues: Changes in agama-web-ui: - Use the JavaScript/TypeScript parser to extract strings for translation - Preserve installer options values after successful submission (bsc#1249636). - Fixed the check about which DASDs can be formatted (bsc#1243795). Changes in agama: - Do not log errors when retrieving NetworkManager secrets to prevent leaking them (bsc#1251898). Changes in rubygem-agama-yast: - Fixed an error in the calculation of partitions when several MD RAIDs are created (bsc#1253145). agama-products-17+427.52990b794-160000.5.1.src.rpm agama-products-opensuse-17+427.52990b794-160000.5.1.noarch.rpm agama-products-sle-17+427.52990b794-160000.5.1.noarch.rpm agama-web-ui-17+430.2f49499cf-160000.8.1.noarch.rpm agama-web-ui-17+430.2f49499cf-160000.8.1.src.rpm agama-17+427.52990b794-160000.6.1.aarch64.rpm agama-17+427.52990b794-160000.6.1.src.rpm agama-autoinstall-17+427.52990b794-160000.6.1.aarch64.rpm agama-autoinstall-debuginfo-17+427.52990b794-160000.6.1.aarch64.rpm agama-cli-17+427.52990b794-160000.6.1.aarch64.rpm agama-cli-bash-completion-17+427.52990b794-160000.6.1.noarch.rpm agama-cli-debuginfo-17+427.52990b794-160000.6.1.aarch64.rpm agama-cli-fish-completion-17+427.52990b794-160000.6.1.noarch.rpm agama-cli-zsh-completion-17+427.52990b794-160000.6.1.noarch.rpm agama-debuginfo-17+427.52990b794-160000.6.1.aarch64.rpm agama-debugsource-17+427.52990b794-160000.6.1.aarch64.rpm agama-openapi-17+427.52990b794-160000.6.1.aarch64.rpm agama-scripts-17+427.52990b794-160000.6.1.aarch64.rpm ruby3.4-rubygem-agama-yast-17.devel437.3b5eef886-160000.1.1.aarch64.rpm rubygem-agama-yast-17.devel437.3b5eef886-160000.1.1.src.rpm agama-yast-17.devel437.3b5eef886-160000.1.1.aarch64.rpm agama-yast-17.devel437.3b5eef886-160000.1.1.src.rpm agama-17+427.52990b794-160000.6.1.ppc64le.rpm agama-autoinstall-17+427.52990b794-160000.6.1.ppc64le.rpm agama-autoinstall-debuginfo-17+427.52990b794-160000.6.1.ppc64le.rpm agama-cli-17+427.52990b794-160000.6.1.ppc64le.rpm agama-cli-debuginfo-17+427.52990b794-160000.6.1.ppc64le.rpm agama-debuginfo-17+427.52990b794-160000.6.1.ppc64le.rpm agama-debugsource-17+427.52990b794-160000.6.1.ppc64le.rpm agama-openapi-17+427.52990b794-160000.6.1.ppc64le.rpm agama-scripts-17+427.52990b794-160000.6.1.ppc64le.rpm ruby3.4-rubygem-agama-yast-17.devel437.3b5eef886-160000.1.1.ppc64le.rpm agama-yast-17.devel437.3b5eef886-160000.1.1.ppc64le.rpm agama-17+427.52990b794-160000.6.1.s390x.rpm agama-autoinstall-17+427.52990b794-160000.6.1.s390x.rpm agama-autoinstall-debuginfo-17+427.52990b794-160000.6.1.s390x.rpm agama-cli-17+427.52990b794-160000.6.1.s390x.rpm agama-cli-debuginfo-17+427.52990b794-160000.6.1.s390x.rpm agama-debuginfo-17+427.52990b794-160000.6.1.s390x.rpm agama-debugsource-17+427.52990b794-160000.6.1.s390x.rpm agama-openapi-17+427.52990b794-160000.6.1.s390x.rpm agama-scripts-17+427.52990b794-160000.6.1.s390x.rpm ruby3.4-rubygem-agama-yast-17.devel437.3b5eef886-160000.1.1.s390x.rpm agama-yast-17.devel437.3b5eef886-160000.1.1.s390x.rpm agama-17+427.52990b794-160000.6.1.x86_64.rpm agama-autoinstall-17+427.52990b794-160000.6.1.x86_64.rpm agama-autoinstall-debuginfo-17+427.52990b794-160000.6.1.x86_64.rpm agama-cli-17+427.52990b794-160000.6.1.x86_64.rpm agama-cli-debuginfo-17+427.52990b794-160000.6.1.x86_64.rpm agama-debuginfo-17+427.52990b794-160000.6.1.x86_64.rpm agama-debugsource-17+427.52990b794-160000.6.1.x86_64.rpm agama-openapi-17+427.52990b794-160000.6.1.x86_64.rpm agama-scripts-17+427.52990b794-160000.6.1.x86_64.rpm ruby3.4-rubygem-agama-yast-17.devel437.3b5eef886-160000.1.1.x86_64.rpm agama-yast-17.devel437.3b5eef886-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-140 Security update for curl moderate SUSE SLFO 1.2 This update for curl fixes the following issues: This update for curl fixes the following issues: - CVE-2025-14017: broken TLS options for threaded LDAPS (bsc#1256105). - CVE-2025-14524: bearer token leak on cross-protocol redirect (bsc#1255731). - CVE-2025-14819: libssh global knownhost override (bsc#1255732). - CVE-2025-15079: libssh key passphrase bypass without agent set (bsc#1255733). - CVE-2025-15224: OpenSSL partial chain store policy bypass (bsc#1255734). curl-8.14.1-160000.4.1.aarch64.rpm curl-8.14.1-160000.4.1.src.rpm curl-debuginfo-8.14.1-160000.4.1.aarch64.rpm curl-debugsource-8.14.1-160000.4.1.aarch64.rpm curl-fish-completion-8.14.1-160000.4.1.noarch.rpm curl-zsh-completion-8.14.1-160000.4.1.noarch.rpm libcurl-devel-8.14.1-160000.4.1.aarch64.rpm libcurl-devel-doc-8.14.1-160000.4.1.noarch.rpm libcurl4-8.14.1-160000.4.1.aarch64.rpm libcurl4-debuginfo-8.14.1-160000.4.1.aarch64.rpm curl-8.14.1-160000.4.1.ppc64le.rpm curl-debuginfo-8.14.1-160000.4.1.ppc64le.rpm curl-debugsource-8.14.1-160000.4.1.ppc64le.rpm libcurl-devel-8.14.1-160000.4.1.ppc64le.rpm libcurl4-8.14.1-160000.4.1.ppc64le.rpm libcurl4-debuginfo-8.14.1-160000.4.1.ppc64le.rpm curl-8.14.1-160000.4.1.s390x.rpm curl-debuginfo-8.14.1-160000.4.1.s390x.rpm curl-debugsource-8.14.1-160000.4.1.s390x.rpm libcurl-devel-8.14.1-160000.4.1.s390x.rpm libcurl4-8.14.1-160000.4.1.s390x.rpm libcurl4-debuginfo-8.14.1-160000.4.1.s390x.rpm curl-8.14.1-160000.4.1.x86_64.rpm curl-debuginfo-8.14.1-160000.4.1.x86_64.rpm curl-debugsource-8.14.1-160000.4.1.x86_64.rpm libcurl-devel-8.14.1-160000.4.1.x86_64.rpm libcurl4-8.14.1-160000.4.1.x86_64.rpm libcurl4-debuginfo-8.14.1-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-141 Security update for haproxy moderate SUSE SLFO 1.2 This update for haproxy fixes the following issues: - CVE-2025-11230: issue in the mjson JSON decoder leads to excessive resource consumption when processing numbers with large exponents (bsc#1250983). haproxy-3.2.0+git0.e134140d2-160000.3.1.aarch64.rpm haproxy-3.2.0+git0.e134140d2-160000.3.1.src.rpm haproxy-debuginfo-3.2.0+git0.e134140d2-160000.3.1.aarch64.rpm haproxy-debugsource-3.2.0+git0.e134140d2-160000.3.1.aarch64.rpm haproxy-3.2.0+git0.e134140d2-160000.3.1.ppc64le.rpm haproxy-debuginfo-3.2.0+git0.e134140d2-160000.3.1.ppc64le.rpm haproxy-debugsource-3.2.0+git0.e134140d2-160000.3.1.ppc64le.rpm haproxy-3.2.0+git0.e134140d2-160000.3.1.s390x.rpm haproxy-debuginfo-3.2.0+git0.e134140d2-160000.3.1.s390x.rpm haproxy-debugsource-3.2.0+git0.e134140d2-160000.3.1.s390x.rpm haproxy-3.2.0+git0.e134140d2-160000.3.1.x86_64.rpm haproxy-debuginfo-3.2.0+git0.e134140d2-160000.3.1.x86_64.rpm haproxy-debugsource-3.2.0+git0.e134140d2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-142 Recommended update for openvswitch moderate SUSE SLFO 1.2 This update for openvswitch fixes the following issues: - Update OVN to 25.03.2 * Bug fixes * Dynamic Routing: + Add the option "dynamic-routing-redistribute-local-only" to Logical Routers and Logical Router Ports which refines the way in which chassis-specific Advertised_Routes (e.g., for NAT and LB IPs) are advertised. + Add the option "dynamic-routing-vrf-id" to Logical Routers which allows CMS to specify the Linux routing table id for a given vrf. * Add ovn-nbctl lsp-add-router-port which will create router port on specified LS. * Add ovn-nbctl lsp-add-localnet-port which will create localnet port on specified LS. - Update OVN to 25.03.1 * Bug fixes - Update Openvswitch to 3.5.2 * Bug fixes libopenvswitch-3_5-0-3.5.2-160000.3.1.aarch64.rpm libopenvswitch-3_5-0-debuginfo-3.5.2-160000.3.1.aarch64.rpm libovn-25_03-0-25.03.2-160000.3.1.aarch64.rpm libovn-25_03-0-debuginfo-25.03.2-160000.3.1.aarch64.rpm openvswitch-3.5.2-160000.3.1.aarch64.rpm openvswitch-3.5.2-160000.3.1.src.rpm openvswitch-debuginfo-3.5.2-160000.3.1.aarch64.rpm openvswitch-debugsource-3.5.2-160000.3.1.aarch64.rpm openvswitch-devel-3.5.2-160000.3.1.aarch64.rpm openvswitch-doc-3.5.2-160000.3.1.noarch.rpm openvswitch-ipsec-3.5.2-160000.3.1.aarch64.rpm openvswitch-pki-3.5.2-160000.3.1.aarch64.rpm openvswitch-test-3.5.2-160000.3.1.aarch64.rpm openvswitch-test-debuginfo-3.5.2-160000.3.1.aarch64.rpm openvswitch-vtep-3.5.2-160000.3.1.aarch64.rpm openvswitch-vtep-debuginfo-3.5.2-160000.3.1.aarch64.rpm ovn-25.03.2-160000.3.1.aarch64.rpm ovn-central-25.03.2-160000.3.1.aarch64.rpm ovn-central-debuginfo-25.03.2-160000.3.1.aarch64.rpm ovn-debuginfo-25.03.2-160000.3.1.aarch64.rpm ovn-devel-25.03.2-160000.3.1.aarch64.rpm ovn-doc-25.03.2-160000.3.1.noarch.rpm ovn-docker-25.03.2-160000.3.1.aarch64.rpm ovn-host-25.03.2-160000.3.1.aarch64.rpm ovn-host-debuginfo-25.03.2-160000.3.1.aarch64.rpm ovn-vtep-25.03.2-160000.3.1.aarch64.rpm ovn-vtep-debuginfo-25.03.2-160000.3.1.aarch64.rpm python3-openvswitch-3.5.2-160000.3.1.aarch64.rpm python3-openvswitch-debuginfo-3.5.2-160000.3.1.aarch64.rpm libopenvswitch-3_5-0-3.5.2-160000.3.1.ppc64le.rpm libopenvswitch-3_5-0-debuginfo-3.5.2-160000.3.1.ppc64le.rpm libovn-25_03-0-25.03.2-160000.3.1.ppc64le.rpm libovn-25_03-0-debuginfo-25.03.2-160000.3.1.ppc64le.rpm openvswitch-3.5.2-160000.3.1.ppc64le.rpm openvswitch-debuginfo-3.5.2-160000.3.1.ppc64le.rpm openvswitch-debugsource-3.5.2-160000.3.1.ppc64le.rpm openvswitch-devel-3.5.2-160000.3.1.ppc64le.rpm openvswitch-ipsec-3.5.2-160000.3.1.ppc64le.rpm openvswitch-pki-3.5.2-160000.3.1.ppc64le.rpm openvswitch-test-3.5.2-160000.3.1.ppc64le.rpm openvswitch-test-debuginfo-3.5.2-160000.3.1.ppc64le.rpm openvswitch-vtep-3.5.2-160000.3.1.ppc64le.rpm openvswitch-vtep-debuginfo-3.5.2-160000.3.1.ppc64le.rpm ovn-25.03.2-160000.3.1.ppc64le.rpm ovn-central-25.03.2-160000.3.1.ppc64le.rpm ovn-central-debuginfo-25.03.2-160000.3.1.ppc64le.rpm ovn-debuginfo-25.03.2-160000.3.1.ppc64le.rpm ovn-devel-25.03.2-160000.3.1.ppc64le.rpm ovn-docker-25.03.2-160000.3.1.ppc64le.rpm ovn-host-25.03.2-160000.3.1.ppc64le.rpm ovn-host-debuginfo-25.03.2-160000.3.1.ppc64le.rpm ovn-vtep-25.03.2-160000.3.1.ppc64le.rpm ovn-vtep-debuginfo-25.03.2-160000.3.1.ppc64le.rpm python3-openvswitch-3.5.2-160000.3.1.ppc64le.rpm python3-openvswitch-debuginfo-3.5.2-160000.3.1.ppc64le.rpm libopenvswitch-3_5-0-3.5.2-160000.3.1.s390x.rpm libopenvswitch-3_5-0-debuginfo-3.5.2-160000.3.1.s390x.rpm libovn-25_03-0-25.03.2-160000.3.1.s390x.rpm libovn-25_03-0-debuginfo-25.03.2-160000.3.1.s390x.rpm openvswitch-3.5.2-160000.3.1.s390x.rpm openvswitch-debuginfo-3.5.2-160000.3.1.s390x.rpm openvswitch-debugsource-3.5.2-160000.3.1.s390x.rpm openvswitch-devel-3.5.2-160000.3.1.s390x.rpm openvswitch-ipsec-3.5.2-160000.3.1.s390x.rpm openvswitch-pki-3.5.2-160000.3.1.s390x.rpm openvswitch-test-3.5.2-160000.3.1.s390x.rpm openvswitch-test-debuginfo-3.5.2-160000.3.1.s390x.rpm openvswitch-vtep-3.5.2-160000.3.1.s390x.rpm openvswitch-vtep-debuginfo-3.5.2-160000.3.1.s390x.rpm ovn-25.03.2-160000.3.1.s390x.rpm ovn-central-25.03.2-160000.3.1.s390x.rpm ovn-central-debuginfo-25.03.2-160000.3.1.s390x.rpm ovn-debuginfo-25.03.2-160000.3.1.s390x.rpm ovn-devel-25.03.2-160000.3.1.s390x.rpm ovn-docker-25.03.2-160000.3.1.s390x.rpm ovn-host-25.03.2-160000.3.1.s390x.rpm ovn-host-debuginfo-25.03.2-160000.3.1.s390x.rpm ovn-vtep-25.03.2-160000.3.1.s390x.rpm ovn-vtep-debuginfo-25.03.2-160000.3.1.s390x.rpm python3-openvswitch-3.5.2-160000.3.1.s390x.rpm python3-openvswitch-debuginfo-3.5.2-160000.3.1.s390x.rpm libopenvswitch-3_5-0-3.5.2-160000.3.1.x86_64.rpm libopenvswitch-3_5-0-debuginfo-3.5.2-160000.3.1.x86_64.rpm libovn-25_03-0-25.03.2-160000.3.1.x86_64.rpm libovn-25_03-0-debuginfo-25.03.2-160000.3.1.x86_64.rpm openvswitch-3.5.2-160000.3.1.x86_64.rpm openvswitch-debuginfo-3.5.2-160000.3.1.x86_64.rpm openvswitch-debugsource-3.5.2-160000.3.1.x86_64.rpm openvswitch-devel-3.5.2-160000.3.1.x86_64.rpm openvswitch-ipsec-3.5.2-160000.3.1.x86_64.rpm openvswitch-pki-3.5.2-160000.3.1.x86_64.rpm openvswitch-test-3.5.2-160000.3.1.x86_64.rpm openvswitch-test-debuginfo-3.5.2-160000.3.1.x86_64.rpm openvswitch-vtep-3.5.2-160000.3.1.x86_64.rpm openvswitch-vtep-debuginfo-3.5.2-160000.3.1.x86_64.rpm ovn-25.03.2-160000.3.1.x86_64.rpm ovn-central-25.03.2-160000.3.1.x86_64.rpm ovn-central-debuginfo-25.03.2-160000.3.1.x86_64.rpm ovn-debuginfo-25.03.2-160000.3.1.x86_64.rpm ovn-devel-25.03.2-160000.3.1.x86_64.rpm ovn-docker-25.03.2-160000.3.1.x86_64.rpm ovn-host-25.03.2-160000.3.1.x86_64.rpm ovn-host-debuginfo-25.03.2-160000.3.1.x86_64.rpm ovn-vtep-25.03.2-160000.3.1.x86_64.rpm ovn-vtep-debuginfo-25.03.2-160000.3.1.x86_64.rpm python3-openvswitch-3.5.2-160000.3.1.x86_64.rpm python3-openvswitch-debuginfo-3.5.2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-143 Security update for tomcat important SUSE SLFO 1.2 This update for tomcat fixes the following issues: - Update to Tomcat 9.0.111 - Security fixes: - CVE-2025-55752: directory traversal via rewrite with possible RCE if PUT is enabled (bsc#1252753). - CVE-2025-55754: improper neutralization of Escape, Meta, or Control Sequences vulnerability in Apache Tomcat (bsc#1252905). - CVE-2025-61795: temporary copies during the processing of multipart upload can lead to a denial of service (bsc#1252756). tomcat-9.0.111-160000.1.1.noarch.rpm tomcat-9.0.111-160000.1.1.src.rpm tomcat-admin-webapps-9.0.111-160000.1.1.noarch.rpm tomcat-docs-webapp-9.0.111-160000.1.1.noarch.rpm tomcat-el-3_0-api-9.0.111-160000.1.1.noarch.rpm tomcat-embed-9.0.111-160000.1.1.noarch.rpm tomcat-javadoc-9.0.111-160000.1.1.noarch.rpm tomcat-jsp-2_3-api-9.0.111-160000.1.1.noarch.rpm tomcat-jsvc-9.0.111-160000.1.1.noarch.rpm tomcat-lib-9.0.111-160000.1.1.noarch.rpm tomcat-servlet-4_0-api-9.0.111-160000.1.1.noarch.rpm tomcat-webapps-9.0.111-160000.1.1.noarch.rpm openSUSE-Leap-16.0-144 Security update for bind important SUSE SLFO 1.2 This update for bind fixes the following issues: - Upgrade to release 9.20.15 Security Fixes: * CVE-2025-40778: Fixed cache poisoning attacks with unsolicited RRs (bsc#1252379) * CVE-2025-40780: Fixed cache poisoning due to weak PRNG (bsc#1252380) * CVE-2025-8677: Fixed resource exhaustion via malformed DNSKEY handling (bsc#1252378) New Features: * Add dnssec-policy keys configuration check to named-checkconf. * Add a new option `manual-mode` to dnssec-policy. * Add a new option `servfail-until-ready` to response-policy zones. * Support for parsing HHIT and BRID records has been added. * Support for parsing DSYNC records has been added. Removed Features: * Deprecate the `tkey-gssapi-credential` statement. * Obsolete the `tkey-domain` statement. Feature Changes: * Add deprecation warnings for RSASHA1, RSASHA1-NSEC3SHA1, and DS digest type 1. Bug Fixes: * Missing DNSSEC information when CD bit is set in query. * rndc sign during ZSK rollover will now replace signatures. * Use signer name when disabling DNSSEC algorithms. * Preserve cache when reload fails and reload the server again. * Prevent spurious SERVFAILs for certain 0-TTL resource records. * Fix unexpected termination if catalog-zones had undefined `default-primaries`. * Stale RRsets in a CNAME chain were not always refreshed. * Add RPZ extended DNS error for zones with a CNAME override policy configured. * Fix dig +keepopen option. * Log dropped or slipped responses in the query-errors category. * Fix synth-from-dnssec not working in some scenarios. * Clean enough memory when adding new ADB names/entries under memory pressure. * Prevent spurious validation failures. * Ensure file descriptors 0-2 are in use before using libuv [bsc#1230649] bind-9.20.15-160000.1.1.aarch64.rpm bind-9.20.15-160000.1.1.src.rpm bind-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-debugsource-9.20.15-160000.1.1.aarch64.rpm bind-doc-9.20.15-160000.1.1.noarch.rpm bind-modules-bdbhpt-9.20.15-160000.1.1.aarch64.rpm bind-modules-bdbhpt-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-modules-generic-9.20.15-160000.1.1.aarch64.rpm bind-modules-generic-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-modules-ldap-9.20.15-160000.1.1.aarch64.rpm bind-modules-ldap-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-modules-mysql-9.20.15-160000.1.1.aarch64.rpm bind-modules-mysql-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-modules-perl-9.20.15-160000.1.1.aarch64.rpm bind-modules-perl-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-modules-sqlite3-9.20.15-160000.1.1.aarch64.rpm bind-modules-sqlite3-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-utils-9.20.15-160000.1.1.aarch64.rpm bind-utils-debuginfo-9.20.15-160000.1.1.aarch64.rpm bind-9.20.15-160000.1.1.ppc64le.rpm bind-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-debugsource-9.20.15-160000.1.1.ppc64le.rpm bind-modules-bdbhpt-9.20.15-160000.1.1.ppc64le.rpm bind-modules-bdbhpt-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-modules-generic-9.20.15-160000.1.1.ppc64le.rpm bind-modules-generic-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-modules-ldap-9.20.15-160000.1.1.ppc64le.rpm bind-modules-ldap-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-modules-mysql-9.20.15-160000.1.1.ppc64le.rpm bind-modules-mysql-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-modules-perl-9.20.15-160000.1.1.ppc64le.rpm bind-modules-perl-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-modules-sqlite3-9.20.15-160000.1.1.ppc64le.rpm bind-modules-sqlite3-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-utils-9.20.15-160000.1.1.ppc64le.rpm bind-utils-debuginfo-9.20.15-160000.1.1.ppc64le.rpm bind-9.20.15-160000.1.1.s390x.rpm bind-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-debugsource-9.20.15-160000.1.1.s390x.rpm bind-modules-bdbhpt-9.20.15-160000.1.1.s390x.rpm bind-modules-bdbhpt-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-modules-generic-9.20.15-160000.1.1.s390x.rpm bind-modules-generic-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-modules-ldap-9.20.15-160000.1.1.s390x.rpm bind-modules-ldap-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-modules-mysql-9.20.15-160000.1.1.s390x.rpm bind-modules-mysql-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-modules-perl-9.20.15-160000.1.1.s390x.rpm bind-modules-perl-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-modules-sqlite3-9.20.15-160000.1.1.s390x.rpm bind-modules-sqlite3-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-utils-9.20.15-160000.1.1.s390x.rpm bind-utils-debuginfo-9.20.15-160000.1.1.s390x.rpm bind-9.20.15-160000.1.1.x86_64.rpm bind-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-debugsource-9.20.15-160000.1.1.x86_64.rpm bind-modules-bdbhpt-9.20.15-160000.1.1.x86_64.rpm bind-modules-bdbhpt-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-modules-generic-9.20.15-160000.1.1.x86_64.rpm bind-modules-generic-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-modules-ldap-9.20.15-160000.1.1.x86_64.rpm bind-modules-ldap-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-modules-mysql-9.20.15-160000.1.1.x86_64.rpm bind-modules-mysql-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-modules-perl-9.20.15-160000.1.1.x86_64.rpm bind-modules-perl-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-modules-sqlite3-9.20.15-160000.1.1.x86_64.rpm bind-modules-sqlite3-debuginfo-9.20.15-160000.1.1.x86_64.rpm bind-utils-9.20.15-160000.1.1.x86_64.rpm bind-utils-debuginfo-9.20.15-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-145 Recommended update for apparmor important SUSE SLFO 1.2 This update for apparmor fixes the following issues: Changes in apparmor: - allow writing /tmp/doveconf.* in more dovecot profiles update to AppArmor 4.1.2: - several fixes (including boo#1246743) - see https://gitlab.com/apparmor/apparmor/-/wikis/Release_Notes_4.1.2 for the detailed upstream changelog - more dovecot 2.4 permissions (boo#1247470) apache2-mod_apparmor-4.1.2-160000.1.1.aarch64.rpm apache2-mod_apparmor-debuginfo-4.1.2-160000.1.1.aarch64.rpm apparmor-4.1.2-160000.1.1.src.rpm apparmor-abstractions-4.1.2-160000.1.1.noarch.rpm apparmor-debugsource-4.1.2-160000.1.1.aarch64.rpm apparmor-docs-4.1.2-160000.1.1.noarch.rpm apparmor-parser-4.1.2-160000.1.1.aarch64.rpm apparmor-parser-debuginfo-4.1.2-160000.1.1.aarch64.rpm apparmor-parser-lang-4.1.2-160000.1.1.noarch.rpm apparmor-profiles-4.1.2-160000.1.1.noarch.rpm apparmor-utils-4.1.2-160000.1.1.noarch.rpm apparmor-utils-lang-4.1.2-160000.1.1.noarch.rpm pam_apparmor-4.1.2-160000.1.1.aarch64.rpm pam_apparmor-debuginfo-4.1.2-160000.1.1.aarch64.rpm perl-apparmor-4.1.2-160000.1.1.aarch64.rpm perl-apparmor-debuginfo-4.1.2-160000.1.1.aarch64.rpm python3-apparmor-4.1.2-160000.1.1.aarch64.rpm python3-apparmor-debuginfo-4.1.2-160000.1.1.aarch64.rpm ruby-apparmor-4.1.2-160000.1.1.aarch64.rpm ruby-apparmor-debuginfo-4.1.2-160000.1.1.aarch64.rpm libapparmor-4.1.2-160000.1.1.src.rpm libapparmor-debugsource-4.1.2-160000.1.1.aarch64.rpm libapparmor-devel-4.1.2-160000.1.1.aarch64.rpm libapparmor1-4.1.2-160000.1.1.aarch64.rpm libapparmor1-debuginfo-4.1.2-160000.1.1.aarch64.rpm apache2-mod_apparmor-4.1.2-160000.1.1.ppc64le.rpm apache2-mod_apparmor-debuginfo-4.1.2-160000.1.1.ppc64le.rpm apparmor-debugsource-4.1.2-160000.1.1.ppc64le.rpm apparmor-parser-4.1.2-160000.1.1.ppc64le.rpm apparmor-parser-debuginfo-4.1.2-160000.1.1.ppc64le.rpm pam_apparmor-4.1.2-160000.1.1.ppc64le.rpm pam_apparmor-debuginfo-4.1.2-160000.1.1.ppc64le.rpm perl-apparmor-4.1.2-160000.1.1.ppc64le.rpm perl-apparmor-debuginfo-4.1.2-160000.1.1.ppc64le.rpm python3-apparmor-4.1.2-160000.1.1.ppc64le.rpm python3-apparmor-debuginfo-4.1.2-160000.1.1.ppc64le.rpm ruby-apparmor-4.1.2-160000.1.1.ppc64le.rpm ruby-apparmor-debuginfo-4.1.2-160000.1.1.ppc64le.rpm libapparmor-debugsource-4.1.2-160000.1.1.ppc64le.rpm libapparmor-devel-4.1.2-160000.1.1.ppc64le.rpm libapparmor1-4.1.2-160000.1.1.ppc64le.rpm libapparmor1-debuginfo-4.1.2-160000.1.1.ppc64le.rpm apache2-mod_apparmor-4.1.2-160000.1.1.s390x.rpm apache2-mod_apparmor-debuginfo-4.1.2-160000.1.1.s390x.rpm apparmor-debugsource-4.1.2-160000.1.1.s390x.rpm apparmor-parser-4.1.2-160000.1.1.s390x.rpm apparmor-parser-debuginfo-4.1.2-160000.1.1.s390x.rpm pam_apparmor-4.1.2-160000.1.1.s390x.rpm pam_apparmor-debuginfo-4.1.2-160000.1.1.s390x.rpm perl-apparmor-4.1.2-160000.1.1.s390x.rpm perl-apparmor-debuginfo-4.1.2-160000.1.1.s390x.rpm python3-apparmor-4.1.2-160000.1.1.s390x.rpm python3-apparmor-debuginfo-4.1.2-160000.1.1.s390x.rpm ruby-apparmor-4.1.2-160000.1.1.s390x.rpm ruby-apparmor-debuginfo-4.1.2-160000.1.1.s390x.rpm libapparmor-debugsource-4.1.2-160000.1.1.s390x.rpm libapparmor-devel-4.1.2-160000.1.1.s390x.rpm libapparmor1-4.1.2-160000.1.1.s390x.rpm libapparmor1-debuginfo-4.1.2-160000.1.1.s390x.rpm apache2-mod_apparmor-4.1.2-160000.1.1.x86_64.rpm apache2-mod_apparmor-debuginfo-4.1.2-160000.1.1.x86_64.rpm apparmor-debugsource-4.1.2-160000.1.1.x86_64.rpm apparmor-parser-4.1.2-160000.1.1.x86_64.rpm apparmor-parser-debuginfo-4.1.2-160000.1.1.x86_64.rpm pam_apparmor-4.1.2-160000.1.1.x86_64.rpm pam_apparmor-debuginfo-4.1.2-160000.1.1.x86_64.rpm perl-apparmor-4.1.2-160000.1.1.x86_64.rpm perl-apparmor-debuginfo-4.1.2-160000.1.1.x86_64.rpm python3-apparmor-4.1.2-160000.1.1.x86_64.rpm python3-apparmor-debuginfo-4.1.2-160000.1.1.x86_64.rpm ruby-apparmor-4.1.2-160000.1.1.x86_64.rpm ruby-apparmor-debuginfo-4.1.2-160000.1.1.x86_64.rpm libapparmor-debugsource-4.1.2-160000.1.1.x86_64.rpm libapparmor-devel-4.1.2-160000.1.1.x86_64.rpm libapparmor1-4.1.2-160000.1.1.x86_64.rpm libapparmor1-debuginfo-4.1.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-146 Security update for MozillaFirefox important SUSE SLFO 1.2 This update for MozillaFirefox fixes the following issues: Update to Firefox Extended Support Release 140.7.0 ESR (bsc#1256340). - MFSA 2026-03 (bsc#1256340) * CVE-2026-0877: Mitigation bypass in the DOM: Security component * CVE-2026-0878: Sandbox escape due to incorrect boundary conditions in the Graphics: CanvasWebGL component * CVE-2026-0879: Sandbox escape due to incorrect boundary conditions in the Graphics component * CVE-2026-0880: Sandbox escape due to integer overflow in the Graphics component * CVE-2026-0882: Use-after-free in the IPC component * CVE-2025-14327: Spoofing issue in the Downloads Panel component * CVE-2026-0883: Information disclosure in the Networking component * CVE-2026-0884: Use-after-free in the JavaScript Engine component * CVE-2026-0885: Use-after-free in the JavaScript: GC component * CVE-2026-0886: Incorrect boundary conditions in the Graphics component * CVE-2026-0887: Clickjacking issue, information disclosure in the PDF Viewer component * CVE-2026-0890: Spoofing issue in the DOM: Copy & Paste and Drag & Drop component * CVE-2026-0891: Memory safety bugs fixed in Firefox ESR 140.7, Thunderbird ESR 140.7, Firefox 147 and Thunderbird 147 MozillaFirefox-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-140.7.0-160000.1.1.src.rpm MozillaFirefox-branding-upstream-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-debuginfo-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-debugsource-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-devel-140.7.0-160000.1.1.noarch.rpm MozillaFirefox-translations-common-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-translations-other-140.7.0-160000.1.1.aarch64.rpm MozillaFirefox-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-branding-upstream-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-debuginfo-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-debugsource-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-common-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-other-140.7.0-160000.1.1.ppc64le.rpm MozillaFirefox-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-branding-upstream-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-debuginfo-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-debugsource-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-translations-common-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-translations-other-140.7.0-160000.1.1.s390x.rpm MozillaFirefox-140.7.0-160000.1.1.x86_64.rpm MozillaFirefox-branding-upstream-140.7.0-160000.1.1.x86_64.rpm MozillaFirefox-debuginfo-140.7.0-160000.1.1.x86_64.rpm MozillaFirefox-debugsource-140.7.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-common-140.7.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-other-140.7.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-147 Recommended update for suse-migration-services important SUSE SLFO 1.2 This update for suse-migration-services fixes the following issues: - Bump to version: 2.1.29 * Fix mount_system unit * Run ssh precheck only for SLE16 target The check for the ssh default settings change should only be performed for migrations to SLE16 * Only generate wicked xml if service is the active network * Fix unit link check and no use of path.join * Fixed migration live image package requires * Update setup_host_network service * Fix backup processing * Fix log handler setup * Drop and backup /etc/sysconfig/network * Skip migration if wicked is not the default network config service * Add package_installed method * Backup drop_path data * Check if package exists prior drop * Fixed use of suse version macros * drop README_QA.rst * Update conditional requires per review * Consolidate project documentation * Fixed spec file regarding wicked2nm - Bump to version: 2.1.28 * Fix update_version helper * Fix mount_system * Fix order of reboot service * Improve dracut logging * Drop wicked component after nm migration * Move script package to the main migration provider * Add DropComponents class * Fixed spec file: + suse-migration-container-pam-config.service was not installed * Create systemd.link files for biosdevname (bsc#1253963) * Create lib file for common network-prereq tasks * update PAM configurations to use pam_unix.so SLE16 no longer provides compat links for pam_unix_*.so. Fix the configuration for tools that are still using those compat links so they don't break after migration (PED-13640) * Omit cio_ignore kernel commandline on zkvm (bsc#1250003) - Bump to version: 2.1.27 * Refactor mount_system service * Fix order of reboot service * Add support for wicked2nm in container workflow * Fix unit test for solver test case * Fixes for btrfs_snapshot_pre_migration suse-migration-scripts-2.1.29-160000.1.1.noarch.rpm suse-migration-services-2.1.29-160000.1.1.src.rpm openSUSE-Leap-16.0-148 Security update for erlang moderate SUSE SLFO 1.2 This update for erlang fixes the following issues: Update the ssh component to the latest in the maint-27 branch. Security issues fixed: - CVE-2025-48040: ssh: overly tolerant handling of data received from unauthenticated users when processing key exchange messages may lead to excessive resource consumption (bsc#1249472). - CVE-2025-48039: ssh: unverified paths from authenticated SFTP users may lead to excessive resource consumption (bsc#1249469). - CVE-2025-48038: ssh: unverified file handles from authenticated SFTP users may lead to excessive resource consumption (bsc#1249470). erlang-27.1.3-160000.3.1.aarch64.rpm erlang-27.1.3-160000.3.1.src.rpm erlang-debugger-27.1.3-160000.3.1.aarch64.rpm erlang-debugger-src-27.1.3-160000.3.1.aarch64.rpm erlang-debuginfo-27.1.3-160000.3.1.aarch64.rpm erlang-debugsource-27.1.3-160000.3.1.aarch64.rpm erlang-dialyzer-27.1.3-160000.3.1.aarch64.rpm erlang-dialyzer-debuginfo-27.1.3-160000.3.1.aarch64.rpm erlang-dialyzer-src-27.1.3-160000.3.1.aarch64.rpm erlang-diameter-27.1.3-160000.3.1.aarch64.rpm erlang-diameter-src-27.1.3-160000.3.1.aarch64.rpm erlang-doc-27.1.3-160000.3.1.aarch64.rpm erlang-epmd-27.1.3-160000.3.1.aarch64.rpm erlang-epmd-debuginfo-27.1.3-160000.3.1.aarch64.rpm erlang-et-27.1.3-160000.3.1.aarch64.rpm erlang-et-src-27.1.3-160000.3.1.aarch64.rpm erlang-jinterface-27.1.3-160000.3.1.aarch64.rpm erlang-jinterface-src-27.1.3-160000.3.1.aarch64.rpm erlang-observer-27.1.3-160000.3.1.aarch64.rpm erlang-observer-src-27.1.3-160000.3.1.aarch64.rpm erlang-reltool-27.1.3-160000.3.1.aarch64.rpm erlang-reltool-src-27.1.3-160000.3.1.aarch64.rpm erlang-src-27.1.3-160000.3.1.aarch64.rpm erlang-wx-27.1.3-160000.3.1.aarch64.rpm erlang-wx-debuginfo-27.1.3-160000.3.1.aarch64.rpm erlang-wx-src-27.1.3-160000.3.1.aarch64.rpm erlang-27.1.3-160000.3.1.ppc64le.rpm erlang-debugger-27.1.3-160000.3.1.ppc64le.rpm erlang-debugger-src-27.1.3-160000.3.1.ppc64le.rpm erlang-debuginfo-27.1.3-160000.3.1.ppc64le.rpm erlang-debugsource-27.1.3-160000.3.1.ppc64le.rpm erlang-dialyzer-27.1.3-160000.3.1.ppc64le.rpm erlang-dialyzer-debuginfo-27.1.3-160000.3.1.ppc64le.rpm erlang-dialyzer-src-27.1.3-160000.3.1.ppc64le.rpm erlang-diameter-27.1.3-160000.3.1.ppc64le.rpm erlang-diameter-src-27.1.3-160000.3.1.ppc64le.rpm erlang-doc-27.1.3-160000.3.1.ppc64le.rpm erlang-epmd-27.1.3-160000.3.1.ppc64le.rpm erlang-epmd-debuginfo-27.1.3-160000.3.1.ppc64le.rpm erlang-et-27.1.3-160000.3.1.ppc64le.rpm erlang-et-src-27.1.3-160000.3.1.ppc64le.rpm erlang-jinterface-27.1.3-160000.3.1.ppc64le.rpm erlang-jinterface-src-27.1.3-160000.3.1.ppc64le.rpm erlang-observer-27.1.3-160000.3.1.ppc64le.rpm erlang-observer-src-27.1.3-160000.3.1.ppc64le.rpm erlang-reltool-27.1.3-160000.3.1.ppc64le.rpm erlang-reltool-src-27.1.3-160000.3.1.ppc64le.rpm erlang-src-27.1.3-160000.3.1.ppc64le.rpm erlang-wx-27.1.3-160000.3.1.ppc64le.rpm erlang-wx-debuginfo-27.1.3-160000.3.1.ppc64le.rpm erlang-wx-src-27.1.3-160000.3.1.ppc64le.rpm erlang-27.1.3-160000.3.1.s390x.rpm erlang-debugger-27.1.3-160000.3.1.s390x.rpm erlang-debugger-src-27.1.3-160000.3.1.s390x.rpm erlang-debuginfo-27.1.3-160000.3.1.s390x.rpm erlang-debugsource-27.1.3-160000.3.1.s390x.rpm erlang-dialyzer-27.1.3-160000.3.1.s390x.rpm erlang-dialyzer-debuginfo-27.1.3-160000.3.1.s390x.rpm erlang-dialyzer-src-27.1.3-160000.3.1.s390x.rpm erlang-diameter-27.1.3-160000.3.1.s390x.rpm erlang-diameter-src-27.1.3-160000.3.1.s390x.rpm erlang-epmd-27.1.3-160000.3.1.s390x.rpm erlang-epmd-debuginfo-27.1.3-160000.3.1.s390x.rpm erlang-et-27.1.3-160000.3.1.s390x.rpm erlang-et-src-27.1.3-160000.3.1.s390x.rpm erlang-jinterface-27.1.3-160000.3.1.s390x.rpm erlang-jinterface-src-27.1.3-160000.3.1.s390x.rpm erlang-observer-27.1.3-160000.3.1.s390x.rpm erlang-observer-src-27.1.3-160000.3.1.s390x.rpm erlang-reltool-27.1.3-160000.3.1.s390x.rpm erlang-reltool-src-27.1.3-160000.3.1.s390x.rpm erlang-src-27.1.3-160000.3.1.s390x.rpm erlang-wx-27.1.3-160000.3.1.s390x.rpm erlang-wx-debuginfo-27.1.3-160000.3.1.s390x.rpm erlang-wx-src-27.1.3-160000.3.1.s390x.rpm erlang-27.1.3-160000.3.1.x86_64.rpm erlang-debugger-27.1.3-160000.3.1.x86_64.rpm erlang-debugger-src-27.1.3-160000.3.1.x86_64.rpm erlang-debuginfo-27.1.3-160000.3.1.x86_64.rpm erlang-debugsource-27.1.3-160000.3.1.x86_64.rpm erlang-dialyzer-27.1.3-160000.3.1.x86_64.rpm erlang-dialyzer-debuginfo-27.1.3-160000.3.1.x86_64.rpm erlang-dialyzer-src-27.1.3-160000.3.1.x86_64.rpm erlang-diameter-27.1.3-160000.3.1.x86_64.rpm erlang-diameter-src-27.1.3-160000.3.1.x86_64.rpm erlang-doc-27.1.3-160000.3.1.x86_64.rpm erlang-epmd-27.1.3-160000.3.1.x86_64.rpm erlang-epmd-debuginfo-27.1.3-160000.3.1.x86_64.rpm erlang-et-27.1.3-160000.3.1.x86_64.rpm erlang-et-src-27.1.3-160000.3.1.x86_64.rpm erlang-jinterface-27.1.3-160000.3.1.x86_64.rpm erlang-jinterface-src-27.1.3-160000.3.1.x86_64.rpm erlang-observer-27.1.3-160000.3.1.x86_64.rpm erlang-observer-src-27.1.3-160000.3.1.x86_64.rpm erlang-reltool-27.1.3-160000.3.1.x86_64.rpm erlang-reltool-src-27.1.3-160000.3.1.x86_64.rpm erlang-src-27.1.3-160000.3.1.x86_64.rpm erlang-wx-27.1.3-160000.3.1.x86_64.rpm erlang-wx-debuginfo-27.1.3-160000.3.1.x86_64.rpm erlang-wx-src-27.1.3-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-149 Security update for alloy important SUSE SLFO 1.2 This update for alloy fixes the following issues: Upgrade to version 1.12.1. Security issues fixed: - CVE-2025-47911: golang.org/x/net/html: quadratic complexity algorithms used when parsing untrusted HTML documents (bsc#1251509). - CVE-2025-58190: golang.org/x/net/html: excessive memory consumption by `html.ParseFragment` when processing specially crafted input (bsc#1251716). - CVE-2025-47913: golang.org/x/crypto: early client process termination when receiving an unexpected message type in response to a key listing or signing request (bsc#1253609). Other updates and bugfixes: - Version 1.12.1: * Bugfixes - update to Beyla 2.7.10. - Version 1.12.0: * Breaking changes - `prometheus.exporter.blackbox`, `prometheus.exporter.snmp` and `prometheus.exporter.statsd` now use the component ID instead of the hostname as their instance label in their exported metrics. * Features - (Experimental) Add an `otelcol.receiver.cloudflare` component to receive logs pushed by Cloudflare's LogPush jobs. - (Experimental) Additions to experimental `database_observability.mysql` component: - `explain_plans` - collector now changes schema before returning the connection to the pool. - collector now passes queries more permissively. - enable `explain_plans` collector by default - (Experimental) Additions to experimental `database_observability.postgres` component: - `explain_plans` - added the explain plan collector. - collector now passes queries more permissively. - `query_samples` - add user field to wait events within `query_samples` collector. - rework the query samples collector to buffer per-query execution state across scrapes and emit finalized entries. - process turned idle rows to calculate finalization times precisely and emit first seen idle rows. - `query_details` - escape queries coming from `pg_stat_statements` with quotes. - enable `explain_plans` collector by default. - safely generate `server_id` when UDP socket used for database connection. - add table registry and include "validated" in parsed table name logs. - Add `otelcol.exporter.googlecloudpubsub` community component to export metrics, traces, and logs to Google Cloud Pub/Sub topic. - Add `structured_metadata_drop` stage for `loki.process` to filter structured metadata. - Send remote config status to the remote server for the `remotecfg` service. - Send effective config to the remote server for the `remotecfg` service. - Add a `stat_statements` configuration block to the `prometheus.exporter.postgres` component to enable selecting both the query ID and the full SQL statement. The new block includes one option to enable statement selection, and another to configure the maximum length of the statement text. - Add truncate stage for `loki.process` to truncate log entries, label values, and `structured_metadata` values. - Add `u_probe_links` & `load_probe` configuration fields to alloy `pyroscope.ebpf` to extend configuration of the `opentelemetry-ebpf-profiler` to allow uprobe profiling and dynamic probing. - Add `verbose_mode` configuration fields to `alloy pyroscope.ebpf` to be enable `ebpf-profiler` verbose mode. - Add `file_match` block to `loki.source.file` for built-in file discovery using glob patterns. - Add a regex argument to the `structured_metadata` stage in `loki.process` to extract labels matching a regular expression. - OpenTelemetry Collector dependencies upgraded from v0.134.0 to v0.139.0. - See the upstream [core](https://github.com/open-telemetry/opentelemetry-collector/blob/v0.139.0/CHANGELOG.md) and [contrib](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/v0.139.0/CHANGELOG.md) changelogs for more details. - A new `mimir.alerts.kubernetes` component which discovers AlertmanagerConfig Kubernetes resources and loads them into a Mimir instance. - Mark `stage.windowsevent` block in the `loki.process` component as GA. * Enhancements - Add per-application rate limiting with the strategy attribute in the `faro.receiver` component, to prevent one application from consuming the rate limit quota of others. - Add support of tls in components `loki.source.(awsfirehose|gcplog|heroku|api)` and `prometheus.receive_http` and `pyroscope.receive_http`. - Remove `SendSIGKILL=no` from unit files and recommendations. - Reduce memory overhead of `prometheus.remote_write`'s WAL by lowering the size of the allocated series storage. - Reduce lock wait/contention on the `labelstore.LabelStore` by removing unecessary usage from `prometheus.relabel`. - `prometheus.exporter.postgres` dependency has been updated to v0.18.1. - Update Beyla component to 2.7.8. - Support delimiters in `stage.luhn`. - `pyroscope.java`: update `async-profiler` to 4.2. - `prometheus.exporter.unix`: Add an arp config block to configure the ARP collector. - `prometheus.exporter.snowflake` dependency has been updated to 20251016132346-6d442402afb2. - `loki.source.podlogs` now supports `preserve_discovered_labels` parameter to preserve discovered pod metadata labels for use by downstream components. - Rework underlying framework of Alloy UI to use Vite instead of Create React App. - Use POST requests for remote config requests to avoid hitting http2 header limits. - `loki.source.api` during component shutdown will now reject all the inflight requests with status code 503 after `graceful_shutdown_timeout` has expired. - `kubernetes.discovery`: Add support for attaching namespace metadata. - Add `meta_cache_address` to `beyla.ebpf` component. * Bugfixes - Stop `loki.source.kubernetes` discarding log lines with duplicate timestamps. - Fix direction of arrows for pyroscope components in UI graph. - Only log EOF errors for syslog port investigations in `loki.source.syslog` as Debug, not Warn. - Fix `prometheus.exporter.process` ignoring the `remove_empty_groups` argument. - Fix issues with "unknown series ref when trying to add exemplar" from `prometheus.remote_write` by allowing series ref links to be updated if they change. - Fix `loki.source.podlogs` component to register the Kubernetes field index for `spec.nodeName` when node filtering is enabled, preventing "Index with name `field:spec.nodeName` does not exist" errors. - Fix issue in `loki.source.file` where scheduling files could take too long. - Fix `loki.write` no longer includes internal labels __. - Fix missing native histograms custom buckets (NHCB) samples from `prometheus.remote_write`. - `otelcol.receiver.prometheus` now supports mixed histograms if `prometheus.scrape` has `honor_metadata` set to true. - `loki.source.file` has better support for non-UTF-8 encoded files. - Fix the `loki.write` endpoint block's `enable_http2` attribute to actually affect the client. - Optionally remove trailing newlines before appending entries in `stage.multiline`. - `loki.source.api` no longer drops request when relabel rules drops a specific stream. alloy-1.12.1-160000.1.1.aarch64.rpm alloy-1.12.1-160000.1.1.src.rpm alloy-debuginfo-1.12.1-160000.1.1.aarch64.rpm alloy-1.12.1-160000.1.1.ppc64le.rpm alloy-debuginfo-1.12.1-160000.1.1.ppc64le.rpm alloy-1.12.1-160000.1.1.s390x.rpm alloy-debuginfo-1.12.1-160000.1.1.s390x.rpm alloy-1.12.1-160000.1.1.x86_64.rpm alloy-debuginfo-1.12.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-15 Recommended update for aws-cli-cmd important SUSE SLFO 1.2 This update for aws-cli-cmd fixes the following issues: - Disable security context for shared volume For sharing the home directory with the container the security context needs to be disabled to allow this shared mount. For details about this setting as well as approval on the approach please visit bsc#1252390 aws-cli-cmd-1.36.1-160000.3.1.noarch.rpm aws-cli-cmd-1.36.1-160000.3.1.src.rpm openSUSE-Leap-16.0-150 Security update for cpp-httplib critical SUSE SLFO 1.2 This update for cpp-httplib fixes the following issues: - CVE-2025-66570: IP spoofing, log poisoning, and authorization bypass via header shadowing due to acceptance and parsing of client-controlled injected HTTP headers in incoming requests (bsc#1254734). - CVE-2025-66577: access and error log poisoning with spoofed client IPs due to unconditional acceptance of client-controlled `X-Forwarded-For` and `X-Real-IP` headers (bsc#1254735). cpp-httplib-0.22.0-160000.3.1.src.rpm cpp-httplib-debugsource-0.22.0-160000.3.1.aarch64.rpm cpp-httplib-devel-0.22.0-160000.3.1.aarch64.rpm libcpp-httplib0_22-0.22.0-160000.3.1.aarch64.rpm libcpp-httplib0_22-debuginfo-0.22.0-160000.3.1.aarch64.rpm cpp-httplib-debugsource-0.22.0-160000.3.1.ppc64le.rpm cpp-httplib-devel-0.22.0-160000.3.1.ppc64le.rpm libcpp-httplib0_22-0.22.0-160000.3.1.ppc64le.rpm libcpp-httplib0_22-debuginfo-0.22.0-160000.3.1.ppc64le.rpm cpp-httplib-debugsource-0.22.0-160000.3.1.s390x.rpm cpp-httplib-devel-0.22.0-160000.3.1.s390x.rpm libcpp-httplib0_22-0.22.0-160000.3.1.s390x.rpm libcpp-httplib0_22-debuginfo-0.22.0-160000.3.1.s390x.rpm cpp-httplib-debugsource-0.22.0-160000.3.1.x86_64.rpm cpp-httplib-devel-0.22.0-160000.3.1.x86_64.rpm libcpp-httplib0_22-0.22.0-160000.3.1.x86_64.rpm libcpp-httplib0_22-debuginfo-0.22.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-151 Security update for docker critical SUSE SLFO 1.2 This update for docker fixes the following issues: Changes in docker: - Update to Docker 28.5.1-ce. See upstream changelog online at <https://docs.docker.com/engine/release-notes/28/#2851> - Update to Docker 28.5.0-ce. See upstream changelog online at <https://docs.docker.com/engine/release-notes/28/#2850> - Update to docker-buildx v0.29.0. Upstream changelog: <https://github.com/docker/buildx/releases/tag/v0.29.0> - Remove git-core recommends on SLE. Most SLE systems have installRecommends=yes by default and thus end up installing git with Docker. bsc#1250508 This feature is mostly intended for developers ("docker build git://") so most users already have the dependency installed, and the error when git is missing is fairly straightforward (so they can easily figure out what they need to install). - Update to docker-buildx v0.28.0. Upstream changelog: <https://github.com/docker/buildx/releases/tag/v0.28.0> - Update to Docker 28.4.0-ce. See upstream changelog online at <https://docs.docker.com/engine/release-notes/28/#2840> * Fixes a nil pointer panic in "docker push". bsc#1248373 - Update warnings and errors related to "docker buildx ..." so that they reference our openSUSE docker-buildx packages. - Enable building docker-buildx for SLE15 systems with SUSEConnect secret injection enabled. PED-12534 PED-8905 bsc#1247594 As docker-buildx does not support our SUSEConnect secret injection (and some users depend "docker build" working transparently), patch the docker CLI so that "docker build" will no longer automatically call "docker buildx build", effectively making DOCKER_BUILDKIT=0 the default configuration. Users can manually use "docker buildx ..." commands or set DOCKER_BUILDKIT=1 in order to opt-in to using docker-buildx. Users can silence the "docker build" warning by setting DOCKER_BUILDKIT=0 explicitly. In order to inject SCC credentials with docker-buildx, users should use RUN --mount=type=secret,id=SCCcredentials zypper -n ... in their Dockerfiles, and docker buildx build --secret id=SCCcredentials,src=/etc/zypp/credentials.d/SCCcredentials,type=file . when doing their builds. - Update to Docker 28.3.3-ce. See upstream changelog online at <https://docs.docker.com/engine/release-notes/28/#2833> CVE-2025-54388 bsc#1247367 - Update to docker-buildx v0.26.1. Upstream changelog: <https://github.com/docker/buildx/releases/tag/v0.26.1> - Update to docker-buildx v0.26.0. Upstream changelog: <https://github.com/docker/buildx/releases/tag/v0.26.0> Updating docker will restart the docker service, which may stop some of your docker containers. Do you want to proceed with the update? docker-28.5.1_ce-160000.4.1.aarch64.rpm docker-28.5.1_ce-160000.4.1.src.rpm docker-bash-completion-28.5.1_ce-160000.4.1.noarch.rpm docker-buildx-0.29.0-160000.4.1.aarch64.rpm docker-buildx-debuginfo-0.29.0-160000.4.1.aarch64.rpm docker-debuginfo-28.5.1_ce-160000.4.1.aarch64.rpm docker-fish-completion-28.5.1_ce-160000.4.1.noarch.rpm docker-rootless-extras-28.5.1_ce-160000.4.1.noarch.rpm docker-zsh-completion-28.5.1_ce-160000.4.1.noarch.rpm docker-28.5.1_ce-160000.4.1.ppc64le.rpm docker-buildx-0.29.0-160000.4.1.ppc64le.rpm docker-buildx-debuginfo-0.29.0-160000.4.1.ppc64le.rpm docker-debuginfo-28.5.1_ce-160000.4.1.ppc64le.rpm docker-28.5.1_ce-160000.4.1.s390x.rpm docker-buildx-0.29.0-160000.4.1.s390x.rpm docker-buildx-debuginfo-0.29.0-160000.4.1.s390x.rpm docker-debuginfo-28.5.1_ce-160000.4.1.s390x.rpm docker-28.5.1_ce-160000.4.1.x86_64.rpm docker-buildx-0.29.0-160000.4.1.x86_64.rpm docker-buildx-debuginfo-0.29.0-160000.4.1.x86_64.rpm docker-debuginfo-28.5.1_ce-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-152 Recommended update for scap-security-guide critical SUSE SLFO 1.2 This update for scap-security-guide fixes the following issues: - updated to 0.1.79 (jsc#ECO-3319) * Add rhcos4 Profile for BSI Grundschutz * Create SLE15 general profile * Fix crypto policy settings in RHEL CIS profiles * Remove deprecated CIS OpenShift 1.4.0 and 1.5.0 profiles * Remove OCP STIG V1R1 * Remove OCP STIG V2R1 * Various updates for SLE 12/15 - updated to 0.1.78 (jsc#ECO-3319) * Enable SCE content for problematic rules that can traverse the whole filesystem * Remove unnecessary Jinja2 macros in control files * Update RHEL 8 STIG to V2R4 and RHEL 9 STIG to V2R5 * Add Debian 13 profile for ANSSI BP 28 (enhanced) * Create SLEM5 General profile * Create SL Micro 6 product and general profile * Update SLE15 STIG version to V2R5 * Update SLE12 STIG version to V3R3 * Update SLEM5 STIG version to V1R2 scap-security-guide-0.1.79-160000.1.1.noarch.rpm scap-security-guide-0.1.79-160000.1.1.src.rpm scap-security-guide-debian-0.1.79-160000.1.1.noarch.rpm scap-security-guide-redhat-0.1.79-160000.1.1.noarch.rpm scap-security-guide-ubuntu-0.1.79-160000.1.1.noarch.rpm openSUSE-Leap-16.0-153 Security update for cargo-c moderate SUSE SLFO 1.2 This update for cargo-c fixes the following issues: - CVE-2025-4574: crossbeam-channel: Fixed double-free on drop in Channel::discard_all_messages (bsc#1243179) - CVE-2025-58160: tracing-subscriber: Fixed log pollution (bsc#1249012) - CVE-2024-12224: idna: Fixed improper validation of Punycode labels (bsc#1243851) Other fixes: - Fixed _service file to have proper versioning - Update to version 0.10.15~git0.3e178d5: * Bump actions/download-artifact from 4 to 5 * Update implib requirement from 0.3.5 to 0.4.0 * Add rlib to the targets when building tests * Allow disabling emission of library version constants in header files * Bump to cargo 0.90 * Fix static_libraries swallowing sequence of -framework flags * Fix non-POSIX paths in Libdir under Windows * Bump actions-rs-plus/clippy-check from 2.2.1 to 2.3.0 * Fix clippy lints * Bump cargo-0.89, object-0.37.1, cbindgen-0.29 cargo-c-0.10.15-160000.1.1.aarch64.rpm cargo-c-0.10.15-160000.1.1.src.rpm cargo-c-debuginfo-0.10.15-160000.1.1.aarch64.rpm cargo-c-debugsource-0.10.15-160000.1.1.aarch64.rpm cargo-c-0.10.15-160000.1.1.ppc64le.rpm cargo-c-debuginfo-0.10.15-160000.1.1.ppc64le.rpm cargo-c-debugsource-0.10.15-160000.1.1.ppc64le.rpm cargo-c-0.10.15-160000.1.1.s390x.rpm cargo-c-debuginfo-0.10.15-160000.1.1.s390x.rpm cargo-c-debugsource-0.10.15-160000.1.1.s390x.rpm cargo-c-0.10.15-160000.1.1.x86_64.rpm cargo-c-debuginfo-0.10.15-160000.1.1.x86_64.rpm cargo-c-debugsource-0.10.15-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-154 Recommended update for selinux-policy critical SUSE SLFO 1.2 This update for selinux-policy fixes the following issues: Changes in selinux-policy: Update to version 20250627+git345.3965b24b0: * Allow 'mysql-systemd-helper upgrade' to work correctly (bsc#1255024) Update to version 20250627+git343.b66ec7135: * Allow snapper_tu_etc_plugin_t to connect to machined varlink socket (bsc#1254889) Update to version 20250627+git341.4beeb2d65: * Allow virtlogd_t dac_override (bsc#1253389) * Introduce systemd_cryptsetup_generator_var_run_t file type (bsc#1244459) * Allow virtqemud_t to read/write device_t (bsc#1251789) * update support for polkit agent helper (bsc#1251931) * Allow system_mail_t read apache system content conditionally * Allow login_userdomain read lastlog * Allow sshd-net read and write to sshd vsock socket * Update ktls policy * Add comprehensive SELinux policy module for bwrap thumbnail generation * Revert "Allow thumb_t create permission in the user namespace" * Allow systemd-machined read svirt process state * Allow sshd_auth_t getopt/setopt on tcp_socket (bsc#1252992) * Allow sysadm access to TPM * Allow tlp get the attributes of the pidfs filesystem * Allow kmscon to read netlink_kobject_uevent_socket * Allow systemd-ssh-issue read kernel sysctls * fix: bz2279215 Allow speech-dispatcher access to user home/cache files * Allow create kerberos files in postgresql db home * Fix files_delete_boot_symlinks() to contain delete_lnk_files_pattern * Allow shell comamnds in locate systemd service (bsc#1246559) * Introduce initrc_nnp_daemon_domain interface * Label /var/lib/cosmic-greeter with xdm_var_lib_t * Allow setroubleshoot-fixit get attributes of xattr fs * Allow insights-client manage /etc symlinks * Allow insights-client get attributes of the rpm executable * Allow nfsidmapd search virt lib directories * Allow iotop stream connect to systemd-userdbd * Allow snapper_sdbootutil_plugin_t manage unlabeled_t files,dirs,symlinks (bsc#1252993) * Allow gnome-remote-desktop read sssd public files * Allow thumb_t stream connect to systemd-userdbd * Add auth_nnp_domtrans_chkpwd() * Allow sshd_auth_t getopt/setopt on tcp_socket (bsc#1252992) * Allow bluez dbus API passing unix domain sockets * Allow bluez dbus api pass sockets over dbus * Dontaudit systemd-generator connect to sssd over a unix stream socket * Allow init watch/watch_reads systemd-machined user ptys * Introduce sap_service_transition_to_unconfined_user boolean * allow init to read sap symlinks * Allow SAP domain to relocation text in all files - Fix macros.selinux-policy to allow changing booleans when policy is not loaded. Previous logic was broken (bsc#1254395) Update to version 20250627+git293.3432d4834: * Allow pcscd_t to search cgroup (bsc#1253098) * Fix syntax error in userdomain.if * Allow nnp_transition for OpenSMTPD (bsc#1252431) * Allow ras-mc-ctl get attributes of the kmod executable * Define file equivalency for /var/opt * Allow virtnodedev_t the perfmon capability * Allow nut_upsdrvctl_t the sys_ptrace capability * Label /usr/lib/systemd/user/graphical-session-pre.target with xdm_unit_file_t * Allow snapper sdbootutil plugin read emmc devices (bsc#1231354) * Allow pcrlock to delete pid entries * Allow systemd_pcrlock_t to manage its pid files * Mark snapper_sdbootutil_plugin_t as permissive * Drop unnamed filetrans, should be done upstream (bsc#1241964) * Label pcrlock pid file correctly (bsc#1241964) * Allow snapper sdbootutil plugin send msg to system bus (bsc#1241964) * snapper takes output from stdout/err, allow pcrlock to write * Add tpm2_getcap permissions to snapper sdbootutil (bsc#1244573) * Allow snapper sdbootutil plugin to read snapper data and conf * Allow snapper sdbootutil plugin to grep /proc/stat (bsc#1241964) * Replace snapper tmp file access for pcrlock (bsc#1241964) * Allow snapper sdbootutil read kernel module dirs (bsc#1241964) * Allow snapper sdbootutil plugin use bootctl (bsc#1241964) * Allow snapper sdbootutil plugin to list and read sysfs (bsc#1241964) * Allow snapper sdbootutil sys_admin (bsc#1241964) * Allow snapper sdbootutils plugin to findmnt (bsc#1241964) * Allow snapper sdbootutil plugin rw tpm (bsc#1233358) * Move manage dos permissions and dontaudit execmem to snapper sdbootutils plugin (bsc#1241964) * Move snapper domtrans to sdbootutil to plugin (bsc#1241964) * Revert snapper access to keys, move to sdbootutils plugin policy (bsc#1241964) * Add initial seperate policy for sdbootutil called by snapper (bsc#1233358) * Allow sort in snapper_grub_plugin_t read cpu.max (bsc#1252095) * systemd-sysctl: allow rw on binfm_misc_fs_t to set binfmt_misc status * Allow cupsd to manage cupsd_rw_etc_t lnk_files * Set temporary no-stub resolv.conf file from NetworkManager as net_conf_t * Allow spamc read aliases file * Mark configfs_t as mountpoint (bsc#1246080) * Allow systemd-machined watch cgroup files * Allow sshd-auth read generic proc files * Allow sshd-auth read and write user domain ptys * Allow logwatch read and write sendmail unix stream sockets * Allow logwatch domain transition on rpm execution * Allow thumb_t mounton its private tmpfs files * Allow thumb_t create permission in the user namespace * Allow corenet_unconfined_type name_bind to icmp_socket * Allow systemd-networkd to manage systemd_networkd_var_lib_t files * Allow sshd-session get attributes of sshd vsock socket selinux-policy-20250627+git345.3965b24b0-160000.1.1.noarch.rpm selinux-policy-20250627+git345.3965b24b0-160000.1.1.src.rpm selinux-policy-devel-20250627+git345.3965b24b0-160000.1.1.noarch.rpm selinux-policy-doc-20250627+git345.3965b24b0-160000.1.1.noarch.rpm selinux-policy-minimum-20250627+git345.3965b24b0-160000.1.1.noarch.rpm selinux-policy-sandbox-20250627+git345.3965b24b0-160000.1.1.noarch.rpm selinux-policy-targeted-20250627+git345.3965b24b0-160000.1.1.noarch.rpm openSUSE-Leap-16.0-155 Security update for rust1.91, rust1.92 moderate SUSE SLFO 1.2 This update for rust1.91 and rust1.92 fixes the following issues: Rust is shipped in 1.91.0 version. Please see https://github.com/rust-lang/rust/releases/tag/1.91.0 for changes. Rust is shipped in 1.92.0 version. Please see https://github.com/rust-lang/rust/releases/tag/1.92.0 for changes. cargo1.91-1.91.0-160000.1.1.aarch64.rpm cargo1.91-debuginfo-1.91.0-160000.1.1.aarch64.rpm rust1.91-1.91.0-160000.1.1.aarch64.rpm rust1.91-1.91.0-160000.1.1.nosrc.rpm rust1.91-debuginfo-1.91.0-160000.1.1.aarch64.rpm rust1.91-src-1.91.0-160000.1.1.noarch.rpm cargo1.92-1.92.0-160000.1.1.aarch64.rpm cargo1.92-debuginfo-1.92.0-160000.1.1.aarch64.rpm rust1.92-1.92.0-160000.1.1.aarch64.rpm rust1.92-1.92.0-160000.1.1.nosrc.rpm rust1.92-debuginfo-1.92.0-160000.1.1.aarch64.rpm rust1.92-src-1.92.0-160000.1.1.noarch.rpm cargo1.91-1.91.0-160000.1.1.ppc64le.rpm cargo1.91-debuginfo-1.91.0-160000.1.1.ppc64le.rpm rust1.91-1.91.0-160000.1.1.ppc64le.rpm rust1.91-debuginfo-1.91.0-160000.1.1.ppc64le.rpm cargo1.92-1.92.0-160000.1.1.ppc64le.rpm cargo1.92-debuginfo-1.92.0-160000.1.1.ppc64le.rpm rust1.92-1.92.0-160000.1.1.ppc64le.rpm rust1.92-debuginfo-1.92.0-160000.1.1.ppc64le.rpm cargo1.91-1.91.0-160000.1.1.s390x.rpm cargo1.91-debuginfo-1.91.0-160000.1.1.s390x.rpm rust1.91-1.91.0-160000.1.1.s390x.rpm rust1.91-debuginfo-1.91.0-160000.1.1.s390x.rpm cargo1.92-1.92.0-160000.1.1.s390x.rpm cargo1.92-debuginfo-1.92.0-160000.1.1.s390x.rpm rust1.92-1.92.0-160000.1.1.s390x.rpm rust1.92-debuginfo-1.92.0-160000.1.1.s390x.rpm cargo1.91-1.91.0-160000.1.1.x86_64.rpm cargo1.91-debuginfo-1.91.0-160000.1.1.x86_64.rpm rust1.91-1.91.0-160000.1.1.x86_64.rpm rust1.91-debuginfo-1.91.0-160000.1.1.x86_64.rpm cargo1.92-1.92.0-160000.1.1.x86_64.rpm cargo1.92-debuginfo-1.92.0-160000.1.1.x86_64.rpm rust1.92-1.92.0-160000.1.1.x86_64.rpm rust1.92-debuginfo-1.92.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-156 Security update for webkit2gtk3 important SUSE SLFO 1.2 This update for webkit2gtk3 fixes the following issues: Update to version 2.50.4. Security issues fixed: - CVE-2025-13502: processing of maliciously crafted payloads by the GLib remote inspector server may lead to a UIProcess crash due to an out-of-bounds read and an integer underflow (bsc#1254208). - CVE-2025-13947: use of the file drag-and-drop mechanism may lead to remote information disclosure due to a lack of verification of the origins of drag operations (bsc#1254473). - CVE-2025-14174: processing maliciously crafted web content may lead to memory corruption due to improper validation (bsc#1255497). - CVE-2025-43272: processing maliciously crafted web content may lead to an unexpected process crash due to improper memory handling (bsc#1250439). - CVE-2025-43342: processing maliciously crafted web content may lead to an unexpected process crash due to a correctness issue and missing checks (bsc#1250440). - CVE-2025-43343: processing maliciously crafted web content may lead to an unexpected process crash due to improper memory handling (bsc#1251975). - CVE-2025-43356: a website may be able to access sensor information without user consent due to improper cache handling (bsc#1250441). - CVE-2025-43368: processing maliciously crafted web content may lead to an unexpected process crash due to a use-after-free issue (bsc#1250442). - CVE-2025-43392: websites may exfiltrate image data cross-origin due to issues with cache handling (bsc#1254165). - CVE-2025-43419: processing maliciously crafted web content may lead to memory corruption due to improper memory handling (bsc#1254166). - CVE-2025-43421: processing maliciously crafted web content may lead to an unexpected process crash due to enabled array allocation sinking (bsc#1254167). - CVE-2025-43425: processing maliciously crafted web content may lead to an unexpected process crash due to improper memory handling (bsc#1254168). - CVE-2025-43427: processing maliciously crafted web content may lead to an unexpected process crash due to issues with state management (bsc#1254169). - CVE-2025-43429: processing maliciously crafted web content may lead to an unexpected process crash due to a buffer overflow issue (bsc#1254174). - CVE-2025-43430: processing maliciously crafted web content may lead to an unexpected process crash due to issues with state management (bsc#1254172). - CVE-2025-43431: processing maliciously crafted web content may lead to memory corruption due to improper memory handling (bsc#1254170). - CVE-2025-43432: processing maliciously crafted web content may lead to an unexpected process crash due to a use-after-free issue (bsc#1254171). - CVE-2025-43434: processing maliciously crafted web content may lead to an unexpected process crash due to a use-after-free issue (bsc#1254179). - CVE-2025-43440: processing maliciously crafted web content may lead to an unexpected process crash due to missing checks (bsc#1254177). - CVE-2025-43443: processing maliciously crafted web content may lead to an unexpected process crash due to missing checks (bsc#1254176). - CVE-2025-43458: processing maliciously crafted web content may lead to an unexpected process crash due to issues with state management (bsc#1254498). - CVE-2025-43501: processing maliciously crafted web content may lead to an unexpected process crash due to a buffer overflow issue (bsc#1255194). - CVE-2025-43529: processing maliciously crafted web content may lead to arbitrary code execution due to a use-after-free issue (bsc#1255198). - CVE-2025-43531: processing maliciously crafted web content may lead to an unexpected process crash due to a race condition (bsc#1255183). - CVE-2025-43535: processing maliciously crafted web content may lead to an unexpected process crash due to improper memory handling (bsc#1255195). - CVE-2025-43536: processing maliciously crafted web content may lead to an unexpected process crash due to a use-after-free issue (bsc#1255200). - CVE-2025-43541: processing maliciously crafted web content may lead to an unexpected process crash due to type confusion (bsc#1255191). - CVE-2025-66287: processing maliciously crafted web content may lead to an unexpected process crash due to improper memory handling (bsc#1254509). Other issues fixed and changes: - Version 2.50.4: * Correctly handle the program name passed to the sleep disabler. * Ensure GStreamer is initialized before using the Quirks. * Fix several crashes and rendering issues. - Version 2.50.3: * Fix seeking and looping of media elements that set the "loop" property. * Fix several crashes and rendering issues. - Version 2.50.2: * Prevent unsafe URI schemes from participating in media playback. * Make jsc_value_array_buffer_get_data() function introspectable. * Fix logging in to Google accounts that have a WebAuthn second factor configured. * Fix loading webkit://gpu when there are no threads configured for GPU rendering. * Fix rendering gradiants that use the CSS hue interpolation method. * Fix pasting image data from the clipboard. * Fix font-family selection when the font name contains spaces. * Fix the build with standard C libraries that lack execinfo.h, like Musl or uClibc. * Fix capturing canvas snapshots in the Web Inspector. * Fix several crashes and rendering issues. - Version 2.50.1: * Improve text rendering performance. * Fix audio playback broken on instagram. * Fix rendering of layers with fractional transforms. * Fix the build with ENABLE(VIDEO) disabled. * Fix the build in s390x. * Fix several crashes and rendering issues. - Version 2.50.0: * Improved rendering performance by recording each layer once and replaying every dirty region in different worker threads. * Enable damage propagation to the UI process by default. * CSS property font-variant-emoji is now enabled by default. * Font synthesis properties (bold/italic) are now properly handled. * Ensure web view is focused on tap gesture. * Added new API to get the theme color of a WebKitWebView. - Version 2.49.90: * Add support for font collection / fragment identifiers. * Fix web process deadlock on exit. * Fix stuttering when playing WebP animations * Fix CSS animations with cubic-bezier timing function. * Do not start the MemoryPressureMonitor if it’s disabled * Fix several crashes and rendering issues. * Updated translations. - Version 2.48.6: * Fix emojis incorrectly rendered in their text variant. * Add support for font collection / fragment identifiers. * Fix web process deadlock on exit. * Fix stuttering when playing WebP animations. * Fix CSS animations with cubic-bezier timing function. * Do not start the MemoryPressureMonitor if it's disabled. * Fix several crashes and rendering issues. - Fix a11y regression where AT-SPI roles were mapped incorrectly. - Disable skia on ppc64le. WebKitGTK-4.1-lang-2.50.4-160000.1.1.noarch.rpm libjavascriptcoregtk-4_1-0-2.50.4-160000.1.1.aarch64.rpm libjavascriptcoregtk-4_1-0-debuginfo-2.50.4-160000.1.1.aarch64.rpm libwebkit2gtk-4_1-0-2.50.4-160000.1.1.aarch64.rpm libwebkit2gtk-4_1-0-debuginfo-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-JavaScriptCore-4_1-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKit2-4_1-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKit2WebExtension-4_1-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-4.1-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-4.1-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk-4_1-injected-bundles-2.50.4-160000.1.1.aarch64.rpm webkit2gtk-4_1-injected-bundles-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-2.50.4-160000.1.1.src.rpm webkit2gtk3-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-debugsource-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-devel-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-minibrowser-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-minibrowser-debuginfo-2.50.4-160000.1.1.aarch64.rpm WebKitGTK-4.0-lang-2.50.4-160000.1.1.noarch.rpm libjavascriptcoregtk-4_0-18-2.50.4-160000.1.1.aarch64.rpm libjavascriptcoregtk-4_0-18-debuginfo-2.50.4-160000.1.1.aarch64.rpm libwebkit2gtk-4_0-37-2.50.4-160000.1.1.aarch64.rpm libwebkit2gtk-4_0-37-debuginfo-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-JavaScriptCore-4_0-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKit2-4_0-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKit2WebExtension-4_0-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-4-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-4-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk-4_0-injected-bundles-2.50.4-160000.1.1.aarch64.rpm webkit2gtk-4_0-injected-bundles-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-soup2-2.50.4-160000.1.1.src.rpm webkit2gtk3-soup2-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-soup2-debugsource-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-soup2-devel-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-soup2-minibrowser-2.50.4-160000.1.1.aarch64.rpm webkit2gtk3-soup2-minibrowser-debuginfo-2.50.4-160000.1.1.aarch64.rpm WebKitGTK-6.0-lang-2.50.4-160000.1.1.noarch.rpm libjavascriptcoregtk-6_0-1-2.50.4-160000.1.1.aarch64.rpm libjavascriptcoregtk-6_0-1-debuginfo-2.50.4-160000.1.1.aarch64.rpm libwebkitgtk-6_0-4-2.50.4-160000.1.1.aarch64.rpm libwebkitgtk-6_0-4-debuginfo-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-JavaScriptCore-6_0-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKit-6_0-2.50.4-160000.1.1.aarch64.rpm typelib-1_0-WebKitWebProcessExtension-6_0-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-6.0-2.50.4-160000.1.1.aarch64.rpm webkit-jsc-6.0-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk4-2.50.4-160000.1.1.src.rpm webkit2gtk4-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkit2gtk4-debugsource-2.50.4-160000.1.1.aarch64.rpm webkit2gtk4-devel-2.50.4-160000.1.1.aarch64.rpm webkit2gtk4-minibrowser-2.50.4-160000.1.1.aarch64.rpm webkit2gtk4-minibrowser-debuginfo-2.50.4-160000.1.1.aarch64.rpm webkitgtk-6_0-injected-bundles-2.50.4-160000.1.1.aarch64.rpm webkitgtk-6_0-injected-bundles-debuginfo-2.50.4-160000.1.1.aarch64.rpm libjavascriptcoregtk-4_1-0-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-4_1-0-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libwebkit2gtk-4_1-0-2.50.4-160000.1.1.ppc64le.rpm libwebkit2gtk-4_1-0-debuginfo-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-JavaScriptCore-4_1-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKit2-4_1-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKit2WebExtension-4_1-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-4.1-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-4.1-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk-4_1-injected-bundles-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk-4_1-injected-bundles-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-debugsource-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-devel-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-minibrowser-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-minibrowser-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-4_0-18-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-4_0-18-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libwebkit2gtk-4_0-37-2.50.4-160000.1.1.ppc64le.rpm libwebkit2gtk-4_0-37-debuginfo-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-JavaScriptCore-4_0-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKit2-4_0-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKit2WebExtension-4_0-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-4-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-4-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk-4_0-injected-bundles-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk-4_0-injected-bundles-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-soup2-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-soup2-debugsource-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-soup2-devel-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-soup2-minibrowser-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk3-soup2-minibrowser-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-6_0-1-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-6_0-1-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libwebkitgtk-6_0-4-2.50.4-160000.1.1.ppc64le.rpm libwebkitgtk-6_0-4-debuginfo-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-JavaScriptCore-6_0-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKit-6_0-2.50.4-160000.1.1.ppc64le.rpm typelib-1_0-WebKitWebProcessExtension-6_0-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-6.0-2.50.4-160000.1.1.ppc64le.rpm webkit-jsc-6.0-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk4-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk4-debugsource-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk4-devel-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk4-minibrowser-2.50.4-160000.1.1.ppc64le.rpm webkit2gtk4-minibrowser-debuginfo-2.50.4-160000.1.1.ppc64le.rpm webkitgtk-6_0-injected-bundles-2.50.4-160000.1.1.ppc64le.rpm webkitgtk-6_0-injected-bundles-debuginfo-2.50.4-160000.1.1.ppc64le.rpm libjavascriptcoregtk-4_1-0-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-4_1-0-debuginfo-2.50.4-160000.1.1.s390x.rpm libwebkit2gtk-4_1-0-2.50.4-160000.1.1.s390x.rpm libwebkit2gtk-4_1-0-debuginfo-2.50.4-160000.1.1.s390x.rpm typelib-1_0-JavaScriptCore-4_1-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKit2-4_1-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKit2WebExtension-4_1-2.50.4-160000.1.1.s390x.rpm webkit-jsc-4.1-2.50.4-160000.1.1.s390x.rpm webkit-jsc-4.1-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk-4_1-injected-bundles-2.50.4-160000.1.1.s390x.rpm webkit2gtk-4_1-injected-bundles-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-debugsource-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-devel-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-minibrowser-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-minibrowser-debuginfo-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-4_0-18-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-4_0-18-debuginfo-2.50.4-160000.1.1.s390x.rpm libwebkit2gtk-4_0-37-2.50.4-160000.1.1.s390x.rpm libwebkit2gtk-4_0-37-debuginfo-2.50.4-160000.1.1.s390x.rpm typelib-1_0-JavaScriptCore-4_0-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKit2-4_0-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKit2WebExtension-4_0-2.50.4-160000.1.1.s390x.rpm webkit-jsc-4-2.50.4-160000.1.1.s390x.rpm webkit-jsc-4-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk-4_0-injected-bundles-2.50.4-160000.1.1.s390x.rpm webkit2gtk-4_0-injected-bundles-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-soup2-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-soup2-debugsource-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-soup2-devel-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-soup2-minibrowser-2.50.4-160000.1.1.s390x.rpm webkit2gtk3-soup2-minibrowser-debuginfo-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-6_0-1-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-6_0-1-debuginfo-2.50.4-160000.1.1.s390x.rpm libwebkitgtk-6_0-4-2.50.4-160000.1.1.s390x.rpm libwebkitgtk-6_0-4-debuginfo-2.50.4-160000.1.1.s390x.rpm typelib-1_0-JavaScriptCore-6_0-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKit-6_0-2.50.4-160000.1.1.s390x.rpm typelib-1_0-WebKitWebProcessExtension-6_0-2.50.4-160000.1.1.s390x.rpm webkit-jsc-6.0-2.50.4-160000.1.1.s390x.rpm webkit-jsc-6.0-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk4-debuginfo-2.50.4-160000.1.1.s390x.rpm webkit2gtk4-debugsource-2.50.4-160000.1.1.s390x.rpm webkit2gtk4-devel-2.50.4-160000.1.1.s390x.rpm webkit2gtk4-minibrowser-2.50.4-160000.1.1.s390x.rpm webkit2gtk4-minibrowser-debuginfo-2.50.4-160000.1.1.s390x.rpm webkitgtk-6_0-injected-bundles-2.50.4-160000.1.1.s390x.rpm webkitgtk-6_0-injected-bundles-debuginfo-2.50.4-160000.1.1.s390x.rpm libjavascriptcoregtk-4_1-0-2.50.4-160000.1.1.x86_64.rpm libjavascriptcoregtk-4_1-0-debuginfo-2.50.4-160000.1.1.x86_64.rpm libwebkit2gtk-4_1-0-2.50.4-160000.1.1.x86_64.rpm libwebkit2gtk-4_1-0-debuginfo-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-JavaScriptCore-4_1-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKit2-4_1-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKit2WebExtension-4_1-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-4.1-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-4.1-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk-4_1-injected-bundles-2.50.4-160000.1.1.x86_64.rpm webkit2gtk-4_1-injected-bundles-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-debugsource-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-devel-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-minibrowser-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-minibrowser-debuginfo-2.50.4-160000.1.1.x86_64.rpm libjavascriptcoregtk-4_0-18-2.50.4-160000.1.1.x86_64.rpm libjavascriptcoregtk-4_0-18-debuginfo-2.50.4-160000.1.1.x86_64.rpm libwebkit2gtk-4_0-37-2.50.4-160000.1.1.x86_64.rpm libwebkit2gtk-4_0-37-debuginfo-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-JavaScriptCore-4_0-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKit2-4_0-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKit2WebExtension-4_0-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-4-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-4-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk-4_0-injected-bundles-2.50.4-160000.1.1.x86_64.rpm webkit2gtk-4_0-injected-bundles-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-soup2-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-soup2-debugsource-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-soup2-devel-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-soup2-minibrowser-2.50.4-160000.1.1.x86_64.rpm webkit2gtk3-soup2-minibrowser-debuginfo-2.50.4-160000.1.1.x86_64.rpm libjavascriptcoregtk-6_0-1-2.50.4-160000.1.1.x86_64.rpm libjavascriptcoregtk-6_0-1-debuginfo-2.50.4-160000.1.1.x86_64.rpm libwebkitgtk-6_0-4-2.50.4-160000.1.1.x86_64.rpm libwebkitgtk-6_0-4-debuginfo-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-JavaScriptCore-6_0-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKit-6_0-2.50.4-160000.1.1.x86_64.rpm typelib-1_0-WebKitWebProcessExtension-6_0-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-6.0-2.50.4-160000.1.1.x86_64.rpm webkit-jsc-6.0-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk4-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkit2gtk4-debugsource-2.50.4-160000.1.1.x86_64.rpm webkit2gtk4-devel-2.50.4-160000.1.1.x86_64.rpm webkit2gtk4-minibrowser-2.50.4-160000.1.1.x86_64.rpm webkit2gtk4-minibrowser-debuginfo-2.50.4-160000.1.1.x86_64.rpm webkitgtk-6_0-injected-bundles-2.50.4-160000.1.1.x86_64.rpm webkitgtk-6_0-injected-bundles-debuginfo-2.50.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-157 Recommended update for samba important SUSE SLFO 1.2 This update for samba fixes the following issues: Changes in samba: - samba-ad-dc-libs packages are missing a DLZ plugin for bind 9.20; (bsc#1249058). - Adjust README.SUSE to reflect the new preferred location for '[printers]' share; (bsc#1254665). - Fix Samba printers reporting invalid sid during print jobs; (bsc#1234210); (bsc#1254926) ctdb-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ctdb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ctdb-pcp-pmda-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ldb-tools-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ldb-tools-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm libldb-devel-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm libldb2-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm libldb2-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm python3-ldb-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm python3-ldb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-4.22.6+git.456.11475143caf-160000.1.1.src.rpm samba-ad-dc-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ad-dc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ad-dc-libs-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ceph-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ceph-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-client-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-client-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-client-libs-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-client-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-dcerpc-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-dcerpc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-debugsource-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-devel-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-doc-4.22.6+git.456.11475143caf-160000.1.1.noarch.rpm samba-dsdb-modules-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-dsdb-modules-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-gpupdate-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ldb-ldap-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-ldb-ldap-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-libs-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-libs-python3-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-libs-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-python3-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-test-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-test-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-tool-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-winbind-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-winbind-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-winbind-libs-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm samba-winbind-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.aarch64.rpm ctdb-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ctdb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ldb-tools-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ldb-tools-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm libldb-devel-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm libldb2-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm libldb2-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm python3-ldb-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm python3-ldb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ad-dc-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ad-dc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ad-dc-libs-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-client-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-client-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-client-libs-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-client-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-dcerpc-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-dcerpc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-debugsource-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-devel-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-dsdb-modules-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-dsdb-modules-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-gpupdate-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ldb-ldap-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-ldb-ldap-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-libs-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-libs-python3-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-libs-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-python3-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-test-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-test-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-tool-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-winbind-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-winbind-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-winbind-libs-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm samba-winbind-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.ppc64le.rpm ctdb-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ctdb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ctdb-pcp-pmda-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ldb-tools-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ldb-tools-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm libldb-devel-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm libldb2-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm libldb2-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm python3-ldb-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm python3-ldb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ad-dc-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ad-dc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ad-dc-libs-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-client-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-client-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-client-libs-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-client-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-dcerpc-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-dcerpc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-debugsource-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-devel-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-dsdb-modules-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-dsdb-modules-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-gpupdate-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ldb-ldap-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-ldb-ldap-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-libs-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-libs-python3-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-libs-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-python3-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-test-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-test-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-tool-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-winbind-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-winbind-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-winbind-libs-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm samba-winbind-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.s390x.rpm ctdb-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm ctdb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm ctdb-pcp-pmda-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm ldb-tools-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm ldb-tools-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm libldb-devel-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm libldb2-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm libldb2-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm python3-ldb-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm python3-ldb-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ad-dc-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ad-dc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ad-dc-libs-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ceph-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ceph-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-client-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-client-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-client-libs-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-client-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-dcerpc-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-dcerpc-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-debugsource-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-devel-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-dsdb-modules-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-dsdb-modules-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-gpupdate-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ldb-ldap-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-ldb-ldap-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-libs-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-libs-python3-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-libs-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-python3-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-python3-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-test-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-test-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-tool-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-winbind-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-winbind-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-winbind-libs-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm samba-winbind-libs-debuginfo-4.22.6+git.456.11475143caf-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-158 Security update of open-vm-tools important SUSE SLFO 1.2 This update for open-vm-tools fixes the following issues: Update to open-vm-tools 13.0.5 based on build 24915695. (boo#1250692): Please refer to the Release Notes at https://github.com/vmware/open-vm-tools/blob/stable-13.0.5/ReleaseNotes.md. The granular changes that have gone into the open-vm-tools 13.0.5 release are in the ChangeLog at https://github.com/vmware/open-vm-tools/blob/stable-13.0.5/open-vm-tools/ChangeLog. There are no new features in the open-vm-tools 13.0.5 release. This is primarily a maintenance release that addresses a security issue. This release resolves and includes the patch for CVE-2025-41244. For more information on this vulnerability and its impact on Broadcom products, see VMSA-2025-0015. A minor enhancement has been made for Guest OS Customization. The DeployPkg plugin has been updated to use "systemctl reboot", if available. For a more complete list of issues addressed in this release, see the What's New and Resolved Issues section of the Release Notes. libvmtools-devel-13.0.5-160000.1.1.aarch64.rpm libvmtools0-13.0.5-160000.1.1.aarch64.rpm libvmtools0-debuginfo-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-13.0.5-160000.1.1.src.rpm open-vm-tools-containerinfo-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-containerinfo-debuginfo-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-debuginfo-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-debugsource-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-desktop-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-desktop-debuginfo-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-sdmp-13.0.5-160000.1.1.aarch64.rpm open-vm-tools-sdmp-debuginfo-13.0.5-160000.1.1.aarch64.rpm libvmtools-devel-13.0.5-160000.1.1.x86_64.rpm libvmtools0-13.0.5-160000.1.1.x86_64.rpm libvmtools0-debuginfo-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-containerinfo-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-containerinfo-debuginfo-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-debuginfo-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-debugsource-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-desktop-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-desktop-debuginfo-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-salt-minion-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-sdmp-13.0.5-160000.1.1.x86_64.rpm open-vm-tools-sdmp-debuginfo-13.0.5-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-159 Recommended update for s390-tools important SUSE SLFO 1.2 This update for s390-tools fixes the following issues: Upgrade s390-tools to 2.40 (jsc#PED-14586): - Add new tools / libraries: * Add project-wide .clang-tidy configuration * libutil: Introduce util_time for time related functionality * libutil: Introduce zsh/bash autocompletion tooling based on util_opt * pvinfo: Tool to display Secure Execution system information * pvverify: Tool to verify host-key documents - Changes of existing tools: * cpumf: Implement zsh and bash autocompletion * dasdfmt: Implement zsh and bash autocompletion * dbginfo.sh: Add NetworkManager and netplan * dbginfo.sh: Add kvm_stat * dbginfo.sh: Adding stp time information * dbginfo.sh: Simplify procfs collection * hyptop: Add physical information row * hyptop: Calculate sample time delta for physical partition * hyptop: Replace long option names using _ with - for consistency For example: --cpu_types -> --cpu-types (Options with _ are still supported for backward compatibility) * libekmfweb: Add function to validate a certificate against the identity key * netboot: Add longer kernel command lines support * udev/rules.d: Make virtio-blk devices non-rotational * udev/rules.d: Set default io scheduler to 'none' for virtio-blk * ziomon: Add support to sample device symlinks (/dev/disk/...) * ziorep_config: Add fcp-lun details to -M option output * ziorep_config: Add port_id and failed attributes to -A option output * netboot: Install on non-s390 architectures - Bug Fixes: * lib(ekmfweb|kmipclient): Use ln without -r * s390-tools: Fix various compilation issues with musl libc * zipl/boot: Fix unused loadparm when SCLP line-mode console is absent Upgrade s390-tools to version 2.39 (jsc#PED-10303): - Changes of existing tools: * chpstat: Add options to select IEC units for scaling (SI units are default) * chzdev: Introduce --no-module-load option * cpi: Disable CPI for SEL guests by default * dbginfo.sh: Enhance logging on timeout triggered * iucvterm: Install symlink for lsiucvallow.8 man page * lshwc: Add command line flag to specify individual counters * lspai: Add command line flag for delta values * lspai: Add command line flag for short counter names * lspai: Add command line flag to specify individual counters * lspai: Add command line flags for all cpus * lspai: Add command line flags for hexadecimal output * man: Use CR for constant width font * pvimg: Add '--image-key' option * zdev: Allow dynamic control of module load * zipl/boot: Fix EBCDIC code page 500 conversion and decrease size by 200 bytes * zipl: Add support of heterogeneous mirrors (remove technical limitations on mirrored targets, thus allowing mirrored devices consist of partitions at different offsets on disks of different types and geometry). * zkey: Add support for generating and importing exportable secure keys - Bug Fixes: * chpstat: Fix scaling of DPU utilization calculation * zdev/dracut: Prevent loading of unused kernel modules * zdev: Fix double device configuration on DPM systems * zdev: Fix double device configuration with rd.dasd * zipl_helper.device-mapper: Fix segfault in an error path libekmfweb1-2.40.0-160000.1.1.s390x.rpm libekmfweb1-debuginfo-2.40.0-160000.1.1.s390x.rpm libekmfweb1-devel-2.40.0-160000.1.1.s390x.rpm libkmipclient1-2.40.0-160000.1.1.s390x.rpm libkmipclient1-debuginfo-2.40.0-160000.1.1.s390x.rpm libkmipclient1-devel-2.40.0-160000.1.1.s390x.rpm osasnmpd-2.40.0-160000.1.1.s390x.rpm osasnmpd-debuginfo-2.40.0-160000.1.1.s390x.rpm s390-tools-2.40.0-160000.1.1.s390x.rpm s390-tools-2.40.0-160000.1.1.src.rpm s390-tools-chreipl-fcp-mpath-2.40.0-160000.1.1.s390x.rpm s390-tools-debuginfo-2.40.0-160000.1.1.s390x.rpm s390-tools-debugsource-2.40.0-160000.1.1.s390x.rpm s390-tools-genprotimg-data-2.40.0-160000.1.1.noarch.rpm s390-tools-hmcdrvfs-2.40.0-160000.1.1.s390x.rpm s390-tools-hmcdrvfs-debuginfo-2.40.0-160000.1.1.s390x.rpm s390-tools-zdsfs-2.40.0-160000.1.1.s390x.rpm s390-tools-zdsfs-debuginfo-2.40.0-160000.1.1.s390x.rpm s390-tools-2.40.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-16 Recommended update for az-cli-cmd important SUSE SLFO 1.2 This update for az-cli-cmd fixes the following issues: Changes in az-cli-cmd: Version 1.37.0: - Drop dependencies that do not appear needed. Not referenced in the sources of azure-cli upstream. (bsc#1253140) - Change the deriviation chain by adding the az-sdk container as a base - Remove the executable script if it exists prior to generation of a new wrapper by flake-ctl. Otherwise flake-ctl complains about the existence of the script and we get an error during package update. - Disable security context for shared volume For sharing the home directory with the container the security context needs to be disabled to allow this shared mount. For details about this setting as well as approval on the approach please visit bsc#1252390 az-cli-cmd-1.37.0-160000.1.1.noarch.rpm az-cli-cmd-1.37.0-160000.1.1.src.rpm openSUSE-Leap-16.0-160 Recommended update for resource-agents moderate SUSE SLFO 1.2 This update for resource-agents fixes the following issues: - Fix: OCF Resource Agents for vsftpd failure: No PID found (bsc#1249819) ldirectord-4.16.0+git90.968ad701-160000.2.1.aarch64.rpm resource-agents-4.16.0+git90.968ad701-160000.2.1.aarch64.rpm resource-agents-4.16.0+git90.968ad701-160000.2.1.src.rpm resource-agents-debuginfo-4.16.0+git90.968ad701-160000.2.1.aarch64.rpm resource-agents-debugsource-4.16.0+git90.968ad701-160000.2.1.aarch64.rpm resource-agents-zfs-4.16.0+git90.968ad701-160000.2.1.aarch64.rpm ldirectord-4.16.0+git90.968ad701-160000.2.1.ppc64le.rpm resource-agents-4.16.0+git90.968ad701-160000.2.1.ppc64le.rpm resource-agents-debuginfo-4.16.0+git90.968ad701-160000.2.1.ppc64le.rpm resource-agents-debugsource-4.16.0+git90.968ad701-160000.2.1.ppc64le.rpm resource-agents-zfs-4.16.0+git90.968ad701-160000.2.1.ppc64le.rpm ldirectord-4.16.0+git90.968ad701-160000.2.1.s390x.rpm resource-agents-4.16.0+git90.968ad701-160000.2.1.s390x.rpm resource-agents-debuginfo-4.16.0+git90.968ad701-160000.2.1.s390x.rpm resource-agents-debugsource-4.16.0+git90.968ad701-160000.2.1.s390x.rpm resource-agents-zfs-4.16.0+git90.968ad701-160000.2.1.s390x.rpm ldirectord-4.16.0+git90.968ad701-160000.2.1.x86_64.rpm resource-agents-4.16.0+git90.968ad701-160000.2.1.x86_64.rpm resource-agents-debuginfo-4.16.0+git90.968ad701-160000.2.1.x86_64.rpm resource-agents-debugsource-4.16.0+git90.968ad701-160000.2.1.x86_64.rpm resource-agents-zfs-4.16.0+git90.968ad701-160000.2.1.x86_64.rpm openSUSE-Leap-16.0-161 Security update for podman important SUSE SLFO 1.2 This update for podman fixes the following issues: - CVE-2025-31133,CVE-2025-52565,CVE-2025-52881: container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files (bsc#1252376). - CVE-2025-9566: kube play command may overwrite host files (bsc#1249154). podman-5.4.2-160000.3.1.aarch64.rpm podman-5.4.2-160000.3.1.src.rpm podman-debuginfo-5.4.2-160000.3.1.aarch64.rpm podman-docker-5.4.2-160000.3.1.noarch.rpm podman-remote-5.4.2-160000.3.1.aarch64.rpm podman-remote-debuginfo-5.4.2-160000.3.1.aarch64.rpm podmansh-5.4.2-160000.3.1.aarch64.rpm podman-5.4.2-160000.3.1.ppc64le.rpm podman-debuginfo-5.4.2-160000.3.1.ppc64le.rpm podman-remote-5.4.2-160000.3.1.ppc64le.rpm podman-remote-debuginfo-5.4.2-160000.3.1.ppc64le.rpm podmansh-5.4.2-160000.3.1.ppc64le.rpm podman-5.4.2-160000.3.1.s390x.rpm podman-debuginfo-5.4.2-160000.3.1.s390x.rpm podman-remote-5.4.2-160000.3.1.s390x.rpm podman-remote-debuginfo-5.4.2-160000.3.1.s390x.rpm podmansh-5.4.2-160000.3.1.s390x.rpm podman-5.4.2-160000.3.1.x86_64.rpm podman-debuginfo-5.4.2-160000.3.1.x86_64.rpm podman-remote-5.4.2-160000.3.1.x86_64.rpm podman-remote-debuginfo-5.4.2-160000.3.1.x86_64.rpm podmansh-5.4.2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-162 Recommended update for suse-module-tools important SUSE SLFO 1.2 This update for suse-module-tools fixes the following issues: - Update to version 16.0.64: * udev rules: write block queue attributes only if necessary (bsc#1254928) - Update to version 16.0.63: * 80-hotplug-cpu-mem.rules: remount tmpfs on "online" uevents (bsc#1254264) * udev: use systemd service to remount tmpfs (bsc#1253679) - Update to version 16.0.62: * spec file: remove %udev_rules_update call (bsc#1250664) - Update to version 16.0.61: * weak-modules2: skip livepatch dir when checking for unresolved symbols (bsc#1250655) suse-module-tools-16.0.64-160000.1.1.aarch64.rpm suse-module-tools-16.0.64-160000.1.1.src.rpm suse-module-tools-scriptlets-16.0.64-160000.1.1.aarch64.rpm suse-module-tools-16.0.64-160000.1.1.ppc64le.rpm suse-module-tools-scriptlets-16.0.64-160000.1.1.ppc64le.rpm suse-module-tools-16.0.64-160000.1.1.s390x.rpm suse-module-tools-scriptlets-16.0.64-160000.1.1.s390x.rpm suse-module-tools-16.0.64-160000.1.1.x86_64.rpm suse-module-tools-scriptlets-16.0.64-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-163 Recommended update for mdadm important SUSE SLFO 1.2 This update for mdadm fixes the following issues: - fix crash with homehost=none (bsc#1254541) - mdcheck: workaround for bash 5.3 bug (bsc#1254087) mdadm-4.4+31.g541b40d3-160000.1.1.aarch64.rpm mdadm-4.4+31.g541b40d3-160000.1.1.src.rpm mdadm-debuginfo-4.4+31.g541b40d3-160000.1.1.aarch64.rpm mdadm-debugsource-4.4+31.g541b40d3-160000.1.1.aarch64.rpm mdadm-doc-4.4+31.g541b40d3-160000.1.1.aarch64.rpm mdadm-4.4+31.g541b40d3-160000.1.1.ppc64le.rpm mdadm-debuginfo-4.4+31.g541b40d3-160000.1.1.ppc64le.rpm mdadm-debugsource-4.4+31.g541b40d3-160000.1.1.ppc64le.rpm mdadm-doc-4.4+31.g541b40d3-160000.1.1.ppc64le.rpm mdadm-4.4+31.g541b40d3-160000.1.1.s390x.rpm mdadm-debuginfo-4.4+31.g541b40d3-160000.1.1.s390x.rpm mdadm-debugsource-4.4+31.g541b40d3-160000.1.1.s390x.rpm mdadm-doc-4.4+31.g541b40d3-160000.1.1.s390x.rpm mdadm-4.4+31.g541b40d3-160000.1.1.x86_64.rpm mdadm-debuginfo-4.4+31.g541b40d3-160000.1.1.x86_64.rpm mdadm-debugsource-4.4+31.g541b40d3-160000.1.1.x86_64.rpm mdadm-doc-4.4+31.g541b40d3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-164 Security update for libpcap low SUSE SLFO 1.2 This update for libpcap fixes the following issues: - CVE-2025-11961: missing validation of provided MAC-48 address string in `pcap_ether_aton()` can lead to out-of-bounds read and write (bsc#1255765). libpcap-1.10.5-160000.4.1.src.rpm libpcap-debugsource-1.10.5-160000.4.1.aarch64.rpm libpcap-devel-1.10.5-160000.4.1.aarch64.rpm libpcap-devel-static-1.10.5-160000.4.1.aarch64.rpm libpcap1-1.10.5-160000.4.1.aarch64.rpm libpcap1-debuginfo-1.10.5-160000.4.1.aarch64.rpm libpcap-debugsource-1.10.5-160000.4.1.ppc64le.rpm libpcap-devel-1.10.5-160000.4.1.ppc64le.rpm libpcap-devel-static-1.10.5-160000.4.1.ppc64le.rpm libpcap1-1.10.5-160000.4.1.ppc64le.rpm libpcap1-debuginfo-1.10.5-160000.4.1.ppc64le.rpm libpcap-debugsource-1.10.5-160000.4.1.s390x.rpm libpcap-devel-1.10.5-160000.4.1.s390x.rpm libpcap-devel-static-1.10.5-160000.4.1.s390x.rpm libpcap1-1.10.5-160000.4.1.s390x.rpm libpcap1-debuginfo-1.10.5-160000.4.1.s390x.rpm libpcap-debugsource-1.10.5-160000.4.1.x86_64.rpm libpcap-devel-1.10.5-160000.4.1.x86_64.rpm libpcap-devel-static-1.10.5-160000.4.1.x86_64.rpm libpcap1-1.10.5-160000.4.1.x86_64.rpm libpcap1-debuginfo-1.10.5-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-165 Security update for libheif moderate SUSE SLFO 1.2 This update for libheif fixes the following issues: - CVE-2025-68431: heap buffer over-read in `HeifPixelImage::overlay()` via crafted HEIF file that exercises the overlay image item path (bsc#1255735). gdk-pixbuf-loader-libheif-1.19.7-160000.3.1.aarch64.rpm gdk-pixbuf-loader-libheif-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-1.19.7-160000.3.1.src.rpm libheif-aom-1.19.7-160000.3.1.aarch64.rpm libheif-aom-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-dav1d-1.19.7-160000.3.1.aarch64.rpm libheif-dav1d-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-debugsource-1.19.7-160000.3.1.aarch64.rpm libheif-devel-1.19.7-160000.3.1.aarch64.rpm libheif-ffmpeg-1.19.7-160000.3.1.aarch64.rpm libheif-ffmpeg-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-jpeg-1.19.7-160000.3.1.aarch64.rpm libheif-jpeg-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-openjpeg-1.19.7-160000.3.1.aarch64.rpm libheif-openjpeg-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-rav1e-1.19.7-160000.3.1.aarch64.rpm libheif-rav1e-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif-svtenc-1.19.7-160000.3.1.aarch64.rpm libheif-svtenc-debuginfo-1.19.7-160000.3.1.aarch64.rpm libheif1-1.19.7-160000.3.1.aarch64.rpm libheif1-debuginfo-1.19.7-160000.3.1.aarch64.rpm gdk-pixbuf-loader-libheif-1.19.7-160000.3.1.ppc64le.rpm gdk-pixbuf-loader-libheif-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-aom-1.19.7-160000.3.1.ppc64le.rpm libheif-aom-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-dav1d-1.19.7-160000.3.1.ppc64le.rpm libheif-dav1d-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-debugsource-1.19.7-160000.3.1.ppc64le.rpm libheif-devel-1.19.7-160000.3.1.ppc64le.rpm libheif-ffmpeg-1.19.7-160000.3.1.ppc64le.rpm libheif-ffmpeg-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-jpeg-1.19.7-160000.3.1.ppc64le.rpm libheif-jpeg-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-openjpeg-1.19.7-160000.3.1.ppc64le.rpm libheif-openjpeg-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif-rav1e-1.19.7-160000.3.1.ppc64le.rpm libheif-rav1e-debuginfo-1.19.7-160000.3.1.ppc64le.rpm libheif1-1.19.7-160000.3.1.ppc64le.rpm libheif1-debuginfo-1.19.7-160000.3.1.ppc64le.rpm gdk-pixbuf-loader-libheif-1.19.7-160000.3.1.s390x.rpm gdk-pixbuf-loader-libheif-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-aom-1.19.7-160000.3.1.s390x.rpm libheif-aom-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-dav1d-1.19.7-160000.3.1.s390x.rpm libheif-dav1d-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-debugsource-1.19.7-160000.3.1.s390x.rpm libheif-devel-1.19.7-160000.3.1.s390x.rpm libheif-ffmpeg-1.19.7-160000.3.1.s390x.rpm libheif-ffmpeg-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-jpeg-1.19.7-160000.3.1.s390x.rpm libheif-jpeg-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-openjpeg-1.19.7-160000.3.1.s390x.rpm libheif-openjpeg-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif-rav1e-1.19.7-160000.3.1.s390x.rpm libheif-rav1e-debuginfo-1.19.7-160000.3.1.s390x.rpm libheif1-1.19.7-160000.3.1.s390x.rpm libheif1-debuginfo-1.19.7-160000.3.1.s390x.rpm gdk-pixbuf-loader-libheif-1.19.7-160000.3.1.x86_64.rpm gdk-pixbuf-loader-libheif-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-aom-1.19.7-160000.3.1.x86_64.rpm libheif-aom-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-dav1d-1.19.7-160000.3.1.x86_64.rpm libheif-dav1d-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-debugsource-1.19.7-160000.3.1.x86_64.rpm libheif-devel-1.19.7-160000.3.1.x86_64.rpm libheif-ffmpeg-1.19.7-160000.3.1.x86_64.rpm libheif-ffmpeg-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-jpeg-1.19.7-160000.3.1.x86_64.rpm libheif-jpeg-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-openjpeg-1.19.7-160000.3.1.x86_64.rpm libheif-openjpeg-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-rav1e-1.19.7-160000.3.1.x86_64.rpm libheif-rav1e-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif-svtenc-1.19.7-160000.3.1.x86_64.rpm libheif-svtenc-debuginfo-1.19.7-160000.3.1.x86_64.rpm libheif1-1.19.7-160000.3.1.x86_64.rpm libheif1-debuginfo-1.19.7-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-166 Security update for go1.24 important SUSE SLFO 1.2 This update for go1.24 fixes the following issues: Update to go1.24.12 (released 2026-01-15) (bsc#1236217) Security fixes: - CVE-2025-61730: crypto/tls: handshake messages may be processed at the incorrect encryption level (bsc#1256821). - CVE-2025-68119: cmd/go: unexpected code execution when invoking toolchain (bsc#1256820). - CVE-2025-61731: cmd/go: bypass of flag sanitization can lead to arbitrary code execution (bsc#1256819). - CVE-2025-61726: net/http: memory exhaustion in Request.ParseForm (bsc#1256817). - CVE-2025-61728: archive/zip: denial of service when parsing arbitrary ZIP archives (bsc#1256816). - CVE-2025-68121: crypto/tls: Config.Clone copies automatically generated session ticket keys, session resumption does not account for the expiration of full certificate chain (bsc#1256818). Other fixes: * go#76408 crypto/tls: earlyTrafficSecret should use ClientHelloInner if ECH enabled * go#76624 os: on Unix, Readdirnames skips directory entries with zero inodes * go#76760 runtime: stack split at bad time in os/signal with Go 1.25.4 windows 386 * go#76796 runtime: race detector crash on ppc64le * go#76966 cmd/compile/internal/ssa: Compile.func1(): panic during sccp while compiling &lt;function&gt;: runtime error: index out of range go1.24-1.24.12-160000.1.1.aarch64.rpm go1.24-1.24.12-160000.1.1.src.rpm go1.24-debuginfo-1.24.12-160000.1.1.aarch64.rpm go1.24-doc-1.24.12-160000.1.1.aarch64.rpm go1.24-libstd-1.24.12-160000.1.1.aarch64.rpm go1.24-libstd-debuginfo-1.24.12-160000.1.1.aarch64.rpm go1.24-race-1.24.12-160000.1.1.aarch64.rpm go1.24-1.24.12-160000.1.1.ppc64le.rpm go1.24-doc-1.24.12-160000.1.1.ppc64le.rpm go1.24-race-1.24.12-160000.1.1.ppc64le.rpm go1.24-1.24.12-160000.1.1.s390x.rpm go1.24-doc-1.24.12-160000.1.1.s390x.rpm go1.24-race-1.24.12-160000.1.1.s390x.rpm go1.24-1.24.12-160000.1.1.x86_64.rpm go1.24-debuginfo-1.24.12-160000.1.1.x86_64.rpm go1.24-doc-1.24.12-160000.1.1.x86_64.rpm go1.24-libstd-1.24.12-160000.1.1.x86_64.rpm go1.24-libstd-debuginfo-1.24.12-160000.1.1.x86_64.rpm go1.24-race-1.24.12-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-167 Recommended update for emacs moderate SUSE SLFO 1.2 This update for emacs fixes the following issues: - Remove dependency on update-desktop-files (jsc#PED-15201) - Avoid direct dependencies to X11 libraries for wayland port - Enable valgrind support on riscv64 - Update to GNU Emacs version 30.2 * Mainly a bug fix version - Remove ctags.1 that's unused with libalternatives - Requires: alts, not used in scriptlets - Move .gnu-emacs to /usr/etc/skel/ emacs-30.2-160000.1.1.aarch64.rpm emacs-30.2-160000.1.1.src.rpm emacs-debuginfo-30.2-160000.1.1.aarch64.rpm emacs-el-30.2-160000.1.1.noarch.rpm emacs-eln-30.2-160000.1.1.aarch64.rpm emacs-games-30.2-160000.1.1.aarch64.rpm emacs-games-debuginfo-30.2-160000.1.1.aarch64.rpm emacs-info-30.2-160000.1.1.noarch.rpm emacs-nox-30.2-160000.1.1.aarch64.rpm emacs-nox-debuginfo-30.2-160000.1.1.aarch64.rpm emacs-x11-30.2-160000.1.1.aarch64.rpm emacs-x11-debuginfo-30.2-160000.1.1.aarch64.rpm etags-30.2-160000.1.1.aarch64.rpm etags-debuginfo-30.2-160000.1.1.aarch64.rpm emacs-30.2-160000.1.1.ppc64le.rpm emacs-debuginfo-30.2-160000.1.1.ppc64le.rpm emacs-eln-30.2-160000.1.1.ppc64le.rpm emacs-games-30.2-160000.1.1.ppc64le.rpm emacs-games-debuginfo-30.2-160000.1.1.ppc64le.rpm emacs-nox-30.2-160000.1.1.ppc64le.rpm emacs-nox-debuginfo-30.2-160000.1.1.ppc64le.rpm emacs-x11-30.2-160000.1.1.ppc64le.rpm emacs-x11-debuginfo-30.2-160000.1.1.ppc64le.rpm etags-30.2-160000.1.1.ppc64le.rpm etags-debuginfo-30.2-160000.1.1.ppc64le.rpm emacs-30.2-160000.1.1.s390x.rpm emacs-debuginfo-30.2-160000.1.1.s390x.rpm emacs-eln-30.2-160000.1.1.s390x.rpm emacs-games-30.2-160000.1.1.s390x.rpm emacs-games-debuginfo-30.2-160000.1.1.s390x.rpm emacs-nox-30.2-160000.1.1.s390x.rpm emacs-nox-debuginfo-30.2-160000.1.1.s390x.rpm emacs-x11-30.2-160000.1.1.s390x.rpm emacs-x11-debuginfo-30.2-160000.1.1.s390x.rpm etags-30.2-160000.1.1.s390x.rpm etags-debuginfo-30.2-160000.1.1.s390x.rpm emacs-30.2-160000.1.1.x86_64.rpm emacs-debuginfo-30.2-160000.1.1.x86_64.rpm emacs-eln-30.2-160000.1.1.x86_64.rpm emacs-games-30.2-160000.1.1.x86_64.rpm emacs-games-debuginfo-30.2-160000.1.1.x86_64.rpm emacs-nox-30.2-160000.1.1.x86_64.rpm emacs-nox-debuginfo-30.2-160000.1.1.x86_64.rpm emacs-x11-30.2-160000.1.1.x86_64.rpm emacs-x11-debuginfo-30.2-160000.1.1.x86_64.rpm etags-30.2-160000.1.1.x86_64.rpm etags-debuginfo-30.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-168 Recommended update for supportutils-plugin-trento, trento-agent, trento-web, trento-wanda, trento-checks, mcp-server-trento moderate SUSE SLFO 1.2 This update for supportutils-plugin-trento, trento-agent, trento-web, trento-wanda, trento-checks, mcp-server-trento fixes the following issues: Changes in trento-agent: - Release 3.0.0 ## What's Changed * Release version 3.0.0 (#514) @nelsonkopliku * specify C locale for command execution (#511) @gereonvey * Bump trento-contracts dependency (#494) @gagandeepb * Update mockery to 2.53.2 (#485) @balanza * Bump go 1.25 (#480) @balanza * Bump golangci-lint (#481) @balanza * Bump workbench version (#474) @balanza * Add link to contribution (#477) @EMaksy * Improve agent docs for auto build (#475) @EMaksy * Bump workbench version (#467) @balanza * Update table of contents in the Readme (#465) @EMaksy * Discovery cluster offline host (#464) @balanza * Convert Markdown documentation to Adoc (#459) @EMaksy * Update mockery usage (#453) @nelsonkopliku * Replace logrus logger with built-in log/slogs (#449) @balanza * Implement FS usage gatherer (#440) @janvhs * Add Architecture Discovery (#448) @janvhs * Update workbench dependency (#450) @arbulu89 * Remove support for the 64 Bit ARM (aarch64/arm64) (#445) @janvhs ### Features * Add managed field to crm_mon group (#457) @arbulu89 * Systemd units discovery (#455) @nelsonkopliku ### Bug Fixes * Handle zypper versioncmp exit codes 11 and 12 (#495) @arbulu89 * Fix link and references for adoc documents (#462) @EMaksy * Fix missing log references (#452) @nelsonkopliku * Fix log-level usage (#443) @nelsonkopliku ### Maintenance * Sync both stable and rolling in obs (#466) @vicenteqa * Use adoc in spec file docs (#468) @arbulu89 * Use latest version of endorama/asdf-parse-tool-versions to avoid using deprecated set-output command in gh actions. (#458) @vicenteqa ### Dependencies <details> <summary>37 changes</summary> * Bump actions/checkout from 5 to 6 (#513) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump endorama/asdf-parse-tool-versions from 1.4.0 to 1.4.1 (#512) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/mod from 0.29.0 to 0.30.0 (#509) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/sync from 0.17.0 to 0.18.0 (#507) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golangci/golangci-lint-action from 8 to 9 (#508) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump google.golang.org/protobuf from 1.36.8 to 1.36.10 (#505) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/viper from 1.20.1 to 1.21.0 (#506) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 (#488) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/pflag from 1.0.7 to 1.0.10 (#489) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-go from 5 to 6 (#490) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/afero from 1.14.0 to 1.15.0 (#493) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/mod from 0.27.0 to 0.29.0 (#501) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 6 to 7 (#502) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.3.0 to 2.4.1 (#503) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump endorama/asdf-parse-tool-versions from 1.3.4 to 1.4.0 (#504) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump workbench to c94b3ce (#500) @arbulu89 * Bump workbench dependency (#497) @arbulu89 * Bump actions/cache from 4.2.4 to 4.3.0 (#496) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golangci/golangci-lint-action from 6 to 8 (#427) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/hashicorp/go-plugin from 1.6.3 to 1.7.0 (#473) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/stretchr/testify from 1.11.0 to 1.11.1 (#484) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 (#483) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/coreos/go-systemd/v22 from 22.5.0 to 22.6.0 (#479) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump google.golang.org/protobuf from 1.36.7 to 1.36.8 (#478) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/vektra/mockery/v2 from 2.53.4 to 2.53.5 (#476) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#472) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/mod from 0.26.0 to 0.27.0 (#471) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/cache from 4.2.3 to 4.2.4 (#470) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump google.golang.org/protobuf from 1.36.6 to 1.36.7 (#469) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/pflag from 1.0.6 to 1.0.7 (#463) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 5 to 6 (#451) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/mod from 0.25.0 to 0.26.0 (#460) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/sync from 0.15.0 to 0.16.0 (#461) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.2.0 to 2.3.0 (#456) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump workbench reference to latest updates (#454) @nelsonkopliku * Bump golang.org/x/mod from 0.24.0 to 0.25.0 (#447) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/sync from 0.14.0 to 0.15.0 (#446) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/agent/compare/2.5.0...3.0.0 - Release 2.5.0 ## What's Changed * Update CI (#442) @stefanotorresi * Use absolute command paths (#421) @balanza * update installation script and readme instructions (#439) @stefanotorresi * Handle context cancellation in dir scan gatherer (#382) @balanza * Fix CI job names (#429) @stefanotorresi * Streamline CI workflow (#428) @stefanotorresi * Update packaging and service files for SLES 16 (#425) @janvhs * Add `sudoers` gatherer (#404) @balanza * Update permissions of agent.yaml (#407) @janvhs * Add gatherer to retrieve facts from `global.ini` configuration (#395) @balanza * Update agent to golang 1.23 (#391) @balanza * Handle context cancellation in systemd gatherer (#390) @balanza * Handle context cancellation in fact gatherers (#384) @balanza * Add healthcheck to prevent flacky tests (#371) @balanza * Implement context cancellation for command based gatherers (#379) @balanza * Test command termination error (#378) @balanza * Handle context cancellation in `corosync-cmapctl` gatherer (#376) @balanza * Better document the config example (#335) @stefanotorresi * update license notice (#372) @stefanotorresi * Add tests on built binaries (#362) @balanza * Context propagation in facts gathering flow (#360) @balanza ### Features * Add expiration check to facts gathering request (#441) @arbulu89 * Add CODEOWNERS (#437) @nelsonkopliku * Listen discovery requests (#424) @arbulu89 * Run operations (#422) @arbulu89 * Support aws imds v2 (#423) @nelsonkopliku * Generic event handler and messaging (#420) @arbulu89 * Identify current instance SAP instances (#418) @arbulu89 * RabbitMQ Supports SSL Config (#406) @CDimonaco * Handle context in plugins (#361) @balanza * Customize node exporter target (#356) @arbulu89 ### Bug Fixes * Use discoveries as list instead of map to guarantee order (#436) @arbulu89 * Support aws imds v2 (#423) @nelsonkopliku * Identify j2ee instances as application instances (#416) @arbulu89 ### Maintenance * Generic event handler and messaging (#420) @arbulu89 * Upgrade github actions runner ubuntu version (#405) @arbulu89 ### Dependencies <details> <summary>28 changes</summary> * Bump github.com/vektra/mockery/v2 from 2.53.3 to 2.53.4 (#438) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/viper from 1.20.0 to 1.20.1 (#434) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/hashicorp/go-plugin from 1.6.2 to 1.6.3 (#433) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/mod from 0.23.0 to 0.24.0 (#432) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/prometheus-community/pro-bing from 0.6.1 to 0.7.0 (#431) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/sync from 0.11.0 to 0.14.0 (#430) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/afero from 1.12.0 to 1.14.0 (#426) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/hashicorp/go-hclog from 1.5.0 to 1.6.3 (#367) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/cache from 4.2.2 to 4.2.3 (#412) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/clbanning/mxj/v2 from 2.5.7 to 2.7.0 (#241) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/cobra from 1.8.1 to 1.9.1 (#398) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump google.golang.org/protobuf from 1.36.2 to 1.36.6 (#415) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/vektra/mockery/v2 from 2.40.1 to 2.53.3 (#411) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/cache from 4.2.0 to 4.2.2 (#400) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump contracts library to 0.2.0 (#399) @CDimonaco * Bump github.com/spf13/pflag from 1.0.5 to 1.0.6 (#389) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#374) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.0.2 to 2.2.0 (#385) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/prometheus-community/pro-bing from 0.5.0 to 0.6.1 (#386) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/cobra from 1.7.0 to 1.8.1 (#375) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/prometheus-community/pro-bing from 0.3.0 to 0.5.0 (#368) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/moby/sys/mountinfo from 0.6.2 to 0.7.2 (#370) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/viper from 1.16.0 to 1.19.0 (#363) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/afero from 1.9.5 to 1.12.0 (#364) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump google.golang.org/protobuf from 1.31.0 to 1.36.2 (#365) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump golang.org/x/sync from 0.6.0 to 0.10.0 (#357) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/hashicorp/go-plugin from 1.5.1 to 1.6.2 (#352) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/cache from 4.1.1 to 4.2.0 (#358) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/agent/compare/2.4.0...2.5.0 Changes in trento-web: - Release 3.0.0 ## What's Changed * Release version 3.0.0 (#3929) @nelsonkopliku * Refine cluster start/stop policy (#3914) @balanza * Revert "Bump posthog-js from 1.297.0 to 1.297.3 in /assets (#3923)" (#3925) @gagandeepb * Storybook deps update (#3918) @gagandeepb * Add Nav Menu Scrollbar (#3791) @jagabomb * CI: Refine conditional logic (#3905) @balanza * CI: Conditionally run jobs (#3893) @balanza * Fix js flaky tests (#3887) @vicenteqa * Remove clusters unused functions (#3892) @arbulu89 * Host reboot button always enable (#3891) @balanza * increase timeout for flaky test analysis job (#3888) @vicenteqa * Update README.adoc (#3872) @ajaeger * Fix reboot operation (#3870) @balanza * Bump eslint from 8.57.0 to 9.38.0 in /assets (#3838) @balanza * Stabilize e2e test (#3850) @balanza * Upgrade React to v19 (#3833) @balanza * Split static analysis between js and elixir (#3842) @balanza * Make PATs opaque tokens (#3821) @nelsonkopliku * Revert "Bump @faker-js/faker from 9.4.0 to 10.1.0 in /assets" (#3829) @balanza * [TRNT-3845] Tag endpoints for MCP (#3800) @antgamdia * Add host reboot button (#3768) @balanza * Preserve cluster status on host registration (#3823) @balanza * Improve alerting settings test coverage (#3788) @vicenteqa * Add personal access tokens feature e2e tests (#3794) @arbulu89 * Fixes nodejs references in CI workflow (#3804) @gagandeepb * [TRNT-3845] Fix personal access token openapi warning (#3796) @arbulu89 * Makes npm version constraints flexible (#3789) @gagandeepb * Fix Flaky test - Activity log should reset pagination when filters changed (#3784) @vicenteqa * Update saml certificates (#3781) @nelsonkopliku * Enable host boot operation (#3771) @balanza * Update trento docs link in layout (#3772) @arbulu89 * [TRNT-3845] Run API documentation linter in CI (#3774) @antgamdia * Add host reboot operation policy on sap system (#3767) @balanza * Add cluster host start/stop ops to activity log (#3706) @balanza * Adds support/compatibility with Elixir 1.18, Erlang/OTP 27 and Nodejs 22 (#3722) @gagandeepb * Add host reboot operation policy (#3723) @balanza * Fix failure rate calculation e2e flaky tests (#3753) @vicenteqa * Prepare documentation for auto build process (#3733) @EMaksy * Fix 'change refresh rate' flaky test in activity log test suite (#3751) @vicenteqa * Fix flaky test activity log start refresh ticker (#3750) @vicenteqa * Refactors dispatch functions and their usage (#3715) @gagandeepb * Improve flaky tests e2e summary (#3718) @vicenteqa * Fix flaky test totp login cases for Users test suite (#3716) @vicenteqa * Fix flaky test - Link to known clusters in SAP Systems Overview (#3713) @vicenteqa * Add activity log entry for ClusterHostStatusChanged event (#3712) @balanza * Fix flaky test for Hana cluster details forbidden actions (#3710) @vicenteqa * Cluster host start/stop operations user policy (#3700) @balanza * Add cluster start and stop operations to the controller (#3691) @balanza * Add database operations redux saga part (#3698) @arbulu89 * Fix version usage in page_controller (#3696) @arbulu89 * fix release workflow (#3662) @stefanotorresi * Convert markdown docs to adoc (#3601) @EMaksy * Rescue on discovery exceptions (#3659) @skrech * Run flaky test analysis every day (#3657) @nelsonkopliku * Fix Flaky test in activity log page when selecting every different refresh rate. (#3653) @vicenteqa * Expect offline flag from discovery (#3647) @balanza * Add cluster status field to host projection (#3631) @balanza * Fix Host OpenApi spec (#3635) @balanza * Discovery offline host message (#3630) @balanza * Rename RegisterClusterHost into RegisterOnlineClusterHost (#3629) @balanza * Handle offline host in cluster (#3623) @balanza * Set dynamic validation for checks amount e2e test (#3609) @vicenteqa * Added e2e tests for alerting (#3570) @skrech * Update Scenario Fixtures to Include Architecture (#3597) @janvhs * Add Architecture to HostInfoBox (#3592) @janvhs * Filter checks catalog (#3593) @janvhs * Architecture based checks execution (#3590) @janvhs * Arch discovery (#3553) @janvhs * Increase timeout for Cypress tests execution flaky tests analysis (#3576) @vicenteqa * SAP instance start/stop policy (#3565) @arbulu89 * Fix settings tests before each failure (#3560) @vicenteqa * Bump storybook from 8.4.6 to 9.0.5 in /assets (#3555) @balanza * Enable operations in production (#3558) @arbulu89 * Show error when fail to fetch data from SUSE Manager (#3551) @balanza * Fix start/stop AgentHeartbeat logic in before/after Each hooks in e2e tests (#3537) @vicenteqa * Table top margin (#3517) @arbulu89 ### Features * Build containers on deploy-demo from wanda (#3901) @nelsonkopliku * Avoid PAT collision in test (#3895) @nelsonkopliku * Simplify reboot operation policy to only check current host cluster (#3889) @arbulu89 * Fix cluster hosts operations state (#3880) @arbulu89 * Handle database stop when system replication is not enabled (#3862) @arbulu89 * Fix sap system stop operation policy for scs instance type (#3860) @arbulu89 * Remove abilities from token claims (#3775) @nelsonkopliku * Add OAS server url variable (#3827) @arbulu89 * Token introspect endpoint (#3785) @nelsonkopliku * Cluster discovery handle empty node history (#3818) @arbulu89 * Forbid cluster maintenance change all offline (#3820) @arbulu89 * Personal access tokens activity log (#3817) @arbulu89 * Openapi `All` specification (#3811) @arbulu89 * Token introspection (#3778) @nelsonkopliku * Show and revoke personal access token in user edition view (#3808) @arbulu89 * Add deprecated flag to operation and schemas (#3809) @arbulu89 * Personal access tokens profile frontend (#3793) @arbulu89 * [TRNT-3845] Run linters on the API spec and fix the errors (controllers: routes) (#3764) @antgamdia * UI Personal access tokens modals (#3790) @arbulu89 * PAT authentication (#3777) @nelsonkopliku * Revoke Personal Access Tokens (#3749) @nelsonkopliku * Retrieve user Personal Access Tokens (#3745) @nelsonkopliku * Personal Access Token creation (#3739) @nelsonkopliku * [TRNT-3845] Run linters on the API spec and fix the errors (controllers: unprocessable_entity) (#3762) @antgamdia * [TRNT-3845] Run linters on the API spec and fix the errors (controllers: properties) (#3763) @antgamdia * Polish openapi spec (#3676) @nelsonkopliku * SAP system start/stop policy (#3721) @arbulu89 * Analytics Eula Modal (#3701) @jagabomb * Add cluster host start/stop to the trento UI (#3705) @balanza * Database start/stop policy (#3719) @arbulu89 * Make system/database operations self-exclusive and disable some options (#3717) @arbulu89 * Add database and site operation buttons (#3702) @arbulu89 * System replication stopped instances (#3708) @arbulu89 * Add disabled option to operations button (#3704) @arbulu89 * Database start/stop activity logging (#3697) @arbulu89 * SAP and databases start/stop operation modal (#3695) @arbulu89 * Database start/stop operations user policies (#3683) @arbulu89 * SMLM settings save/change correlation (#3640) @gagandeepb * Request database operation (#3680) @arbulu89 * Analytics Add Version Code (#3625) @jagabomb * Add system replication details (#3669) @arbulu89 * Show host cluster status (#3664) @balanza * SAP system start/stop frontend saga request (#3658) @arbulu89 * SAP start/stop operation activity log (#3656) @arbulu89 * Start/stop SAP system user policy (#3652) @arbulu89 * SAP system operation route (#3644) @arbulu89 * Sort system replication tier (#3637) @arbulu89 * Move replication status to back to primary (#3627) @arbulu89 * Advanced system replication fields (#3626) @arbulu89 * Correlation of heartbeat entries after API key regeneration (#3606) @gagandeepb * Enforce pacemaker operation policy to rely on discovered state (#3620) @nelsonkopliku * Enable/disable pacemaker systemd ops based on current state (#3614) @nelsonkopliku * Cluster resource operations (#3615) @arbulu89 * Handle crmmon group managed (#3616) @arbulu89 * Resources table frontend (#3608) @arbulu89 * Request host discovery on pacemaker ops (#3613) @nelsonkopliku * Handle systemd units host discovery (#3610) @nelsonkopliku * Expose cluster resources (#3605) @arbulu89 * Correlation of operations activity log entries (#3600) @gagandeepb * Fix SAP instance cluster maintenance authorization (#3580) @arbulu89 * Add pacemaker ops to activity log (#3602) @nelsonkopliku * Request pacemaker enable UI (#3586) @nelsonkopliku * Add chevron collapsible table (#3598) @arbulu89 * Alerting Settings events in the ActivityLog (#3596) @skrech * Activity log correlation for deregistration entries (#3554) @gagandeepb * Update running operations refresh (#3591) @arbulu89 * App instance operation activity log (#3585) @arbulu89 * Add a cumulative photofinish demo scenario (#3594) @nelsonkopliku * Alerting settings schema/model (#3461) @skrech * Add accept operation modal (#3588) @nelsonkopliku * Request SAP instance operation (#3577) @arbulu89 * Improve cluster controller policy related test (#3583) @nelsonkopliku * SAP instance start/stop user policy (#3582) @arbulu89 * Pacemaker enable disable policy (#3581) @nelsonkopliku * Request pacemaker enable/disable (#3578) @nelsonkopliku * Add operations button to SAP instance in table (#3575) @arbulu89 * Add transparent prop to operations button (#3566) @arbulu89 * Add SAP instance start/stop modal (#3561) @arbulu89 * SAP system operation request (#3550) @arbulu89 * Split host and cluster operation requested activity logging (#3539) @arbulu89 * Harden saptune operation policy (#3535) @nelsonkopliku * Request cluster discovery on operation complete event (#3538) @arbulu89 * Cluster maintenance change backend (#3532) @arbulu89 * Show relevant saptune solution options (#3533) @nelsonkopliku * Cluster maintenance operation frontend (#3529) @arbulu89 * Update host saptune status on SAP instances de/registration (#3514) @arbulu89 * Add `forwardRef` to button component (#3528) @arbulu89 * Add fixed witdh to relevant patches synopsis (#3521) @arbulu89 * Add CODEOWNERS (#3518) @nelsonkopliku * Analytics Settings UI with Collection to Posthog (#3449) @jagabomb * Add the ability to request a saptune solution change (#3488) @nelsonkopliku * Expose cluster resource parent api (#3482) @arbulu89 ### Bug Fixes * Add AUTH_SERVER_URL to wanda container (#3858) @nelsonkopliku * Updated HTTPoison to 2.2.3 (#3783) @skrech * Handle host_not_registered error in saptune event handler (#3773) @arbulu89 * Handle null node attributes nodes list (#3709) @arbulu89 * Fix malformed discovery event causing an error (#3663) @skrech * Fix SAP instance cluster maintenance authorization (#3580) @arbulu89 * Fixes for Analytics Events (#3530) @jagabomb ### Maintenance * Use gh action concurrency (#3911) @nelsonkopliku * Remove unused CI env variable (#3910) @nelsonkopliku * Build containers on deploy-demo from wanda (#3901) @nelsonkopliku * Regenerate package lock (#3879) @nelsonkopliku * Remove unnecessary env variable from wanda (#3869) @nelsonkopliku * Fix photofinish permissions (#3861) @nelsonkopliku * CI Improvements (#3816) @gagandeepb * Implements nodejs matrix strategy (#3798) @gagandeepb * [TRNT-3845] Enable API docs linter in CI (#3797) @antgamdia * Use latest version of endorama/asdf-parse-tool-versions to avoid using deprecated set-output command in gh actions. (#3622) @vicenteqa * Fix operation resource type mapping (#3621) @nelsonkopliku * Removal of unused dependency (#3599) @gagandeepb * More ci improvements (#3569) @stefanotorresi * More ci fixes (#3516) @stefanotorresi * Unify cluster details header code in new component (#3486) @arbulu89 ### Dependencies <details> <summary>136 changes</summary> * Bump posthog-js from 1.297.0 to 1.297.3 in /assets (#3923) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild from 0.25.12 to 0.27.0 in /assets (#3920) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump html-webpack-plugin from 5.6.4 to 5.6.5 in /assets (#3924) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 5 to 6 (#3915) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump posthog-js from 1.290.0 to 1.297.0 in /assets (#3913) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump glob from 10.4.5 to 10.5.0 in /assets (#3908) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.3.3 to 13.3.4 (#3909) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-jest from 29.0.1 to 29.1.0 in /assets (#3882) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump js-yaml from 4.1.0 to 4.1.1 in /test/e2e (#3906) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump js-yaml in /assets (#3907) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dawidd6/action-ansible-playbook from 4 to 5 (#3824) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/metadata-action from 5.8.0 to 5.9.0 (#3863) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromatic from 13.1.2 to 13.3.3 in /assets (#3874) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild from 0.25.9 to 0.25.12 in /assets (#3866) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-select from 5.9.0 to 5.10.2 in /assets (#3867) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump redux-saga from 1.3.0 to 1.4.2 in /assets (#3839) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.3.2 to 13.3.3 (#3854) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump semver from 7.7.2 to 7.7.3 in /assets (#3856) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-router from 7.8.1 to 7.9.5 in /assets (#3855) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/preset-env from 7.28.0 to 7.28.5 in /assets (#3851) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-hot-toast from 2.5.1 to 2.6.0 in /assets (#3836) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump babel-jest from 30.0.5 to 30.2.0 in /assets (#3835) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @messageformat/runtime from 3.0.1 to 3.0.2 in /assets (#3853) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/preset-react from 7.27.1 to 7.28.5 in /assets (#3847) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/core from 7.28.3 to 7.28.5 in /assets (#3840) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 5 to 6 (#3844) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.3.1 to 13.3.2 (#3843) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/upload-artifact from 4 to 5 (#3846) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump tailwindcss from 3.4.16 to 3.4.18 in /assets (#3837) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-node from 4 to 6 (#3826) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 6 to 7 (#3831) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/login-action from 3.5.0 to 3.6.0 (#3806) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.1.5 to 13.3.1 (#3834) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.3.0 to 2.4.1 (#3825) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @faker-js/faker from 9.4.0 to 10.1.0 in /assets (#3828) @[dependabot[bot]](https://github.com/apps/dependabot) * Remove `canvas` from prod deps in ./assets (#3803) @skrech * Bump tar-fs from 2.1.3 to 2.1.4 in /assets (#3801) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.1.4 to 13.1.5 (#3776) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump axios from 1.11.0 to 1.12.2 in /assets (#3770) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-node from 4 to 5 (#3754) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/github-script from 7 to 8 (#3756) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.1.3 to 13.1.4 (#3752) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump html-webpack-plugin from 5.6.3 to 5.6.4 in /assets (#3740) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump jest-environment-jsdom from 30.0.4 to 30.0.5 in /assets (#3738) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump jest from 30.0.4 to 30.0.5 in /assets (#3736) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump canvas from 3.1.2 to 3.2.0 in /assets (#3735) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump posthog-js from 1.227.0 to 1.260.1 in /assets (#3734) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-import from 2.31.0 to 2.32.0 in /assets (#3732) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chart.js from 4.4.7 to 4.5.0 in /assets (#3731) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/addon-docs from 9.1.0 to 9.1.2 in /assets (#3730) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @headlessui/react from 2.2.5 to 2.2.7 in /assets (#3729) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/core from 7.28.0 to 7.28.3 in /assets (#3728) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump postcss-import from 16.1.0 to 16.1.1 in /assets (#3727) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump brace-expansion in /test/e2e (#3726) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 4 to 5 (#3703) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @date-fns/utc from 2.1.0 to 2.1.1 in /assets (#3692) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild from 0.25.6 to 0.25.9 in /assets (#3725) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-router from 7.6.3 to 7.8.1 in /assets (#3724) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/metadata-action from 5.7.0 to 5.8.0 (#3693) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump tmp from 0.2.1 to 0.2.4 in /test/e2e (#3707) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#3720) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/login-action from 3.4.0 to 3.5.0 (#3699) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/addon-docs from 9.0.17 to 9.1.0 in /assets (#3689) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.1.2 to 13.1.3 (#3690) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-storybook from 9.0.18 to 9.1.0 in /assets (#3688) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump babel-loader from 9.2.1 to 10.0.0 in /assets (#3685) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump rc-input-number from 9.3.0 to 9.5.0 in /assets (#3684) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-storybook from 9.0.9 to 9.0.18 in /assets (#3681) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump papaparse from 5.4.1 to 5.5.3 in /assets (#3682) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump postcss from 8.4.49 to 8.5.6 in /assets (#3679) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/preset-env from 7.26.0 to 7.28.0 in /assets (#3674) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-jest from 28.9.0 to 29.0.1 in /assets (#3673) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-react from 7.37.2 to 7.37.5 in /assets (#3671) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump autoprefixer from 10.4.20 to 10.4.21 in /assets (#3672) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump axios from 1.10.0 to 1.11.0 in /assets (#3665) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @headlessui/react from 2.2.0 to 2.2.5 in /assets (#3667) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromatic from 11.25.0 to 13.1.2 in /assets (#3666) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/react from 9.0.17 to 9.0.18 in /assets (#3661) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump babel-jest from 29.7.0 to 30.0.5 in /assets (#3660) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump form-data and @cypress/request in /test/e2e (#3655) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump form-data from 4.0.0 to 4.0.4 in /assets (#3654) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/addon-docs from 9.0.9 to 9.0.17 in /assets (#3651) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-config-prettier from 9.1.0 to 10.1.8 in /assets (#3650) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump axios from 1.9.0 to 1.10.0 in /assets (#3648) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/react from 9.0.16 to 9.0.17 in /assets (#3649) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/preset-react from 7.26.3 to 7.27.1 in /assets (#3645) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild from 0.25.0 to 0.25.6 in /assets (#3646) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump jest-environment-jsdom from 29.7.0 to 30.0.4 in /assets (#3641) @[dependabot[bot]](https://github.com/apps/dependabot) * Fix jest expectations (#3643) @nelsonkopliku * Bump jest from 29.7.0 to 30.0.4 in /assets (#3642) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-router-dom from 6.28.0 to 7.6.3 in /assets (#3604) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump rc-tooltip from 6.3.1 to 6.4.0 in /assets (#3639) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/react from 9.0.5 to 9.0.16 in /assets (#3638) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-error-boundary from 4.1.2 to 6.0.0 in /assets (#3636) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-chartjs-2 from 5.2.0 to 5.3.0 in /assets (#3634) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-accessible-treeview from 2.10.0 to 2.11.2 in /assets (#3632) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dawidd6/action-ansible-playbook from 3 to 4 (#3574) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-markdown from 9.0.1 to 10.1.0 in /assets (#3572) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.1.0 to 13.1.2 (#3617) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.2.0 to 2.3.0 (#3611) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 13.0.1 to 13.1.0 (#3612) @[dependabot[bot]](https://github.com/apps/dependabot) * Removal of unused dependency (#3599) @gagandeepb * Bump chromaui/action from 13.0.0 to 13.0.1 (#3584) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 12.2.0 to 13.0.0 (#3579) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 5 to 6 (#3564) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-storybook from 0.11.1 to 9.0.9 in /assets (#3568) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/addon-docs from 9.0.5 to 9.0.9 in /assets (#3567) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 12.1.1 to 12.2.0 (#3559) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 12.1.0 to 12.1.1 (#3557) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dflook/terraform-new-workspace from 1 to 2 (#3544) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dflook/terraform-destroy-workspace from 1 to 2 (#3545) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dflook/terraform-apply from 1 to 2 (#3546) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dflook/terraform-output from 1 to 2 (#3547) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 12.0.0 to 12.1.0 (#3549) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @testing-library/user-event from 14.5.2 to 14.6.1 in /assets (#3534) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.28.3 to 12.0.0 (#3525) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump rc-input from 1.7.1 to 1.8.0 in /assets (#3531) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump fishery from 2.2.2 to 2.3.1 in /assets (#3526) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/addon-webpack5-compiler-babel from 3.0.3 to 3.0.6 in /assets (#3524) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.28.2 to 11.28.3 (#3522) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump remark-gfm from 4.0.0 to 4.0.1 in /assets (#3520) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump jaxxstorm/action-install-gh-release from 1.14.0 to 2.1.0 (#3519) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/preview-api from 8.4.7 to 8.6.14 in /assets (#3511) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.25.2 to 11.28.2 (#3464) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild and tsx in /test/e2e (#3452) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/runtime from 7.23.2 to 7.27.0 in /assets (#3453) @[dependabot[bot]](https://github.com/apps/dependabot) * Add CODEOWNERS (#3518) @nelsonkopliku * Bump @babel/helpers from 7.20.7 to 7.26.10 in /test/e2e (#3384) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/metadata-action from 5.6.1 to 5.7.0 (#3342) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/login-action from 3.3.0 to 3.4.0 (#3386) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/runtime from 7.20.7 to 7.26.10 in /test/e2e (#3383) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump serialize-javascript from 6.0.1 to 6.0.2 in /assets (#3324) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dawidd6/action-ansible-playbook from 2 to 3 (#3287) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.1.0 to 2.2.0 (#3264) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump undici from 5.28.5 to 5.29.0 in /test/e2e (#3505) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump axios from 1.7.9 to 1.9.0 in /assets (#3475) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/web/compare/2.5.0...3.0.0 - Release 2.5.0 ## What's Changed * Test flakiness analysis for backend. (#3483) @vicenteqa * Fix PR env pre-flight check for forks (#3497) @stefanotorresi * Edit ansible inventory in CI (#3474) @balanza * Reorder start ordering (#3485) @gagandeepb * Add checks execution with custom values test e2e (#3476) @EMaksy * Increase timeout for SUSE Multi Linux Manager API (#3435) @balanza * PO Refactor checks execution & other tests dependant on wanda (#3471) @vicenteqa * Checks customization e2e (#3460) @EMaksy * Add a GenericError for displaying non-recoverable errors (#3459) @janvhs * Fix margins (#3446) @janvhs * Using checks in pr env (#3456) @nelsonkopliku * Apply PO pattern to Settings test suite (#3442) @vicenteqa * Apply PO Pattern to Saptune-SSO-SUMA test suites (#3428) @vicenteqa * Apply PageObject pattern sap systems overview e2e tests (#3408) @vicenteqa * Allow Usage Of Podman (#3400) @janvhs * Run regression and integration e2e tests always in CI (#3411) @arbulu89 * Identify clustered sap instances (#3397) @arbulu89 * Use custom function to check if data is loaded (#3405) @arbulu89 * Apply page object pattern Sap System Details tests. (#3392) @vicenteqa * Apply page object pattern to hosts overview tests (#3389) @vicenteqa * Review & fix users e2e tests flakiness (#3378) @vicenteqa * Rename current_value to default_value (#3380) @nelsonkopliku * Apply PO Pattern host details e2e tests. (#3348) @vicenteqa * Add Trento documentation to navigation bar (#3294) @janvhs * Apply po pattern home tests (#3344) @vicenteqa * Refactor checkable warning message (#3332) @EMaksy * Apply PageObject pattern to Hana DB Details E2E tests (#3330) @vicenteqa * Apply PageObject pattern Hana Cluster Details E2E tests (#3300) @vicenteqa * Create checkable warning messages (#3313) @EMaksy * Saptune solution apply endpoint (#3305) @arbulu89 * Apply PageObject pattern to databases overview tests. (#3281) @vicenteqa * Apply PageObject pattern Clusters Overview tests. (#3266) @vicenteqa * Apply PageObject pattern 'activity log' e2e tests (#3259) @vicenteqa * Add check customization ability (#3258) @nelsonkopliku * Fix Jest warnings on FE tests (#3254) @vicenteqa * Apply page object pattern to 'about' and 'check catalog' tests (#3248) @vicenteqa * Fixes typo (#3245) @gagandeepb * Fix for nil values in severity (#3244) @gagandeepb * Add page object structure for User creation tests (#3219) @vicenteqa * add job conditional to ensure secret availability (#3234) @stefanotorresi * move some workflow env variables to GHA variables (#3233) @stefanotorresi * Refactor activity log settings (#3223) @nelsonkopliku * update license notice (#3226) @stefanotorresi * Pin Chromatic action (#3227) @balanza * Revert "Add e2e test for hana scale up cost optimized scenario" (#3213) @arbulu89 * Remove SUMA feature flag (#3205) @janvhs * Improve e2e tests on Activity log (#3200) @balanza * Fixup #3198 (#3199) @balanza * Add a PR comment when a preview environment is created (#3198) @balanza * Show password toggle on login (#3191) @balanza * Fix activity log e2e test (#3179) @nelsonkopliku * Add info tooltip for metadata search (#3186) @balanza * Activity log autorefresh e2e (#3169) @nelsonkopliku * Add sap hana scale up cost optimized and performance optimized discovery (#3152) @EMaksy ### Features * Reset modal options on cancel (#3504) @arbulu89 * SMTP allows talking to unauthenticated servers (#3489) @skrech * Add cluster maintenance change modal (#3487) @arbulu89 * Request saptune discovery when saptune solution apply operation is completed (#3443) @arbulu89 * Add wanda to ci for e2e (#3455) @EMaksy * Log checks selected as connection activity (#3450) @nelsonkopliku * Implements newly defined severity level conditions (#3445) @gagandeepb * Log user coming from messages (#3440) @nelsonkopliku * Backend for User Analytics Settings (#3372) @jagabomb * Parse current instance field (#3416) @arbulu89 * Support AWS without metadata scenarios (#3412) @nelsonkopliku * Log checks customizations activities (#3424) @nelsonkopliku * Handle unmounted clustered sap instance (#3422) @arbulu89 * Expose cluster sap instances frontend (#3410) @arbulu89 * Discovery HANA+ASCS/ERS ers clusters (#3394) @arbulu89 * Use operation forbidden modal in host details (#3381) @arbulu89 * Add OperationForbiddenModal (#3331) @arbulu89 * Operation policy messages (#3364) @arbulu89 * Operation user authorization frontend (#3369) @arbulu89 * Operation user authorization (#3368) @arbulu89 * Add hostname field to activity log metadata for operation entries (#3377) @arbulu89 * Checks customization modal save (#3352) @EMaksy * Fetch running operation on page load (#3355) @arbulu89 * Activity log severity levels UI (#3306) @gagandeepb * Operation completed activity log (#3360) @arbulu89 * Add modified check pill in checks execution results an detail (#3358) @nelsonkopliku * Log operation requested in activity log (#3354) @arbulu89 * Rabbitmq explicit ssl support (#3353) @CDimonaco * Add operations button host view (#3345) @arbulu89 * Add boolean input for checks customization modal (#3310) @EMaksy * Running operations redux (#3339) @arbulu89 * Request and process operation events (#3333) @arbulu89 * Add operations messaging queue (#3320) @arbulu89 * Actions button (#3319) @arbulu89 * Saptune solution apply modal (#3311) @arbulu89 * Add reset customization cta inside modal (#3323) @nelsonkopliku * Wire up check customization reset (#3309) @nelsonkopliku * Add reset customization cta (#3308) @nelsonkopliku * Add operations policy plug (#3304) @arbulu89 * Foundation for Basic Analytics Implementation (#3301) @jagabomb * Operation policies (#3293) @arbulu89 * Adjust checks selection route (#3299) @nelsonkopliku * Parameterized ecto payload (#3286) @arbulu89 * Improve read models associations (#3284) @arbulu89 * Activity log severity levels filter (#3285) @gagandeepb * Add Checks customization modal (#3277) @EMaksy * Add parent cluster resource (#3276) @arbulu89 * Load checks selection with customizations (#3278) @nelsonkopliku * Add modified pill for customized checks (#3274) @nelsonkopliku * Rename suse manager labeling (#3279) @arbulu89 * Use embeds software updates (#3275) @arbulu89 * Add check customization call to action in checks selection (#3256) @nelsonkopliku * Adds Encapsulation for Dashboard Page (#3242) @jagabomb * Refactor checks_catalog ui test (#3247) @EMaksy * Expose abilities as jwt claims (#3240) @nelsonkopliku * Activity log severity levels (#3222) @gagandeepb * Add hana scale up scenario as selection in checks catalog (#3210) @EMaksy * Add job for flaky e2e tests detection (#3215) @vicenteqa * Cypress E2E Tests parallelization (#3208) @vicenteqa * Hana Scale up cost opt checks in the trento console (#3206) @EMaksy * Add e2e test for hana scale up cost optimized scenario (#3184) @EMaksy * Redact users in activity log (#3195) @nelsonkopliku * Limit user access in activity log filters (#3183) @nelsonkopliku * Add new ability permitting access to users in activity log (#3180) @nelsonkopliku * Activity log autorefresh (#3161) @nelsonkopliku * Use prometheus targets (#3165) @arbulu89 * Activity Log search by metadata (#3056) @nelsonkopliku * ActivityLog searching by metadata BE implementation (#3059) @gagandeepb * Replaces Empty Favicon with Trento Logo (#3144) @jagabomb ### Bug Fixes * Bugfix for web as it fails to start when no IPV6 is available (#3490) @EMaksy * Show tooltip only when hoovered over the start execution button (#3470) @EMaksy * Relax timeouts (#3477) @janvhs * Fix references to activity log settings (#3463) @nelsonkopliku * Deduplicate targets for ascs cluster checks executions (#3447) @nelsonkopliku * Fix width on Select (#3418) @janvhs * Fix Save button after saving a check in the checks customization modal (#3417) @EMaksy * Fix database profile payload validation (#3398) @arbulu89 * Enable reset customization when check is customized (#3328) @nelsonkopliku * Update `date-fns` to 4.1.0 and DateFilter refactoring (#3312) @skrech * Use embeds software updates (#3275) @arbulu89 * Fix cluster json view adapt_v1 function (#3273) @arbulu89 * Fix discovery dispatch accumulating errors (#3272) @arbulu89 * Remaps specific activity log type unconditionally to warning (#3271) @gagandeepb * Fix selected cluster type ui in Checks catalog view (#3229) @EMaksy * change base image and update dependencies (#3232) @stefanotorresi * Update community container image to use fixed versions from leap15.6 (#3217) @arbulu89 * Upgrade tzdata to 1.1.2 to avoid error log (#3216) @arbulu89 * Handle ApplicationInstanceMoved event in deregistration (#3125) @arbulu89 * Allow the scheduled execution to check also ascs/ers clusters (#3156) @nelsonkopliku ### Maintenance * Version bump automation (#3509) @stefanotorresi * Add menu position to operations button (#3503) @arbulu89 * Automate changelog generation (#3496) @stefanotorresi * Remove legacy catalog list coming from `runner` implementation (#3494) @nelsonkopliku * add .editorconfig (#3492) @stefanotorresi * Fix wanda initdb permissions (#3479) @nelsonkopliku * Recreate and not remove checks container in PR env ci (#3458) @arbulu89 * Add wanda to ci for e2e (#3455) @EMaksy * Use rolling checks image in demo (#3451) @nelsonkopliku * Differentiate checks execution requested label (#3441) @nelsonkopliku * Minor adjustments to check customization (#3439) @nelsonkopliku * Fix year range (#3426) @nelsonkopliku * Fix operation_completed activity log severity level (#3371) @arbulu89 * Remove unnecessary div (#3370) @nelsonkopliku * Upgrade github actions runner ubuntu version (#3361) @arbulu89 * Center severity icon in table cell (#3363) @nelsonkopliku * Fix: Verify mocks in settings_test.ex (#3359) @skrech * Rename ActionsButton to OperationsButton (#3329) @arbulu89 * Update `date-fns` to 4.1.0 and DateFilter refactoring (#3312) @skrech * Fix operations policy get_params usage (#3321) @arbulu89 * Reduce modal padding (#3292) @nelsonkopliku * Adds Encapsulation for Dashboard Page (#3242) @jagabomb * Cost opt e2e (#3212) @arbulu89 * Order users query (#3196) @nelsonkopliku * Use different clear icon (#3190) @nelsonkopliku * Pin k3s version in CI workflow (#3185) @stefanotorresi * Fix Activity Log type filter width (#3164) @nelsonkopliku * Upgrade to Headless UI 2 (#3140) @dottorblaster * Omit an unnecessary query when requesting cluster checks execution (#3159) @nelsonkopliku * Replaces Empty Favicon with Trento Logo (#3144) @jagabomb ### Dependencies <details> <summary>39 changes</summary> * Bump posthog-js from 1.53.2 to 1.227.0 in /assets (#3362) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump trento contracts 0.2.0 (#3343) @CDimonaco * Bump serialize-javascript from 6.0.1 to 6.0.2 in /assets (#3296) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump esbuild from 0.24.0 to 0.25.0 in /assets (#3295) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.25.1 to 11.25.2 (#3265) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-hot-toast from 2.4.1 to 2.5.1 in /assets (#3250) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @faker-js/faker from 9.3.0 to 9.4.0 in /assets (#3249) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.25.0 to 11.25.1 (#3253) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/preset-react from 7.25.9 to 7.26.3 in /assets (#3209) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump react-select from 5.8.3 to 5.9.0 in /assets (#3201) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-python from 4 to 5 (#3220) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromatic from 11.22.2 to 11.25.0 in /assets (#3237) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromaui/action from 11.22.2 to 11.25.0 (#3238) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump undici from 5.28.4 to 5.28.5 in /test/e2e (#3243) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump isbang/compose-action from 2.0.2 to 2.1.0 (#3241) @[dependabot[bot]](https://github.com/apps/dependabot) * Update gen_rmq to cdimonaco/gen_rmq version 5 (#3246) @CDimonaco * Bump chromatic from 11.20.0 to 11.22.2 in /assets (#3221) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump qrcode.react from 4.1.0 to 4.2.0 in /assets (#3202) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump nanoid from 3.3.7 to 3.3.8 in /assets (#3207) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/metadata-action from 5.5.1 to 5.6.1 (#3155) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @faker-js/faker from 9.2.0 to 9.3.0 in /assets (#3194) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @heroicons/react from 2.1.5 to 2.2.0 in /assets (#3192) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @babel/plugin-transform-modules-commonjs from 7.25.9 to 7.26.3 in /assets (#3189) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @testing-library/react from 16.0.1 to 16.1.0 in /assets (#3193) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump rc-input from 1.6.3 to 1.7.1 in /assets (#3171) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/preview-api from 8.4.6 to 8.4.7 in /assets (#3188) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump eslint-plugin-storybook from 0.11.0 to 0.11.1 in /assets (#3187) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump rc-tooltip from 6.2.1 to 6.3.1 in /assets (#3178) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump tailwindcss from 3.4.15 to 3.4.16 in /assets (#3182) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump axios from 1.7.7 to 1.7.9 in /assets (#3181) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromatic from 11.19.0 to 11.20.0 in /assets (#3177) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chart.js from 4.4.6 to 4.4.7 in /assets (#3170) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chartjs-plugin-zoom from 2.0.1 to 2.2.0 in /assets (#3174) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump tailwindcss from 3.4.14 to 3.4.15 in /assets (#3151) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump cross-spawn from 7.0.3 to 7.0.6 in /test/e2e (#3154) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/test from 8.4.2 to 8.4.6 in /assets (#3166) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump jaxxstorm/action-install-gh-release from 1.13.0 to 1.14.0 (#3163) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump chromatic from 11.18.0 to 11.19.0 in /assets (#3162) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump @storybook/preview-api from 8.4.2 to 8.4.6 in /assets (#3168) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/web/compare/2.4.0...2.5.0 Changes in trento-wanda: - Release 2.0.0 ## What's Changed * Release version 2.0.0 (#667) @nelsonkopliku * Remove unneeded references to jwt libraries and environment variables (#662) @nelsonkopliku * [TRNT-3845] Add missing examples in API spec (#657) @antgamdia * [TRNT-3845] Tag endpoints for MCP (#650) @antgamdia * [TRNT-3845] Enable API docs linter in CI (#648) @antgamdia * [TRNT-3845] Run API documentation linter in CI (#645) @antgamdia * Add host reboot operation (#640) @balanza * Fixes reference to md (#639) @gagandeepb * Elixir 1.18 and Erlang/OTP 27 (#638) @gagandeepb * Prepare wanda docs for autobuild (#637) @EMaksy * Add cluster start/stop operations to registry (#633) @balanza * Convert md docs to adoc (#630) @EMaksy * Update the env to include the architecture of a host (#627) @janvhs * Filter operations by status (#626) @arbulu89 * Add Docs for the fs_usage-Gatherer (#625) @janvhs * Enable operations in produdction (#621) @arbulu89 * Clustermaintenancechange (#616) @arbulu89 ### Features * Require AUTH_SERVER_URL only when token authentication is enabled (#664) @nelsonkopliku * Token introspection auth (#658) @nelsonkopliku * Add oas server url configuration option (#656) @arbulu89 * Openapi all spec (#653) @arbulu89 * Add deprecated flag to operation and schemas (#651) @arbulu89 * [TRNT-3845] Run linters on the API spec and fix the errors (controller) (#642) @antgamdia * [TRNT-3845] Run linters on the API spec and fix the errors (schemas) (#641) @antgamdia * [TRNT-3845] Combine API specs in a single file with improved feedback loop (#634) @antgamdia * [TRNT-3845] Make "api-bc-check" CI step check API against PR's target instead of main (#643) @antgamdia * Add database start/stop operations (#632) @arbulu89 * Add SAP system start/stop operations (#629) @arbulu89 * Add enable/disable pacemaker operations spec (#622) @nelsonkopliku * Add SAP instance start/stop operations (#619) @arbulu89 ### Bug Fixes * Add deprecated flag to operation and schemas (#651) @arbulu89 ### Maintenance * CI improvements (#663) @gagandeepb * Revert temporary changes (#661) @nelsonkopliku * Sync both stable and rolling versions in OBS (#631) @vicenteqa * use latest version of get latest tag action (#628) @vicenteqa * Fix CI obs image tarball creation (#624) @arbulu89 * Fix deps cache key in CI (#615) @nelsonkopliku ### Dependencies <details> <summary>11 changes</summary> * Bump actions/checkout from 5 to 6 (#666) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 6 to 7 (#654) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/upload-artifact from 4 to 5 (#659) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump endorama/asdf-parse-tool-versions from 1.3.4 to 1.4.0 (#660) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-node from 4 to 6 (#655) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#636) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 5 to 6 (#623) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump phoenix from 1.7.19 to 1.7.21 (#600) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump phoenix_ecto from 4.6.3 to 4.6.4 (#613) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump plug_cowboy from 2.7.2 to 2.7.3 (#580) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump credo from 1.7.11 to 1.7.12 (#614) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/wanda/compare/1.5.0...2.0.0 - Release 1.5.0 ## What's Changed * Check vendor deps on CI (#594) @balanza * Update build dependency requirements (again) (#597) @stefanotorresi * Fix typo in rust package alias (#596) @stefanotorresi * Add gatherer docs (#588) @balanza * Bump RHAI rustler (#591) @balanza * Operations messaging with web (#577) @arbulu89 * Multiple amqp consumer publisher (#575) @arbulu89 * Adjust doc (#571) @nelsonkopliku * Refactor customization opt out flag (#569) @nelsonkopliku * relax rust requirement to allow for patch updates (#557) @stefanotorresi * change base image and update dependencies (#545) @stefanotorresi * update license notice (#546) @stefanotorresi * Add hexadecimal value hint to id section (#542) @arbulu89 * Fix docs description in Evaluation Scope (#539) @EMaksy * Update specification.md (#538) @EMaksy ### Features * Add CODEOWNERS (#612) @nelsonkopliku * Add saptune change solution operation to the catalog (#608) @nelsonkopliku * Propagate user in messages (#604) @nelsonkopliku * Publish checks customization messages (#602) @nelsonkopliku * Receive operator execution reports (#599) @arbulu89 * Send operator execution request to agents (#595) @arbulu89 * Expose resolved original values (#592) @nelsonkopliku * Add boolean to accepted value types (#590) @nelsonkopliku * Add support to updating checks customizations (#587) @nelsonkopliku * Rabbitmq explicit ssl support (#586) @CDimonaco * Using custom values in checks executions (#584) @nelsonkopliku * Improve api routes (#573) @nelsonkopliku * Reset check customization (#572) @nelsonkopliku * Set operation as aborted (#562) @arbulu89 * Checks selection (#563) @nelsonkopliku * Add customization auth policy (#566) @nelsonkopliku * Retrieve customizations for a specific execution group (#564) @nelsonkopliku * Enrich catalog operation data (#559) @arbulu89 * Customize check action (#561) @nelsonkopliku * Add check customization capabilities (#556) @nelsonkopliku * Refactor check loading (#560) @nelsonkopliku * Checks customizability detection (#558) @nelsonkopliku * Operations controller (#554) @arbulu89 * Operations timeout (#551) @arbulu89 * Operations registry (#549) @arbulu89 * Extract abilities from token so they can be matched for authorization (#552) @nelsonkopliku * Add customizable key to disable checks customization for certain checks (#550) @EMaksy * Save operations in the database (#547) @arbulu89 * Create and use enum modules (#548) @arbulu89 * Operations orchestration skeleton (#543) @arbulu89 ### Bug Fixes * Add ipv6 bug fix (#607) @EMaksy * Deduplicate execution targets (#605) @nelsonkopliku ### Maintenance * Update CI (#611) @stefanotorresi * Adjust amqp configs (#603) @nelsonkopliku * Bump rust toolchain (#593) @nelsonkopliku * Upgrade github actions runner ubuntu version (#585) @arbulu89 * Move json view tests to correct folder (#553) @arbulu89 * Create and use enum modules (#548) @arbulu89 * Update dockerfiles to use correct elixir/erlang versions (#544) @arbulu89 ### Dependencies <details> <summary>16 changes</summary> * Bump docker/metadata-action from 5.6.1 to 5.7.0 (#583) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump docker/login-action from 3.3.0 to 3.4.0 (#598) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump telemetry_poller from 1.1.0 to 1.2.0 (#601) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump ex_doc from 0.37.1 to 0.38.1 (#610) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump ranch from 2.1.0 to 2.2.0 (#574) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump trento contracts to 0.2.0 (#582) @CDimonaco * Bump ex_doc from 0.37.0 to 0.37.1 (#570) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump ranch from 1.8.0 to 2.1.0 (#565) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump ex_doc from 0.36.1 to 0.37.0 (#567) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump postgrex from 0.19.3 to 0.20.0 (#568) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump phoenix from 1.7.14 to 1.7.18 (#537) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump ecto from 3.12.4 to 3.12.5 (#534) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump dialyxir from 1.4.4 to 1.4.5 (#530) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump postgrex from 0.19.2 to 0.19.3 (#529) @[dependabot[bot]](https://github.com/apps/dependabot) * Update gen_rmq to cdimonaco/gen_rmq version 5 (#555) @CDimonaco * Bump docker/metadata-action from 5.5.1 to 5.6.1 (#531) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/wanda/compare/1.4.0...1.5.0 Changes in trento-checks: - Release 1.2.0 - Release 1.2.0 # Changelog ## [1.2.0](https://github.com/trento-project/checks/tree/1.2.0) (2025-11-28) [Full Changelog](https://github.com/trento-project/checks/compare/1.1.0...1.2.0) **Implemented enhancements:** - Fix token authentication enabled env variable name [\#52](https://github.com/trento-project/checks/pull/52) ([nelsonkopliku](https://github.com/nelsonkopliku)) **Merged pull requests:** - Revert "Improve checks development experience \(\#35\)" [\#51](https://github.com/trento-project/checks/pull/51) ([balanza](https://github.com/balanza)) - Second set of checks from backlog of classic perf-opt HANA [\#50](https://github.com/trento-project/checks/pull/50) ([ksanjeet](https://github.com/ksanjeet)) - Fix adoc link [\#45](https://github.com/trento-project/checks/pull/45) ([EMaksy](https://github.com/EMaksy)) - Convert Markdwon to Adoc [\#44](https://github.com/trento-project/checks/pull/44) ([EMaksy](https://github.com/EMaksy)) - Release 1.1.0 ## What's Changed * Add checks checker by @dottorblaster in https://github.com/trento-project/checks/pull/22 * Add hana scenario for hana_scale up cluster type by @EMaksy in https://github.com/trento-project/checks/pull/23 * update license notice by @stefanotorresi in https://github.com/trento-project/checks/pull/24 * bump BCI version to 15.6 by @stefanotorresi in https://github.com/trento-project/checks/pull/25 * Update saptune checks with better remediation links (jsc#TRNT-3432) by @angelabriel in https://github.com/trento-project/checks/pull/26 * Add customziable false key by @EMaksy in https://github.com/trento-project/checks/pull/27 * Refactor customizability flag by @nelsonkopliku in https://github.com/trento-project/checks/pull/30 * Adjust docs by @nelsonkopliku in https://github.com/trento-project/checks/pull/31 * Upgrade github actions runner ubuntu version by @arbulu89 in https://github.com/trento-project/checks/pull/32 * Updated Group, Abstract, Remediation and References by @ksanjeet in https://github.com/trento-project/checks/pull/36 * New Check for HANA_CALL_TIMEOUT Configuration by @ksanjeet in https://github.com/trento-project/checks/pull/28 * new angi related checks 0B2F82 31ADCA E1F2C3 E215A6 E4D1B4 EA12BC EB24D1 by @ksanjeet in https://github.com/trento-project/checks/pull/29 * fixed reference for check 442182 by @ksanjeet in https://github.com/trento-project/checks/pull/37 * Added metadata for cost optimized for existing checks by @ksanjeet in https://github.com/trento-project/checks/pull/38 * Change tlint CLI interface by @janvhs in https://github.com/trento-project/checks/pull/41 * Checks from backlog related to SAPHana and SAPHanaTopology resources by @ksanjeet in https://github.com/trento-project/checks/pull/40 * remove checks-checker workflow by @stefanotorresi in https://github.com/trento-project/checks/pull/42 * Improve checks development experience by @balanza in https://github.com/trento-project/checks/pull/35 * fix broken references by @stefanotorresi in https://github.com/trento-project/checks/pull/43 **Full Changelog**: https://github.com/trento-project/checks/compare/1.0.0...1.1.0 Changes in mcp-server-trento: - Release 1.0.0 ## What's Changed * Bump version 1.0.0 (#83) @nelsonkopliku * Revert release (#82) @nelsonkopliku * bump version 1.0.0 (#80) @nelsonkopliku * Revert release (#78) @nelsonkopliku * bump version 1.0.0 (#77) @nelsonkopliku * fix get_version_from_git.sh (#76) @nelsonkopliku * Revert release (#75) @nelsonkopliku * Release version 1.0.0 (#74) @nelsonkopliku * [TRNT-3946] Improve user documentation (#62) @antgamdia * [TRNT-3946] Add missing INSECURE_SKIP_TLS_VERIFY to default config (#72) @antgamdia * Aligns golang version (#53) @gagandeepb * [TRNT-3854] Add OBS workflows (#41) @antgamdia * [TRNT-3845] Add asciidoc-linter and fix issues (#26) @antgamdia * [TRNT-3850] Remove unused OAuth logic (#21) @antgamdia * Fix for autobuild (#17) @EMaksy * [TRNT-3844] Add initial MCP server code (#7) @antgamdia ### Features * Sync both stable and rolling obs projects (#79) @nelsonkopliku * [TRNT-3946] Replace header name "Authorization" (#69) @antgamdia * [TRTN-3845] Improve handling of paths (#67) @antgamdia * [TRNT-3845] Use autodiscovery of Trento API endpoints (#59) @antgamdia * [TRNT-3854] Rename binaries (#66) @antgamdia * [TRNT-3854] Rename rpm binary to `mcp-server-trento` (#61) @antgamdia * [TRNT-3845] Delete hardcoded API docs (#24) @antgamdia * [TRNT-3854] Add opional health check server (#57) @antgamdia * [TRNT-3854] Delete local helm chart (#51) @antgamdia * [TRNT-3854] Improve config file and include it in packaging (#52) @antgamdia * [TRNT-3845] Support multiple API docs (#54) @antgamdia * [TRNT-3854] Rename pkg in OBS (#45) @antgamdia * [TRNT-3854] Allow passing configuration in multiple ways (#43) @antgamdia * [TRNT-3854] Download OAS file from HTTP (#46) @antgamdia * [TRNT-3853] Redirect library log traces to our logger (#29) @antgamdia * [TRNT-3854] Add initial release workflows (#42) @antgamdia * [TRNT-3854] Prepare CI for more steps (#38) @antgamdia * [TRNT-3853] Use asdf versions in the scripts and CI (#25) @antgamdia * [TRNT-3854] Add packaging folder (#40) @antgamdia * [TRNT-3854] Update dockerfile and makefile (#37) @antgamdia * [TRNT-3850] Use modelcontextprotocol/go-sdk (#16) @antgamdia * [TRNT-3853] Use API-key based authentication (#14) @antgamdia * [TRNT-3850] Add initial unit tests (#10) @antgamdia * [TRNT-3850] Improve existing mcp server logic (#9) @antgamdia * [TRNT-3850] Use the evcc-io/openapi-mcp fork instead (#8) @antgamdia * [TRNT-3844] Add initial MCP server code (#1) @antgamdia ### Bug Fixes * [TRNT-4097] Fix timeouts (#81) @antgamdia * [TRNT-4079] Use custom http client for tool execution (#73) @antgamdia * [TRNT-3853] Use per-mcp-session API tokens (#58) @antgamdia * [TRNT-3853] Increase timeouts (#30) @antgamdia * [TRNT-3853] Fix container push (#34) @antgamdia ### Dependencies <details> <summary>21 changes</summary> * Bump golangci/golangci-lint-action from 8 to 9 (#70) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 5 to 6 (#71) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 1.0.0 to 1.1.0 (#68) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 5 to 6 (#65) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/upload-artifact from 4 to 5 (#64) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump apache/skywalking-eyes from 0.7.0 to 0.8.0 (#63) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 6 to 7 (#60) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.7.0 to 1.0.0 (#56) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.6.0 to 0.7.0 (#50) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/evcc-io/openapi-mcp from 0.5.1 to 0.6.0 (#48) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#44) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.4.0 to 0.5.0 (#36) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/evcc-io/openapi-mcp from 0.5.0 to 0.5.1 (#33) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.3.1 to 0.4.0 (#32) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-go from 5 to 6 (#31) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 (#20) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/getkin/kin-openapi from 0.132.0 to 0.133.0 (#19) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/mark3labs/mcp-go from 0.37.0 to 0.38.0 (#18) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#15) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 4 to 5 (#13) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/mark3labs/mcp-go from 0.36.0 to 0.37.0 (#11) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/mcp-server/compare/...1.0.0 - Release 1.0.0 ## What's Changed * bump version 1.0.0 (#80) @nelsonkopliku ### Features * Sync both stable and rolling obs projects (#79) @nelsonkopliku **Full Changelog**: https://github.com/trento-project/mcp-server/compare/0.1.0...1.0.0 - Release 0.1.0 ## What's Changed * Revert release (#78) @nelsonkopliku * bump version 1.0.0 (#77) @nelsonkopliku * fix get_version_from_git.sh (#76) @nelsonkopliku * Revert release (#75) @nelsonkopliku * Release version 1.0.0 (#74) @nelsonkopliku * [TRNT-3946] Improve user documentation (#62) @antgamdia * [TRNT-3946] Add missing INSECURE_SKIP_TLS_VERIFY to default config (#72) @antgamdia * Aligns golang version (#53) @gagandeepb * [TRNT-3854] Add OBS workflows (#41) @antgamdia * [TRNT-3845] Add asciidoc-linter and fix issues (#26) @antgamdia * [TRNT-3850] Remove unused OAuth logic (#21) @antgamdia * Fix for autobuild (#17) @EMaksy * [TRNT-3844] Add initial MCP server code (#7) @antgamdia ### Features * [TRNT-3946] Replace header name "Authorization" (#69) @antgamdia * [TRTN-3845] Improve handling of paths (#67) @antgamdia * [TRNT-3845] Use autodiscovery of Trento API endpoints (#59) @antgamdia * [TRNT-3854] Rename binaries (#66) @antgamdia * [TRNT-3854] Rename rpm binary to `mcp-server-trento` (#61) @antgamdia * [TRNT-3845] Delete hardcoded API docs (#24) @antgamdia * [TRNT-3854] Add opional health check server (#57) @antgamdia * [TRNT-3854] Delete local helm chart (#51) @antgamdia * [TRNT-3854] Improve config file and include it in packaging (#52) @antgamdia * [TRNT-3845] Support multiple API docs (#54) @antgamdia * [TRNT-3854] Rename pkg in OBS (#45) @antgamdia * [TRNT-3854] Allow passing configuration in multiple ways (#43) @antgamdia * [TRNT-3854] Download OAS file from HTTP (#46) @antgamdia * [TRNT-3853] Redirect library log traces to our logger (#29) @antgamdia * [TRNT-3854] Add initial release workflows (#42) @antgamdia * [TRNT-3854] Prepare CI for more steps (#38) @antgamdia * [TRNT-3853] Use asdf versions in the scripts and CI (#25) @antgamdia * [TRNT-3854] Add packaging folder (#40) @antgamdia * [TRNT-3854] Update dockerfile and makefile (#37) @antgamdia * [TRNT-3850] Use modelcontextprotocol/go-sdk (#16) @antgamdia * [TRNT-3853] Use API-key based authentication (#14) @antgamdia * [TRNT-3850] Add initial unit tests (#10) @antgamdia * [TRNT-3850] Improve existing mcp server logic (#9) @antgamdia * [TRNT-3850] Use the evcc-io/openapi-mcp fork instead (#8) @antgamdia * [TRNT-3844] Add initial MCP server code (#1) @antgamdia ### Bug Fixes * [TRNT-4079] Use custom http client for tool execution (#73) @antgamdia * [TRNT-3853] Use per-mcp-session API tokens (#58) @antgamdia * [TRNT-3853] Increase timeouts (#30) @antgamdia * [TRNT-3853] Fix container push (#34) @antgamdia ### Dependencies <details> <summary>21 changes</summary> * Bump golangci/golangci-lint-action from 8 to 9 (#70) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 5 to 6 (#71) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 1.0.0 to 1.1.0 (#68) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 5 to 6 (#65) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/upload-artifact from 4 to 5 (#64) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump apache/skywalking-eyes from 0.7.0 to 0.8.0 (#63) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump stefanzweifel/git-auto-commit-action from 6 to 7 (#60) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.7.0 to 1.0.0 (#56) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.6.0 to 0.7.0 (#50) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/evcc-io/openapi-mcp from 0.5.1 to 0.6.0 (#48) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#44) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.4.0 to 0.5.0 (#36) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/evcc-io/openapi-mcp from 0.5.0 to 0.5.1 (#33) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/modelcontextprotocol/go-sdk from 0.3.1 to 0.4.0 (#32) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/setup-go from 5 to 6 (#31) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/spf13/cobra from 1.9.1 to 1.10.1 (#20) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/getkin/kin-openapi from 0.132.0 to 0.133.0 (#19) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/mark3labs/mcp-go from 0.37.0 to 0.38.0 (#18) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/checkout from 4 to 5 (#15) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump actions/download-artifact from 4 to 5 (#13) @[dependabot[bot]](https://github.com/apps/dependabot) * Bump github.com/mark3labs/mcp-go from 0.36.0 to 0.37.0 (#11) @[dependabot[bot]](https://github.com/apps/dependabot) </details> **Full Changelog**: https://github.com/trento-project/mcp-server/compare/...0.1.0 - Release 1.0.0 ## What's Changed * bump version 1.0.0 (#77) @nelsonkopliku * fix get_version_from_git.sh (#76) @nelsonkopliku **Full Changelog**: https://github.com/trento-project/mcp-server/compare/0.1.0...1.0.0 Changes in supportutils-plugin-trento: Release 3.0.0 ## What's Changed * Release version 3.0.0 (#13) @nelsonkopliku **Full Changelog**: https://github.com/trento-project/support/compare/2.5.2...3.0.0 Release 2.5.2 ## What's Changed * fix missing log_cmd function (#10) @stefanotorresi * README remove md and replace with adoc (#9) @EMaksy **Full Changelog**: https://github.com/trento-project/support/compare/2.5.1...2.5.2 - Release 2.5.1 **Full Changelog**: https://github.com/trento-project/support/compare/2.5...2.5.1 trento-web-3.0.0-160000.1.1.aarch64.rpm trento-web-3.0.0-160000.1.1.src.rpm trento-web-debuginfo-3.0.0-160000.1.1.aarch64.rpm trento-web-debugsource-3.0.0-160000.1.1.aarch64.rpm trento-wanda-2.0.0-160000.1.1.aarch64.rpm trento-wanda-2.0.0-160000.1.1.src.rpm trento-checks-1.2.0-160000.1.1.noarch.rpm trento-checks-1.2.0-160000.1.1.src.rpm supportutils-plugin-trento-3.0.0-160000.1.1.noarch.rpm supportutils-plugin-trento-3.0.0-160000.1.1.src.rpm trento-agent-3.0.0-160000.1.1.ppc64le.rpm trento-agent-3.0.0-160000.1.1.src.rpm trento-web-3.0.0-160000.1.1.ppc64le.rpm trento-web-debuginfo-3.0.0-160000.1.1.ppc64le.rpm trento-web-debugsource-3.0.0-160000.1.1.ppc64le.rpm trento-wanda-2.0.0-160000.1.1.ppc64le.rpm mcp-server-trento-1.0.0-160000.1.1.ppc64le.rpm mcp-server-trento-1.0.0-160000.1.1.src.rpm trento-agent-3.0.0-160000.1.1.s390x.rpm trento-web-3.0.0-160000.1.1.s390x.rpm trento-web-debuginfo-3.0.0-160000.1.1.s390x.rpm trento-web-debugsource-3.0.0-160000.1.1.s390x.rpm trento-wanda-2.0.0-160000.1.1.s390x.rpm mcp-server-trento-1.0.0-160000.1.1.s390x.rpm trento-agent-3.0.0-160000.1.1.x86_64.rpm trento-web-3.0.0-160000.1.1.x86_64.rpm trento-web-debuginfo-3.0.0-160000.1.1.x86_64.rpm trento-web-debugsource-3.0.0-160000.1.1.x86_64.rpm trento-wanda-2.0.0-160000.1.1.x86_64.rpm mcp-server-trento-1.0.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-169 Security update for buildah important SUSE SLFO 1.2 This update for buildah fixes the following issues: - CVE-2025-47914: golang.org/x/crypto/ssh/agent: Fixed non validated message size causing a panic due to an out of bounds read (bsc#1254054) - CVE-2025-47913: golang.org/x/crypto/ssh/agent: Fixed client process termination when receiving an unexpected message type in response to a key listing or signing request (bsc#1253598) - CVE-2025-31133,CVE-2025-52565,CVE-2025-52881: Fixed container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files (bsc#1253096) Other fixes: - Updated to version 1.39.5. buildah-1.39.5-160000.1.1.aarch64.rpm buildah-1.39.5-160000.1.1.src.rpm buildah-debuginfo-1.39.5-160000.1.1.aarch64.rpm buildah-1.39.5-160000.1.1.ppc64le.rpm buildah-debuginfo-1.39.5-160000.1.1.ppc64le.rpm buildah-1.39.5-160000.1.1.s390x.rpm buildah-debuginfo-1.39.5-160000.1.1.s390x.rpm buildah-1.39.5-160000.1.1.x86_64.rpm buildah-debuginfo-1.39.5-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-17 Recommended update for python-kiwi moderate SUSE SLFO 1.2 This update for python-kiwi fixes the following issues: Version 10.2.33. - Run grub mkconfig with os-prober disabled Set GRUB_DISABLE_OS_PROBER=true to the caller environment such that it gets consumed via /etc/grub.d/30_os-prober This Fixes #2883 - Fixed typo in documentation Invalid XML syntax, missing end tag. This Fixes #2882 - References #2474 and #2475 poweroff instead of halt on oem shutdown - Fix rawhide integration test The package shim-ia32 got dropped - Add test for profiled overlays kiwi supports overlay files per profile, but we didn't had a proper integration test for it. This commit adds one - Mount proc when needed Using cp -a might lookup in proc/self/.. under certain conditions. Make sure to mount proc for config/function that might trigger this condition. This Fixes #2876 - Update test-image-custom-partitions test build Fix patch files to match with new dracut module dirs - Update dracut version compat runtime check Update check_dracut_module_versions_compatible_to_kiwi to match with new dracut module dirs which have changed due to recommended dracut module ordering for out-of-tree modules. - Fix dracut Makefile install target module dir names have changed due to recommended dracut module ordering for out-of-tree modules. - Update pacman spec to dract changed module dirs Follow up change for the fix of the recommended dracut module ordering for out-of-tree modules. - Update spec file due to dract changed module dirs Follow up change for the fix of the recommended dracut module ordering for out-of-tree modules. - Follow the recommended dracut module ordering for out-of-tree modules In dracut release v108 or later the recommended ordering for out out of tree modules is 50-59 range. The following is a section from dracut documentation: > Not using the 50-59 range for out of tree dracut modules will likely > lead to unintended errors in the initramfs generation process as your > dracut module will either run too early or too late in the generation process. > You have been warned. - Fix agama integration test Disable no longer existing agama-auto.service - Fixed agama integration test nothing provides agama-auto anymore - Update SLFO integration test Make sure ps tool is installed - Fix exclude list for live image builds When specifying a filesystem attribute for a live image build, the rootfs gets build directly into this filesystem instead of being a squashfs wraped ext4 which is the default layout for compatibility reasons. In this direct filesystem mode the exclude list was not passed along to the filesystem creation and causes unwanted metadata to be part of the final image. This Fixes #2873 - Fix test-image-custom-partitions integration test Same fix as for the Tumbleweed test now also applied to the Leap test. Patching of the new root device did no longer apply - Fix test-image-custom-partitions integration test Patching of the new root device did no longer apply - fix: resize for raid device, ensure vars like kiwi_RaidDev are loaded before setting disk variable - Do not clobber initialize method There was a method named initialize defined and implemented differently in the dracut modules kiwi-lib and kiwi-repart. kiwi-lib is expected to be shared code across all kiwi dracut modules. However if one module redefines a method of the same name which is used in another module and expected to work differently there, this is evil. This commit cleans up the name conflict and names the kiwi library init function as lib_initialize. All dracut code that is expected to make use of this method has been adopted too. - Skip kiwi-repart module in install ISOs In case the kiwi-repart module is explicitly requested in a dracut.conf file and the image is also configured to build an install ISO image this leads the install ISO to contain the kiwi-repart module as well which is unwanted. This commit explicitly omits the kiwi-repart when creating the initrd for the install image - Skip repart when booting install/live iso - Update leap test-image-disk integration test Add test for alternative volume ID in install ISO - Consolidate device lock into its own method Add set_device_lock method which uses udevadm lock preferable but also supports an flock fallback in case there is no lock command provided via systemd/udev - Fix bug in shell condition The shell code test ... || warn A; warn B will always print the warning for B despite the test result. This lead to the warning message "Settings from the kiwi description will be ignored" to be printed always. This commit fixes it with a clean if/then condition - Fix documentation rendering There was an indentation bug which caused the docs to render wrong. This commit fixes it - solver/repository: Handle zstd-compressed metadata files `_create_solvables` assumes metadata files are gzip-compressed, but modern Fedora ones are not, they are zstd-compressed. - uri: If we fail to resolve the metalink URI, log it It's rather useful to know *what* the URI is when something goes wrong, after all. Signed-off-by: Adam Williamson <awilliam@redhat.com> - Fix repartitioning with parted parted does locking itself already. Wrapping it in udevadm lock results in a deadlock, breaking boot. - Update test-image-disk-simple integration test Update slfo/test-image-disk-simple. Add more space for flake testing and add a user to test flakes for non root - Catch potential exceptions from pathlib.Path.mkdir Creating a directory can fail, we should catch this error instead of ending up in a stack trace dracut-kiwi-lib-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-live-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-oem-dump-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-oem-repart-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-overlay-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-verity-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-verity-debuginfo-10.2.33-160000.1.1.aarch64.rpm kiwi-bash-completion-10.2.33-160000.1.1.noarch.rpm kiwi-man-pages-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-bootloaders-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-containers-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-containers-wsl-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-core-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-disk-images-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-filesystems-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-image-validation-10.2.33-160000.1.1.aarch64.rpm kiwi-systemdeps-iso-media-10.2.33-160000.1.1.aarch64.rpm python-kiwi-10.2.33-160000.1.1.src.rpm python3-kiwi-10.2.33-160000.1.1.aarch64.rpm dracut-kiwi-lib-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-live-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-oem-dump-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-oem-repart-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-overlay-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-verity-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-verity-debuginfo-10.2.33-160000.1.1.ppc64le.rpm kiwi-man-pages-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-bootloaders-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-containers-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-containers-wsl-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-core-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-disk-images-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-filesystems-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-image-validation-10.2.33-160000.1.1.ppc64le.rpm kiwi-systemdeps-iso-media-10.2.33-160000.1.1.ppc64le.rpm python3-kiwi-10.2.33-160000.1.1.ppc64le.rpm dracut-kiwi-lib-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-live-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-oem-dump-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-oem-repart-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-overlay-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-verity-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-verity-debuginfo-10.2.33-160000.1.1.s390x.rpm kiwi-man-pages-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-bootloaders-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-containers-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-containers-wsl-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-core-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-disk-images-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-filesystems-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-image-validation-10.2.33-160000.1.1.s390x.rpm kiwi-systemdeps-iso-media-10.2.33-160000.1.1.s390x.rpm python3-kiwi-10.2.33-160000.1.1.s390x.rpm dracut-kiwi-lib-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-live-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-oem-dump-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-oem-repart-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-overlay-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-verity-10.2.33-160000.1.1.x86_64.rpm dracut-kiwi-verity-debuginfo-10.2.33-160000.1.1.x86_64.rpm kiwi-man-pages-10.2.33-160000.1.1.x86_64.rpm kiwi-pxeboot-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-bootloaders-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-containers-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-containers-wsl-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-core-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-disk-images-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-filesystems-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-image-validation-10.2.33-160000.1.1.x86_64.rpm kiwi-systemdeps-iso-media-10.2.33-160000.1.1.x86_64.rpm python3-kiwi-10.2.33-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-170 Security update for python313 moderate SUSE SLFO 1.2 This update for python313 fixes the following issues: - Update to 3.13.11: - Security - CVE-2025-12084: cpython: Fixed quadratic algorithm in xml.dom.minidom leading to denial of service (bsc#1254997) - CVE-2025-13836: Fixed default Content-Lenght read amount from HTTP response (bsc#1254400) - CVE-2025-13837: Fixed plistlib module denial of service (bsc#1254401) - CVE-2025-8291: Fixed validity of the ZIP64 End of Central Directory (EOCD) not checked by the 'zipfile' module (bsc#1251305) - gh-137836: Add support of the “plaintext” element, RAWTEXT elements “xmp”, “iframe”, “noembed” and “noframes”, and optionally RAWTEXT element “noscript” in html.parser.HTMLParser. - gh-136063: email.message: ensure linear complexity for legacy HTTP parameters parsing. Patch by Bénédikt Tran. - CVE-2025-6075: Fixed performance issues caused by user-controller os.path.expandvars() (bsc#1252974) - Library - gh-140797: Revert changes to the undocumented re.Scanner class. Capturing groups are still allowed for backward compatibility, although using them can lead to incorrect result. They will be forbidden in future Python versions. - gh-142206: The resource tracker in the multiprocessing module now uses the original communication protocol, as in Python 3.14.0 and below, by default. This avoids issues with upgrading Python while it is running. (Note that such ‘in-place’ upgrades are not tested.) The tracker remains compatible with subprocesses that use new protocol (that is, subprocesses using Python 3.13.10, 3.14.1 and 3.15). - Core and Builtins - gh-142218: Fix crash when inserting into a split table dictionary with a non str key that matches an existing key. - Update to 3.13.10: - Tools/Demos - gh-141442: The iOS testbed now correctly handles test arguments that contain spaces. - Tests - gh-140482: Preserve and restore the state of stty echo as part of the test environment. - gh-140082: Update python -m test to set FORCE_COLOR=1 when being run with color enabled so that unittest which is run by it with redirected output will output in color. - gh-136442: Use exitcode 1 instead of 5 if unittest.TestCase.setUpClass() raises an exception - Library - gh-74389: When the stdin being used by a subprocess.Popen instance is closed, this is now ignored in subprocess.Popen.communicate() instead of leaving the class in an inconsistent state. - gh-87512: Fix subprocess.Popen.communicate() timeout handling on Windows when writing large input. Previously, the timeout was ignored during stdin writing, causing the method to block indefinitely if the child process did not consume input quickly. The stdin write is now performed in a background thread, allowing the timeout to be properly enforced. - gh-141473: When subprocess.Popen.communicate() was called with input and a timeout and is called for a second time after a TimeoutExpired exception before the process has died, it should no longer hang. - gh-59000: Fix pdb breakpoint resolution for class methods when the module defining the class is not imported. - gh-141570: Support file-like object raising OSError from fileno() in color detection (_colorize.can_colorize()). This can occur when sys.stdout is redirected. - gh-141659: Fix bad file descriptor errors from _posixsubprocess on AIX. - gh-141497: ipaddress: ensure that the methods IPv4Network.hosts() and IPv6Network.hosts() always return an iterator. - gh-140938: The statistics.stdev() and statistics.pstdev() functions now raise a ValueError when the input contains an infinity or a NaN. - gh-124111: Updated Tcl threading configuration in _tkinter to assume that threads are always available in Tcl 9 and later. - gh-137109: The os.fork and related forking APIs will no longer warn in the common case where Linux or macOS platform APIs return the number of threads in a process and find the answer to be 1 even when a os.register_at_fork() after_in_parent= callback (re)starts a thread. - gh-141314: Fix assertion failure in io.TextIOWrapper.tell() when reading files with standalone carriage return (\r) line endings. - gh-141311: Fix assertion failure in io.BytesIO.readinto() and undefined behavior arising when read position is above capcity in io.BytesIO. - gh-141141: Fix a thread safety issue with base64.b85decode(). Contributed by Benel Tayar. - gh-140911: collections: Ensure that the methods UserString.rindex() and UserString.index() accept collections.UserString instances as the sub argument. - gh-140797: The undocumented re.Scanner class now forbids regular expressions containing capturing groups in its lexicon patterns. Patterns using capturing groups could previously lead to crashes with segmentation fault. Use non-capturing groups (?:…) instead. - gh-140815: faulthandler now detects if a frame or a code object is invalid or freed. Patch by Victor Stinner. - gh-100218: Correctly set errno when socket.if_nametoindex() or socket.if_indextoname() raise an OSError. Patch by Bénédikt Tran. - gh-140875: Fix handling of unclosed character references (named and numerical) followed by the end of file in html.parser.HTMLParser with convert_charrefs=False. - gh-140734: multiprocessing: fix off-by-one error when checking the length of a temporary socket file path. Patch by Bénédikt Tran. - gh-140874: Bump the version of pip bundled in ensurepip to version 25.3 - gh-140691: In urllib.request, when opening a FTP URL fails because a data connection cannot be made, the control connection’s socket is now closed to avoid a ResourceWarning. - gh-103847: Fix hang when cancelling process created by asyncio.create_subprocess_exec() or asyncio.create_subprocess_shell(). Patch by Kumar Aditya. - gh-140590: Fix arguments checking for the functools.partial.__setstate__() that may lead to internal state corruption and crash. Patch by Sergey Miryanov. - gh-140634: Fix a reference counting bug in os.sched_param.__reduce__(). - gh-140633: Ignore AttributeError when setting a module’s __file__ attribute when loading an extension module packaged as Apple Framework. - gh-140593: xml.parsers.expat: Fix a memory leak that could affect users with ElementDeclHandler() set to a custom element declaration handler. Patch by Sebastian Pipping. - gh-140607: Inside io.RawIOBase.read(), validate that the count of bytes returned by io.RawIOBase.readinto() is valid (inside the provided buffer). - gh-138162: Fix logging.LoggerAdapter with merge_extra=True and without the extra argument. - gh-140474: Fix memory leak in array.array when creating arrays from an empty str and the u type code. - gh-140272: Fix memory leak in the clear() method of the dbm.gnu database. - gh-140041: Fix import of ctypes on Android and Cygwin when ABI flags are present. - gh-139905: Add suggestion to error message for typing.Generic subclasses when cls.__parameters__ is missing due to a parent class failing to call super().__init_subclass__() in its __init_subclass__. - gh-139845: Fix to not print KeyboardInterrupt twice in default asyncio REPL. - gh-139783: Fix inspect.getsourcelines() for the case when a decorator is followed by a comment or an empty line. - gh-70765: http.server: fix default handling of HTTP/0.9 requests in BaseHTTPRequestHandler. Previously, BaseHTTPRequestHandler.parse_request() incorrectly waited for headers in the request although those are not supported in HTTP/0.9. Patch by Bénédikt Tran. - gh-139391: Fix an issue when, on non-Windows platforms, it was not possible to gracefully exit a python -m asyncio process suspended by Ctrl+Z and later resumed by fg other than with kill. - gh-101828: Fix 'shift_jisx0213', 'shift_jis_2004', 'euc_jisx0213' and 'euc_jis_2004' codecs truncating null chars as they were treated as part of multi-character sequences. - gh-139246: fix: paste zero-width in default repl width is wrong. - gh-90949: Add SetAllocTrackerActivationThreshold() and SetAllocTrackerMaximumAmplification() to xmlparser objects to prevent use of disproportional amounts of dynamic memory from within an Expat parser. Patch by Bénédikt Tran. - gh-139065: Fix trailing space before a wrapped long word if the line length is exactly width in textwrap. - gh-138993: Dedent credits text. - gh-138859: Fix generic type parameterization raising a TypeError when omitting a ParamSpec that has a default which is not a list of types. - gh-138775: Use of python -m with base64 has been fixed to detect input from a terminal so that it properly notices EOF. - gh-98896: Fix a failure in multiprocessing resource_tracker when SharedMemory names contain colons. Patch by Rani Pinchuk. - gh-75989: tarfile.TarFile.extractall() and tarfile.TarFile.extract() now overwrite symlinks when extracting hardlinks. (Contributed by Alexander Enrique Urieles Nieto in gh-75989.) - gh-83424: Allows creating a ctypes.CDLL without name when passing a handle as an argument. - gh-136234: Fix asyncio.WriteTransport.writelines() to be robust to connection failure, by using the same behavior as write(). - gh-136057: Fixed the bug in pdb and bdb where next and step can’t go over the line if a loop exists in the line. - gh-135307: email: Fix exception in set_content() when encoding text and max_line_length is set to 0 or None (unlimited). - gh-134453: Fixed subprocess.Popen.communicate() input= handling of memoryview instances that were non-byte shaped on POSIX platforms. Those are now properly cast to a byte shaped view instead of truncating the input. Windows platforms did not have this bug. - gh-102431: Clarify constraints for “logical” arguments in methods of decimal.Context. - IDLE - gh-96491: Deduplicate version number in IDLE shell title bar after saving to a file. - Documentation - gh-141994: xml.sax.handler: Make Documentation of xml.sax.handler.feature_external_ges warn of opening up to external entity attacks. Patch by Sebastian Pipping. - gh-140578: Remove outdated sencence in the documentation for multiprocessing, that implied that concurrent.futures.ThreadPoolExecutor did not exist. - Core and Builtins - gh-142048: Fix quadratically increasing garbage collection delays in free-threaded build. - gh-141930: When importing a module, use Python’s regular file object to ensure that writes to .pyc files are complete or an appropriate error is raised. - gh-120158: Fix inconsistent state when enabling or disabling monitoring events too many times. - gh-141579: Fix sys.activate_stack_trampoline() to properly support the perf_jit backend. Patch by Pablo Galindo. - gh-141312: Fix the assertion failure in the __setstate__ method of the range iterator when a non-integer argument is passed. Patch by Sergey Miryanov. - gh-140939: Fix memory leak when bytearray or bytes is formated with the %*b format with a large width that results in %a MemoryError. - gh-140530: Fix a reference leak when raise exc from cause fails. Patch by Bénédikt Tran. - gh-140576: Fixed crash in tokenize.generate_tokens() in case of specific incorrect input. Patch by Mikhail Efimov. - gh-140551: Fixed crash in dict if dict.clear() is called at the lookup stage. Patch by Mikhail Efimov and Inada Naoki. - gh-140471: Fix potential buffer overflow in ast.AST node initialization when encountering malformed _fields containing non-str. - gh-140406: Fix memory leak when an object’s __hash__() method returns an object that isn’t an int. - gh-140306: Fix memory leaks in cross-interpreter channel operations and shared namespace handling. - gh-140301: Fix memory leak of PyConfig in subinterpreters. - gh-140000: Fix potential memory leak when a reference cycle exists between an instance of typing.TypeAliasType, typing.TypeVar, typing.ParamSpec, or typing.TypeVarTuple and its __name__ attribute. Patch by Mikhail Efimov. - gh-139748: Fix reference leaks in error branches of functions accepting path strings or bytes such as compile() and os.system(). Patch by Bénédikt Tran. - gh-139516: Fix lambda colon erroneously start format spec in f-string in tokenizer. - gh-139640: Fix swallowing some syntax warnings in different modules if they accidentally have the same message and are emitted from the same line. Fix duplicated warnings in the finally block. - gh-137400: Fix a crash in the free threading build when disabling profiling or tracing across all threads with PyEval_SetProfileAllThreads() or PyEval_SetTraceAllThreads() or their Python equivalents threading.settrace_all_threads() and threading.setprofile_all_threads(). - gh-133400: Fixed Ctrl+D (^D) behavior in _pyrepl module to match old pre-3.13 REPL behavior. - C API - gh-140042: Removed the sqlite3_shutdown call that could cause closing connections for sqlite when used with multiple sub interpreters. - gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API 3.11 and older: don’t treat Py_NotImplemented as immortal. Patch by Victor Stinner. - Update to 3.13.9: - Library - gh-139783: Fix inspect.getsourcelines() for the case when a decorator is followed by a comment or an empty line. - Update to 3.13.8: - Tools/Demos - gh-139330: SBOM generation tool didn’t cross-check the version and checksum values against the Modules/expat/refresh.sh script, leading to the values becoming out-of-date during routine updates. - gh-137873: The iOS test runner has been simplified, resolving some issues that have been observed using the runner in GitHub Actions and Azure Pipelines test environments. - Tests - gh-139208: Fix regrtest --fast-ci --verbose: don’t ignore the --verbose option anymore. Patch by Victor Stinner. - Security - gh-139400: xml.parsers.expat: Make sure that parent Expat parsers are only garbage-collected once they are no longer referenced by subparsers created by ExternalEntityParserCreate(). Patch by Sebastian Pipping. - gh-139283: sqlite3: correctly handle maximum number of rows to fetch in Cursor.fetchmany and reject negative values for Cursor.arraysize. Patch by Bénédikt Tran. - gh-135661: Fix CDATA section parsing in html.parser.HTMLParser according to the HTML5 standard: ] ]> and ]] > no longer end the CDATA section. Add private method _set_support_cdata() which can be used to specify how to parse <[CDATA[ — as a CDATA section in foreign content (SVG or MathML) or as a bogus comment in the HTML namespace. - Library - gh-139312: Upgrade bundled libexpat to 2.7.3 - gh-139289: Do a real lazy-import on rlcompleter in pdb and restore the existing completer after importing rlcompleter. - gh-139210: Fix use-after-free when reporting unknown event in xml.etree.ElementTree.iterparse(). Patch by Ken Jin. - gh-138860: Lazy import rlcompleter in pdb to avoid deadlock in subprocess. - gh-112729: Fix crash when calling _interpreters.create when the process is out of memory. - gh-139076: Fix a bug in the pydoc module that was hiding functions in a Python module if they were implemented in an extension module and the module did not have __all__. - gh-138998: Update bundled libexpat to 2.7.2 - gh-130567: Fix possible crash in locale.strxfrm() due to a platform bug on macOS. - gh-138779: Support device numbers larger than 2**63-1 for the st_rdev field of the os.stat_result structure. - gh-128636: Fix crash in PyREPL when os.environ is overwritten with an invalid value for mac - gh-88375: Fix normalization of the robots.txt rules and URLs in the urllib.robotparser module. No longer ignore trailing ?. Distinguish raw special characters ?, = and & from the percent-encoded ones. - gh-138515: email is added to Emscripten build. - gh-111788: Fix parsing errors in the urllib.robotparser module. Don’t fail trying to parse weird paths. Don’t fail trying to decode non-UTF-8 robots.txt files. - gh-138432: zoneinfo.reset_tzpath() will now convert any os.PathLike objects it receives into strings before adding them to TZPATH. It will raise TypeError if anything other than a string is found after this conversion. If given an os.PathLike object that represents a relative path, it will now raise ValueError instead of TypeError, and present a more informative error message. - gh-138008: Fix segmentation faults in the ctypes module due to invalid argtypes. Patch by Dung Nguyen. - gh-60462: Fix locale.strxfrm() on Solaris (and possibly other platforms). - gh-138204: Forbid expansion of shared anonymous memory maps on Linux, which caused a bus error. - gh-138010: Fix an issue where defining a class with a @warnings.deprecated-decorated base class may not invoke the correct __init_subclass__() method in cases involving multiple inheritance. Patch by Brian Schubert. - gh-138133: Prevent infinite traceback loop when sending CTRL^C to Python through strace. - gh-134869: Fix an issue where pressing Ctrl+C during tab completion in the REPL would leave the autocompletion menu in a corrupted state. - gh-137317: inspect.signature() now correctly handles classes that use a descriptor on a wrapped __init__() or __new__() method. Contributed by Yongyu Yan. - gh-137754: Fix import of the zoneinfo module if the C implementation of the datetime module is not available. - gh-137490: Handle ECANCELED in the same way as EINTR in signal.sigwaitinfo() on NetBSD. - gh-137477: Fix inspect.getblock(), inspect.getsourcelines() and inspect.getsource() for generator expressions. - gh-137017: Fix threading.Thread.is_alive to remain True until the underlying OS thread is fully cleaned up. This avoids false negatives in edge cases involving thread monitoring or premature threading.Thread.is_alive calls. - gh-136134: SMTP.auth_cram_md5() now raises an SMTPException instead of a ValueError if Python has been built without MD5 support. In particular, SMTP clients will not attempt to use this method even if the remote server is assumed to support it. Patch by Bénédikt Tran. - gh-136134: IMAP4.login_cram_md5 now raises an IMAP4.error if CRAM-MD5 authentication is not supported. Patch by Bénédikt Tran. - gh-135386: Fix opening a dbm.sqlite3 database for reading from read-only file or directory. - gh-126631: Fix multiprocessing forkserver bug which prevented __main__ from being preloaded. - gh-123085: In a bare call to importlib.resources.files(), ensure the caller’s frame is properly detected when importlib.resources is itself available as a compiled module only (no source). - gh-118981: Fix potential hang in multiprocessing.popen_spawn_posix that can happen when the child proc dies early by closing the child fds right away. - gh-78319: UTF8 support for the IMAP APPEND command has been made RFC compliant. - bpo-38735: Fix failure when importing a module from the root directory on unix-like platforms with sys.pycache_prefix set. - bpo-41839: Allow negative priority values from os.sched_get_priority_min() and os.sched_get_priority_max() functions. - Core and Builtins - gh-134466: Don’t run PyREPL in a degraded environment where setting termios attributes is not allowed. - gh-71810: Raise OverflowError for (-1).to_bytes() for signed conversions when bytes count is zero. Patch by Sergey B Kirpichev. - gh-105487: Remove non-existent __copy__(), __deepcopy__(), and __bases__ from the __dir__() entries of types.GenericAlias. - gh-134163: Fix a hang when the process is out of memory inside an exception handler. - gh-138479: Fix a crash when a generic object’s __typing_subst__ returns an object that isn’t a tuple. - gh-137576: Fix for incorrect source code being shown in tracebacks from the Basic REPL when PYTHONSTARTUP is given. Patch by Adam Hartz. - gh-132744: Certain calls now check for runaway recursion and respect the system recursion limit. - C API - gh-87135: Attempting to acquire the GIL after runtime finalization has begun in a different thread now causes the thread to hang rather than terminate, which avoids potential crashes or memory corruption caused by attempting to terminate a thread that is running code not specifically designed to support termination. In most cases this hanging is harmless since the process will soon exit anyway. While not officially marked deprecated until 3.14, PyThread_exit_thread is no longer called internally and remains solely for interface compatibility. Its behavior is inconsistent across platforms, and it can only be used safely in the unlikely case that every function in the entire call stack has been designed to support the platform-dependent termination mechanism. It is recommended that users of this function change their design to not require thread termination. In the unlikely case that thread termination is needed and can be done safely, users may migrate to calling platform-specific APIs such as pthread_exit (POSIX) or _endthreadex (Windows) directly. - Build - gh-135734: Python can correctly be configured and built with ./configure --enable-optimizations --disable-test-modules. Previously, the profile data generation step failed due to PGO tests where immortalization couldn’t be properly suppressed. - Update to 3.13.7: - gh-137583: Fix a deadlock introduced in 3.13.6 when a call to ssl.SSLSocket.recv was blocked in one thread, and then another method on the object (such as ssl.SSLSocket.send) was subsequently called in another thread. - gh-137044: Return large limit values as positive integers instead of negative integers in resource.getrlimit(). Accept large values and reject negative values (except RLIM_INFINITY) for limits in resource.setrlimit(). - gh-136914: Fix retrieval of doctest.DocTest.lineno for objects decorated with functools.cache() or functools.cached_property. - gh-131788: Make ResourceTracker.send from multiprocessing re-entrant safe - gh-136155: We are now checking for fatal errors in EPUB builds in CI. - gh-137400: Fix a crash in the free threading build when disabling profiling or tracing across all threads with PyEval_SetProfileAllThreads() or PyEval_SetTraceAllThreads() or their Python equivalents threading.settrace_all_threads() and threading.setprofile_all_threads(). - Update to 3.13.6: - Security - gh-135661: Fix parsing start and end tags in html.parser.HTMLParser according to the HTML5 standard. - gh-102555: Fix comment parsing in html.parser.HTMLParser according to the HTML5 standard. - CVE-2025-6069: Fix quadratic complexity in processing specially crafted input in html.parser.HTMLParser. End-of-file errors are now handled according to the HTML5 specs – comments and declarations are automatically closed, tags are ignored (gh-135462, bsc#1244705). - CVE-2025-8194: tarfile now validates archives to ensure member offsets are non-negative. (gh-130577, bsc#1247249). - gh-118350: Fix support of escapable raw text mode (elements “textarea” and “title”) in html.parser.HTMLParser. - Core and Builtins - gh-58124: Fix name of the Python encoding in Unicode errors of the code page codec: use “cp65000” and “cp65001” instead of “CP_UTF7” and “CP_UTF8” which are not valid Python code names. Patch by Victor Stinner. - gh-137314: Fixed a regression where raw f-strings incorrectly interpreted escape sequences in format specifications. Raw f-strings now properly preserve literal backslashes in format specs, matching the behavior from Python 3.11. For example, rf"{obj:\xFF}" now correctly produces '\\xFF' instead of 'ÿ'. Patch by Pablo Galindo. - gh-136541: Fix some issues with the perf trampolines on x86-64 and aarch64. The trampolines were not being generated correctly for some cases, which could lead to the perf integration not working correctly. Patch by Pablo Galindo. - gh-109700: Fix memory error handling in PyDict_SetDefault(). - gh-78465: Fix error message for cls.__new__(cls, ...) where cls is not instantiable builtin or extension type (with tp_new set to NULL). - gh-135871: Non-blocking mutex lock attempts now return immediately when the lock is busy instead of briefly spinning in the free threading build. - gh-135607: Fix potential weakref races in an object’s destructor on the free threaded build. - gh-135496: Fix typo in the f-string conversion type error (“exclamanation” -> “exclamation”). - gh-130077: Properly raise custom syntax errors when incorrect syntax containing names that are prefixes of soft keywords is encountered. Patch by Pablo Galindo. - gh-135148: Fixed a bug where f-string debug expressions (using =) would incorrectly strip out parts of strings containing escaped quotes and # characters. Patch by Pablo Galindo. - gh-133136: Limit excess memory usage in the free threading build when a large dictionary or list is resized and accessed by multiple threads. - gh-132617: Fix dict.update() modification check that could incorrectly raise a “dict mutated during update” error when a different dictionary was modified that happens to share the same underlying keys object. - gh-91153: Fix a crash when a bytearray is concurrently mutated during item assignment. - gh-127971: Fix off-by-one read beyond the end of a string in string search. - gh-125723: Fix crash with gi_frame.f_locals when generator frames outlive their generator. Patch by Mikhail Efimov. - Library - gh-132710: If possible, ensure that uuid.getnode() returns the same result even across different processes. Previously, the result was constant only within the same process. Patch by Bénédikt Tran. - gh-137273: Fix debug assertion failure in locale.setlocale() on Windows. - gh-137257: Bump the version of pip bundled in ensurepip to version 25.2 - gh-81325: tarfile.TarFile now accepts a path-like when working on a tar archive. (Contributed by Alexander Enrique Urieles Nieto in gh-81325.) - gh-130522: Fix unraisable TypeError raised during interpreter shutdown in the threading module. - gh-136549: Fix signature of threading.excepthook(). - gh-136523: Fix wave.Wave_write emitting an unraisable when open raises. - gh-52876: Add missing keepends (default True) parameter to codecs.StreamReaderWriter.readline() and codecs.StreamReaderWriter.readlines(). - gh-85702: If zoneinfo._common.load_tzdata is given a package without a resource a zoneinfo.ZoneInfoNotFoundError is raised rather than a PermissionError. Patch by Victor Stinner. - gh-134759: Fix UnboundLocalError in email.message.Message.get_payload() when the payload to decode is a bytes object. Patch by Kliment Lamonov. - gh-136028: Fix parsing month names containing “İ” (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE) in time.strptime(). This affects locales az_AZ, ber_DZ, ber_MA and crh_UA. - gh-135995: In the palmos encoding, make byte 0x9b decode to › (U+203A - SINGLE RIGHT-POINTING ANGLE QUOTATION MARK). - gh-53203: Fix time.strptime() for %c and %x formats on locales byn_ER, wal_ET and lzh_TW, and for %X format on locales ar_SA, bg_BG and lzh_TW. - gh-91555: An earlier change, which was introduced in 3.13.4, has been reverted. It disabled logging for a logger during handling of log messages for that logger. Since the reversion, the behaviour should be as it was before 3.13.4. - gh-135878: Fixes a crash of types.SimpleNamespace on free threading builds, when several threads were calling its __repr__() method at the same time. - gh-135836: Fix IndexError in asyncio.loop.create_connection() that could occur when non-OSError exception is raised during connection and socket’s close() raises OSError. - gh-135836: Fix IndexError in asyncio.loop.create_connection() that could occur when the Happy Eyeballs algorithm resulted in an empty exceptions list during connection attempts. - gh-135855: Raise TypeError instead of SystemError when _interpreters.set___main___attrs() is passed a non-dict object. Patch by Brian Schubert. - gh-135815: netrc: skip security checks if os.getuid() is missing. Patch by Bénédikt Tran. - gh-135640: Address bug where it was possible to call xml.etree.ElementTree.ElementTree.write() on an ElementTree object with an invalid root element. This behavior blanked the file passed to write if it already existed. - gh-135444: Fix asyncio.DatagramTransport.sendto() to account for datagram header size when data cannot be sent. - gh-135497: Fix os.getlogin() failing for longer usernames on BSD-based platforms. - gh-135487: Fix reprlib.Repr.repr_int() when given integers with more than sys.get_int_max_str_digits() digits. Patch by Bénédikt Tran. - gh-135335: multiprocessing: Flush stdout and stderr after preloading modules in the forkserver. - gh-135244: uuid: when the MAC address cannot be determined, the 48-bit node ID is now generated with a cryptographically-secure pseudo-random number generator (CSPRNG) as per RFC 9562, §6.10.3. This affects uuid1(). - gh-135069: Fix the “Invalid error handling” exception in encodings.idna.IncrementalDecoder to correctly replace the ‘errors’ parameter. - gh-134698: Fix a crash when calling methods of ssl.SSLContext or ssl.SSLSocket across multiple threads. - gh-132124: On POSIX-compliant systems, multiprocessing.util.get_temp_dir() now ignores TMPDIR (and similar environment variables) if the path length of AF_UNIX socket files exceeds the platform-specific maximum length when using the forkserver start method. Patch by Bénédikt Tran. - gh-133439: Fix dot commands with trailing spaces are mistaken for multi-line SQL statements in the sqlite3 command-line interface. - gh-132969: Prevent the ProcessPoolExecutor executor thread, which remains running when shutdown(wait=False), from attempting to adjust the pool’s worker processes after the object state has already been reset during shutdown. A combination of conditions, including a worker process having terminated abormally, resulted in an exception and a potential hang when the still-running executor thread attempted to replace dead workers within the pool. - gh-130664: Support the '_' digit separator in formatting of the integral part of Decimal’s. Patch by Sergey B Kirpichev. - gh-85702: If zoneinfo._common.load_tzdata is given a package without a resource a ZoneInfoNotFoundError is raised rather than a IsADirectoryError. - gh-130664: Handle corner-case for Fraction’s formatting: treat zero-padding (preceding the width field by a zero ('0') character) as an equivalent to a fill character of '0' with an alignment type of '=', just as in case of float’s. - Tools/Demos - gh-135968: Stubs for strip are now provided as part of an iOS install. - Tests - gh-135966: The iOS testbed now handles the app_packages folder as a site directory. - gh-135494: Fix regrtest to support excluding tests from --pgo tests. Patch by Victor Stinner. - gh-135489: Show verbose output for failing tests during PGO profiling step with –enable-optimizations. - Documentation - gh-135171: Document that the iterator for the leftmost for clause in the generator expression is created immediately. - Build - gh-135497: Fix the detection of MAXLOGNAME in the configure.ac script. python313-3.13.11-160000.1.1.aarch64.rpm python313-3.13.11-160000.1.1.src.rpm python313-curses-3.13.11-160000.1.1.aarch64.rpm python313-curses-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-dbm-3.13.11-160000.1.1.aarch64.rpm python313-dbm-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-debugsource-3.13.11-160000.1.1.aarch64.rpm python313-idle-3.13.11-160000.1.1.aarch64.rpm python313-tk-3.13.11-160000.1.1.aarch64.rpm python313-tk-debuginfo-3.13.11-160000.1.1.aarch64.rpm libpython3_13-1_0-3.13.11-160000.1.1.aarch64.rpm libpython3_13-1_0-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-base-3.13.11-160000.1.1.aarch64.rpm python313-base-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-core-3.13.11-160000.1.1.src.rpm python313-core-debugsource-3.13.11-160000.1.1.aarch64.rpm python313-devel-3.13.11-160000.1.1.aarch64.rpm python313-devel-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-testsuite-3.13.11-160000.1.1.aarch64.rpm python313-testsuite-debuginfo-3.13.11-160000.1.1.aarch64.rpm python313-tools-3.13.11-160000.1.1.aarch64.rpm python313-doc-3.13.11-160000.1.1.aarch64.rpm python313-doc-devhelp-3.13.11-160000.1.1.aarch64.rpm python313-documentation-3.13.11-160000.1.1.src.rpm python313-3.13.11-160000.1.1.ppc64le.rpm python313-curses-3.13.11-160000.1.1.ppc64le.rpm python313-curses-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-dbm-3.13.11-160000.1.1.ppc64le.rpm python313-dbm-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-debugsource-3.13.11-160000.1.1.ppc64le.rpm python313-idle-3.13.11-160000.1.1.ppc64le.rpm python313-tk-3.13.11-160000.1.1.ppc64le.rpm python313-tk-debuginfo-3.13.11-160000.1.1.ppc64le.rpm libpython3_13-1_0-3.13.11-160000.1.1.ppc64le.rpm libpython3_13-1_0-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-base-3.13.11-160000.1.1.ppc64le.rpm python313-base-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-core-debugsource-3.13.11-160000.1.1.ppc64le.rpm python313-devel-3.13.11-160000.1.1.ppc64le.rpm python313-devel-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-testsuite-3.13.11-160000.1.1.ppc64le.rpm python313-testsuite-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-tools-3.13.11-160000.1.1.ppc64le.rpm python313-doc-3.13.11-160000.1.1.ppc64le.rpm python313-doc-devhelp-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-3.13.11-160000.1.1.src.rpm python313-nogil-curses-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-curses-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-dbm-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-dbm-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-debugsource-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-idle-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-tk-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-tk-debuginfo-3.13.11-160000.1.1.ppc64le.rpm libpython3_13t1_0-3.13.11-160000.1.1.ppc64le.rpm libpython3_13t1_0-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-base-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-base-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-devel-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-nogil-core-3.13.11-160000.1.1.src.rpm python313-nogil-nogil-core-debugsource-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-testsuite-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-testsuite-debuginfo-3.13.11-160000.1.1.ppc64le.rpm python313-nogil-tools-3.13.11-160000.1.1.ppc64le.rpm python313-3.13.11-160000.1.1.s390x.rpm python313-curses-3.13.11-160000.1.1.s390x.rpm python313-curses-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-dbm-3.13.11-160000.1.1.s390x.rpm python313-dbm-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-debugsource-3.13.11-160000.1.1.s390x.rpm python313-idle-3.13.11-160000.1.1.s390x.rpm python313-tk-3.13.11-160000.1.1.s390x.rpm python313-tk-debuginfo-3.13.11-160000.1.1.s390x.rpm libpython3_13-1_0-3.13.11-160000.1.1.s390x.rpm libpython3_13-1_0-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-base-3.13.11-160000.1.1.s390x.rpm python313-base-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-core-debugsource-3.13.11-160000.1.1.s390x.rpm python313-devel-3.13.11-160000.1.1.s390x.rpm python313-devel-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-testsuite-3.13.11-160000.1.1.s390x.rpm python313-testsuite-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-tools-3.13.11-160000.1.1.s390x.rpm python313-doc-3.13.11-160000.1.1.s390x.rpm python313-doc-devhelp-3.13.11-160000.1.1.s390x.rpm python313-nogil-3.13.11-160000.1.1.s390x.rpm python313-nogil-curses-3.13.11-160000.1.1.s390x.rpm python313-nogil-curses-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-dbm-3.13.11-160000.1.1.s390x.rpm python313-nogil-dbm-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-debugsource-3.13.11-160000.1.1.s390x.rpm python313-nogil-idle-3.13.11-160000.1.1.s390x.rpm python313-nogil-tk-3.13.11-160000.1.1.s390x.rpm python313-nogil-tk-debuginfo-3.13.11-160000.1.1.s390x.rpm libpython3_13t1_0-3.13.11-160000.1.1.s390x.rpm libpython3_13t1_0-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-base-3.13.11-160000.1.1.s390x.rpm python313-nogil-base-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-devel-3.13.11-160000.1.1.s390x.rpm python313-nogil-nogil-core-debugsource-3.13.11-160000.1.1.s390x.rpm python313-nogil-testsuite-3.13.11-160000.1.1.s390x.rpm python313-nogil-testsuite-debuginfo-3.13.11-160000.1.1.s390x.rpm python313-nogil-tools-3.13.11-160000.1.1.s390x.rpm python313-3.13.11-160000.1.1.x86_64.rpm python313-curses-3.13.11-160000.1.1.x86_64.rpm python313-curses-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-dbm-3.13.11-160000.1.1.x86_64.rpm python313-dbm-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-debugsource-3.13.11-160000.1.1.x86_64.rpm python313-idle-3.13.11-160000.1.1.x86_64.rpm python313-tk-3.13.11-160000.1.1.x86_64.rpm python313-tk-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-x86-64-v3-3.13.11-160000.1.1.x86_64.rpm python313-x86-64-v3-debuginfo-3.13.11-160000.1.1.x86_64.rpm libpython3_13-1_0-3.13.11-160000.1.1.x86_64.rpm libpython3_13-1_0-debuginfo-3.13.11-160000.1.1.x86_64.rpm libpython3_13-1_0-x86-64-v3-3.13.11-160000.1.1.x86_64.rpm libpython3_13-1_0-x86-64-v3-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-base-3.13.11-160000.1.1.x86_64.rpm python313-base-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-base-x86-64-v3-3.13.11-160000.1.1.x86_64.rpm python313-base-x86-64-v3-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-core-debugsource-3.13.11-160000.1.1.x86_64.rpm python313-devel-3.13.11-160000.1.1.x86_64.rpm python313-devel-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-testsuite-3.13.11-160000.1.1.x86_64.rpm python313-testsuite-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-tools-3.13.11-160000.1.1.x86_64.rpm python313-doc-3.13.11-160000.1.1.x86_64.rpm python313-doc-devhelp-3.13.11-160000.1.1.x86_64.rpm python313-nogil-3.13.11-160000.1.1.x86_64.rpm python313-nogil-curses-3.13.11-160000.1.1.x86_64.rpm python313-nogil-curses-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-dbm-3.13.11-160000.1.1.x86_64.rpm python313-nogil-dbm-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-debugsource-3.13.11-160000.1.1.x86_64.rpm python313-nogil-idle-3.13.11-160000.1.1.x86_64.rpm python313-nogil-tk-3.13.11-160000.1.1.x86_64.rpm python313-nogil-tk-debuginfo-3.13.11-160000.1.1.x86_64.rpm libpython3_13t1_0-3.13.11-160000.1.1.x86_64.rpm libpython3_13t1_0-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-base-3.13.11-160000.1.1.x86_64.rpm python313-nogil-base-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-devel-3.13.11-160000.1.1.x86_64.rpm python313-nogil-nogil-core-debugsource-3.13.11-160000.1.1.x86_64.rpm python313-nogil-testsuite-3.13.11-160000.1.1.x86_64.rpm python313-nogil-testsuite-debuginfo-3.13.11-160000.1.1.x86_64.rpm python313-nogil-tools-3.13.11-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-171 Security update for rabbitmq-server moderate SUSE SLFO 1.2 This update for rabbitmq-server fixes the following issues: Changes in rabbitmq-server: Update to 4.1.5: * Highlights - Khepri, an alternative schema data store developed to replace Mnesia, has matured and is now fully supported (it previously was an experimental feature) - AMQP 1.0 is now a core protocol that is always enabled. Its plugin is now a no-op that only exists to simplify upgrades. - The AMQP 1.0 implementation is now significantly more efficient: its peak throughput is more than double than that of 3.13.x on some workloads - Efficient sub-linear quorum queue recovery on node startup using checkpoints - Quorum queues now support priorities (but not exactly the same way as classic queues) - AMQP 1.0 clients now can manage topologies similarly to how AMQP 0-9-1 clients do it - The AMQP 1.0 convention (address format) used for interacting with with AMQP 0-9-1 entities is now easier to reason about - Mirroring (replication) of classic queues was removed after several years of deprecation. For replicated messaging data types, use quorum queues and/or streams. Non-replicated classic queues remain and their development continues - Classic queue storage efficiency improvements, in particular recovery time and storage of multi-MiB messages - Nodes with multiple enabled plugins and little on disk data to recover now start up to 20-30% faster - New exchange type: Local Random Exchange - Quorum queue log reads are now offloaded to channels (sessions, connections). - Initial Support for AMQP 1.0 Filter Expressions - Feature Flags Quality of Life Improvements - rabbitmqadmin v2 * Breaking Changes - Before a client connection can negotiate a maximum frame size (frame_max), it must authenticate successfully. Before the authenticated phase, a special lower frame_max value is used. - With this release, the value was increased from the original 4096 bytes to 8192 to accommodate larger JWT tokens. - amqplib is a popular client library that has been using a low frame_max default of 4096. Its users must upgrade to a compatible version (starting with 0.10.7) or explicitly use a higher frame_max. amqplib versions older than 0.10.7 will not be able to connect to RabbitMQ 4.1.0 and later versions due to the initial AMQP 0-9-1 maximum frame size increase covered above. - The default MQTT Maximum Packet Size changed from 256 MiB to 16 MiB. - The following rabbitmq.conf settings are unsupported: - cluster_formation.etcd.ssl_options.fail_if_no_peer_cert - cluster_formation.etcd.ssl_options.dh - cluster_formation.etcd.ssl_options.dhfile - Classic Queues is Now a Non-Replicated Queue Type - Quorum Queues Now Have a Default Redelivery Limit - Up to RabbitMQ 3.13, when an AMQP 0.9.1 client (re-)published a message to RabbitMQ, RabbitMQ interpreted the - AMQP 0.9.1 x-death header in the published message's basic_message.content.properties.headers field. - RabbitMQ 4.x will not interpret this x-death header anymore when clients (re-)publish a message. - CQv1 Storage Implementation was Removed - Settings cluster_formation.randomized_startup_delay_range.* were Removed - Several Disk I/O-Related Metrics were Removed - Default Maximum Message Size Reduced to 16 MiB - RabbitMQ 3.13 rabbitmq.conf setting rabbitmq_amqp1_0.default_vhost is unsupported in RabbitMQ 4.0. - RabbitMQ 3.13 rabbitmq.conf settings mqtt.default_user, mqtt.default_password, and amqp1_0.default_user are unsupported in RabbitMQ 4.0. - Starting with Erlang 26, client side TLS peer certificate chain verification settings are enabled by default in most contexts: from federation links to shovels to TLS-enabled LDAP client connections. - RabbitMQ Shovels will be able connect to a RabbitMQ 4.0 node via AMQP 1.0 only when the Shovel runs on a RabbitMQ node >= 3.13.7. * See https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.0.1 * and https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.1.0 for more info - Restore SLES logrotate file, (bsc#1246091) erlang-rabbitmq-client-4.1.5-160000.1.1.aarch64.rpm rabbitmq-server-4.1.5-160000.1.1.aarch64.rpm rabbitmq-server-4.1.5-160000.1.1.src.rpm rabbitmq-server-bash-completion-4.1.5-160000.1.1.noarch.rpm rabbitmq-server-plugins-4.1.5-160000.1.1.aarch64.rpm rabbitmq-server-zsh-completion-4.1.5-160000.1.1.noarch.rpm erlang-rabbitmq-client-4.1.5-160000.1.1.ppc64le.rpm rabbitmq-server-4.1.5-160000.1.1.ppc64le.rpm rabbitmq-server-plugins-4.1.5-160000.1.1.ppc64le.rpm erlang-rabbitmq-client-4.1.5-160000.1.1.s390x.rpm rabbitmq-server-4.1.5-160000.1.1.s390x.rpm rabbitmq-server-plugins-4.1.5-160000.1.1.s390x.rpm erlang-rabbitmq-client-4.1.5-160000.1.1.x86_64.rpm rabbitmq-server-4.1.5-160000.1.1.x86_64.rpm rabbitmq-server-plugins-4.1.5-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-172 Security update for libpng16 moderate SUSE SLFO 1.2 This update for libpng16 fixes the following issues: - CVE-2026-22695: Fixed heap buffer over-read in png_image_finish_read (bsc#1256525). - CVE-2026-22801: Fixed integer truncation causing heap buffer over-read in png_image_write_* (bsc#1256526). libpng16-1.6.44-160000.4.1.src.rpm libpng16-16-1.6.44-160000.4.1.aarch64.rpm libpng16-16-debuginfo-1.6.44-160000.4.1.aarch64.rpm libpng16-compat-devel-1.6.44-160000.4.1.aarch64.rpm libpng16-debugsource-1.6.44-160000.4.1.aarch64.rpm libpng16-devel-1.6.44-160000.4.1.aarch64.rpm libpng16-tools-1.6.44-160000.4.1.aarch64.rpm libpng16-tools-debuginfo-1.6.44-160000.4.1.aarch64.rpm libpng16-16-1.6.44-160000.4.1.ppc64le.rpm libpng16-16-debuginfo-1.6.44-160000.4.1.ppc64le.rpm libpng16-compat-devel-1.6.44-160000.4.1.ppc64le.rpm libpng16-debugsource-1.6.44-160000.4.1.ppc64le.rpm libpng16-devel-1.6.44-160000.4.1.ppc64le.rpm libpng16-tools-1.6.44-160000.4.1.ppc64le.rpm libpng16-tools-debuginfo-1.6.44-160000.4.1.ppc64le.rpm libpng16-16-1.6.44-160000.4.1.s390x.rpm libpng16-16-debuginfo-1.6.44-160000.4.1.s390x.rpm libpng16-compat-devel-1.6.44-160000.4.1.s390x.rpm libpng16-debugsource-1.6.44-160000.4.1.s390x.rpm libpng16-devel-1.6.44-160000.4.1.s390x.rpm libpng16-tools-1.6.44-160000.4.1.s390x.rpm libpng16-tools-debuginfo-1.6.44-160000.4.1.s390x.rpm libpng16-16-1.6.44-160000.4.1.x86_64.rpm libpng16-16-debuginfo-1.6.44-160000.4.1.x86_64.rpm libpng16-16-x86-64-v3-1.6.44-160000.4.1.x86_64.rpm libpng16-16-x86-64-v3-debuginfo-1.6.44-160000.4.1.x86_64.rpm libpng16-compat-devel-1.6.44-160000.4.1.x86_64.rpm libpng16-compat-devel-x86-64-v3-1.6.44-160000.4.1.x86_64.rpm libpng16-debugsource-1.6.44-160000.4.1.x86_64.rpm libpng16-devel-1.6.44-160000.4.1.x86_64.rpm libpng16-devel-x86-64-v3-1.6.44-160000.4.1.x86_64.rpm libpng16-tools-1.6.44-160000.4.1.x86_64.rpm libpng16-tools-debuginfo-1.6.44-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-173 Security update for gdk-pixbuf important SUSE SLFO 1.2 This update for gdk-pixbuf fixes the following issues: - CVE-2025-7345: heap buffer overflow in gdk-pixbuf within the gdk_pixbuf__jpeg_image_load_increment function (io-jpeg.c) and in glib g_base64_encode_step (bsc#1246114). - CVE-2025-6199: uninitialized memory could lead to leak arbitrary memory contents (bsc#1245227). gdk-pixbuf-2.42.12-160000.3.1.src.rpm gdk-pixbuf-debugsource-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-devel-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-devel-debuginfo-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-lang-2.42.12-160000.3.1.noarch.rpm gdk-pixbuf-query-loaders-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-query-loaders-debuginfo-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-thumbnailer-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-thumbnailer-debuginfo-2.42.12-160000.3.1.aarch64.rpm libgdk_pixbuf-2_0-0-2.42.12-160000.3.1.aarch64.rpm libgdk_pixbuf-2_0-0-debuginfo-2.42.12-160000.3.1.aarch64.rpm typelib-1_0-GdkPixbuf-2_0-2.42.12-160000.3.1.aarch64.rpm typelib-1_0-GdkPixdata-2_0-2.42.12-160000.3.1.aarch64.rpm gdk-pixbuf-debugsource-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-devel-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-devel-debuginfo-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-query-loaders-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-query-loaders-debuginfo-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-thumbnailer-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-thumbnailer-debuginfo-2.42.12-160000.3.1.ppc64le.rpm libgdk_pixbuf-2_0-0-2.42.12-160000.3.1.ppc64le.rpm libgdk_pixbuf-2_0-0-debuginfo-2.42.12-160000.3.1.ppc64le.rpm typelib-1_0-GdkPixbuf-2_0-2.42.12-160000.3.1.ppc64le.rpm typelib-1_0-GdkPixdata-2_0-2.42.12-160000.3.1.ppc64le.rpm gdk-pixbuf-debugsource-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-devel-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-devel-debuginfo-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-query-loaders-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-query-loaders-debuginfo-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-thumbnailer-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-thumbnailer-debuginfo-2.42.12-160000.3.1.s390x.rpm libgdk_pixbuf-2_0-0-2.42.12-160000.3.1.s390x.rpm libgdk_pixbuf-2_0-0-debuginfo-2.42.12-160000.3.1.s390x.rpm typelib-1_0-GdkPixbuf-2_0-2.42.12-160000.3.1.s390x.rpm typelib-1_0-GdkPixdata-2_0-2.42.12-160000.3.1.s390x.rpm gdk-pixbuf-debugsource-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-devel-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-devel-debuginfo-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-query-loaders-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-query-loaders-debuginfo-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-thumbnailer-2.42.12-160000.3.1.x86_64.rpm gdk-pixbuf-thumbnailer-debuginfo-2.42.12-160000.3.1.x86_64.rpm libgdk_pixbuf-2_0-0-2.42.12-160000.3.1.x86_64.rpm libgdk_pixbuf-2_0-0-debuginfo-2.42.12-160000.3.1.x86_64.rpm typelib-1_0-GdkPixbuf-2_0-2.42.12-160000.3.1.x86_64.rpm typelib-1_0-GdkPixdata-2_0-2.42.12-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-174 Security update for go1.25 important SUSE SLFO 1.2 This update for go1.25 fixes the following issues: Update to go1.25.6 (released 2026-01-15) (bsc#1244485) Security fixes: - CVE-2025-61730: crypto/tls: handshake messages may be processed at the incorrect encryption level (bsc#1256821). - CVE-2025-68119: cmd/go: unexpected code execution when invoking toolchain (bsc#1256820). - CVE-2025-61731: cmd/go: bypass of flag sanitization can lead to arbitrary code execution (bsc#1256819). - CVE-2025-61726: net/http: memory exhaustion in Request.ParseForm (bsc#1256817). - CVE-2025-61728: archive/zip: denial of service when parsing arbitrary ZIP archives (bsc#1256816). - CVE-2025-68121: crypto/tls: Config.Clone copies automatically generated session ticket keys, session resumption does not account for the expiration of full certificate chain (bsc#1256818). Other fixes: * go#76392 os: package initialization hangs is Stdin is blocked * go#76409 crypto/tls: earlyTrafficSecret should use ClientHelloInner if ECH enabled * go#76620 os: on Unix, Readdirnames skips directory entries with zero inodes * go#76761 runtime: stack split at bad time in os/signal with Go 1.25.4 windows 386 * go#76776 runtime: race detector crash on ppc64le * go#76967 cmd/compile/internal/ssa: Compile.func1(): panic during sccp while compiling &lt;function&gt;: runtime error: index out of range * go#76973 errors: errors.Join behavior changed in 1.25 go1.25-1.25.6-160000.1.1.aarch64.rpm go1.25-1.25.6-160000.1.1.src.rpm go1.25-debuginfo-1.25.6-160000.1.1.aarch64.rpm go1.25-doc-1.25.6-160000.1.1.aarch64.rpm go1.25-libstd-1.25.6-160000.1.1.aarch64.rpm go1.25-libstd-debuginfo-1.25.6-160000.1.1.aarch64.rpm go1.25-race-1.25.6-160000.1.1.aarch64.rpm go1.25-1.25.6-160000.1.1.ppc64le.rpm go1.25-doc-1.25.6-160000.1.1.ppc64le.rpm go1.25-race-1.25.6-160000.1.1.ppc64le.rpm go1.25-1.25.6-160000.1.1.s390x.rpm go1.25-doc-1.25.6-160000.1.1.s390x.rpm go1.25-race-1.25.6-160000.1.1.s390x.rpm go1.25-1.25.6-160000.1.1.x86_64.rpm go1.25-debuginfo-1.25.6-160000.1.1.x86_64.rpm go1.25-doc-1.25.6-160000.1.1.x86_64.rpm go1.25-libstd-1.25.6-160000.1.1.x86_64.rpm go1.25-libstd-debuginfo-1.25.6-160000.1.1.x86_64.rpm go1.25-race-1.25.6-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-175 Security update for python-virtualenv moderate SUSE SLFO 1.2 This update for python-virtualenv fixes the following issues: - CVE-2026-22702: Fixed local attacker can redirect file operations via TOCTOU race condition (bsc#1256458). python-virtualenv-20.29.3-160000.3.1.src.rpm python313-virtualenv-20.29.3-160000.3.1.noarch.rpm openSUSE-Leap-16.0-176 Security update for python-marshmallow moderate SUSE SLFO 1.2 This update for python-marshmallow fixes the following issues: - CVE-2025-68480: Fixed possible DoS when using Schema.load(data, many=True) (bsc#1255473). python-marshmallow-3.20.2-160000.3.1.src.rpm python-marshmallow-doc-3.20.2-160000.3.1.noarch.rpm python313-marshmallow-3.20.2-160000.3.1.noarch.rpm openSUSE-Leap-16.0-177 Security update for python-urllib3 moderate SUSE SLFO 1.2 This update for python-urllib3 fixes the following issues: - CVE-2026-21441: Fixed excessive resource consumption during decompression of data in HTTP redirect responses (bsc#1256331). python-urllib3-2.5.0-160000.3.1.src.rpm python313-urllib3-2.5.0-160000.3.1.noarch.rpm openSUSE-Leap-16.0-178 Security update for python-pyasn1 important SUSE SLFO 1.2 This update for python-pyasn1 fixes the following issues: - CVE-2026-23490: Fixed Denial-of-Service issue that may lead to memory exhaustion from malformed RELATIVE-OID with excessive continuation octets (bsc#1256902) python-pyasn1-0.6.1-160000.3.1.src.rpm python313-pyasn1-0.6.1-160000.3.1.noarch.rpm openSUSE-Leap-16.0-179 Security update for busybox important SUSE SLFO 1.2 This update for busybox fixes the following issues: Security fixes: - CVE-2025-60876: HTTP request header injection in wget (bsc#1253245). - CVE-2025-46394: Fixed tar hidden files via escape sequence (bsc#1241661). Other fixes: - Set CONFIG_FIRST_SYSTEM_ID to 201 to avoid confclict (bsc#1236670) - Fix unshare -mrpf sh core dump on ppc64le (bsc#1249237) busybox-1.37.0-160000.4.1.aarch64.rpm busybox-1.37.0-160000.4.1.src.rpm busybox-debuginfo-1.37.0-160000.4.1.aarch64.rpm busybox-debugsource-1.37.0-160000.4.1.aarch64.rpm busybox-static-1.37.0-160000.4.1.aarch64.rpm busybox-static-debuginfo-1.37.0-160000.4.1.aarch64.rpm busybox-warewulf3-1.37.0-160000.4.1.aarch64.rpm busybox-warewulf3-debuginfo-1.37.0-160000.4.1.aarch64.rpm busybox-1.37.0-160000.4.1.ppc64le.rpm busybox-debuginfo-1.37.0-160000.4.1.ppc64le.rpm busybox-debugsource-1.37.0-160000.4.1.ppc64le.rpm busybox-static-1.37.0-160000.4.1.ppc64le.rpm busybox-static-debuginfo-1.37.0-160000.4.1.ppc64le.rpm busybox-1.37.0-160000.4.1.s390x.rpm busybox-debuginfo-1.37.0-160000.4.1.s390x.rpm busybox-debugsource-1.37.0-160000.4.1.s390x.rpm busybox-static-1.37.0-160000.4.1.s390x.rpm busybox-static-debuginfo-1.37.0-160000.4.1.s390x.rpm busybox-1.37.0-160000.4.1.x86_64.rpm busybox-debuginfo-1.37.0-160000.4.1.x86_64.rpm busybox-debugsource-1.37.0-160000.4.1.x86_64.rpm busybox-static-1.37.0-160000.4.1.x86_64.rpm busybox-static-debuginfo-1.37.0-160000.4.1.x86_64.rpm busybox-warewulf3-1.37.0-160000.4.1.x86_64.rpm busybox-warewulf3-debuginfo-1.37.0-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-18 Recommended update for scanner-databases moderate SUSE SLFO 1.2 This update for scanner-databases fixes the following issues: initial shipment. clamav-database-202509251737-160000.1.1.noarch.rpm scanner-databases-202509251737-160000.1.1.src.rpm trivy-database-202509250425-160000.1.1.noarch.rpm openSUSE-Leap-16.0-180 Security update for bind important SUSE SLFO 1.2 This update for bind fixes the following issues: Upgrade to release 9.20.18: - CVE-2025-13878: Fixed incorrect length checks for BRID and HHIT records (bsc#1256997) Feature Changes: * Add more information to the rndc recursing output about fetches. * Reduce the number of outgoing queries. * Provide more information when memory allocation fails. Bug Fixes: * Make DNSSEC key rollovers more robust. * Fix a catalog zone issue, where member zones could fail to load. * Allow glue in delegations with QTYPE=ANY. * Fix slow speed when signing a large delegation zone with NSEC3 opt-out. * Reconfiguring an NSEC3 opt-out zone to NSEC caused the zone to be invalid. * Fix a possible catalog zone issue during reconfiguration. * Fix the charts in the statistics channel. * Adding NSEC3 opt-out records could leave invalid records in chain. * Fix spurious timeouts while resolving names. * Fix bug where zone switches from NSEC3 to NSEC after retransfer. * AMTRELAY type 0 presentation format handling was wrong. * Fix parsing bug in remote-servers with key or TLS. * Fix DoT reconfigure/reload bug in the resolver. * Skip unsupported algorithms when looking for a signing key. * Fix dnssec-keygen key collision checking for KEY RRtype keys. * dnssec-verify now uses exit code 1 when failing due to illegal options. * Prevent assertion failures of dig when a server is specified before the -b option. * Skip buffer allocations if not logging. bind-9.20.18-160000.1.1.aarch64.rpm bind-9.20.18-160000.1.1.src.rpm bind-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-debugsource-9.20.18-160000.1.1.aarch64.rpm bind-doc-9.20.18-160000.1.1.noarch.rpm bind-modules-bdbhpt-9.20.18-160000.1.1.aarch64.rpm bind-modules-bdbhpt-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-modules-generic-9.20.18-160000.1.1.aarch64.rpm bind-modules-generic-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-modules-ldap-9.20.18-160000.1.1.aarch64.rpm bind-modules-ldap-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-modules-mysql-9.20.18-160000.1.1.aarch64.rpm bind-modules-mysql-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-modules-perl-9.20.18-160000.1.1.aarch64.rpm bind-modules-perl-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-modules-sqlite3-9.20.18-160000.1.1.aarch64.rpm bind-modules-sqlite3-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-utils-9.20.18-160000.1.1.aarch64.rpm bind-utils-debuginfo-9.20.18-160000.1.1.aarch64.rpm bind-9.20.18-160000.1.1.ppc64le.rpm bind-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-debugsource-9.20.18-160000.1.1.ppc64le.rpm bind-modules-bdbhpt-9.20.18-160000.1.1.ppc64le.rpm bind-modules-bdbhpt-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-modules-generic-9.20.18-160000.1.1.ppc64le.rpm bind-modules-generic-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-modules-ldap-9.20.18-160000.1.1.ppc64le.rpm bind-modules-ldap-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-modules-mysql-9.20.18-160000.1.1.ppc64le.rpm bind-modules-mysql-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-modules-perl-9.20.18-160000.1.1.ppc64le.rpm bind-modules-perl-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-modules-sqlite3-9.20.18-160000.1.1.ppc64le.rpm bind-modules-sqlite3-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-utils-9.20.18-160000.1.1.ppc64le.rpm bind-utils-debuginfo-9.20.18-160000.1.1.ppc64le.rpm bind-9.20.18-160000.1.1.s390x.rpm bind-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-debugsource-9.20.18-160000.1.1.s390x.rpm bind-modules-bdbhpt-9.20.18-160000.1.1.s390x.rpm bind-modules-bdbhpt-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-modules-generic-9.20.18-160000.1.1.s390x.rpm bind-modules-generic-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-modules-ldap-9.20.18-160000.1.1.s390x.rpm bind-modules-ldap-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-modules-mysql-9.20.18-160000.1.1.s390x.rpm bind-modules-mysql-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-modules-perl-9.20.18-160000.1.1.s390x.rpm bind-modules-perl-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-modules-sqlite3-9.20.18-160000.1.1.s390x.rpm bind-modules-sqlite3-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-utils-9.20.18-160000.1.1.s390x.rpm bind-utils-debuginfo-9.20.18-160000.1.1.s390x.rpm bind-9.20.18-160000.1.1.x86_64.rpm bind-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-debugsource-9.20.18-160000.1.1.x86_64.rpm bind-modules-bdbhpt-9.20.18-160000.1.1.x86_64.rpm bind-modules-bdbhpt-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-modules-generic-9.20.18-160000.1.1.x86_64.rpm bind-modules-generic-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-modules-ldap-9.20.18-160000.1.1.x86_64.rpm bind-modules-ldap-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-modules-mysql-9.20.18-160000.1.1.x86_64.rpm bind-modules-mysql-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-modules-perl-9.20.18-160000.1.1.x86_64.rpm bind-modules-perl-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-modules-sqlite3-9.20.18-160000.1.1.x86_64.rpm bind-modules-sqlite3-debuginfo-9.20.18-160000.1.1.x86_64.rpm bind-utils-9.20.18-160000.1.1.x86_64.rpm bind-utils-debuginfo-9.20.18-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-182 Recommended update for dracut moderate SUSE SLFO 1.2 This update for dracut fixes the following issues: - Fix and update testsuite (bsc#1254873): * test (FULL-SYSTEMD): + ignore errors in systemd-vconsole-setup.service + use poweroff to shut down test + no need to include dbus to the target rootfs * test: move /failed to /run/failed as rootfs might be read-only * test: make the size of all test drives 512 MB * fix (systemd): move installation of libkmod to udev-rules module * test: switch to virtio for the QEMU drive * test: increase test VM memory from 512M to 1024M to avoid OOM killer * test: move more common test code to test-functions * test: upgrade to ext4 - fix (nfs): do not execute logic in nfs hooks if netroot is not nfs (bsc#1253960) - fix (kernel-modules-extra): remove stray \ before / (bsc#1253029) dracut-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-059+suse.717.g75494a30-160000.1.1.src.rpm dracut-debuginfo-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-debugsource-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-extra-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-fips-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-ima-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-tools-059+suse.717.g75494a30-160000.1.1.aarch64.rpm dracut-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-debuginfo-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-debugsource-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-extra-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-fips-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-ima-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-tools-059+suse.717.g75494a30-160000.1.1.ppc64le.rpm dracut-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-debuginfo-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-debugsource-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-extra-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-fips-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-ima-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-tools-059+suse.717.g75494a30-160000.1.1.s390x.rpm dracut-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-debuginfo-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-debugsource-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-extra-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-fips-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-ima-059+suse.717.g75494a30-160000.1.1.x86_64.rpm dracut-tools-059+suse.717.g75494a30-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-183 Recommended update for supportutils important SUSE SLFO 1.2 This update for supportutils fixes the following issues: - Optimized lsof usage and honors OPTION_OFILES (bsc#1232351) - Run in containers without errors (bsc#1245667) - Removed pmap PID from memory.txt (bsc#1246011) - Added missing /proc/pagetypeinfo to memory.txt (bsc#1246025) - Improved database perforce with kGraft patching (bsc#1249657) - Using last boot for journalctl for optimization (bsc#1250224) - Fixed extraction failures (bsc#1252318) - Update supportconfig.conf path in docs (bsc#1254425) - drm_sub_info: Catch error when dir doesn't exist - Replace remaining `egrep` with `grep -E` - Add process affinity to slert logs - Reintroduce cgroup statistics (and v2) - Minor changes to basic-health-check: improve information level - Collect important machine health counters - powerpc: collect hot-pluggable PCI and PHB slots - podman: collect podman disk usage - Exclude binary files in crondir - kexec/kdump: collect everything under /sys/kernel/kexec dir - Use short-iso for journalctl supportutils-3.2.12.2-160000.1.1.noarch.rpm supportutils-3.2.12.2-160000.1.1.src.rpm openSUSE-Leap-16.0-184 Recommended update for pciutils important SUSE SLFO 1.2 This update for pciutils fixes the following issues: - pciutils.spec: Add a strict dependency to libpci. (bsc#1252338) Mixing different versions of pciutils and libpci could result in a segmentation fault due to incompatible ABI. libpci3-3.13.0-160000.3.1.aarch64.rpm libpci3-debuginfo-3.13.0-160000.3.1.aarch64.rpm pciutils-3.13.0-160000.3.1.aarch64.rpm pciutils-3.13.0-160000.3.1.src.rpm pciutils-debuginfo-3.13.0-160000.3.1.aarch64.rpm pciutils-debugsource-3.13.0-160000.3.1.aarch64.rpm pciutils-devel-3.13.0-160000.3.1.aarch64.rpm libpci3-3.13.0-160000.3.1.ppc64le.rpm libpci3-debuginfo-3.13.0-160000.3.1.ppc64le.rpm pciutils-3.13.0-160000.3.1.ppc64le.rpm pciutils-debuginfo-3.13.0-160000.3.1.ppc64le.rpm pciutils-debugsource-3.13.0-160000.3.1.ppc64le.rpm pciutils-devel-3.13.0-160000.3.1.ppc64le.rpm libpci3-3.13.0-160000.3.1.s390x.rpm libpci3-debuginfo-3.13.0-160000.3.1.s390x.rpm pciutils-3.13.0-160000.3.1.s390x.rpm pciutils-debuginfo-3.13.0-160000.3.1.s390x.rpm pciutils-debugsource-3.13.0-160000.3.1.s390x.rpm pciutils-devel-3.13.0-160000.3.1.s390x.rpm libpci3-3.13.0-160000.3.1.x86_64.rpm libpci3-debuginfo-3.13.0-160000.3.1.x86_64.rpm pciutils-3.13.0-160000.3.1.x86_64.rpm pciutils-debuginfo-3.13.0-160000.3.1.x86_64.rpm pciutils-debugsource-3.13.0-160000.3.1.x86_64.rpm pciutils-devel-3.13.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-185 Security update for python-jaraco.context important SUSE SLFO 1.2 This update for python-jaraco.context fixes the following issues: - CVE-2026-23949: Fixed malicious tar archives may lead to path traversal (bsc#1256954). python-jaraco.context-5.3.0-160000.3.1.src.rpm python313-jaraco.context-5.3.0-160000.3.1.noarch.rpm openSUSE-Leap-16.0-186 Recommended update for man moderate SUSE SLFO 1.2 This update for man fixes the following issues: - Do not masked out the already existing %ghost file entry - Extend tmpfiles template man-db.conf (jsc#PED-14862) * Create cache directories with systemd tmpfiles service - Update to man-db 2.13.1: * Update various manual page translation * Fix various minor formatting issues in manual pages. * Tolerate additional spaces in preprocessor strings. * Fix check for generated source files in out-of-tree builds. * Fix building with the `musl` C library. * Recognize another Ukrainian translation of the `NAME` section. * Increase the maximum size of the `NAME` section from 8192 to 16384 bytes. - Port patches - Avoid latest gettextize as it breaks build now - If a section is specified do not show the list (bsc#1240874) - Wait 15 seconds instead of 7 instead for a choice - Explicit mention `export' instead of `set' for MAN_POSIXLY_CORRECT man-2.13.1-160000.1.1.aarch64.rpm man-2.13.1-160000.1.1.src.rpm man-debuginfo-2.13.1-160000.1.1.aarch64.rpm man-debugsource-2.13.1-160000.1.1.aarch64.rpm man-2.13.1-160000.1.1.ppc64le.rpm man-debuginfo-2.13.1-160000.1.1.ppc64le.rpm man-debugsource-2.13.1-160000.1.1.ppc64le.rpm man-2.13.1-160000.1.1.s390x.rpm man-debuginfo-2.13.1-160000.1.1.s390x.rpm man-debugsource-2.13.1-160000.1.1.s390x.rpm man-2.13.1-160000.1.1.x86_64.rpm man-debuginfo-2.13.1-160000.1.1.x86_64.rpm man-debugsource-2.13.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-187 Security update for the Linux Kernel (Live Patch 2 for SUSE Linux Enterprise 16) important SUSE SLFO 1.2 This update for the SUSE Linux Enterprise kernel 6.12.0-160000.7.1 fixes one security issue The following security issue was fixed: - CVE-2025-40212: nfsd: fix refcount leak in nfsd_set_fh_dentry() (bsc#1254196). kernel-livepatch-6_12_0-160000_7-default-2-160000.1.1.ppc64le.rpm kernel-livepatch-6_12_0-160000_7-default-debuginfo-2-160000.1.1.ppc64le.rpm kernel-livepatch-SLE16_Update_2-2-160000.1.1.src.rpm kernel-livepatch-SLE16_Update_2-debugsource-2-160000.1.1.ppc64le.rpm kernel-livepatch-6_12_0-160000_7-default-2-160000.1.1.s390x.rpm kernel-livepatch-6_12_0-160000_7-default-debuginfo-2-160000.1.1.s390x.rpm kernel-livepatch-SLE16_Update_2-debugsource-2-160000.1.1.s390x.rpm kernel-livepatch-6_12_0-160000_7-default-2-160000.1.1.x86_64.rpm kernel-livepatch-6_12_0-160000_7-default-debuginfo-2-160000.1.1.x86_64.rpm kernel-livepatch-SLE16_Update_2-debugsource-2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-188 Recommended update for ibus important SUSE SLFO 1.2 This update for ibus fixes the following issues: - Upstream update to 1.5.33: * Fix reset signal w/ GTK_IM_MODULE=ibus in Wayland * Provide preedit semantic APIs * Do not load en-US compose table by default * IBus 1.5.33 will insert "include %L" in your compose file automatically generated by old IBus versions * Implement IBusMessage * Improve BEPO compose sequence visuals * Update simple.xml with xkeyboard-config 2.45 * Update ibusunicodegen.h with Unicode 17.0.0 * Bug fixes for Wayland input-method * Fix PageUp/PageDown buttons with hiding candidate popup * Fix leaks and buffer overflows - Drop patches for unmaintained distributions - Fix: Barcode scanner input gets jumbled when ibus is running and an application written in certain frameworks has focus (bsc#1252250): * After libX11 is fixed about the XIM jumbled input issues, too quick focus change can causes a freeze with barcode reader * Fix the synchronous "ProcessKeyEvent" D-Bus method in ibus-x11 * Add ibus_input_context_set_post_process_key_event() and ibus_input_context_post_process_key_event() ibus-1.5.33-160000.1.1.aarch64.rpm ibus-1.5.33-160000.1.1.src.rpm ibus-debuginfo-1.5.33-160000.1.1.aarch64.rpm ibus-debugsource-1.5.33-160000.1.1.aarch64.rpm ibus-devel-1.5.33-160000.1.1.aarch64.rpm ibus-dict-emoji-1.5.33-160000.1.1.noarch.rpm ibus-gtk-1.5.33-160000.1.1.aarch64.rpm ibus-gtk-debuginfo-1.5.33-160000.1.1.aarch64.rpm ibus-gtk3-1.5.33-160000.1.1.aarch64.rpm ibus-gtk3-debuginfo-1.5.33-160000.1.1.aarch64.rpm ibus-lang-1.5.33-160000.1.1.noarch.rpm libibus-1_0-5-1.5.33-160000.1.1.aarch64.rpm libibus-1_0-5-debuginfo-1.5.33-160000.1.1.aarch64.rpm typelib-1_0-IBus-1_0-1.5.33-160000.1.1.aarch64.rpm ibus-gtk4-1.5.33-160000.1.1.aarch64.rpm ibus-gtk4-debuginfo-1.5.33-160000.1.1.aarch64.rpm ibus_gtk4-1.5.33-160000.1.1.src.rpm ibus_gtk4-debugsource-1.5.33-160000.1.1.aarch64.rpm ibus-1.5.33-160000.1.1.ppc64le.rpm ibus-debuginfo-1.5.33-160000.1.1.ppc64le.rpm ibus-debugsource-1.5.33-160000.1.1.ppc64le.rpm ibus-devel-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk-debuginfo-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk3-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk3-debuginfo-1.5.33-160000.1.1.ppc64le.rpm libibus-1_0-5-1.5.33-160000.1.1.ppc64le.rpm libibus-1_0-5-debuginfo-1.5.33-160000.1.1.ppc64le.rpm typelib-1_0-IBus-1_0-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk4-1.5.33-160000.1.1.ppc64le.rpm ibus-gtk4-debuginfo-1.5.33-160000.1.1.ppc64le.rpm ibus_gtk4-debugsource-1.5.33-160000.1.1.ppc64le.rpm ibus-1.5.33-160000.1.1.s390x.rpm ibus-debuginfo-1.5.33-160000.1.1.s390x.rpm ibus-debugsource-1.5.33-160000.1.1.s390x.rpm ibus-devel-1.5.33-160000.1.1.s390x.rpm ibus-gtk-1.5.33-160000.1.1.s390x.rpm ibus-gtk-debuginfo-1.5.33-160000.1.1.s390x.rpm ibus-gtk3-1.5.33-160000.1.1.s390x.rpm ibus-gtk3-debuginfo-1.5.33-160000.1.1.s390x.rpm libibus-1_0-5-1.5.33-160000.1.1.s390x.rpm libibus-1_0-5-debuginfo-1.5.33-160000.1.1.s390x.rpm typelib-1_0-IBus-1_0-1.5.33-160000.1.1.s390x.rpm ibus-gtk4-1.5.33-160000.1.1.s390x.rpm ibus-gtk4-debuginfo-1.5.33-160000.1.1.s390x.rpm ibus_gtk4-debugsource-1.5.33-160000.1.1.s390x.rpm ibus-1.5.33-160000.1.1.x86_64.rpm ibus-debuginfo-1.5.33-160000.1.1.x86_64.rpm ibus-debugsource-1.5.33-160000.1.1.x86_64.rpm ibus-devel-1.5.33-160000.1.1.x86_64.rpm ibus-gtk-1.5.33-160000.1.1.x86_64.rpm ibus-gtk-debuginfo-1.5.33-160000.1.1.x86_64.rpm ibus-gtk3-1.5.33-160000.1.1.x86_64.rpm ibus-gtk3-debuginfo-1.5.33-160000.1.1.x86_64.rpm libibus-1_0-5-1.5.33-160000.1.1.x86_64.rpm libibus-1_0-5-debuginfo-1.5.33-160000.1.1.x86_64.rpm typelib-1_0-IBus-1_0-1.5.33-160000.1.1.x86_64.rpm ibus-gtk4-1.5.33-160000.1.1.x86_64.rpm ibus-gtk4-debuginfo-1.5.33-160000.1.1.x86_64.rpm ibus_gtk4-debugsource-1.5.33-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-189 Recommended update for mariadb moderate SUSE SLFO 1.2 This update for mariadb fixes the following issues: Changes in mariadb: - make 'mysql-systemd-helper upgrade' selinux aware (bsc#1255024) Updating mariadb might impact the database service. Do you want to proceed with the update? libmariadbd-devel-11.8.5-160000.2.1.aarch64.rpm libmariadbd19-11.8.5-160000.2.1.aarch64.rpm libmariadbd19-debuginfo-11.8.5-160000.2.1.aarch64.rpm mariadb-11.8.5-160000.2.1.aarch64.rpm mariadb-11.8.5-160000.2.1.src.rpm mariadb-bench-11.8.5-160000.2.1.aarch64.rpm mariadb-bench-debuginfo-11.8.5-160000.2.1.aarch64.rpm mariadb-client-11.8.5-160000.2.1.aarch64.rpm mariadb-client-debuginfo-11.8.5-160000.2.1.aarch64.rpm mariadb-debuginfo-11.8.5-160000.2.1.aarch64.rpm mariadb-debugsource-11.8.5-160000.2.1.aarch64.rpm mariadb-errormessages-11.8.5-160000.2.1.noarch.rpm mariadb-galera-11.8.5-160000.2.1.aarch64.rpm mariadb-rpm-macros-11.8.5-160000.2.1.aarch64.rpm mariadb-test-11.8.5-160000.2.1.aarch64.rpm mariadb-test-debuginfo-11.8.5-160000.2.1.aarch64.rpm mariadb-tools-11.8.5-160000.2.1.aarch64.rpm mariadb-tools-debuginfo-11.8.5-160000.2.1.aarch64.rpm libmariadbd-devel-11.8.5-160000.2.1.ppc64le.rpm libmariadbd19-11.8.5-160000.2.1.ppc64le.rpm libmariadbd19-debuginfo-11.8.5-160000.2.1.ppc64le.rpm mariadb-11.8.5-160000.2.1.ppc64le.rpm mariadb-bench-11.8.5-160000.2.1.ppc64le.rpm mariadb-bench-debuginfo-11.8.5-160000.2.1.ppc64le.rpm mariadb-client-11.8.5-160000.2.1.ppc64le.rpm mariadb-client-debuginfo-11.8.5-160000.2.1.ppc64le.rpm mariadb-debuginfo-11.8.5-160000.2.1.ppc64le.rpm mariadb-debugsource-11.8.5-160000.2.1.ppc64le.rpm mariadb-galera-11.8.5-160000.2.1.ppc64le.rpm mariadb-rpm-macros-11.8.5-160000.2.1.ppc64le.rpm mariadb-test-11.8.5-160000.2.1.ppc64le.rpm mariadb-test-debuginfo-11.8.5-160000.2.1.ppc64le.rpm mariadb-tools-11.8.5-160000.2.1.ppc64le.rpm mariadb-tools-debuginfo-11.8.5-160000.2.1.ppc64le.rpm libmariadbd-devel-11.8.5-160000.2.1.s390x.rpm libmariadbd19-11.8.5-160000.2.1.s390x.rpm libmariadbd19-debuginfo-11.8.5-160000.2.1.s390x.rpm mariadb-11.8.5-160000.2.1.s390x.rpm mariadb-bench-11.8.5-160000.2.1.s390x.rpm mariadb-bench-debuginfo-11.8.5-160000.2.1.s390x.rpm mariadb-client-11.8.5-160000.2.1.s390x.rpm mariadb-client-debuginfo-11.8.5-160000.2.1.s390x.rpm mariadb-debuginfo-11.8.5-160000.2.1.s390x.rpm mariadb-debugsource-11.8.5-160000.2.1.s390x.rpm mariadb-galera-11.8.5-160000.2.1.s390x.rpm mariadb-rpm-macros-11.8.5-160000.2.1.s390x.rpm mariadb-test-11.8.5-160000.2.1.s390x.rpm mariadb-test-debuginfo-11.8.5-160000.2.1.s390x.rpm mariadb-tools-11.8.5-160000.2.1.s390x.rpm mariadb-tools-debuginfo-11.8.5-160000.2.1.s390x.rpm libmariadbd-devel-11.8.5-160000.2.1.x86_64.rpm libmariadbd19-11.8.5-160000.2.1.x86_64.rpm libmariadbd19-debuginfo-11.8.5-160000.2.1.x86_64.rpm mariadb-11.8.5-160000.2.1.x86_64.rpm mariadb-bench-11.8.5-160000.2.1.x86_64.rpm mariadb-bench-debuginfo-11.8.5-160000.2.1.x86_64.rpm mariadb-client-11.8.5-160000.2.1.x86_64.rpm mariadb-client-debuginfo-11.8.5-160000.2.1.x86_64.rpm mariadb-debuginfo-11.8.5-160000.2.1.x86_64.rpm mariadb-debugsource-11.8.5-160000.2.1.x86_64.rpm mariadb-galera-11.8.5-160000.2.1.x86_64.rpm mariadb-rpm-macros-11.8.5-160000.2.1.x86_64.rpm mariadb-test-11.8.5-160000.2.1.x86_64.rpm mariadb-test-debuginfo-11.8.5-160000.2.1.x86_64.rpm mariadb-tools-11.8.5-160000.2.1.x86_64.rpm mariadb-tools-debuginfo-11.8.5-160000.2.1.x86_64.rpm openSUSE-Leap-16.0-19 Recommended update for go1.25-openssl moderate SUSE SLFO 1.2 This update for go1.25-openssl fixes the following issues: go1.25-openssl is added to SLES 16.0 go1.25-openssl-1.25.1-160000.1.1.aarch64.rpm go1.25-openssl-1.25.1-160000.1.1.src.rpm go1.25-openssl-debuginfo-1.25.1-160000.1.1.aarch64.rpm go1.25-openssl-doc-1.25.1-160000.1.1.aarch64.rpm go1.25-openssl-race-1.25.1-160000.1.1.aarch64.rpm go1.25-openssl-1.25.1-160000.1.1.ppc64le.rpm go1.25-openssl-debuginfo-1.25.1-160000.1.1.ppc64le.rpm go1.25-openssl-doc-1.25.1-160000.1.1.ppc64le.rpm go1.25-openssl-race-1.25.1-160000.1.1.ppc64le.rpm go1.25-openssl-1.25.1-160000.1.1.s390x.rpm go1.25-openssl-debuginfo-1.25.1-160000.1.1.s390x.rpm go1.25-openssl-doc-1.25.1-160000.1.1.s390x.rpm go1.25-openssl-race-1.25.1-160000.1.1.s390x.rpm go1.25-openssl-1.25.1-160000.1.1.x86_64.rpm go1.25-openssl-debuginfo-1.25.1-160000.1.1.x86_64.rpm go1.25-openssl-doc-1.25.1-160000.1.1.x86_64.rpm go1.25-openssl-race-1.25.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-191 Security update for the Linux Kernel RT (Live Patch 2 for SUSE Linux Enterprise 16) important SUSE SLFO 1.2 This update for the SUSE Linux Enterprise kernel 6.12.0-160000.7.1 fixes one security issue The following security issue was fixed: - CVE-2025-40212: nfsd: fix refcount leak in nfsd_set_fh_dentry() (bsc#1254196). kernel-livepatch-6_12_0-160000_7-rt-2-160000.1.1.x86_64.rpm kernel-livepatch-6_12_0-160000_7-rt-debuginfo-2-160000.1.1.x86_64.rpm kernel-livepatch-SLE16-RT_Update_2-2-160000.1.1.src.rpm kernel-livepatch-SLE16-RT_Update_2-debugsource-2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-192 Recommended update for runc important SUSE SLFO 1.2 This update for runc fixes the following issues: Changes in runc: - Update to runc v1.3.4. Upstream changelog is available from <https://github.com/opencontainers/runc/releases/tag/v1.3.4>. bsc#1254362 runc-1.3.4-160000.1.1.aarch64.rpm runc-1.3.4-160000.1.1.src.rpm runc-debuginfo-1.3.4-160000.1.1.aarch64.rpm runc-1.3.4-160000.1.1.ppc64le.rpm runc-debuginfo-1.3.4-160000.1.1.ppc64le.rpm runc-1.3.4-160000.1.1.s390x.rpm runc-debuginfo-1.3.4-160000.1.1.s390x.rpm runc-1.3.4-160000.1.1.x86_64.rpm runc-debuginfo-1.3.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-193 Security update for avahi moderate SUSE SLFO 1.2 This update for avahi fixes the following issues: - CVE-2025-68276: Fixed refuse to create wide-area record browsers when wide-area is off (bsc#1256498) - CVE-2025-68471: Fixed DoS bug by changing assert to return (bsc#1256500) - CVE-2025-68468: Fixed DoS bug by removing incorrect assertion (bsc#1256499) avahi-0.8-160000.4.1.aarch64.rpm avahi-0.8-160000.4.1.src.rpm avahi-autoipd-0.8-160000.4.1.aarch64.rpm avahi-autoipd-debuginfo-0.8-160000.4.1.aarch64.rpm avahi-compat-howl-devel-0.8-160000.4.1.aarch64.rpm avahi-compat-mDNSResponder-devel-0.8-160000.4.1.aarch64.rpm avahi-debuginfo-0.8-160000.4.1.aarch64.rpm avahi-debugsource-0.8-160000.4.1.aarch64.rpm avahi-lang-0.8-160000.4.1.noarch.rpm avahi-utils-0.8-160000.4.1.aarch64.rpm avahi-utils-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-client3-0.8-160000.4.1.aarch64.rpm libavahi-client3-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-common3-0.8-160000.4.1.aarch64.rpm libavahi-common3-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-core7-0.8-160000.4.1.aarch64.rpm libavahi-core7-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-devel-0.8-160000.4.1.aarch64.rpm libavahi-libevent1-0.8-160000.4.1.aarch64.rpm libavahi-libevent1-debuginfo-0.8-160000.4.1.aarch64.rpm libdns_sd-0.8-160000.4.1.aarch64.rpm libdns_sd-debuginfo-0.8-160000.4.1.aarch64.rpm libhowl0-0.8-160000.4.1.aarch64.rpm libhowl0-debuginfo-0.8-160000.4.1.aarch64.rpm python313-avahi-0.8-160000.4.1.aarch64.rpm avahi-qt6-0.8-160000.4.1.src.rpm avahi-qt6-debugsource-0.8-160000.4.1.aarch64.rpm libavahi-qt6-1-0.8-160000.4.1.aarch64.rpm libavahi-qt6-1-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-qt6-devel-0.8-160000.4.1.aarch64.rpm avahi-glib2-0.8-160000.4.1.src.rpm avahi-glib2-debugsource-0.8-160000.4.1.aarch64.rpm avahi-utils-gtk-0.8-160000.4.1.aarch64.rpm avahi-utils-gtk-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-glib-devel-0.8-160000.4.1.aarch64.rpm libavahi-glib1-0.8-160000.4.1.aarch64.rpm libavahi-glib1-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-gobject-devel-0.8-160000.4.1.aarch64.rpm libavahi-gobject0-0.8-160000.4.1.aarch64.rpm libavahi-gobject0-debuginfo-0.8-160000.4.1.aarch64.rpm libavahi-ui-gtk3-0-0.8-160000.4.1.aarch64.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.4.1.aarch64.rpm python3-avahi-gtk-0.8-160000.4.1.aarch64.rpm typelib-1_0-Avahi-0_6-0.8-160000.4.1.aarch64.rpm avahi-0.8-160000.4.1.ppc64le.rpm avahi-autoipd-0.8-160000.4.1.ppc64le.rpm avahi-autoipd-debuginfo-0.8-160000.4.1.ppc64le.rpm avahi-compat-howl-devel-0.8-160000.4.1.ppc64le.rpm avahi-compat-mDNSResponder-devel-0.8-160000.4.1.ppc64le.rpm avahi-debuginfo-0.8-160000.4.1.ppc64le.rpm avahi-debugsource-0.8-160000.4.1.ppc64le.rpm avahi-utils-0.8-160000.4.1.ppc64le.rpm avahi-utils-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-client3-0.8-160000.4.1.ppc64le.rpm libavahi-client3-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-common3-0.8-160000.4.1.ppc64le.rpm libavahi-common3-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-core7-0.8-160000.4.1.ppc64le.rpm libavahi-core7-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-devel-0.8-160000.4.1.ppc64le.rpm libavahi-libevent1-0.8-160000.4.1.ppc64le.rpm libavahi-libevent1-debuginfo-0.8-160000.4.1.ppc64le.rpm libdns_sd-0.8-160000.4.1.ppc64le.rpm libdns_sd-debuginfo-0.8-160000.4.1.ppc64le.rpm libhowl0-0.8-160000.4.1.ppc64le.rpm libhowl0-debuginfo-0.8-160000.4.1.ppc64le.rpm python313-avahi-0.8-160000.4.1.ppc64le.rpm avahi-qt6-debugsource-0.8-160000.4.1.ppc64le.rpm libavahi-qt6-1-0.8-160000.4.1.ppc64le.rpm libavahi-qt6-1-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-qt6-devel-0.8-160000.4.1.ppc64le.rpm avahi-glib2-debugsource-0.8-160000.4.1.ppc64le.rpm avahi-utils-gtk-0.8-160000.4.1.ppc64le.rpm avahi-utils-gtk-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-glib-devel-0.8-160000.4.1.ppc64le.rpm libavahi-glib1-0.8-160000.4.1.ppc64le.rpm libavahi-glib1-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-gobject-devel-0.8-160000.4.1.ppc64le.rpm libavahi-gobject0-0.8-160000.4.1.ppc64le.rpm libavahi-gobject0-debuginfo-0.8-160000.4.1.ppc64le.rpm libavahi-ui-gtk3-0-0.8-160000.4.1.ppc64le.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.4.1.ppc64le.rpm python3-avahi-gtk-0.8-160000.4.1.ppc64le.rpm typelib-1_0-Avahi-0_6-0.8-160000.4.1.ppc64le.rpm avahi-0.8-160000.4.1.s390x.rpm avahi-autoipd-0.8-160000.4.1.s390x.rpm avahi-autoipd-debuginfo-0.8-160000.4.1.s390x.rpm avahi-compat-howl-devel-0.8-160000.4.1.s390x.rpm avahi-compat-mDNSResponder-devel-0.8-160000.4.1.s390x.rpm avahi-debuginfo-0.8-160000.4.1.s390x.rpm avahi-debugsource-0.8-160000.4.1.s390x.rpm avahi-utils-0.8-160000.4.1.s390x.rpm avahi-utils-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-client3-0.8-160000.4.1.s390x.rpm libavahi-client3-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-common3-0.8-160000.4.1.s390x.rpm libavahi-common3-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-core7-0.8-160000.4.1.s390x.rpm libavahi-core7-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-devel-0.8-160000.4.1.s390x.rpm libavahi-libevent1-0.8-160000.4.1.s390x.rpm libavahi-libevent1-debuginfo-0.8-160000.4.1.s390x.rpm libdns_sd-0.8-160000.4.1.s390x.rpm libdns_sd-debuginfo-0.8-160000.4.1.s390x.rpm libhowl0-0.8-160000.4.1.s390x.rpm libhowl0-debuginfo-0.8-160000.4.1.s390x.rpm python313-avahi-0.8-160000.4.1.s390x.rpm avahi-qt6-debugsource-0.8-160000.4.1.s390x.rpm libavahi-qt6-1-0.8-160000.4.1.s390x.rpm libavahi-qt6-1-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-qt6-devel-0.8-160000.4.1.s390x.rpm avahi-glib2-debugsource-0.8-160000.4.1.s390x.rpm avahi-utils-gtk-0.8-160000.4.1.s390x.rpm avahi-utils-gtk-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-glib-devel-0.8-160000.4.1.s390x.rpm libavahi-glib1-0.8-160000.4.1.s390x.rpm libavahi-glib1-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-gobject-devel-0.8-160000.4.1.s390x.rpm libavahi-gobject0-0.8-160000.4.1.s390x.rpm libavahi-gobject0-debuginfo-0.8-160000.4.1.s390x.rpm libavahi-ui-gtk3-0-0.8-160000.4.1.s390x.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.4.1.s390x.rpm python3-avahi-gtk-0.8-160000.4.1.s390x.rpm typelib-1_0-Avahi-0_6-0.8-160000.4.1.s390x.rpm avahi-0.8-160000.4.1.x86_64.rpm avahi-autoipd-0.8-160000.4.1.x86_64.rpm avahi-autoipd-debuginfo-0.8-160000.4.1.x86_64.rpm avahi-compat-howl-devel-0.8-160000.4.1.x86_64.rpm avahi-compat-mDNSResponder-devel-0.8-160000.4.1.x86_64.rpm avahi-debuginfo-0.8-160000.4.1.x86_64.rpm avahi-debugsource-0.8-160000.4.1.x86_64.rpm avahi-utils-0.8-160000.4.1.x86_64.rpm avahi-utils-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-client3-0.8-160000.4.1.x86_64.rpm libavahi-client3-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-common3-0.8-160000.4.1.x86_64.rpm libavahi-common3-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-core7-0.8-160000.4.1.x86_64.rpm libavahi-core7-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-devel-0.8-160000.4.1.x86_64.rpm libavahi-libevent1-0.8-160000.4.1.x86_64.rpm libavahi-libevent1-debuginfo-0.8-160000.4.1.x86_64.rpm libdns_sd-0.8-160000.4.1.x86_64.rpm libdns_sd-debuginfo-0.8-160000.4.1.x86_64.rpm libhowl0-0.8-160000.4.1.x86_64.rpm libhowl0-debuginfo-0.8-160000.4.1.x86_64.rpm python313-avahi-0.8-160000.4.1.x86_64.rpm avahi-qt6-debugsource-0.8-160000.4.1.x86_64.rpm libavahi-qt6-1-0.8-160000.4.1.x86_64.rpm libavahi-qt6-1-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-qt6-devel-0.8-160000.4.1.x86_64.rpm avahi-glib2-debugsource-0.8-160000.4.1.x86_64.rpm avahi-utils-gtk-0.8-160000.4.1.x86_64.rpm avahi-utils-gtk-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-glib-devel-0.8-160000.4.1.x86_64.rpm libavahi-glib1-0.8-160000.4.1.x86_64.rpm libavahi-glib1-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-gobject-devel-0.8-160000.4.1.x86_64.rpm libavahi-gobject0-0.8-160000.4.1.x86_64.rpm libavahi-gobject0-debuginfo-0.8-160000.4.1.x86_64.rpm libavahi-ui-gtk3-0-0.8-160000.4.1.x86_64.rpm libavahi-ui-gtk3-0-debuginfo-0.8-160000.4.1.x86_64.rpm python3-avahi-gtk-0.8-160000.4.1.x86_64.rpm typelib-1_0-Avahi-0_6-0.8-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-194 Recommended update for cloud-netconfig moderate SUSE SLFO 1.2 This update for cloud-netconfig fixes the following issues: - Update to version 1.16: * Fix query of default CLOUD_NETCONFIG_MANAGE (bsc#1253223) * Fix variable names in the README cloud-netconfig-azure-1.16-160000.1.1.noarch.rpm cloud-netconfig-azure-1.16-160000.1.1.src.rpm cloud-netconfig-ec2-1.16-160000.1.1.noarch.rpm cloud-netconfig-ec2-1.16-160000.1.1.src.rpm cloud-netconfig-gce-1.16-160000.1.1.noarch.rpm cloud-netconfig-gce-1.16-160000.1.1.src.rpm openSUSE-Leap-16.0-195 Security update for the Linux Kernel RT (Live Patch 1 for SUSE Linux Enterprise 16) important SUSE SLFO 1.2 This update for the SUSE Linux Enterprise kernel 6.12.0-160000.6.1 fixes various security issues The following security issues were fixed: - CVE-2025-39963: io_uring: fix incorrect io_kiocb reference in io_link_skb (bsc#1251982). - CVE-2025-40204: sctp: Fix MAC comparison to be constant-time (bsc#1253437). - CVE-2025-40212: nfsd: fix refcount leak in nfsd_set_fh_dentry() (bsc#1254196). kernel-livepatch-6_12_0-160000_6-rt-3-160000.1.1.x86_64.rpm kernel-livepatch-6_12_0-160000_6-rt-debuginfo-3-160000.1.1.x86_64.rpm kernel-livepatch-SLE16-RT_Update_1-3-160000.1.1.src.rpm kernel-livepatch-SLE16-RT_Update_1-debugsource-3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-198 Security update for php8 moderate SUSE SLFO 1.2 This update for php8 fixes the following issues: Version update to 8.4.16: Security fixes: - CVE-2025-14177: getimagesize() function may leak uninitialized heap memory into the APPn segments when reading images in multi-chunk mode (bsc#1255710). - CVE-2025-14178: heap buffer overflow occurs in array_merge() when the total element count of packed arrays exceeds 32-bit limits or HT_MAX_SIZE (bsc#1255711). - CVE-2025-14180: null pointer dereference in pdo_parse_params() function when using the PDO PostgreSQL driver with PDO::ATTR_EMULATE_PREPARES enabled (bsc#1255712). Other fixes: - php8 contains Directories owned by wwwrun but does not require User. (bsc#1255043) php8-8.4.16-160000.1.1.aarch64.rpm php8-8.4.16-160000.1.1.src.rpm php8-bcmath-8.4.16-160000.1.1.aarch64.rpm php8-bcmath-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-bz2-8.4.16-160000.1.1.aarch64.rpm php8-bz2-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-calendar-8.4.16-160000.1.1.aarch64.rpm php8-calendar-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-cli-8.4.16-160000.1.1.aarch64.rpm php8-cli-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-ctype-8.4.16-160000.1.1.aarch64.rpm php8-ctype-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-curl-8.4.16-160000.1.1.aarch64.rpm php8-curl-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-dba-8.4.16-160000.1.1.aarch64.rpm php8-dba-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-debugsource-8.4.16-160000.1.1.aarch64.rpm php8-devel-8.4.16-160000.1.1.aarch64.rpm php8-dom-8.4.16-160000.1.1.aarch64.rpm php8-dom-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-enchant-8.4.16-160000.1.1.aarch64.rpm php8-enchant-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-exif-8.4.16-160000.1.1.aarch64.rpm php8-exif-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-ffi-8.4.16-160000.1.1.aarch64.rpm php8-ffi-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-fileinfo-8.4.16-160000.1.1.aarch64.rpm php8-fileinfo-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-ftp-8.4.16-160000.1.1.aarch64.rpm php8-ftp-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-gd-8.4.16-160000.1.1.aarch64.rpm php8-gd-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-gettext-8.4.16-160000.1.1.aarch64.rpm php8-gettext-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-gmp-8.4.16-160000.1.1.aarch64.rpm php8-gmp-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-iconv-8.4.16-160000.1.1.aarch64.rpm php8-iconv-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-intl-8.4.16-160000.1.1.aarch64.rpm php8-intl-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-ldap-8.4.16-160000.1.1.aarch64.rpm php8-ldap-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-mbstring-8.4.16-160000.1.1.aarch64.rpm php8-mbstring-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-mysql-8.4.16-160000.1.1.aarch64.rpm php8-mysql-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-odbc-8.4.16-160000.1.1.aarch64.rpm php8-odbc-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-opcache-8.4.16-160000.1.1.aarch64.rpm php8-opcache-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-openssl-8.4.16-160000.1.1.aarch64.rpm php8-openssl-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-pcntl-8.4.16-160000.1.1.aarch64.rpm php8-pcntl-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-pdo-8.4.16-160000.1.1.aarch64.rpm php8-pdo-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-pgsql-8.4.16-160000.1.1.aarch64.rpm php8-pgsql-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-phar-8.4.16-160000.1.1.aarch64.rpm php8-phar-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-posix-8.4.16-160000.1.1.aarch64.rpm php8-posix-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-readline-8.4.16-160000.1.1.aarch64.rpm php8-readline-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-shmop-8.4.16-160000.1.1.aarch64.rpm php8-shmop-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-snmp-8.4.16-160000.1.1.aarch64.rpm php8-snmp-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-soap-8.4.16-160000.1.1.aarch64.rpm php8-soap-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sockets-8.4.16-160000.1.1.aarch64.rpm php8-sockets-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sodium-8.4.16-160000.1.1.aarch64.rpm php8-sodium-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sqlite-8.4.16-160000.1.1.aarch64.rpm php8-sqlite-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sysvmsg-8.4.16-160000.1.1.aarch64.rpm php8-sysvmsg-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sysvsem-8.4.16-160000.1.1.aarch64.rpm php8-sysvsem-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-sysvshm-8.4.16-160000.1.1.aarch64.rpm php8-sysvshm-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-tidy-8.4.16-160000.1.1.aarch64.rpm php8-tidy-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-tokenizer-8.4.16-160000.1.1.aarch64.rpm php8-tokenizer-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-xmlreader-8.4.16-160000.1.1.aarch64.rpm php8-xmlreader-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-xmlwriter-8.4.16-160000.1.1.aarch64.rpm php8-xmlwriter-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-xsl-8.4.16-160000.1.1.aarch64.rpm php8-xsl-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-zip-8.4.16-160000.1.1.aarch64.rpm php8-zip-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-zlib-8.4.16-160000.1.1.aarch64.rpm php8-zlib-debuginfo-8.4.16-160000.1.1.aarch64.rpm apache2-mod_php8-8.4.16-160000.1.1.aarch64.rpm apache2-mod_php8-8.4.16-160000.1.1.src.rpm apache2-mod_php8-debuginfo-8.4.16-160000.1.1.aarch64.rpm apache2-mod_php8-debugsource-8.4.16-160000.1.1.aarch64.rpm php8-embed-8.4.16-160000.1.1.aarch64.rpm php8-embed-8.4.16-160000.1.1.src.rpm php8-embed-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-embed-debugsource-8.4.16-160000.1.1.aarch64.rpm php8-fastcgi-8.4.16-160000.1.1.aarch64.rpm php8-fastcgi-8.4.16-160000.1.1.src.rpm php8-fastcgi-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-fastcgi-debugsource-8.4.16-160000.1.1.aarch64.rpm php8-fpm-8.4.16-160000.1.1.aarch64.rpm php8-fpm-8.4.16-160000.1.1.src.rpm php8-fpm-apache-8.4.16-160000.1.1.noarch.rpm php8-fpm-debuginfo-8.4.16-160000.1.1.aarch64.rpm php8-fpm-debugsource-8.4.16-160000.1.1.aarch64.rpm php8-test-8.4.16-160000.1.1.aarch64.rpm php8-test-8.4.16-160000.1.1.src.rpm php8-8.4.16-160000.1.1.ppc64le.rpm php8-bcmath-8.4.16-160000.1.1.ppc64le.rpm php8-bcmath-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-bz2-8.4.16-160000.1.1.ppc64le.rpm php8-bz2-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-calendar-8.4.16-160000.1.1.ppc64le.rpm php8-calendar-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-cli-8.4.16-160000.1.1.ppc64le.rpm php8-cli-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-ctype-8.4.16-160000.1.1.ppc64le.rpm php8-ctype-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-curl-8.4.16-160000.1.1.ppc64le.rpm php8-curl-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-dba-8.4.16-160000.1.1.ppc64le.rpm php8-dba-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-debugsource-8.4.16-160000.1.1.ppc64le.rpm php8-devel-8.4.16-160000.1.1.ppc64le.rpm php8-dom-8.4.16-160000.1.1.ppc64le.rpm php8-dom-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-enchant-8.4.16-160000.1.1.ppc64le.rpm php8-enchant-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-exif-8.4.16-160000.1.1.ppc64le.rpm php8-exif-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-ffi-8.4.16-160000.1.1.ppc64le.rpm php8-ffi-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-fileinfo-8.4.16-160000.1.1.ppc64le.rpm php8-fileinfo-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-ftp-8.4.16-160000.1.1.ppc64le.rpm php8-ftp-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-gd-8.4.16-160000.1.1.ppc64le.rpm php8-gd-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-gettext-8.4.16-160000.1.1.ppc64le.rpm php8-gettext-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-gmp-8.4.16-160000.1.1.ppc64le.rpm php8-gmp-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-iconv-8.4.16-160000.1.1.ppc64le.rpm php8-iconv-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-intl-8.4.16-160000.1.1.ppc64le.rpm php8-intl-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-ldap-8.4.16-160000.1.1.ppc64le.rpm php8-ldap-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-mbstring-8.4.16-160000.1.1.ppc64le.rpm php8-mbstring-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-mysql-8.4.16-160000.1.1.ppc64le.rpm php8-mysql-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-odbc-8.4.16-160000.1.1.ppc64le.rpm php8-odbc-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-opcache-8.4.16-160000.1.1.ppc64le.rpm php8-opcache-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-openssl-8.4.16-160000.1.1.ppc64le.rpm php8-openssl-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-pcntl-8.4.16-160000.1.1.ppc64le.rpm php8-pcntl-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-pdo-8.4.16-160000.1.1.ppc64le.rpm php8-pdo-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-pgsql-8.4.16-160000.1.1.ppc64le.rpm php8-pgsql-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-phar-8.4.16-160000.1.1.ppc64le.rpm php8-phar-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-posix-8.4.16-160000.1.1.ppc64le.rpm php8-posix-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-readline-8.4.16-160000.1.1.ppc64le.rpm php8-readline-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-shmop-8.4.16-160000.1.1.ppc64le.rpm php8-shmop-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-snmp-8.4.16-160000.1.1.ppc64le.rpm php8-snmp-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-soap-8.4.16-160000.1.1.ppc64le.rpm php8-soap-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sockets-8.4.16-160000.1.1.ppc64le.rpm php8-sockets-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sodium-8.4.16-160000.1.1.ppc64le.rpm php8-sodium-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sqlite-8.4.16-160000.1.1.ppc64le.rpm php8-sqlite-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sysvmsg-8.4.16-160000.1.1.ppc64le.rpm php8-sysvmsg-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sysvsem-8.4.16-160000.1.1.ppc64le.rpm php8-sysvsem-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-sysvshm-8.4.16-160000.1.1.ppc64le.rpm php8-sysvshm-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-tidy-8.4.16-160000.1.1.ppc64le.rpm php8-tidy-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-tokenizer-8.4.16-160000.1.1.ppc64le.rpm php8-tokenizer-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-xmlreader-8.4.16-160000.1.1.ppc64le.rpm php8-xmlreader-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-xmlwriter-8.4.16-160000.1.1.ppc64le.rpm php8-xmlwriter-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-xsl-8.4.16-160000.1.1.ppc64le.rpm php8-xsl-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-zip-8.4.16-160000.1.1.ppc64le.rpm php8-zip-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-zlib-8.4.16-160000.1.1.ppc64le.rpm php8-zlib-debuginfo-8.4.16-160000.1.1.ppc64le.rpm apache2-mod_php8-8.4.16-160000.1.1.ppc64le.rpm apache2-mod_php8-debuginfo-8.4.16-160000.1.1.ppc64le.rpm apache2-mod_php8-debugsource-8.4.16-160000.1.1.ppc64le.rpm php8-embed-8.4.16-160000.1.1.ppc64le.rpm php8-embed-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-embed-debugsource-8.4.16-160000.1.1.ppc64le.rpm php8-fastcgi-8.4.16-160000.1.1.ppc64le.rpm php8-fastcgi-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-fastcgi-debugsource-8.4.16-160000.1.1.ppc64le.rpm php8-fpm-8.4.16-160000.1.1.ppc64le.rpm php8-fpm-debuginfo-8.4.16-160000.1.1.ppc64le.rpm php8-fpm-debugsource-8.4.16-160000.1.1.ppc64le.rpm php8-test-8.4.16-160000.1.1.ppc64le.rpm php8-8.4.16-160000.1.1.s390x.rpm php8-bcmath-8.4.16-160000.1.1.s390x.rpm php8-bcmath-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-bz2-8.4.16-160000.1.1.s390x.rpm php8-bz2-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-calendar-8.4.16-160000.1.1.s390x.rpm php8-calendar-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-cli-8.4.16-160000.1.1.s390x.rpm php8-cli-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-ctype-8.4.16-160000.1.1.s390x.rpm php8-ctype-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-curl-8.4.16-160000.1.1.s390x.rpm php8-curl-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-dba-8.4.16-160000.1.1.s390x.rpm php8-dba-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-debugsource-8.4.16-160000.1.1.s390x.rpm php8-devel-8.4.16-160000.1.1.s390x.rpm php8-dom-8.4.16-160000.1.1.s390x.rpm php8-dom-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-enchant-8.4.16-160000.1.1.s390x.rpm php8-enchant-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-exif-8.4.16-160000.1.1.s390x.rpm php8-exif-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-ffi-8.4.16-160000.1.1.s390x.rpm php8-ffi-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-fileinfo-8.4.16-160000.1.1.s390x.rpm php8-fileinfo-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-ftp-8.4.16-160000.1.1.s390x.rpm php8-ftp-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-gd-8.4.16-160000.1.1.s390x.rpm php8-gd-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-gettext-8.4.16-160000.1.1.s390x.rpm php8-gettext-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-gmp-8.4.16-160000.1.1.s390x.rpm php8-gmp-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-iconv-8.4.16-160000.1.1.s390x.rpm php8-iconv-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-intl-8.4.16-160000.1.1.s390x.rpm php8-intl-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-ldap-8.4.16-160000.1.1.s390x.rpm php8-ldap-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-mbstring-8.4.16-160000.1.1.s390x.rpm php8-mbstring-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-mysql-8.4.16-160000.1.1.s390x.rpm php8-mysql-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-odbc-8.4.16-160000.1.1.s390x.rpm php8-odbc-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-opcache-8.4.16-160000.1.1.s390x.rpm php8-opcache-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-openssl-8.4.16-160000.1.1.s390x.rpm php8-openssl-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-pcntl-8.4.16-160000.1.1.s390x.rpm php8-pcntl-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-pdo-8.4.16-160000.1.1.s390x.rpm php8-pdo-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-pgsql-8.4.16-160000.1.1.s390x.rpm php8-pgsql-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-phar-8.4.16-160000.1.1.s390x.rpm php8-phar-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-posix-8.4.16-160000.1.1.s390x.rpm php8-posix-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-readline-8.4.16-160000.1.1.s390x.rpm php8-readline-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-shmop-8.4.16-160000.1.1.s390x.rpm php8-shmop-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-snmp-8.4.16-160000.1.1.s390x.rpm php8-snmp-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-soap-8.4.16-160000.1.1.s390x.rpm php8-soap-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sockets-8.4.16-160000.1.1.s390x.rpm php8-sockets-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sodium-8.4.16-160000.1.1.s390x.rpm php8-sodium-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sqlite-8.4.16-160000.1.1.s390x.rpm php8-sqlite-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sysvmsg-8.4.16-160000.1.1.s390x.rpm php8-sysvmsg-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sysvsem-8.4.16-160000.1.1.s390x.rpm php8-sysvsem-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-sysvshm-8.4.16-160000.1.1.s390x.rpm php8-sysvshm-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-tidy-8.4.16-160000.1.1.s390x.rpm php8-tidy-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-tokenizer-8.4.16-160000.1.1.s390x.rpm php8-tokenizer-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-xmlreader-8.4.16-160000.1.1.s390x.rpm php8-xmlreader-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-xmlwriter-8.4.16-160000.1.1.s390x.rpm php8-xmlwriter-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-xsl-8.4.16-160000.1.1.s390x.rpm php8-xsl-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-zip-8.4.16-160000.1.1.s390x.rpm php8-zip-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-zlib-8.4.16-160000.1.1.s390x.rpm php8-zlib-debuginfo-8.4.16-160000.1.1.s390x.rpm apache2-mod_php8-8.4.16-160000.1.1.s390x.rpm apache2-mod_php8-debuginfo-8.4.16-160000.1.1.s390x.rpm apache2-mod_php8-debugsource-8.4.16-160000.1.1.s390x.rpm php8-embed-8.4.16-160000.1.1.s390x.rpm php8-embed-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-embed-debugsource-8.4.16-160000.1.1.s390x.rpm php8-fastcgi-8.4.16-160000.1.1.s390x.rpm php8-fastcgi-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-fastcgi-debugsource-8.4.16-160000.1.1.s390x.rpm php8-fpm-8.4.16-160000.1.1.s390x.rpm php8-fpm-debuginfo-8.4.16-160000.1.1.s390x.rpm php8-fpm-debugsource-8.4.16-160000.1.1.s390x.rpm php8-test-8.4.16-160000.1.1.s390x.rpm php8-8.4.16-160000.1.1.x86_64.rpm php8-bcmath-8.4.16-160000.1.1.x86_64.rpm php8-bcmath-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-bz2-8.4.16-160000.1.1.x86_64.rpm php8-bz2-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-calendar-8.4.16-160000.1.1.x86_64.rpm php8-calendar-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-cli-8.4.16-160000.1.1.x86_64.rpm php8-cli-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-ctype-8.4.16-160000.1.1.x86_64.rpm php8-ctype-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-curl-8.4.16-160000.1.1.x86_64.rpm php8-curl-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-dba-8.4.16-160000.1.1.x86_64.rpm php8-dba-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-debugsource-8.4.16-160000.1.1.x86_64.rpm php8-devel-8.4.16-160000.1.1.x86_64.rpm php8-dom-8.4.16-160000.1.1.x86_64.rpm php8-dom-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-enchant-8.4.16-160000.1.1.x86_64.rpm php8-enchant-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-exif-8.4.16-160000.1.1.x86_64.rpm php8-exif-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-ffi-8.4.16-160000.1.1.x86_64.rpm php8-ffi-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-fileinfo-8.4.16-160000.1.1.x86_64.rpm php8-fileinfo-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-ftp-8.4.16-160000.1.1.x86_64.rpm php8-ftp-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-gd-8.4.16-160000.1.1.x86_64.rpm php8-gd-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-gettext-8.4.16-160000.1.1.x86_64.rpm php8-gettext-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-gmp-8.4.16-160000.1.1.x86_64.rpm php8-gmp-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-iconv-8.4.16-160000.1.1.x86_64.rpm php8-iconv-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-intl-8.4.16-160000.1.1.x86_64.rpm php8-intl-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-ldap-8.4.16-160000.1.1.x86_64.rpm php8-ldap-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-mbstring-8.4.16-160000.1.1.x86_64.rpm php8-mbstring-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-mysql-8.4.16-160000.1.1.x86_64.rpm php8-mysql-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-odbc-8.4.16-160000.1.1.x86_64.rpm php8-odbc-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-opcache-8.4.16-160000.1.1.x86_64.rpm php8-opcache-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-openssl-8.4.16-160000.1.1.x86_64.rpm php8-openssl-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-pcntl-8.4.16-160000.1.1.x86_64.rpm php8-pcntl-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-pdo-8.4.16-160000.1.1.x86_64.rpm php8-pdo-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-pgsql-8.4.16-160000.1.1.x86_64.rpm php8-pgsql-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-phar-8.4.16-160000.1.1.x86_64.rpm php8-phar-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-posix-8.4.16-160000.1.1.x86_64.rpm php8-posix-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-readline-8.4.16-160000.1.1.x86_64.rpm php8-readline-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-shmop-8.4.16-160000.1.1.x86_64.rpm php8-shmop-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-snmp-8.4.16-160000.1.1.x86_64.rpm php8-snmp-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-soap-8.4.16-160000.1.1.x86_64.rpm php8-soap-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sockets-8.4.16-160000.1.1.x86_64.rpm php8-sockets-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sodium-8.4.16-160000.1.1.x86_64.rpm php8-sodium-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sqlite-8.4.16-160000.1.1.x86_64.rpm php8-sqlite-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sysvmsg-8.4.16-160000.1.1.x86_64.rpm php8-sysvmsg-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sysvsem-8.4.16-160000.1.1.x86_64.rpm php8-sysvsem-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-sysvshm-8.4.16-160000.1.1.x86_64.rpm php8-sysvshm-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-tidy-8.4.16-160000.1.1.x86_64.rpm php8-tidy-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-tokenizer-8.4.16-160000.1.1.x86_64.rpm php8-tokenizer-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-xmlreader-8.4.16-160000.1.1.x86_64.rpm php8-xmlreader-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-xmlwriter-8.4.16-160000.1.1.x86_64.rpm php8-xmlwriter-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-xsl-8.4.16-160000.1.1.x86_64.rpm php8-xsl-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-zip-8.4.16-160000.1.1.x86_64.rpm php8-zip-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-zlib-8.4.16-160000.1.1.x86_64.rpm php8-zlib-debuginfo-8.4.16-160000.1.1.x86_64.rpm apache2-mod_php8-8.4.16-160000.1.1.x86_64.rpm apache2-mod_php8-debuginfo-8.4.16-160000.1.1.x86_64.rpm apache2-mod_php8-debugsource-8.4.16-160000.1.1.x86_64.rpm php8-embed-8.4.16-160000.1.1.x86_64.rpm php8-embed-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-embed-debugsource-8.4.16-160000.1.1.x86_64.rpm php8-fastcgi-8.4.16-160000.1.1.x86_64.rpm php8-fastcgi-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-fastcgi-debugsource-8.4.16-160000.1.1.x86_64.rpm php8-fpm-8.4.16-160000.1.1.x86_64.rpm php8-fpm-debuginfo-8.4.16-160000.1.1.x86_64.rpm php8-fpm-debugsource-8.4.16-160000.1.1.x86_64.rpm php8-test-8.4.16-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-199 Recommended update for supportutils-plugin-ha-sap moderate SUSE SLFO 1.2 This update for supportutils-plugin-ha-sap fixes the following issues: - fix typo in the definition of INSTANCE_TRACE_DIR - fix calling of getParameter.py - skip unused files from the collection of sudo files and sort the result supportutils-plugin-ha-sap-0.0.8+git.1761561174.0434cd5-160000.1.1.noarch.rpm supportutils-plugin-ha-sap-0.0.8+git.1761561174.0434cd5-160000.1.1.src.rpm openSUSE-Leap-16.0-2 Recommended update of flake-pilot moderate SUSE SLFO 1.2 This update for flake-pilot fixes the following issues: Update version to 3.1.22. - Fixes to use flakes as normal user Running a flake is a container based instance provisioning and startup. Some part of this process requires root permissions for example mounting the container instance store for the provisioning step. This commit fixes the required calls to be properly managed by sudo. - seed from entropy - Fix assignment of random sequence number We should use a seed for the sequence as described in https://rust-random.github.io/book/guide-seeding.html#a-simple-number In addition the logic when a random sequence number should be used was wrong and needed a fix regarding resume and attach type flakes which must not use a random sequence - Pass --init option for resume type flakes In resume mode a sleep command is used to keep the container open. However, without the --init option there is no signal handling available. This commit fixes it - Revert "kill prior remove when using %remove flag" This reverts commit 06c7d4aa71f74865dfecba399fd08cc2fde2e1f2. no hard killing needed with the event loop entrypoint - Fixed CVE-2025-55159 slab: incorrect bounds check Update to slab 0.4.11 to fix the mentioned CVE. This Fixes bsc#1248004 - Apply clippy fixes - Create sequence number for the same invocation If a flake which is not a resume or attach flake is called twice with the same invocation arguments an error message is displayed to give this invocation a new name via the @NAME runtime option. This commit makes this more comfortable and automatically assigns a random sequence number for the call if no @NAME is given. - kill prior remove when using %remove flag In case the container instance should be removed via the %remove flag, send a kill first, followed by a force remove. The reason for this is because we use a never ending sleep command as entry point for resume type containers. If they should be removed the standard signal send on podman rm will not stop the sleep and after a period of 10 seconds podman sends a kill signal itself. We can speedup this process as we know the entry point command and send the kill signal first followed by the remove which saves us some wait time spent in podman otherwise. - Fix clippy hints variables can be used directly in the format! string - Prune old images after load Make sure no <none> image references stay in the registry flake-pilot-3.1.22-160000.1.1.aarch64.rpm flake-pilot-3.1.22-160000.1.1.src.rpm flake-pilot-debuginfo-3.1.22-160000.1.1.aarch64.rpm flake-pilot-firecracker-3.1.22-160000.1.1.aarch64.rpm flake-pilot-firecracker-debuginfo-3.1.22-160000.1.1.aarch64.rpm flake-pilot-firecracker-dracut-netstart-3.1.22-160000.1.1.noarch.rpm flake-pilot-firecracker-guestvm-tools-3.1.22-160000.1.1.aarch64.rpm flake-pilot-firecracker-guestvm-tools-debuginfo-3.1.22-160000.1.1.aarch64.rpm flake-pilot-podman-3.1.22-160000.1.1.aarch64.rpm flake-pilot-3.1.22-160000.1.1.ppc64le.rpm flake-pilot-firecracker-3.1.22-160000.1.1.ppc64le.rpm flake-pilot-firecracker-guestvm-tools-3.1.22-160000.1.1.ppc64le.rpm flake-pilot-podman-3.1.22-160000.1.1.ppc64le.rpm flake-pilot-3.1.22-160000.1.1.s390x.rpm flake-pilot-debuginfo-3.1.22-160000.1.1.s390x.rpm flake-pilot-firecracker-3.1.22-160000.1.1.s390x.rpm flake-pilot-firecracker-debuginfo-3.1.22-160000.1.1.s390x.rpm flake-pilot-firecracker-guestvm-tools-3.1.22-160000.1.1.s390x.rpm flake-pilot-firecracker-guestvm-tools-debuginfo-3.1.22-160000.1.1.s390x.rpm flake-pilot-podman-3.1.22-160000.1.1.s390x.rpm flake-pilot-3.1.22-160000.1.1.x86_64.rpm flake-pilot-debuginfo-3.1.22-160000.1.1.x86_64.rpm flake-pilot-firecracker-3.1.22-160000.1.1.x86_64.rpm flake-pilot-firecracker-debuginfo-3.1.22-160000.1.1.x86_64.rpm flake-pilot-firecracker-guestvm-tools-3.1.22-160000.1.1.x86_64.rpm flake-pilot-firecracker-guestvm-tools-debuginfo-3.1.22-160000.1.1.x86_64.rpm flake-pilot-podman-3.1.22-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-20 Recommended update for selinux-policy critical SUSE SLFO 1.2 This update for selinux-policy fixes the following issues: Changes in selinux-policy: Update to version 20250627+git239.fcbf2d509: * fail2ban: bump module version * fail2ban: allow fail2ban to watch all log files and dirs (bsc#1251952) * fail2ban: fix typos in interface descriptions * fail2ban: tweak file context regex for /run/fail2ban * fail2ban: drop file context for old rc.d file * Allow wicket to manage its proc directories (bsc#1235731) * Allow NM to manage wicked pid files (bsc#1235731) * Allow NM to reach systemd unit files (bsc#1235731) * Make wicked script backwards compatible (bsc#1251923) * Allow snapper grub plugin to domtrans to bootloader_t (bsc#1251862) * Allow salt_t transition to rpm_script_t (bsc#1250696) * grub snapper plugin is now named 00-grub (bsc#1251793) * Assign alts_exec_t exec_file attribute (bsc#1250974) * Add equivalency between /srv/tomcat and /var/lib/tomcat (bsc#1251227) * Allow sshd_session_t write to wtmpdb * Support /usr/libexec/ssh as well as openssh folder * Set xenstored_use_store_type_domain boolean true(bsc#1247875) * Adjust guest and xguest users policy for sshd-session * Allow valkey-server create and use netlink_rdma_socket * Allow blueman get attributes of filesystems with extended attributes * Update files_search_base_file_types() * Introduce unconfined wicked_script_t (bsc#1205770, bsc#1250661) * Allow geoclue get attributes of the /dev/shm filesystem * Allow apcupsd get attributes of the /dev/shm filesystem * Allow sshd-session read cockpit pid files * Add /opt/.snapshots to the snapper file context (bsc#1232226) * Allow nfs generator create and use netlink sockets * Conditionally allow virt guests to read certificates in user home directories * xenstored_t needs CAP_SYS_ADMIN for XENSTORETYPE=domain (bsc#1247875) * Allow nfs-generator create and use udp sockets * Allow kdump search kdumpctl_tmp_t directories * Allow init open and read user tmp files * Fix the systemd_logind_stream_connect() interface * Allow staff and sysadm execute iotop using sudo * Allow sudodomains connect to systemd-logind over a unix socket * /boot/efi is dosfs_t and kdump needs to access it (bsc#1249370) * Add default contexts for sshd-seesion * Define types for new openssh executables * Fix systemd_manage_unit_symlinks() interface definition * Support coreos installation methods * Add a new type for systemd-ssh-issue PID files * Allow gnome-remote-desktop connect to unreserved ports * Zypper moves files in /var/tmp to /var/cache (bsc#1249052, bsc#1249435) * Allow mdadm the CAP_SYS_PTRACE capability * Allow iptables manage its private fifo_files in /tmp * Allow auditd manage its private run dirs * Revert "Allow virt_domain write to virt_image_t files" * Allow gdm create /etc/.pwd.lock with a file transition * Allow gdm bind a socket in the /run/systemd/userdbd directory * Allow nsswitch_domain connect to xdm over a unix domain socket * Allow systemd homed getattr all tmpfs files (bsc#1240883) * Allow systemd (PID 1) create lastlog entries * Allow systemd_homework_t transition pid files to lvm_var_run_t (bsc#1240883) * Allow gnome-remote-desktop speak with tabrmd over dbus (bsc#1244573) * Allow nm-dispatcher iscsi and sendmail plugins get pidfs attributes * Allow systemd-oomd watch tmpfs dirs * Allow chronyc the setgid and setuid capabilities * Label /usr/lib/systemd/systemd-ssh-issue with systemd_ssh_issue_exec_t * Allow stalld map sysfs files * Allow NetworkManager-dispatcher-winbind get pidfs attributes * Allow openvpn create and use generic netlink socket * policy_capabilities: remove estimated from released versions * policy_capabilities: add stub for userspace_initial_context * add netlink_xperm policy capability and nlmsg permission definitions * policy_capabilities: add ioctl_skip_cloexec * selinux-policy: add allow rule for tuned_ppd_t * selinux-policy: add allow rule for switcheroo_control_t * Label /run/audit with auditd_var_run_t * Allow virtqemud start a vm which uses nbdkit * Add nbdkit_signal() and nbdkit_signull() interfaces * Fix insights_client interfaces names * Add insights_core and insights_client interfaces * Fix selinux-autorelabel-generator label after upstream changes * Revert "Remove the mysql module sources" * Revert "Allow rasdaemon write access to sysfs (bsc#1229587)" * Reset postfix.fc to upstream, add alias instead * dist/targeted/modules.conf: enable slrnpull module * Allow bootupd delete symlinks in the /boot directory * Allow systemd-coredumpd capabilities in the user namespace * Allow openvswitch read virtqemud process state * Allow systemd-networkd to create leases directory * Apply generator template to selinux-autorelabel generator * Support virtqemud handle hotplug hostdev devices * Allow virtstoraged create qemu /var/run files * Allow unconfined_domain_type cap2_userns capabilities * Label /usr/libexec/postfix/tlsproxy with postfix_smtp_exec_t * Remove the mysql module sources * dist/targeted/modules.conf: Enable kmscon module (bsc#1238137) * Update kmscon policy module to kmscon version 9 (bsc#1238137) * Allow login to getattr pidfs * Allow systemd to map files under /sys * systemd: drop duplicate init_nnp_daemon_domain lines * Fix typo * Allow logwatch stream connect to opensmtpd * Allow geoclue read NetworkManager pid files * Allow unconfined user a file transition for creating sudo log directory * Allow virtqemud read/write inherited dri devices * Allow xdm_t create user namespaces * Update policy for login_userdomain * Add ppd_base_profile to file transition to get tuned_rw_etc_t type * Update policy for bootupd * Allow logwatch work with opensmtpd * Update dovecot policy for dovecot 2.4.1 * Allow ras-mc-ctl write to sysfs files * Allow anaconda-generator get attributes of all filesystems * Add the rhcd_rw_fifo_files() interface * Allow systemd-coredump the sys_chroot capability * Allow hostapd write to socket files in /tmp * Recognize /var/home as an alternate path for /home * Label /var/lib/lastlog with lastlog_t * Allow virtqemud write to sysfs files * Allow irqbalance search sssd lib directories * Allow samba-dcerpcd send sigkills to passwd * Allow systemd-oomd watch dbus pid sock files * Allow some confined users read and map generic log files * Allow login_userdomain watch the /run/log/journal directory * Allow login_userdomain dbus chat with tuned-ppd * Allow login_userdomain dbus chat with switcheroo-control * Allow userdomain to connect to systemd-oomd over a unix socket * Add insights_client_delete_lib_dirs() interface * Allow virtqemud_t use its private tmpfs files (bsc#1242998) * Allow virtqemud_t setattr to /dev/userfaultfd (bsc#1242998) * Allow virtqemud_t read and write /dev/ptmx (bsc#1242998) * Extend virtqemud_t tcp_socket permissions (bsc#1242998) * Allow virtqemud_t to read and write generic pty (bsc#1242998) * Allow systemd-importd create and unlink init pid socket * Allow virtqemud handle virt_content_t chr files * Allow svirt read virtqemud fifo files * All sblim-sfcbd the dac_read_search capability * Allow sblim domain read systemd session files * Allow sblim-sfcbd execute dnsdomainname * Confine nfs-server generator * Allow systemd-timedated start/stop timemaster services * Allow "hostapd_cli ping" run as a systemd service * Allow power-profiles-daemon get attributes of filesystems with extended attributes * Allow 'oomctl dump' to interact with systemd-oomd * Basic functionality for systemd-oomd * Basic enablement for systemd-oomd * Allow samba-bgqd send to smbd over a unix datagram socket * Update kernel_secretmem_use() * Add the file/watch_mountns permission * Update systemd-generators policy * Allow plymouthd_t read proc files of systemd_passwd_agent (bsc#1245470) * Allow insights-client file transition for files in /var/tmp * Allow tuned-ppd manage tuned log files * Allow systemd-coredump mount on tmpfs filesystems * Update sssd_dontaudit_read_public_files() * Allow zram-generator raw read fixed disk device * Add fs_write_cgroup_dirs() and fs_setattr_cgroup_dirs() interfaces selinux-policy-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm selinux-policy-20250627+git239.fcbf2d509-160000.1.1.src.rpm selinux-policy-devel-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm selinux-policy-doc-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm selinux-policy-minimum-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm selinux-policy-sandbox-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm selinux-policy-targeted-20250627+git239.fcbf2d509-160000.1.1.noarch.rpm openSUSE-Leap-16.0-200 Recommended update for ulp-macros moderate SUSE SLFO 1.2 This update for ulp-macros fixes the following issues: Changes in ulp-macros: - Add macro that checks if a certain package is the most recent one. ulp-macros-1.0-160000.3.1.noarch.rpm ulp-macros-1.0-160000.3.1.src.rpm openSUSE-Leap-16.0-201 Recommended update for xom, xmlunit, modello, junit5, jna, javapackages-tools, xz-java, sisu, slf4j, jline3, j2objc-annotations, jackson-databind, icu4j, guava, google-guice, google-gson, geronimo-specs, exec-maven-plugin, bouncycastle, byte-buddy, byaccj, apache-commons-logging, apache-commons-cli, apache-commons-codec, apache-commons-daemon, apache-commons-dbcp, apache-commons-beanutils, ant, auto moderate SUSE SLFO 1.2 This update for xom, xmlunit, modello, junit5, jna, javapackages-tools, xz-java, sisu, slf4j, jline3, j2objc-annotations, jackson-databind, icu4j, guava, google-guice, google-gson, geronimo-specs, exec-maven-plugin, bouncycastle, byte-buddy, byaccj, apache-commons-logging, apache-commons-cli, apache-commons-codec, apache-commons-daemon, apache-commons-dbcp, apache-commons-beanutils, ant, auto fixes the following issues: Changes in xom: - Make build recipe compatible with POSIX sh. Use %autosetup. Changes in xmlunit: - Upgrade to 2.11.0 * XMLUnit 2.x is a complete rewrite of XMLUnit and actually doesn't share any code with XMLUnit for Java 1.x. * Some goals for XMLUnit 2.x: + create .NET and Java versions that are compatible in design while trying to be idiomatic for each platform + remove all static configuration (the old XMLUnit class setter methods) + focus on the parts that are useful for testing - XPath - (Schema) validation - comparisons + be independent of any test framework * XMLUnit 1.x is no longer maintained - Use diretly the xalan-j2 jar instead of the jaxp_transform_impl alternative (bsc#1245931 and bsc#1245914) * In cases of ATTR_NAME_NOT_FOUND and CHILD_NODE_NOT_FOUND differences the value used to be the local name of the missing attribute or node. * New assertXpathEvaluatesTo overloads in XMLAssert and a new QualifiedName class can be used to assert the stringified result of an XPath expression is actually a qualified name Changes in modello: - Upgrade to upstream version 2.5.1 * New features and improvements + Improve and add exceptions for singular method + Fix Snakeyaml + Restore singular method behavior like was in version 2.4.0 * Maintenance + Partially migrate to JUnit 5 + Apply spotless re-formatting + Update build, get rid of legacy, fix CLI + Use distributionManagement from parent pom - Fix the modello script classpath to be able to run the velocity generator. - Upgrade to upstream version 2.3.0 Changes in modello: - Add -Dguice_custom_class_loading=CHILD option to the command-line launcher in order to avoid the following warnings with OpenJDK >= 24 : WARNING: A terminally deprecated method in sun.misc.Unsafe has been called WARNING: sun.misc.Unsafe::staticFieldBase has been called by com.google.inject.internal.aop.HiddenClassDefiner WARNING: Please consider reporting this to the maintainers of class com.google.inject.internal.aop.HiddenClassDefiner WARNING: sun.misc.Unsafe::staticFieldBase will be removed in a future release - Upgrade to upstream version 2.5.1 * New features and improvements + Improve and add exceptions for singular method + Fix Snakeyaml + Restore singular method behavior like was in version 2.4.0 * Maintenance + Partially migrate to JUnit 5 + Apply spotless re-formatting + Update build, get rid of legacy, fix CLI + Use distributionManagement from parent pom - Add dependency on objectweb-asm to build with sisu 0.9.0.M4 - Fix the modello script classpath to be able to run the velocity generator. Changes in junit5: - Fix errors in aggregator.pom and in ant build system that prevent successful builds with upcoming Maven 4 - Generate a non-modular javadoc Changes in jna: + do not put module-info.class in multirelease directories Changes in javapackages-tools: - Require findutils for working build-classpath (bsc#1245969) - Upgrade to upstream version 6.4.1 * Changes + Revert "jpackage_script: Remove unneeded backslashes" + Initial implementation of %jp_binding macro + Replace invalid $ escape in regex Changes in xz-java: + Do not put the module-info.class into multirelease directory + If building with Java 8 only, specify in the manifest the Automatic-Module-Name, so that it can be recognized as modular jar even in that configuration Changes in sisu: - Initial packaging of the Sisu Extenders with version 0.9.0.M4 - Upgrade to upstream milestone 0.9.0.M4 * Most important change + ASM is "demoted" to plain dependency, hence, consumer is able to override/update it the usual "Maven way". This applies to all components: inject, plexus and sisu-maven-plugin as well. + Historically, Sisu shaded in ASM just like Guice did. Later Sisu started shipping "main" JAR with shaded ASM but also "no_asm" classified artifact without ASM (just like Guice did with "classes" classified JAR). Starting from this version, Sisu does not shade ASM anymore, it is "demoted" to transitive dependency. * Changes + Disable shallow clones for sonarcloud analysis + Remove spurious asserts + Post release cleanup + Fix jacoco + code coverage + Enable code coverage again for all modules + Use default property for the jacoco agent + Add documentation on Plexus Configurator API + Remove about.html as only relevant for Eclipse plugins + Document Lifecycle support + Call TypeAwareExpressionEvaluator.evaluate(String,Class) if available + Pass strict flag also via "discoverComponents" + Embed/relocate ASM via m-shade-p + Update to ASM 9.8 + Increase coverage + Align subproject names (and naming) + Build infra updates + Reproducible + Fix sisu-maven-plugin + Lax array converter + Update dependencies + Publishing to Central - Build with bootstrap version of maven-plugins. This allows to be built early, since it will become a crucial plugin with Maven 4. Changes in sisu: - Upgrade to upstream milestone 0.9.0.M4 * Most important change + ASM is "demoted" to plain dependency, hence, consumer is able to override/update it the usual "Maven way". This applies to all components: inject, plexus and sisu-maven-plugin as well. + Historically, Sisu shaded in ASM just like Guice did. Later Sisu started shipping "main" JAR with shaded ASM but also "no_asm" classified artifact without ASM (just like Guice did with "classes" classified JAR). Starting from this version, Sisu does not shade ASM anymore, it is "demoted" to transitive dependency. * Changes + Disable shallow clones for sonarcloud analysis + Remove spurious asserts + Post release cleanup + Fix jacoco + code coverage + Enable code coverage again for all modules + Use default property for the jacoco agent + Add documentation on Plexus Configurator API + Remove about.html as only relevant for Eclipse plugins + Document Lifecycle support + Call TypeAwareExpressionEvaluator.evaluate(String,Class) if available + Pass strict flag also via "discoverComponents" + Embed/relocate ASM via m-shade-p + Update to ASM 9.8 + Increase coverage + Align subproject names (and naming) + Build infra updates + Reproducible + Fix sisu-maven-plugin + Lax array converter + Update dependencies + Publishing to Central Changes in jline3: - Update to upstream version 3.30.6 * New features and improvements + Improve console variable expansion (fixes #1370) + ConsoleEngineImpl: change method and field visibilities + Allow ConsoleEngineImpl subclasses access to VariableReferenceCompleter + feat: add reusable POSIX commands to builtins module + feat: support slurp command to be renamed + feat: Extend InputRC with method/s to directly read ~/.inputrc & /etc/inputrc + Allow system commands to be renamed. * Bug Fixes + Fix macOS hang in pipe operations by removing PTY terminal usage + enhancement: only compute suggestions in the Nano editor if something has changed + fix: refactor TerminalProvider methods to use inputEncoding/outputEncoding parameters + Fix System.out not working after closing dumb terminal + Optimize Display performance and fix terminal capability usage * Dependency updates + chore: Bump groovy.version from 4.0.27 to 4.0.28 + chore: Bump com.palantir.javaformat:palantir-java-format from 2.67.00 to 2.73.0 + chore: Bump junit.version from 5.12.2 to 5.13.4 + chore: Bump org.graalvm.sdk:graal-sdk from 24.2.1 to 24.2.2 + chore: Bump com.google.jimfs:jimfs from 1.3.0 to 1.3.1 + chore: Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.5.0 to 3.6.1 + chore: Bump on-headers and compression in /website + chore: Bump org.codehaus.gmavenplus:gmavenplus-plugin from 4.2.0 to 4.2.1 + chore: Bump org.apache.maven.plugins:maven-clean-plugin from 3.4.1 to 3.5.0 + chore: Bump org.codehaus.mojo:build-helper-maven-plugin from 3.6.0 to 3.6.1 + chore: Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.7 to 3.2.8 + chore: Bump eu.maveniverse.maven.njord:extension from 0.6.2 to 0.7.5 * Documentation updates + docs: Link to Nano Customization from Builtins doc page + docs: Add Capability.enter_ca_mode and Capability.exit_ca_mode tip * Maintenance + Remove double docs/docs in edit links on jline.org (fixes# 1309) + chore: make downcall handles static final - Build the ffm support in Factory, since we have now the java >= 22 - Update to upstream version 3.30.4 * New features and improvements + add pluggable completion to Nano editor (fixes #1194) + enhanced MouseSupport to handle multiple mouse event formats (SGR, URXVT, SGR-Pixels) + add getCurrentMouseTracking to Terminal interface + add ability to get terminal default foreground and background colors + add password masking support for dumb terminals (fixes #1172) + add line numbers and current line marker to secondary prompt (fix for #1151) + Add support for separate encodings for stdin, stdout, and stderr + Make prompts work in non-fullscreen mode * Bug Fixes + use a fallback classloader suitable for java Modules or OSGi environments (fixes #1185) + NPE in Status#resize when supported is false (fixes #1191) + nano editor exiting when pressing Ctrl+Space (fixes #1200) + parse error of system default /usr/share/nano/*.nanorc + Terminal.trackMouse(MouseTracking.Off) (fixes #1189) + Make command execution order consistent in SystemRegistryImpl + handle invalid entries in history files gracefully + Properly fill screen lines with spaces when width is increased in ScreenTerminal + cursor position after Status.update() + improve script file detection and execution in Groovy REPL, fixes #1139 + ensure proper cleanup of pump threads in terminal implementations + add history line width check in ScreenTerminal.setSize() (fixes #1206) + console-ui example: catch UserInterruptException in place of IOError + Ctrl+Space handling on Windows terminals + Update LineReaderImpl to use new readMouseEvent signature with lastBinding parameter + enhance nanorc loading and introduce a ClasspathResourceUtil utility + missing close in PosixSysTerminal. + Jansi AnsiConsole broken color detection in uber jars + SyntaxHighlighter glob pattern handling for non-default file systems * Documentation + Integrate website into main repository + improve JLineNativeLoader documentation and references + fix readme + Add comprehensive Javadoc to jline-builtins module + improve Javadoc in console module + add comprehensive Javadoc to org.jline.style package + add comprehensive Javadoc to JLine Terminal and Reader + Add missing DISABLE_EVENT_EXPANSION JavaDoc (fixes #1218) + Make sure snippets compile + Corrected the maven central link + correct PicocliJLineExample snippet name in library-integration.md + validate code snippets during build time instead of runtime + add missing @SInCE 3.30.0 annotations to new methods in Terminal + integrate GitHub wiki content into website documentation + Improve website build system and documentation management + fix javadoc redirect URL issue + Add picocli links to library integration + Mention InputRC on Builtins + doc: update version to 3.30.0 and add Javadoc integration + integrate ConsoleUI documentation into website + add syntax highlighting example classes for documentation + Expand DISABLE_EVENT_EXPANSION JavaDoc (re. #1238) + Link to documentation website earlier in README (see #1240) + Link to Pty4j on Terminal - Rewrite to use Ant to build. This prevents potential cycles with upcoming Maven 4 Changes in j2objc-annotations: - Update to version 3.0.0 * no structured changelog available * this version is a modular jar needed by guava Changes in jackson-databind: - Fix "Not fully interpolated version" error with Maven 4 Changes in icu4j: + detect java version up to 25 when running ant Changes in guava: - Upgrade to guava 33.4.8 * Changes of version 33.4.8 + util.concurrent: Removed our VarHandle code from guava-android. While the code was never used at runtime under Android, it was causing problems under the Android Gradle Plugin with a minSdkVersion below 26. To continue to avoid sun.misc.Unsafe under the JVM, guava-android will now always use AtomicReferenceFieldUpdater when run there. * Changes of version 33.4.7 + Modified the guava module's dependency on failureaccess to be transitive. Also, modified the guava-testlib module to make its dependency on guava transitive, to remove its dependency on failureaccess, and to add a dependency (transitive) on junit. + util.concurrent: Modified our fast paths to ensure that they continue to work when run through optimizers, such as those commonly used by Android apps. This fixes problems that some users may have seen since Guava 33.4.5. + util.concurrent: Changed the guava-android copy of AbstractFuture to try VarHandle before Unsafe, eliminating a warning under newer JDKs. * Changes of version 33.4.6 + Removed the extra copy of each class from the Guava jar. The extra copies were an accidental addition from the modularization work in Guava 33.4.5. + Fixed annotation-related warnings when using Guava in modular builds. The most common such warning is Cannot find annotation method 'value()' in type 'DoNotMock': .... * Changes of version 33.4.5 + Changed the Guava jar (plus guava-testlib and failureaccess jars) to be a modular jar. + Changed various classes to stop using sun.misc.Unsafe under Java 9+. ° Note that, if you use guava-android on the JVM (instead of using guava-jre), Guava will still try to use sun.misc.Unsafe. We will do further work on this in the future. + Belatedly updated the Public Suffix List data. * Changes of version 33.4.4 + Migrated from Checker Framework annotations to JSpecify annotations. + Made our usages of nullness annotations available in our GWT artifact. GWT users will need to upgrade to GWT 2.12.1, which makes GWT as tolerant of Java 8 type-use annotations as it is of other annotations. * Changes of version 33.4.3 + Migrated from @CheckForNull to the Checker Framework @Nullable. Most tools recognize both annotations, so we expect this to be a no-op in almost all cases. This release removes our dependency on JSR-305. * Changes of version 33.4.2 + Changed @ParametricNullness into a no-op for Kotlin and IntelliJ. Before now, it was forcing many usages of type variables to have platform types, which meant that Kotlin couldn't check those usages for nullness errors. With this change, Kotlin can detect more errors. * Changes of version 33.4.1 + Replaced our custom @ElementTypesAreNonnullByDefault annotations with the JSpecify @NullMarked annotation. * Changes of version 33.4.0 + Exposed additional Java 8 APIs to Android users. + base: Deprecated Charsets constants in favor of StandardCharsets. We will not remove the constants, but we recommend using StandardCharsets for consistency. + base: Added ToStringHelper.omitEmptyValues(). + collect: Added an optimized copyOf method to TreeRangeMap. + collect.testing: Fixed @Require annotations so that features implied by absent features are not also required to be absent. + io: Changed ByteSink and CharSink to no longer call flush() in some cases before close(). This is a no-op for well-behaved streams, which internally flush their data as part of closing. However, we have discovered some stream implementations that have overridden close() to do nothing, including not to flush some buffered data. If this change causes problems, the simplest fix is usually to change the close() override to at least call flush(). + net: Added HttpHeaders.ALT_SVC and MediaType.CBOR. * Changes of version 33.3.1 + Added j2objc-annotations to the Gradle runtime classpath to stop producing an Android Gradle Plugin error. * Changes of version 33.3.0 + base: Removed @Beta from the Duration overload of Suppliers.memoizeWithExpiration. + cache: Added CacheBuilder Duration overloads to guava-android. + collect: Removed @Beta from the guava-android Collector APIs. + collect: Added ImmutableMultimap.builderWithExpectedKeys and ImmutableMultimap.Builder.expectedValuesPerKey. + graph: Improved Graphs.hasCycle to avoid causing StackOverflowError for long paths. + net: Added text/markdown to MediaType. + net: Deprecated HttpHeaders constant for Sec-Ch-UA-Form-Factor in favor of Sec-Ch-UA-Form-Factors to follow the latest spec. + testing: Changed some test libraries to throw AssertionError (instead of the more specific AssertionFailedError) in some cases. + we are folding the failureaccess into the main guava.jar, so we don't have a special module for it. Changes in google-guice: - Fix build with Java 25 Changes in google-gson: - Rewrite the build system for ant to avoid potential build cycles with upcoming Maven 4 Changes in geronimo-specs: - Do not use update-alternatives Changes in exec-maven-plugin: - Upgrade to upstream version 3.5.1 - Changes of 3.5.1 * Bug Fixes + Add ClassLoader support for ASM ClassWriter * Maintenance + Fix ITs for Maven 4 rc-3 + Document how to use env vars in commandlineArgs - Changes of 3.5.0 * New features and improvements + Add toolchain java path to environment variables in ExecMojo * Bug Fixes + #322, enable to control the exec:java interaction with JVM classloader more finely * Maintenance + Update site descriptor to 2.0.0 + Toolchains manual improvements + Manage version of maven-toolchains-plugin - Changes of 3.4.1 * Bug Fixes + Environment variable Path should be used as case-insensitive + fix: NPE because declared MavenSession field hides field of superclass * Maintenance + Remove redundant spotless configuration * Build + Use Maven4 enabled with GH Action + Use shared release drafter GH Action - Chages of 3.4.0 * New features and improvements + Allow <includePluginDependencies> to be specified for the exec:exec goal * Bug Fixes + Do not get UPPERCASE env vars * Maintenance + Remove Log4j 1.2.x from ITs * Build + Use Maven 3.9.7 and 4.0.0-beta-3 - Changes of 3.3.0 * New features and improvements + Add option to include runtime and provided - Changes of 3.2.0 * New features and improvements + Enable to exec:java runnables and not only mains with loosely coupled injections + Try to get rid of legacy API which can break starting with java 17 * Bug Fixes + Fix #401 - Maven v4 compatibility * Maintenance + ITs improvement + Fix documentation formatting, add menu items for new examples + Execute mexec-137 also on unix family + Remove unused test * Build + Bump release-drafter/release-drafter from 5 to 6 - Changes of 3.1.1 * New features and improvements + Remove unused killAfter options + [#391] Cope with Thread::stop being unavailable in JDK 20+ + Only prefix program output with thread name when running with multiple threads + [#389] Add option 'blockSystemExit' to 'java' mojo + Require Maven 3.6.3+ + Ensure maven.properties can be forwarded to system properties for exec:java * Bug Fixes + Fix #158 - Fix non ascii character handling + [#323] exec arguments missing * Maintenance + Code cleanups - use newer JDK features + Enable spotless for code formatting + Require Maven 3.6.3+ + ITs cleanups + Use Resolver Api for dependency resolving * Build + Workaround for concurrent access to local repository on Windows by ITs + Use Maven 3.9.4, 3.8.8 in GitHub build - Changes of 3.1.0 * New features and improvements + Require Maven 3.2.5 + Support stream inheritance for the forked process, fixes #71 * Bug Fixes + Fix NullPointerException when using plugin dependencies in version 1.6.0 + preload common pool - issue #198 + fix handling of LongModulePathArgument and LongClassPathArgument + Do not drop environment variables that contain '=' in their value, or have no value. + Empty argument tag should add empty string instead of null + Fixes #160, ensure the java classloader is a child first one and supports to excludes some gathered classpath element to solve manually conflicts * Maintenance + Get rid of maven-artifact-transfer from dependencies + Cleanup project site + Cleanup project + Fix build badge for current CI system + Enforce JAVA_HOME for ITs + Drop Invokable interface + Remove unused class + Remove unused class and profile to build it + Remove unused imports + Remove unused fields + Bump sniffed signatures + fix issue with IBM semu 11 + [DEPS] remove unused logging dependencies. + Fixed message: Removed duplicate space + Fix spelling in error msg (occured -> occurred) * Build + Testing with Maven 3.2.5 and 3.8.6 + use shared gh action from ASF + use Temurin JDK Changes in bouncycastle: - Update to 1.82: * Defects Fixed: - SNOVA and MAYO are now correctly added to the JCA provider module-info file. - TLS: Avoid nonce reuse error in JCE AEAD workaround for pre-Java7. - BCJSSE: Session binding map is now shared across all stages of the session lifecycle (SunJSSE compatibility). - The CMCEPrivateKeyParameters#reconstructPublicKey method was returning an empty byte array. It now returns an encoding of the public key. - CBZip2InputStream no longer auto-closes at end-of-contents. - The BC CertPath implementation was eliminating certificates on the bases of the Key-ID. This is not in accordance with RFC 4158. - Support for the previous set of libOQS Falcon OIDs has been restored. - The BC CipherInputStream could throw an exception if asked to handle an AEAD stream consisting of the MAC only. - Some KeyAgreement classes were missing in the Java 11 class hierarchy. - Fix typo in a constant name in the HPKE class and deprecate the old constant. - Fuzzing analysis has been done on the OpenPGP API and additional code has been added to prevent escaping exceptions. * Additional Features and Functionality: - SHA3Digest, CSHAKE, TupleHash, KMAC now provide support for Memoable and EncodableService. - BCJSSE: Added support for integrity-only cipher suites in TLS 1.3 per RFC 9150. - BCJSSE: Added support for system properties "jdk.tls.{client,server}.maxInboundCertificateChainLength" - BCJSSE: Added support for ML-DSA signature schemes in TLS 1.3 per draft-ietf-tls-mldsa-00. - The Composite post-quantum signatures implementation has been updated to the latest draft (07) draft-ietf-lamps-pq-composite-sigs. - "_PREHASH" implementations are now provided for all composite signatures to allow the hash of the date to be used instead of the actual data in signature calculation. - The gradle build can now be used to generate an Bill of Materials (BOM) file. - It is now possible to configure the SignerInfoVerifierBuilder used by the SignedMailValidator class. - The Ascon family of algorithms has been updated with the latest published changes. - Composite signature keys can now be constructed from the individual keys of the algorithms composing the composite. - PGPSecretKey, PGPSignatureGenerator now support version 6. - Further optimisation work has been done on ML-KEM public key validation. - Zeroization of passwords in the JCA PKCS12 key store has been improved. - The "org.bouncycastle.drbg.effective_256bits_entropy" property has been added for platforms where the entropy source is not producing 1 full bit of entropy per bit and additional bits are required (default value 282). - OpenPGPKeyGenerator now allows for the use of empty UserIDs (version 4 compatibility). - The HQC KEM has been updated with the latest draft updates. * Additional Notes: - The legacy post-quantum package has now been removed. - Update to 1.81: * Defects Fixed: - A potention NullPointerException in the KEM KDF KemUtil class has been removed. - Overlapping input/output buffers in doFinal could result in data corruption. - Fixed Grain-128AEAD decryption incorrectly handle MAC verification. - Add configurable header validation to prevent malicious header injection in PGP cleartext signed messages; Fix signature packet encoding issues in PGPSignature.join() and embedded signatures while phasing out legacy format. - Fixed ParallelHash initialization stall when using block size B=0. - The PRF from the PBKDF2 function was been lost when PBMAC1 was initialized from protectionAlgorithm. This has been fixed. - The lowlevel DigestFactory was cloning MD5 when being asked to clone SHA1. * Additional Features and Functionality: - XWing implementation updated to draft-connolly-cfrg-xwing-kem/07/ - Further support has been added for generation and use of PGP V6 keys - Additional validation has been added for armored headers in Cleartext Signed Messages. - The PQC signature algorithm proposal Mayo has been added to the low-level API and the BCPQC provider. - The PQC signature algorithm proposal Snova has been added to the low-level API and the BCPQC provider. - Support for ChaCha20-Poly1305 has been added to the CMS/SMIME APIs. - The Falcon implementation has been updated to the latest draft. - Support has been added for generating keys which encode as seed-only and expanded-key-only for ML-KEM and ML-DSA private keys. - Private key encoding of ML-DSA and ML-KEM private keys now follows the latest IETF draft. - The Ascon family of algorithms has been updated to the initial draft of SP 800-232. Some additional optimisation work has been done. - Support for ML-DSA's external-mu calculation and signing has been added to the BC provider. - CMS now supports ML-DSA for SignedData generation. - Introduce high-level OpenPGP API for message creation/consumption and certificate evaluation. - Added JDK21 KEM API implementation for HQC algorithm. - BCJSSE: Strip trailing dot from hostname for SNI, endpointID checks. - BCJSSE: Draft support for ML-KEM updated (draft-connolly-tls-mlkem-key-agreement-05). - BCJSSE: Draft support for hybrid ECDHE-MLKEM (draft-ietf-tls-ecdhe-mlkem-00). - BCJSSE: Optionally prefer TLS 1.3 server's supported_groups order (BCSSLParameters.useNamedGroupsOrder). Changes in byte-buddy: - Fix build with maven 4 - Update to v1.17.6 * Changes of v1.17.6 + Add convenience wrapper for ResettableClassFileTransformer that implicitly delegates to correct transformer method. + Add filter for deduplicate fields and methods in class file. + Add missing static requirement of Spotbugs annotations to module descriptors. + Add LazinessMode for TypePool and add convenience support to AgentBuilder. + Fix source jars for multi-version release to contain duplicated source. - Update to v1.17.5 * Changes of v1.17.5 + Update ASM to version 9.8 to support Java 25 using ASM reader and writer. + Include AnnotationRemoval visitor for removing or replacing annotations. - Update to v1.17.4 * Changes of v1.17.4 + Add SafeVarargs plugin. + Fix OSGi declaration for byte-buddy-agent. - Update to v1.17.3 * Changes of v1.17.3 + Fix bug in ASM to Class File API bridge handling tableswitch instructions. + Add plugin for adding SafeVarargs annotations. + Further generify MemberSubstitution API. - Update to v1.17.2 * Changes of v1.17.2 + Update Class File API integration to include support for several omitted byte codes. + Adjust attach API emulation for OpenJ9 to not create subfolder if temporary folder is set explicitly. - Update to v1.17.1 * Changes of v1.17.1 + Fix bug in MemberSubstitution were argument indices were resolved by one digit off. + Update Class File API integration to avoid that parameter annotations are lost. Changes in byaccj: - add -std=gnu11 to CFLAGS to fix gcc15 compile time error, and to still allow build on SLE / Leap 15 Changes in apache-commons-logging: - Upgrade to 1.3.5 * Fixed Bugs + Javadoc is missing its Overview page. + Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80). * Changes + Bump org.apache.commons:commons-parent from 72 to 81 #285, #287, #295, #298, #303, #310, #339. + Bump org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0 #288 [test]. + Bump log4j2.version from 2.23.1 to 2.24.3 #292, #299, #319, #328. * Removed: + Remove "cobertura" plugin use JaCoco, Cobertura is unmaintained. + LOGGING-193: Update Log4j 2 OSGi imports #268. + Fix PMD UnnecessaryFullyQualifiedName in SimpleLog. + Fix NullPointerException in SimpleLog#write(Object) on null Changes in apache-commons-cli: - Update to 1.10.0 * New Features + CLI-339: Help formatter extension in the new package #314. + CommandLine.Builder implements Supplier<CommandLine>. + DefaultParser.Builder implements Supplier<DefaultParser>. + CLI-340: Add CommandLine.getParsedOptionValues() #334. + CLI-333: org.apache.commons.cli.Option.Builder implements Supplier<Option>. * Fixed Bugs + Deprecate CommandLine.Builder() in favor of CommandLine.builder(). + Deprecate DeprecatedAttributes.Builder() in favor of DeprecatedAttributes.builder(). + Refactor default parser test #294. + Port to JUnit 5. + Generics for Converter should use Exception not Throwable. + Pick up maven-antrun-plugin version from parent POM org.apache:apache. + Javadoc is missing its Overview page. + Get mockito version from parent pom (#351). + Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80). + Deprecate PatternOptionBuilder.PatternOptionBuilder(). + CLI-341: HelpFormatter infinite loop with 0 width input. + CLI-349: Fail faster with a more precise NullPointerException: Option.processValue() throws NullPointerException when passed null value with value separator configured. + CLI-344: Fail faster with a more precise NullPointerException: DefaultParser.parse() throws NullPointerException when options parameter is null. + CLI-347: Options.addOptionGroup(OptionGroup) does not remove required options from requiredOpts list. + org.apache.commons.cli.Option.Builder.get() should throw IllegalStateException instead of IllegalArgumentException. + org.apache.commons.cli.Option.processValue(String) should throw IllegalStateException instead of IllegalArgumentException. + org.apache.commons.cli.OptionBuilder.create() should throw IllegalStateException instead of IllegalArgumentException. * Updates + Bump org.apache.commons:commons-parent from 72 to 85 #302, #304, #310, #315, #320, #327, #371. + [test] Bump commons-io:commons-io from 2.16.1 to 2.20.0 #309, #337. + [test] Bump org.apache.commons:commons-text from 1.12.0 to 1.14.0 #344. + Update site documentation to https://maven.apache.org/xsd/xdoc-2.0.xsd. + CLI-334: Fix Javadoc pathing #280. + CLI-335: Updated properties documentation #285. + CLI-336: Deprecation not always reported #284. Changes in apache-commons-codec: - Update to 1.18.0 * New features + Add Base32.Builder.setHexDecodeTable(boolean). + Add Base32.Builder.setHexEncodeTable(boolean). * Changes + Bump org.apache.commons:commons-parent from 78 to 79. - Includes changes from 1.17.2 * Fixed Bugs + Rewrite DaitchMokotoffSoundex.soundex(String) using String.join(). + CODEC-324: Use Resource.class to load resources, rather than its class loader #353. + Deprecate CharSequenceUtils.CharSequenceUtils(). + Deprecate Sha2Crypt.Sha2Crypt(). * Changes + Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0 #296, #305, #313. + Bump org.apache.commons:commons-parent from 71 to 78 #310, #312, #319, #323, #326, #333. + [test] Bump commons-io:commons-io from 2.16.1 to 2.18.0 #318, #341. + Bump org.codehaus.mojo:taglist-maven-plugin from 3.1.0 to 3.2.1 #332. Changes in apache-commons-daemon: - Upgrade to 1.4.1 * Bug Fixes: + several issues around Java OS and header files location detection. + Correct several log messages where an incorrect placeholder led to truncation of the inserted values. * New Features + Add protection to avoid high CPU usage for applications running in JVM mode that do not wait for the stop method to be called before the start method returns. Fixes DAEMON-460. + The minimum Java version has been increased to Java 8 Changes in apache-commons-dbcp: - Do not provide the hibernate_jdbc_cache alternative Changes in apache-commons-beanutils: - Updated to 1.9.3 - Fixed Bugs: * BEANUTILS-433: Update dependency from JUnit 3.8.1 to 4.12. * BEANUTILS-469: Update commons-logging from 1.1.1 to 1.2. * BEANUTILS-490: Update Java requirement from Java 5 to 6. * BEANUTILS-492: IndexedPropertyDescriptor tests now pass on Java 8. - update to 1.8.3 and rename to apache- to follow the upstream Changes in auto: - Force annotation processing, since it is needed with Java 25 xmlunit-1.6-160000.3.1.noarch.rpm xmlunit-1.6-160000.3.1.src.rpm xmlunit-javadoc-1.6-160000.3.1.noarch.rpm modello-2.5.1-160000.1.1.noarch.rpm modello-2.5.1-160000.1.1.src.rpm modello-javadoc-2.5.1-160000.1.1.noarch.rpm modello-test-2.5.1-160000.1.1.noarch.rpm modello-maven-plugin-2.5.1-160000.1.1.noarch.rpm modello-maven-plugin-2.5.1-160000.1.1.src.rpm modello-maven-plugin-javadoc-2.5.1-160000.1.1.noarch.rpm junit5-5.10.2-160000.3.1.noarch.rpm junit5-5.10.2-160000.3.1.src.rpm junit5-bom-5.10.2-160000.3.1.noarch.rpm junit5-guide-5.10.2-160000.3.1.noarch.rpm junit5-javadoc-5.10.2-160000.3.1.noarch.rpm junit5-minimal-5.10.2-160000.3.1.noarch.rpm junit5-minimal-5.10.2-160000.3.1.src.rpm junit5-minimal-javadoc-5.10.2-160000.3.1.noarch.rpm jna-5.13.0-160000.3.1.aarch64.rpm jna-5.13.0-160000.3.1.src.rpm jna-contrib-5.13.0-160000.3.1.noarch.rpm jna-debuginfo-5.13.0-160000.3.1.aarch64.rpm jna-debugsource-5.13.0-160000.3.1.aarch64.rpm jna-javadoc-5.13.0-160000.3.1.noarch.rpm javapackages-filesystem-6.4.1-160000.1.1.aarch64.rpm javapackages-tools-6.4.1-160000.1.1.aarch64.rpm javapackages-tools-6.4.1-160000.1.1.src.rpm javapackages-ivy-6.4.1-160000.1.1.noarch.rpm javapackages-local-6.4.1-160000.1.1.noarch.rpm javapackages-tools-extras-6.4.1-160000.1.1.src.rpm python313-javapackages-6.4.1-160000.1.1.noarch.rpm xz-java-1.10-160000.3.1.noarch.rpm xz-java-1.10-160000.3.1.src.rpm xz-java-javadoc-1.10-160000.3.1.noarch.rpm sisu-0.9.0.M4-160000.1.1.src.rpm sisu-inject-0.9.0.M4-160000.1.1.noarch.rpm sisu-javadoc-0.9.0.M4-160000.1.1.noarch.rpm sisu-plexus-0.9.0.M4-160000.1.1.noarch.rpm sisu-mojos-0.9.0.M4-160000.1.1.noarch.rpm sisu-mojos-0.9.0.M4-160000.1.1.src.rpm sisu-mojos-javadoc-0.9.0.M4-160000.1.1.noarch.rpm sisu-extenders-0.9.0.M4-160000.1.1.src.rpm sisu-inject-extender-0.9.0.M4-160000.1.1.noarch.rpm sisu-plexus-extender-0.9.0.M4-160000.1.1.noarch.rpm jcl-over-slf4j-1.7.36-160000.3.1.noarch.rpm jul-to-slf4j-1.7.36-160000.3.1.noarch.rpm log4j-over-slf4j-1.7.36-160000.3.1.noarch.rpm slf4j-1.7.36-160000.3.1.noarch.rpm slf4j-1.7.36-160000.3.1.src.rpm slf4j-ext-1.7.36-160000.3.1.noarch.rpm slf4j-javadoc-1.7.36-160000.3.1.noarch.rpm slf4j-jcl-1.7.36-160000.3.1.noarch.rpm slf4j-jdk14-1.7.36-160000.3.1.noarch.rpm slf4j-manual-1.7.36-160000.3.1.noarch.rpm slf4j-reload4j-1.7.36-160000.3.1.noarch.rpm slf4j-sources-1.7.36-160000.3.1.noarch.rpm jline3-3.30.6-160000.1.1.aarch64.rpm jline3-3.30.6-160000.1.1.src.rpm jline3-builtins-3.30.6-160000.1.1.noarch.rpm jline3-console-3.30.6-160000.1.1.noarch.rpm jline3-console-ui-3.30.6-160000.1.1.noarch.rpm jline3-curses-3.30.6-160000.1.1.noarch.rpm jline3-debugsource-3.30.6-160000.1.1.aarch64.rpm jline3-jansi-3.30.6-160000.1.1.aarch64.rpm jline3-jansi-core-3.30.6-160000.1.1.noarch.rpm jline3-javadoc-3.30.6-160000.1.1.noarch.rpm jline3-native-3.30.6-160000.1.1.aarch64.rpm jline3-native-debuginfo-3.30.6-160000.1.1.aarch64.rpm jline3-reader-3.30.6-160000.1.1.noarch.rpm jline3-remote-telnet-3.30.6-160000.1.1.noarch.rpm jline3-style-3.30.6-160000.1.1.noarch.rpm jline3-terminal-3.30.6-160000.1.1.noarch.rpm jline3-terminal-jansi-3.30.6-160000.1.1.noarch.rpm jline3-terminal-jna-3.30.6-160000.1.1.noarch.rpm jline3-terminal-jni-3.30.6-160000.1.1.noarch.rpm jspecify-1.0.0-160000.1.1.noarch.rpm jspecify-1.0.0-160000.1.1.src.rpm jspecify-javadoc-1.0.0-160000.1.1.noarch.rpm j2objc-annotations-3.0.0-160000.1.1.noarch.rpm j2objc-annotations-3.0.0-160000.1.1.src.rpm j2objc-annotations-javadoc-3.0.0-160000.1.1.noarch.rpm jackson-databind-2.17.3-160000.3.1.noarch.rpm jackson-databind-2.17.3-160000.3.1.src.rpm jackson-databind-javadoc-2.17.3-160000.3.1.noarch.rpm icu4j-73.1-160000.4.1.noarch.rpm icu4j-73.1-160000.4.1.src.rpm icu4j-charset-73.1-160000.4.1.noarch.rpm icu4j-javadoc-73.1-160000.4.1.noarch.rpm icu4j-localespi-73.1-160000.4.1.noarch.rpm guava-33.4.8-160000.1.1.noarch.rpm guava-33.4.8-160000.1.1.src.rpm guava-javadoc-33.4.8-160000.1.1.noarch.rpm guava-testlib-33.4.8-160000.1.1.noarch.rpm google-guice-6.0.0-160000.4.1.noarch.rpm google-guice-6.0.0-160000.4.1.src.rpm google-guice-javadoc-6.0.0-160000.4.1.noarch.rpm guice-assistedinject-6.0.0-160000.4.1.noarch.rpm guice-bom-6.0.0-160000.4.1.noarch.rpm guice-extensions-6.0.0-160000.4.1.noarch.rpm guice-grapher-6.0.0-160000.4.1.noarch.rpm guice-jmx-6.0.0-160000.4.1.noarch.rpm guice-jndi-6.0.0-160000.4.1.noarch.rpm guice-parent-6.0.0-160000.4.1.noarch.rpm guice-servlet-6.0.0-160000.4.1.noarch.rpm guice-throwingproviders-6.0.0-160000.4.1.noarch.rpm google-gson-2.8.9-160000.3.1.noarch.rpm google-gson-2.8.9-160000.3.1.src.rpm google-gson-javadoc-2.8.9-160000.3.1.noarch.rpm geronimo-annotation-1_0-api-1.2-160000.3.1.noarch.rpm geronimo-j2ee-connector-1_5-api-1.2-160000.3.1.noarch.rpm geronimo-jaf-1_0_2-api-1.2-160000.3.1.noarch.rpm geronimo-jaf-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-jaxrpc-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-jms-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-jpa-3_0-api-1.2-160000.3.1.noarch.rpm geronimo-jta-1_0_1B-api-1.2-160000.3.1.noarch.rpm geronimo-jta-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-qname-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-saaj-1_1-api-1.2-160000.3.1.noarch.rpm geronimo-servlet-2_4-api-1.2-160000.3.1.noarch.rpm geronimo-servlet-2_5-api-1.2-160000.3.1.noarch.rpm geronimo-specs-1.2-160000.3.1.src.rpm exec-maven-plugin-3.5.1-160000.1.1.noarch.rpm exec-maven-plugin-3.5.1-160000.1.1.src.rpm exec-maven-plugin-javadoc-3.5.1-160000.1.1.noarch.rpm bouncycastle-1.82-160000.1.1.noarch.rpm bouncycastle-1.82-160000.1.1.src.rpm bouncycastle-javadoc-1.82-160000.1.1.noarch.rpm bouncycastle-jmail-1.82-160000.1.1.noarch.rpm bouncycastle-mail-1.82-160000.1.1.noarch.rpm bouncycastle-pg-1.82-160000.1.1.noarch.rpm bouncycastle-pkix-1.82-160000.1.1.noarch.rpm bouncycastle-tls-1.82-160000.1.1.noarch.rpm bouncycastle-util-1.82-160000.1.1.noarch.rpm byte-buddy-1.17.6-160000.1.1.noarch.rpm byte-buddy-1.17.6-160000.1.1.src.rpm byte-buddy-agent-1.17.6-160000.1.1.noarch.rpm byte-buddy-javadoc-1.17.6-160000.1.1.noarch.rpm byte-buddy-maven-plugin-1.17.6-160000.1.1.noarch.rpm byaccj-1.15-160000.3.1.aarch64.rpm byaccj-1.15-160000.3.1.src.rpm byaccj-debuginfo-1.15-160000.3.1.aarch64.rpm byaccj-debugsource-1.15-160000.3.1.aarch64.rpm apache-commons-logging-1.3.5-160000.1.1.noarch.rpm apache-commons-logging-1.3.5-160000.1.1.src.rpm apache-commons-cli-1.10.0-160000.1.1.noarch.rpm apache-commons-cli-1.10.0-160000.1.1.src.rpm apache-commons-cli-javadoc-1.10.0-160000.1.1.noarch.rpm apache-commons-codec-1.18.0-160000.1.1.noarch.rpm apache-commons-codec-1.18.0-160000.1.1.src.rpm apache-commons-codec-javadoc-1.18.0-160000.1.1.noarch.rpm apache-commons-daemon-1.4.1-160000.1.1.aarch64.rpm apache-commons-daemon-1.4.1-160000.1.1.src.rpm apache-commons-daemon-debugsource-1.4.1-160000.1.1.aarch64.rpm apache-commons-daemon-javadoc-1.4.1-160000.1.1.noarch.rpm apache-commons-daemon-jsvc-1.4.1-160000.1.1.aarch64.rpm apache-commons-daemon-jsvc-debuginfo-1.4.1-160000.1.1.aarch64.rpm apache-commons-dbcp-2.1.1-160000.3.1.noarch.rpm apache-commons-dbcp-2.1.1-160000.3.1.src.rpm apache-commons-dbcp-javadoc-2.1.1-160000.3.1.noarch.rpm apache-commons-beanutils-1.11.0-160000.3.1.noarch.rpm apache-commons-beanutils-1.11.0-160000.3.1.src.rpm apache-commons-beanutils-javadoc-1.11.0-160000.3.1.noarch.rpm ant-1.10.15-160000.3.1.noarch.rpm ant-1.10.15-160000.3.1.src.rpm ant-jmf-1.10.15-160000.3.1.noarch.rpm ant-scripts-1.10.15-160000.3.1.noarch.rpm ant-swing-1.10.15-160000.3.1.noarch.rpm ant-antlr-1.10.15-160000.3.1.noarch.rpm ant-antlr-1.10.15-160000.3.1.src.rpm ant-apache-bcel-1.10.15-160000.3.1.noarch.rpm ant-apache-bsf-1.10.15-160000.3.1.noarch.rpm ant-apache-log4j-1.10.15-160000.3.1.noarch.rpm ant-apache-oro-1.10.15-160000.3.1.noarch.rpm ant-apache-regexp-1.10.15-160000.3.1.noarch.rpm ant-apache-resolver-1.10.15-160000.3.1.noarch.rpm ant-apache-xalan2-1.10.15-160000.3.1.noarch.rpm ant-commons-logging-1.10.15-160000.3.1.noarch.rpm ant-commons-net-1.10.15-160000.3.1.noarch.rpm ant-imageio-1.10.15-160000.3.1.noarch.rpm ant-jakartamail-1.10.15-160000.3.1.noarch.rpm ant-javamail-1.10.15-160000.3.1.noarch.rpm ant-jdepend-1.10.15-160000.3.1.noarch.rpm ant-jsch-1.10.15-160000.3.1.noarch.rpm ant-manual-1.10.15-160000.3.1.noarch.rpm ant-testutil-1.10.15-160000.3.1.noarch.rpm ant-xz-1.10.15-160000.3.1.noarch.rpm ant-junit-1.10.15-160000.3.1.noarch.rpm ant-junit-1.10.15-160000.3.1.src.rpm ant-junit5-1.10.15-160000.3.1.noarch.rpm ant-junit5-1.10.15-160000.3.1.src.rpm auto-1.6.1-160000.3.1.noarch.rpm auto-1.6.1-160000.3.1.src.rpm auto-common-1.6.1-160000.3.1.noarch.rpm auto-javadoc-1.6.1-160000.3.1.noarch.rpm auto-service-1.6.1-160000.3.1.noarch.rpm auto-service-aggregator-1.6.1-160000.3.1.noarch.rpm auto-service-annotations-1.6.1-160000.3.1.noarch.rpm auto-value-1.6.1-160000.3.1.noarch.rpm auto-value-annotations-1.6.1-160000.3.1.noarch.rpm auto-value-parent-1.6.1-160000.3.1.noarch.rpm jna-5.13.0-160000.3.1.ppc64le.rpm jna-debuginfo-5.13.0-160000.3.1.ppc64le.rpm jna-debugsource-5.13.0-160000.3.1.ppc64le.rpm javapackages-filesystem-6.4.1-160000.1.1.ppc64le.rpm javapackages-tools-6.4.1-160000.1.1.ppc64le.rpm jline3-3.30.6-160000.1.1.ppc64le.rpm jline3-debugsource-3.30.6-160000.1.1.ppc64le.rpm jline3-jansi-3.30.6-160000.1.1.ppc64le.rpm jline3-native-3.30.6-160000.1.1.ppc64le.rpm jline3-native-debuginfo-3.30.6-160000.1.1.ppc64le.rpm byaccj-1.15-160000.3.1.ppc64le.rpm byaccj-debuginfo-1.15-160000.3.1.ppc64le.rpm byaccj-debugsource-1.15-160000.3.1.ppc64le.rpm apache-commons-daemon-1.4.1-160000.1.1.ppc64le.rpm apache-commons-daemon-debugsource-1.4.1-160000.1.1.ppc64le.rpm apache-commons-daemon-jsvc-1.4.1-160000.1.1.ppc64le.rpm apache-commons-daemon-jsvc-debuginfo-1.4.1-160000.1.1.ppc64le.rpm jna-5.13.0-160000.3.1.s390x.rpm jna-debuginfo-5.13.0-160000.3.1.s390x.rpm jna-debugsource-5.13.0-160000.3.1.s390x.rpm javapackages-filesystem-6.4.1-160000.1.1.s390x.rpm javapackages-tools-6.4.1-160000.1.1.s390x.rpm jline3-3.30.6-160000.1.1.s390x.rpm jline3-debugsource-3.30.6-160000.1.1.s390x.rpm jline3-jansi-3.30.6-160000.1.1.s390x.rpm jline3-native-3.30.6-160000.1.1.s390x.rpm jline3-native-debuginfo-3.30.6-160000.1.1.s390x.rpm byaccj-1.15-160000.3.1.s390x.rpm byaccj-debuginfo-1.15-160000.3.1.s390x.rpm byaccj-debugsource-1.15-160000.3.1.s390x.rpm apache-commons-daemon-1.4.1-160000.1.1.s390x.rpm apache-commons-daemon-debugsource-1.4.1-160000.1.1.s390x.rpm apache-commons-daemon-jsvc-1.4.1-160000.1.1.s390x.rpm apache-commons-daemon-jsvc-debuginfo-1.4.1-160000.1.1.s390x.rpm jna-5.13.0-160000.3.1.x86_64.rpm jna-debuginfo-5.13.0-160000.3.1.x86_64.rpm jna-debugsource-5.13.0-160000.3.1.x86_64.rpm javapackages-filesystem-6.4.1-160000.1.1.x86_64.rpm javapackages-tools-6.4.1-160000.1.1.x86_64.rpm jline3-3.30.6-160000.1.1.x86_64.rpm jline3-debugsource-3.30.6-160000.1.1.x86_64.rpm jline3-jansi-3.30.6-160000.1.1.x86_64.rpm jline3-native-3.30.6-160000.1.1.x86_64.rpm jline3-native-debuginfo-3.30.6-160000.1.1.x86_64.rpm byaccj-1.15-160000.3.1.x86_64.rpm byaccj-debuginfo-1.15-160000.3.1.x86_64.rpm byaccj-debugsource-1.15-160000.3.1.x86_64.rpm apache-commons-daemon-1.4.1-160000.1.1.x86_64.rpm apache-commons-daemon-debugsource-1.4.1-160000.1.1.x86_64.rpm apache-commons-daemon-jsvc-1.4.1-160000.1.1.x86_64.rpm apache-commons-daemon-jsvc-debuginfo-1.4.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-202 Security update for cockpit-subscriptions moderate SUSE SLFO 1.2 This update for cockpit-subscriptions fixes the following issues: Update to version 12.1: - CVE-2025-64718: js-yaml: fixed prototype pollution in merge (bsc#1255425). cockpit-subscriptions-12.1-160000.1.1.noarch.rpm cockpit-subscriptions-12.1-160000.1.1.src.rpm openSUSE-Leap-16.0-203 Security update for ImageMagick important SUSE SLFO 1.2 This update for ImageMagick fixes the following issues: - CVE-2025-65955: Fixed use-after-free/double-free in ImageMagick (bsc#1254435) - CVE-2025-66628: Fixed Integer Overflow leading to out of bounds read in ImageMagick (32-bit only) (bsc#1254820) - CVE-2025-68618: Fixed that reading a malicious SVG file may result in a DoS attack (bsc#1255821) - CVE-2025-68950: Fixed check for circular references in mvg files may lead to stack overflow (bsc#1255822) - CVE-2025-69204: Fixed an integer overflow can lead to a DoS attack (bsc#1255823) ImageMagick-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-7.1.2.0-160000.5.1.src.rpm ImageMagick-config-7-SUSE-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-debugsource-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-devel-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-doc-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-extra-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.5.1.aarch64.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm libMagick++-devel-7.1.2.0-160000.5.1.aarch64.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.5.1.aarch64.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.5.1.aarch64.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm perl-PerlMagick-7.1.2.0-160000.5.1.aarch64.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.5.1.aarch64.rpm ImageMagick-config-7-upstream-open-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-config-7-upstream-limited-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-config-7-upstream-secure-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-config-7-upstream-websafe-7.1.2.0-160000.5.1.noarch.rpm ImageMagick-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-debugsource-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-devel-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-extra-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.5.1.ppc64le.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm libMagick++-devel-7.1.2.0-160000.5.1.ppc64le.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.5.1.ppc64le.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.5.1.ppc64le.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm perl-PerlMagick-7.1.2.0-160000.5.1.ppc64le.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.5.1.ppc64le.rpm ImageMagick-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-debuginfo-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-debugsource-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-devel-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-extra-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.5.1.s390x.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.5.1.s390x.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.5.1.s390x.rpm libMagick++-devel-7.1.2.0-160000.5.1.s390x.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.5.1.s390x.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.s390x.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.5.1.s390x.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.s390x.rpm perl-PerlMagick-7.1.2.0-160000.5.1.s390x.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.5.1.s390x.rpm ImageMagick-7.1.2.0-160000.5.1.x86_64.rpm ImageMagick-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm ImageMagick-debugsource-7.1.2.0-160000.5.1.x86_64.rpm ImageMagick-devel-7.1.2.0-160000.5.1.x86_64.rpm ImageMagick-extra-7.1.2.0-160000.5.1.x86_64.rpm ImageMagick-extra-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm libMagick++-7_Q16HDRI5-7.1.2.0-160000.5.1.x86_64.rpm libMagick++-7_Q16HDRI5-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm libMagick++-devel-7.1.2.0-160000.5.1.x86_64.rpm libMagickCore-7_Q16HDRI10-7.1.2.0-160000.5.1.x86_64.rpm libMagickCore-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm libMagickWand-7_Q16HDRI10-7.1.2.0-160000.5.1.x86_64.rpm libMagickWand-7_Q16HDRI10-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm perl-PerlMagick-7.1.2.0-160000.5.1.x86_64.rpm perl-PerlMagick-debuginfo-7.1.2.0-160000.5.1.x86_64.rpm openSUSE-Leap-16.0-204 Security update for python-FontTools moderate SUSE SLFO 1.2 This update for python-FontTools fixes the following issues: - CVE-2025-66034: Fixed arbitrary file write vulnerability that could lead to remote code execution (bsc#1254366). python-FontTools-4.53.1-160000.3.1.src.rpm python313-FontTools-4.53.1-160000.3.1.noarch.rpm openSUSE-Leap-16.0-205 Security update for the Linux Kernel (Live Patch 1 for SUSE Linux Enterprise 16) important SUSE SLFO 1.2 This update for the SUSE Linux Enterprise kernel 6.12.0-160000.6.1 fixes various security issues The following security issues were fixed: - CVE-2025-39963: io_uring: fix incorrect io_kiocb reference in io_link_skb (bsc#1251982). - CVE-2025-40204: sctp: Fix MAC comparison to be constant-time (bsc#1253437). - CVE-2025-40212: nfsd: fix refcount leak in nfsd_set_fh_dentry() (bsc#1254196). The following non security issues was fixed: - Explicitly add module-common.c with vermagic and retpoline modinfo (bsc#1252270). kernel-livepatch-6_12_0-160000_6-default-3-160000.1.1.ppc64le.rpm kernel-livepatch-6_12_0-160000_6-default-debuginfo-3-160000.1.1.ppc64le.rpm kernel-livepatch-SLE16_Update_1-3-160000.1.1.src.rpm kernel-livepatch-SLE16_Update_1-debugsource-3-160000.1.1.ppc64le.rpm kernel-livepatch-6_12_0-160000_6-default-3-160000.1.1.s390x.rpm kernel-livepatch-6_12_0-160000_6-default-debuginfo-3-160000.1.1.s390x.rpm kernel-livepatch-SLE16_Update_1-debugsource-3-160000.1.1.s390x.rpm kernel-livepatch-6_12_0-160000_6-default-3-160000.1.1.x86_64.rpm kernel-livepatch-6_12_0-160000_6-default-debuginfo-3-160000.1.1.x86_64.rpm kernel-livepatch-SLE16_Update_1-debugsource-3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-206 Recommended update for grub2 important SUSE SLFO 1.2 This update for grub2 fixes the following issues: - Optimize PBKDF2 to reduce the decryption time (bsc#1248516) * lib/crypto: Introduce new HMAC functions to reuse buffers * lib/pbkdf2: Optimize PBKDF2 by reusing HMAC handle * kern/misc: Implement faster grub_memcpy() for aligned buffers grub2-2.12-160000.4.1.aarch64.rpm grub2-2.12-160000.4.1.src.rpm grub2-arm64-efi-2.12-160000.4.1.noarch.rpm grub2-arm64-efi-bls-2.12-160000.4.1.noarch.rpm grub2-arm64-efi-debug-2.12-160000.4.1.noarch.rpm grub2-arm64-efi-extras-2.12-160000.4.1.noarch.rpm grub2-branding-upstream-2.12-160000.4.1.noarch.rpm grub2-common-2.12-160000.4.1.aarch64.rpm grub2-common-debuginfo-2.12-160000.4.1.aarch64.rpm grub2-debugsource-2.12-160000.4.1.aarch64.rpm grub2-snapper-plugin-2.12-160000.4.1.noarch.rpm grub2-systemd-sleep-plugin-2.12-160000.4.1.noarch.rpm grub2-2.12-160000.4.1.ppc64le.rpm grub2-common-2.12-160000.4.1.ppc64le.rpm grub2-common-debuginfo-2.12-160000.4.1.ppc64le.rpm grub2-powerpc-ieee1275-2.12-160000.4.1.noarch.rpm grub2-powerpc-ieee1275-debug-2.12-160000.4.1.noarch.rpm grub2-powerpc-ieee1275-extras-2.12-160000.4.1.noarch.rpm grub2-2.12-160000.4.1.s390x.rpm grub2-common-2.12-160000.4.1.s390x.rpm grub2-common-debuginfo-2.12-160000.4.1.s390x.rpm grub2-debugsource-2.12-160000.4.1.s390x.rpm grub2-s390x-emu-2.12-160000.4.1.s390x.rpm grub2-s390x-emu-debug-2.12-160000.4.1.s390x.rpm grub2-s390x-emu-extras-2.12-160000.4.1.noarch.rpm grub2-2.12-160000.4.1.x86_64.rpm grub2-common-2.12-160000.4.1.x86_64.rpm grub2-common-debuginfo-2.12-160000.4.1.x86_64.rpm grub2-debugsource-2.12-160000.4.1.x86_64.rpm grub2-i386-pc-2.12-160000.4.1.noarch.rpm grub2-i386-pc-debug-2.12-160000.4.1.noarch.rpm grub2-i386-pc-extras-2.12-160000.4.1.noarch.rpm grub2-x86_64-efi-2.12-160000.4.1.noarch.rpm grub2-x86_64-efi-bls-2.12-160000.4.1.noarch.rpm grub2-x86_64-efi-debug-2.12-160000.4.1.noarch.rpm grub2-x86_64-efi-extras-2.12-160000.4.1.noarch.rpm grub2-x86_64-xen-2.12-160000.4.1.noarch.rpm grub2-x86_64-xen-debug-2.12-160000.4.1.noarch.rpm grub2-x86_64-xen-extras-2.12-160000.4.1.noarch.rpm openSUSE-Leap-16.0-207 Security update for python-h2 moderate SUSE SLFO 1.2 This update for python-h2 fixes the following issues: - CVE-2025-57804: Fixed HTTP Request Smuggling due to illegal characters in headers (bsc#1248737) python-h2-4.2.0-160000.3.1.src.rpm python313-h2-4.2.0-160000.3.1.noarch.rpm openSUSE-Leap-16.0-208 Security update for xkbcomp low SUSE SLFO 1.2 This update for xkbcomp fixes the following issues: - CVE-2018-15863, CVE-2018-15861, CVE-2018-15859, CVE-2018-15853: Fixed multiple memory handling and correctness issues (bsc#1105832) xkbcomp-1.4.7-160000.3.1.aarch64.rpm xkbcomp-1.4.7-160000.3.1.src.rpm xkbcomp-debuginfo-1.4.7-160000.3.1.aarch64.rpm xkbcomp-debugsource-1.4.7-160000.3.1.aarch64.rpm xkbcomp-devel-1.4.7-160000.3.1.aarch64.rpm xkbcomp-1.4.7-160000.3.1.ppc64le.rpm xkbcomp-debuginfo-1.4.7-160000.3.1.ppc64le.rpm xkbcomp-debugsource-1.4.7-160000.3.1.ppc64le.rpm xkbcomp-devel-1.4.7-160000.3.1.ppc64le.rpm xkbcomp-1.4.7-160000.3.1.s390x.rpm xkbcomp-debuginfo-1.4.7-160000.3.1.s390x.rpm xkbcomp-debugsource-1.4.7-160000.3.1.s390x.rpm xkbcomp-devel-1.4.7-160000.3.1.s390x.rpm xkbcomp-1.4.7-160000.3.1.x86_64.rpm xkbcomp-debuginfo-1.4.7-160000.3.1.x86_64.rpm xkbcomp-debugsource-1.4.7-160000.3.1.x86_64.rpm xkbcomp-devel-1.4.7-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-209 Security update for ucode-amd important SUSE SLFO 1.2 This update for ucode-amd fixes the following issues: Changes in ucode-amd: - Update to version 20251203 (git commit a0f0e52138e5): * linux-firmware: Update amd-ucode copyright information * linux-firmware: Update AMD cpu microcode - Update to version 20251113 (git commit fb0dbcd30118): * linux-firmware: Update AMD cpu microcode - Update to version 20251031 (git commit 04b323bb64f9): * linux-firmware: Update AMD cpu microcode - Update to version 20251028 (git commit 4f72031fc195): * linux-firmware: Update AMD cpu microcode - Update to version 20251024 (git commit 9b899c779b8a): * amd-ucode: Fix minimum revisions in README - Update to version 20250730 (git commit 910c19074091): * linux-firmware: Update AMD cpu microcode ucode-amd-20251203-160000.1.1.noarch.rpm ucode-amd-20251203-160000.1.1.src.rpm openSUSE-Leap-16.0-21 Recommended update for ovmf important SUSE SLFO 1.2 This update for ovmf fixes the following issues: - Enable iSCSI boot support by default (bsc#1245454) * OvmfPkg: Add NETWORK_ISCSI_DEFAULT_ENABLE build flag * Add build flag NETWORK_ISCSI_DEFAULT_ENABLE for x64 OVMF to enable iSCSI boot support by default - Update firmware descriptors to remove tab whitespace (bsc#1247847) * Replace tab whitespace with spaces in 50-ovmf-x86_64-sev.json * Replace tab whitespace with spaces in 50-ovmf-x86_64-sev-snp.json - Update firmware descriptors for SEV-SNP and TDX (bsc#1247847) * Add 50-ovmf-x86_64-sev-snp.json to support the 'amd-sev-snp' feature. * Remove the sev-snp feature from 50-ovmf-x86_64-sev.json. * Update the device in 60-ovmf-x86_64-tdx.json from 'pflash' to 'memory'. ovmf-202502-160000.3.1.aarch64.rpm ovmf-202502-160000.3.1.src.rpm ovmf-tools-202502-160000.3.1.aarch64.rpm qemu-ovmf-ia32-202502-160000.3.1.noarch.rpm qemu-ovmf-x86_64-202502-160000.3.1.noarch.rpm qemu-uefi-aarch32-202502-160000.3.1.noarch.rpm qemu-uefi-aarch64-202502-160000.3.1.noarch.rpm qemu-uefi-riscv64-202502-160000.3.1.noarch.rpm ovmf-202502-160000.3.1.x86_64.rpm ovmf-debuginfo-202502-160000.3.1.x86_64.rpm ovmf-debugsource-202502-160000.3.1.x86_64.rpm ovmf-tools-202502-160000.3.1.x86_64.rpm qemu-ovmf-x86_64-debug-202502-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-210 Security update for python-python-multipart important SUSE SLFO 1.2 This update for python-python-multipart fixes the following issues: - CVE-2026-24486: Fixed non-default configuration options can lead to path traversal (bsc#1257301). python-python-multipart-0.0.20-160000.3.1.src.rpm python313-python-multipart-0.0.20-160000.3.1.noarch.rpm openSUSE-Leap-16.0-211 Security update for java-21-openjdk important SUSE SLFO 1.2 This update for java-21-openjdk fixes the following issues: Update to upstream tag jdk-21.0.10+7 (January 2026 CPU) Security fixes: - CVE-2026-21925: Fixed Oracle Java SE component RMI (bsc#1257034). - CVE-2026-21932: Fixed Oracle Java SE component AWT and JavaFX (bsc#1257036). - CVE-2026-21933: Fixed Oracle Java SE component Networking (bsc#1257037). - CVE-2026-21945: Fixed Oracle Java SE component Security (bsc#1257038). Other fixes: - Do not depend on update-desktop-files (jsc#PED-14507, jsc#PED-15217). java-21-openjdk-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-21.0.10.0-160000.1.1.src.rpm java-21-openjdk-debuginfo-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-demo-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-devel-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-devel-debuginfo-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-headless-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-headless-debuginfo-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-javadoc-21.0.10.0-160000.1.1.noarch.rpm java-21-openjdk-jmods-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-src-21.0.10.0-160000.1.1.aarch64.rpm java-21-openjdk-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-debuginfo-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-demo-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-devel-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-devel-debuginfo-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-headless-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-headless-debuginfo-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-jmods-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-src-21.0.10.0-160000.1.1.ppc64le.rpm java-21-openjdk-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-debuginfo-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-demo-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-devel-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-devel-debuginfo-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-headless-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-headless-debuginfo-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-jmods-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-src-21.0.10.0-160000.1.1.s390x.rpm java-21-openjdk-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-debuginfo-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-demo-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-devel-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-devel-debuginfo-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-headless-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-headless-debuginfo-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-jmods-21.0.10.0-160000.1.1.x86_64.rpm java-21-openjdk-src-21.0.10.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-212 Security update for python-urllib3 important SUSE SLFO 1.2 This update for python-urllib3 fixes the following issues: - CVE-2025-66471: Fixed excessive resource consumption via decompression of highly compressed data in Streaming API (bsc#1254867) - CVE-2025-66418: Fixed resource exhaustion via unbounded number of links in the decompression chain (bsc#1254866) python-urllib3-2.5.0-160000.4.1.src.rpm python313-urllib3-2.5.0-160000.4.1.noarch.rpm openSUSE-Leap-16.0-213 Recommended update for pipewire important SUSE SLFO 1.2 This update for pipewire fixes the following issues: Changes in pipewire: - Fix libcamera working by removing a systemd restriction (boo#1217690) gstreamer-plugin-pipewire-1.4.6-160000.3.1.aarch64.rpm gstreamer-plugin-pipewire-debuginfo-1.4.6-160000.3.1.aarch64.rpm libpipewire-0_3-0-1.4.6-160000.3.1.aarch64.rpm libpipewire-0_3-0-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-1.4.6-160000.3.1.aarch64.rpm pipewire-1.4.6-160000.3.1.src.rpm pipewire-alsa-1.4.6-160000.3.1.aarch64.rpm pipewire-alsa-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-debugsource-1.4.6-160000.3.1.aarch64.rpm pipewire-devel-1.4.6-160000.3.1.aarch64.rpm pipewire-doc-1.4.6-160000.3.1.aarch64.rpm pipewire-jack-1.4.6-160000.3.1.aarch64.rpm pipewire-lang-1.4.6-160000.3.1.noarch.rpm pipewire-libjack-0_3-1.4.6-160000.3.1.aarch64.rpm pipewire-libjack-0_3-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-libjack-0_3-devel-1.4.6-160000.3.1.aarch64.rpm pipewire-module-x11-0_3-1.4.6-160000.3.1.aarch64.rpm pipewire-module-x11-0_3-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-modules-0_3-1.4.6-160000.3.1.aarch64.rpm pipewire-modules-0_3-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-pulseaudio-1.4.6-160000.3.1.aarch64.rpm pipewire-pulseaudio-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-plugins-0_2-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-plugins-0_2-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-plugins-0_2-jack-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-plugins-0_2-jack-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-tools-1.4.6-160000.3.1.aarch64.rpm pipewire-spa-tools-debuginfo-1.4.6-160000.3.1.aarch64.rpm pipewire-tools-1.4.6-160000.3.1.aarch64.rpm pipewire-tools-debuginfo-1.4.6-160000.3.1.aarch64.rpm gstreamer-plugin-pipewire-1.4.6-160000.3.1.ppc64le.rpm gstreamer-plugin-pipewire-debuginfo-1.4.6-160000.3.1.ppc64le.rpm libpipewire-0_3-0-1.4.6-160000.3.1.ppc64le.rpm libpipewire-0_3-0-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-1.4.6-160000.3.1.ppc64le.rpm pipewire-alsa-1.4.6-160000.3.1.ppc64le.rpm pipewire-alsa-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-debugsource-1.4.6-160000.3.1.ppc64le.rpm pipewire-devel-1.4.6-160000.3.1.ppc64le.rpm pipewire-doc-1.4.6-160000.3.1.ppc64le.rpm pipewire-jack-1.4.6-160000.3.1.ppc64le.rpm pipewire-libjack-0_3-1.4.6-160000.3.1.ppc64le.rpm pipewire-libjack-0_3-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-libjack-0_3-devel-1.4.6-160000.3.1.ppc64le.rpm pipewire-module-x11-0_3-1.4.6-160000.3.1.ppc64le.rpm pipewire-module-x11-0_3-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-modules-0_3-1.4.6-160000.3.1.ppc64le.rpm pipewire-modules-0_3-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-pulseaudio-1.4.6-160000.3.1.ppc64le.rpm pipewire-pulseaudio-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-plugins-0_2-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-plugins-0_2-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-plugins-0_2-jack-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-plugins-0_2-jack-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-tools-1.4.6-160000.3.1.ppc64le.rpm pipewire-spa-tools-debuginfo-1.4.6-160000.3.1.ppc64le.rpm pipewire-tools-1.4.6-160000.3.1.ppc64le.rpm pipewire-tools-debuginfo-1.4.6-160000.3.1.ppc64le.rpm gstreamer-plugin-pipewire-1.4.6-160000.3.1.s390x.rpm gstreamer-plugin-pipewire-debuginfo-1.4.6-160000.3.1.s390x.rpm libpipewire-0_3-0-1.4.6-160000.3.1.s390x.rpm libpipewire-0_3-0-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-1.4.6-160000.3.1.s390x.rpm pipewire-alsa-1.4.6-160000.3.1.s390x.rpm pipewire-alsa-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-debugsource-1.4.6-160000.3.1.s390x.rpm pipewire-devel-1.4.6-160000.3.1.s390x.rpm pipewire-doc-1.4.6-160000.3.1.s390x.rpm pipewire-jack-1.4.6-160000.3.1.s390x.rpm pipewire-libjack-0_3-1.4.6-160000.3.1.s390x.rpm pipewire-libjack-0_3-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-libjack-0_3-devel-1.4.6-160000.3.1.s390x.rpm pipewire-module-x11-0_3-1.4.6-160000.3.1.s390x.rpm pipewire-module-x11-0_3-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-modules-0_3-1.4.6-160000.3.1.s390x.rpm pipewire-modules-0_3-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-pulseaudio-1.4.6-160000.3.1.s390x.rpm pipewire-pulseaudio-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-spa-plugins-0_2-1.4.6-160000.3.1.s390x.rpm pipewire-spa-plugins-0_2-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-spa-plugins-0_2-jack-1.4.6-160000.3.1.s390x.rpm pipewire-spa-plugins-0_2-jack-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-spa-tools-1.4.6-160000.3.1.s390x.rpm pipewire-spa-tools-debuginfo-1.4.6-160000.3.1.s390x.rpm pipewire-tools-1.4.6-160000.3.1.s390x.rpm pipewire-tools-debuginfo-1.4.6-160000.3.1.s390x.rpm gstreamer-plugin-pipewire-1.4.6-160000.3.1.x86_64.rpm gstreamer-plugin-pipewire-debuginfo-1.4.6-160000.3.1.x86_64.rpm libpipewire-0_3-0-1.4.6-160000.3.1.x86_64.rpm libpipewire-0_3-0-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-1.4.6-160000.3.1.x86_64.rpm pipewire-alsa-1.4.6-160000.3.1.x86_64.rpm pipewire-alsa-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-debugsource-1.4.6-160000.3.1.x86_64.rpm pipewire-devel-1.4.6-160000.3.1.x86_64.rpm pipewire-doc-1.4.6-160000.3.1.x86_64.rpm pipewire-jack-1.4.6-160000.3.1.x86_64.rpm pipewire-libjack-0_3-1.4.6-160000.3.1.x86_64.rpm pipewire-libjack-0_3-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-libjack-0_3-devel-1.4.6-160000.3.1.x86_64.rpm pipewire-module-x11-0_3-1.4.6-160000.3.1.x86_64.rpm pipewire-module-x11-0_3-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-modules-0_3-1.4.6-160000.3.1.x86_64.rpm pipewire-modules-0_3-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-pulseaudio-1.4.6-160000.3.1.x86_64.rpm pipewire-pulseaudio-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-plugins-0_2-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-plugins-0_2-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-plugins-0_2-jack-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-plugins-0_2-jack-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-tools-1.4.6-160000.3.1.x86_64.rpm pipewire-spa-tools-debuginfo-1.4.6-160000.3.1.x86_64.rpm pipewire-tools-1.4.6-160000.3.1.x86_64.rpm pipewire-tools-debuginfo-1.4.6-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-214 Recommended update for cloud-init important SUSE SLFO 1.2 This update for cloud-init fixes the following issues: Changes in cloud-init: - Fix dependency replace -serial with -pyserial - Drop unneeded test dependency on httpretty, fixed long ago * https://github.com/canonical/cloud-init/pull/1720 - Update to version 25.1.3 (bsc#1245401 , CVE-2024-6174, bsc#1245403, CVE-2024-11584) cloud-init-25.1.3-160000.2.1.aarch64.rpm cloud-init-25.1.3-160000.2.1.src.rpm cloud-init-config-suse-25.1.3-160000.2.1.aarch64.rpm cloud-init-doc-25.1.3-160000.2.1.aarch64.rpm cloud-init-25.1.3-160000.2.1.ppc64le.rpm cloud-init-config-suse-25.1.3-160000.2.1.ppc64le.rpm cloud-init-doc-25.1.3-160000.2.1.ppc64le.rpm cloud-init-25.1.3-160000.2.1.s390x.rpm cloud-init-config-suse-25.1.3-160000.2.1.s390x.rpm cloud-init-doc-25.1.3-160000.2.1.s390x.rpm cloud-init-25.1.3-160000.2.1.x86_64.rpm cloud-init-config-suse-25.1.3-160000.2.1.x86_64.rpm cloud-init-doc-25.1.3-160000.2.1.x86_64.rpm openSUSE-Leap-16.0-215 Security update for postgresql16 important SUSE SLFO 1.2 This update for postgresql16 fixes the following issues: Security fixes: - CVE-2025-12817: Missing check for CREATE privileges on the schema in CREATE STATISTICS allowed table owners to create statistics in any schema, potentially leading to unexpected naming conflicts (bsc#1253332) - CVE-2025-12818: Several places in libpq were not sufficiently careful about computing the required size of a memory allocation. Sufficiently large inputs could cause integer overflow, resulting in an undersized buffer, which would then lead to writing past the end of the buffer (bsc#1253333) Other fixes: - Upgrade to 16.11 postgresql16-16.11-160000.1.1.aarch64.rpm postgresql16-16.11-160000.1.1.src.rpm postgresql16-contrib-16.11-160000.1.1.aarch64.rpm postgresql16-contrib-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-debugsource-16.11-160000.1.1.aarch64.rpm postgresql16-devel-16.11-160000.1.1.aarch64.rpm postgresql16-devel-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-docs-16.11-160000.1.1.noarch.rpm postgresql16-llvmjit-16.11-160000.1.1.aarch64.rpm postgresql16-llvmjit-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-llvmjit-devel-16.11-160000.1.1.aarch64.rpm postgresql16-plperl-16.11-160000.1.1.aarch64.rpm postgresql16-plperl-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-plpython-16.11-160000.1.1.aarch64.rpm postgresql16-plpython-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-pltcl-16.11-160000.1.1.aarch64.rpm postgresql16-pltcl-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-server-16.11-160000.1.1.aarch64.rpm postgresql16-server-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-server-devel-16.11-160000.1.1.aarch64.rpm postgresql16-server-devel-debuginfo-16.11-160000.1.1.aarch64.rpm postgresql16-test-16.11-160000.1.1.aarch64.rpm postgresql16-16.11-160000.1.1.ppc64le.rpm postgresql16-contrib-16.11-160000.1.1.ppc64le.rpm postgresql16-contrib-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-debugsource-16.11-160000.1.1.ppc64le.rpm postgresql16-devel-16.11-160000.1.1.ppc64le.rpm postgresql16-devel-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-llvmjit-16.11-160000.1.1.ppc64le.rpm postgresql16-llvmjit-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-llvmjit-devel-16.11-160000.1.1.ppc64le.rpm postgresql16-plperl-16.11-160000.1.1.ppc64le.rpm postgresql16-plperl-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-plpython-16.11-160000.1.1.ppc64le.rpm postgresql16-plpython-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-pltcl-16.11-160000.1.1.ppc64le.rpm postgresql16-pltcl-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-server-16.11-160000.1.1.ppc64le.rpm postgresql16-server-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-server-devel-16.11-160000.1.1.ppc64le.rpm postgresql16-server-devel-debuginfo-16.11-160000.1.1.ppc64le.rpm postgresql16-test-16.11-160000.1.1.ppc64le.rpm postgresql16-16.11-160000.1.1.s390x.rpm postgresql16-contrib-16.11-160000.1.1.s390x.rpm postgresql16-contrib-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-debugsource-16.11-160000.1.1.s390x.rpm postgresql16-devel-16.11-160000.1.1.s390x.rpm postgresql16-devel-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-llvmjit-16.11-160000.1.1.s390x.rpm postgresql16-llvmjit-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-llvmjit-devel-16.11-160000.1.1.s390x.rpm postgresql16-plperl-16.11-160000.1.1.s390x.rpm postgresql16-plperl-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-plpython-16.11-160000.1.1.s390x.rpm postgresql16-plpython-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-pltcl-16.11-160000.1.1.s390x.rpm postgresql16-pltcl-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-server-16.11-160000.1.1.s390x.rpm postgresql16-server-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-server-devel-16.11-160000.1.1.s390x.rpm postgresql16-server-devel-debuginfo-16.11-160000.1.1.s390x.rpm postgresql16-test-16.11-160000.1.1.s390x.rpm postgresql16-16.11-160000.1.1.x86_64.rpm postgresql16-contrib-16.11-160000.1.1.x86_64.rpm postgresql16-contrib-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-debugsource-16.11-160000.1.1.x86_64.rpm postgresql16-devel-16.11-160000.1.1.x86_64.rpm postgresql16-devel-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-llvmjit-16.11-160000.1.1.x86_64.rpm postgresql16-llvmjit-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-llvmjit-devel-16.11-160000.1.1.x86_64.rpm postgresql16-plperl-16.11-160000.1.1.x86_64.rpm postgresql16-plperl-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-plpython-16.11-160000.1.1.x86_64.rpm postgresql16-plpython-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-pltcl-16.11-160000.1.1.x86_64.rpm postgresql16-pltcl-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-server-16.11-160000.1.1.x86_64.rpm postgresql16-server-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-server-devel-16.11-160000.1.1.x86_64.rpm postgresql16-server-devel-debuginfo-16.11-160000.1.1.x86_64.rpm postgresql16-test-16.11-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-216 Security update for postgresql17 and postgresql18 important SUSE SLFO 1.2 This update for postgresql17 and postgresql18 fixes the following issues: Changes in postgresql17, postgresql18: Update to 17.7: * https://www.postgresql.org/about/news/p-3171/ * https://www.postgresql.org/docs/release/17.7/ * bsc#1253332, CVE-2025-12817: Missing check for CREATE privileges on the schema in CREATE STATISTICS allowed table owners to create statistics in any schema, potentially leading to unexpected naming conflicts. * bsc#1253333, CVE-2025-12818: Several places in libpq were not sufficiently careful about computing the required size of a memory allocation. Sufficiently large inputs could cause integer overflow, resulting in an undersized buffer, which would then lead to writing past the end of the buffer. Postgresql is shipped in version 18.1. pgvector was updated to 0.8.1 to support postgresql18. pgaudit was updated to support postgresql18. postgresql-18-160000.1.1.noarch.rpm postgresql-18-160000.1.1.src.rpm postgresql-contrib-18-160000.1.1.noarch.rpm postgresql-devel-18-160000.1.1.noarch.rpm postgresql-docs-18-160000.1.1.noarch.rpm postgresql-llvmjit-18-160000.1.1.noarch.rpm postgresql-llvmjit-devel-18-160000.1.1.noarch.rpm postgresql-plperl-18-160000.1.1.noarch.rpm postgresql-plpython-18-160000.1.1.noarch.rpm postgresql-pltcl-18-160000.1.1.noarch.rpm postgresql-server-18-160000.1.1.noarch.rpm postgresql-server-devel-18-160000.1.1.noarch.rpm postgresql-test-18-160000.1.1.noarch.rpm postgresql17-17.7-160000.1.1.aarch64.rpm postgresql17-17.7-160000.1.1.src.rpm postgresql17-contrib-17.7-160000.1.1.aarch64.rpm postgresql17-contrib-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-debugsource-17.7-160000.1.1.aarch64.rpm postgresql17-devel-17.7-160000.1.1.aarch64.rpm postgresql17-devel-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-docs-17.7-160000.1.1.noarch.rpm postgresql17-llvmjit-17.7-160000.1.1.aarch64.rpm postgresql17-llvmjit-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-llvmjit-devel-17.7-160000.1.1.aarch64.rpm postgresql17-plperl-17.7-160000.1.1.aarch64.rpm postgresql17-plperl-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-plpython-17.7-160000.1.1.aarch64.rpm postgresql17-plpython-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-pltcl-17.7-160000.1.1.aarch64.rpm postgresql17-pltcl-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-server-17.7-160000.1.1.aarch64.rpm postgresql17-server-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-server-devel-17.7-160000.1.1.aarch64.rpm postgresql17-server-devel-debuginfo-17.7-160000.1.1.aarch64.rpm postgresql17-test-17.7-160000.1.1.aarch64.rpm libecpg6-18.1-160000.1.1.aarch64.rpm libecpg6-debuginfo-18.1-160000.1.1.aarch64.rpm libpq5-18.1-160000.1.1.aarch64.rpm libpq5-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-18.1-160000.1.1.aarch64.rpm postgresql18-18.1-160000.1.1.src.rpm postgresql18-contrib-18.1-160000.1.1.aarch64.rpm postgresql18-contrib-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-debugsource-18.1-160000.1.1.aarch64.rpm postgresql18-devel-18.1-160000.1.1.aarch64.rpm postgresql18-devel-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-docs-18.1-160000.1.1.noarch.rpm postgresql18-llvmjit-18.1-160000.1.1.aarch64.rpm postgresql18-llvmjit-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-llvmjit-devel-18.1-160000.1.1.aarch64.rpm postgresql18-plperl-18.1-160000.1.1.aarch64.rpm postgresql18-plperl-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-plpython-18.1-160000.1.1.aarch64.rpm postgresql18-plpython-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-pltcl-18.1-160000.1.1.aarch64.rpm postgresql18-pltcl-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-server-18.1-160000.1.1.aarch64.rpm postgresql18-server-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-server-devel-18.1-160000.1.1.aarch64.rpm postgresql18-server-devel-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-test-18.1-160000.1.1.aarch64.rpm postgresql18-devel-mini-18.1-160000.1.1.aarch64.rpm postgresql18-devel-mini-debuginfo-18.1-160000.1.1.aarch64.rpm postgresql18-mini-18.1-160000.1.1.src.rpm postgresql18-mini-debugsource-18.1-160000.1.1.aarch64.rpm postgresql13-pgaudit-1.5.3-160000.3.1.aarch64.rpm postgresql13-pgaudit-1.5.3-160000.3.1.src.rpm postgresql13-pgaudit-debuginfo-1.5.3-160000.3.1.aarch64.rpm postgresql13-pgaudit-debugsource-1.5.3-160000.3.1.aarch64.rpm postgresql14-pgaudit-1.6.3-160000.3.1.aarch64.rpm postgresql14-pgaudit-1.6.3-160000.3.1.src.rpm postgresql14-pgaudit-debuginfo-1.6.3-160000.3.1.aarch64.rpm postgresql14-pgaudit-debugsource-1.6.3-160000.3.1.aarch64.rpm postgresql15-pgaudit-1.7.1-160000.3.1.aarch64.rpm postgresql15-pgaudit-1.7.1-160000.3.1.src.rpm postgresql15-pgaudit-debuginfo-1.7.1-160000.3.1.aarch64.rpm postgresql15-pgaudit-debugsource-1.7.1-160000.3.1.aarch64.rpm postgresql16-pgaudit-16.1-160000.3.1.aarch64.rpm postgresql16-pgaudit-16.1-160000.3.1.src.rpm postgresql16-pgaudit-debuginfo-16.1-160000.3.1.aarch64.rpm postgresql16-pgaudit-debugsource-16.1-160000.3.1.aarch64.rpm postgresql17-pgaudit-17.1-160000.3.1.aarch64.rpm postgresql17-pgaudit-17.1-160000.3.1.src.rpm postgresql17-pgaudit-debuginfo-17.1-160000.3.1.aarch64.rpm postgresql17-pgaudit-debugsource-17.1-160000.3.1.aarch64.rpm postgresql18-pgaudit-18.0-160000.3.1.aarch64.rpm postgresql18-pgaudit-18.0-160000.3.1.src.rpm postgresql18-pgaudit-debuginfo-18.0-160000.3.1.aarch64.rpm postgresql18-pgaudit-debugsource-18.0-160000.3.1.aarch64.rpm postgresql13-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql13-pgvector-0.8.1-160000.1.1.src.rpm postgresql13-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql13-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql14-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql14-pgvector-0.8.1-160000.1.1.src.rpm postgresql14-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql14-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql15-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql15-pgvector-0.8.1-160000.1.1.src.rpm postgresql15-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql15-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql16-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql16-pgvector-0.8.1-160000.1.1.src.rpm postgresql16-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql16-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql17-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql17-pgvector-0.8.1-160000.1.1.src.rpm postgresql17-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql17-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql18-pgvector-0.8.1-160000.1.1.aarch64.rpm postgresql18-pgvector-0.8.1-160000.1.1.src.rpm postgresql18-pgvector-debuginfo-0.8.1-160000.1.1.aarch64.rpm postgresql18-pgvector-debugsource-0.8.1-160000.1.1.aarch64.rpm postgresql17-17.7-160000.1.1.ppc64le.rpm postgresql17-contrib-17.7-160000.1.1.ppc64le.rpm postgresql17-contrib-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-debugsource-17.7-160000.1.1.ppc64le.rpm postgresql17-devel-17.7-160000.1.1.ppc64le.rpm postgresql17-devel-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-llvmjit-17.7-160000.1.1.ppc64le.rpm postgresql17-llvmjit-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-llvmjit-devel-17.7-160000.1.1.ppc64le.rpm postgresql17-plperl-17.7-160000.1.1.ppc64le.rpm postgresql17-plperl-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-plpython-17.7-160000.1.1.ppc64le.rpm postgresql17-plpython-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-pltcl-17.7-160000.1.1.ppc64le.rpm postgresql17-pltcl-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-server-17.7-160000.1.1.ppc64le.rpm postgresql17-server-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-server-devel-17.7-160000.1.1.ppc64le.rpm postgresql17-server-devel-debuginfo-17.7-160000.1.1.ppc64le.rpm postgresql17-test-17.7-160000.1.1.ppc64le.rpm libecpg6-18.1-160000.1.1.ppc64le.rpm libecpg6-debuginfo-18.1-160000.1.1.ppc64le.rpm libpq5-18.1-160000.1.1.ppc64le.rpm libpq5-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-18.1-160000.1.1.ppc64le.rpm postgresql18-contrib-18.1-160000.1.1.ppc64le.rpm postgresql18-contrib-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-debugsource-18.1-160000.1.1.ppc64le.rpm postgresql18-devel-18.1-160000.1.1.ppc64le.rpm postgresql18-devel-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-llvmjit-18.1-160000.1.1.ppc64le.rpm postgresql18-llvmjit-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-llvmjit-devel-18.1-160000.1.1.ppc64le.rpm postgresql18-plperl-18.1-160000.1.1.ppc64le.rpm postgresql18-plperl-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-plpython-18.1-160000.1.1.ppc64le.rpm postgresql18-plpython-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-pltcl-18.1-160000.1.1.ppc64le.rpm postgresql18-pltcl-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-server-18.1-160000.1.1.ppc64le.rpm postgresql18-server-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-server-devel-18.1-160000.1.1.ppc64le.rpm postgresql18-server-devel-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-test-18.1-160000.1.1.ppc64le.rpm postgresql18-devel-mini-18.1-160000.1.1.ppc64le.rpm postgresql18-devel-mini-debuginfo-18.1-160000.1.1.ppc64le.rpm postgresql18-mini-debugsource-18.1-160000.1.1.ppc64le.rpm postgresql13-pgaudit-1.5.3-160000.3.1.ppc64le.rpm postgresql13-pgaudit-debuginfo-1.5.3-160000.3.1.ppc64le.rpm postgresql13-pgaudit-debugsource-1.5.3-160000.3.1.ppc64le.rpm postgresql14-pgaudit-1.6.3-160000.3.1.ppc64le.rpm postgresql14-pgaudit-debuginfo-1.6.3-160000.3.1.ppc64le.rpm postgresql14-pgaudit-debugsource-1.6.3-160000.3.1.ppc64le.rpm postgresql15-pgaudit-1.7.1-160000.3.1.ppc64le.rpm postgresql15-pgaudit-debuginfo-1.7.1-160000.3.1.ppc64le.rpm postgresql15-pgaudit-debugsource-1.7.1-160000.3.1.ppc64le.rpm postgresql16-pgaudit-16.1-160000.3.1.ppc64le.rpm postgresql16-pgaudit-debuginfo-16.1-160000.3.1.ppc64le.rpm postgresql16-pgaudit-debugsource-16.1-160000.3.1.ppc64le.rpm postgresql17-pgaudit-17.1-160000.3.1.ppc64le.rpm postgresql17-pgaudit-debuginfo-17.1-160000.3.1.ppc64le.rpm postgresql17-pgaudit-debugsource-17.1-160000.3.1.ppc64le.rpm postgresql18-pgaudit-18.0-160000.3.1.ppc64le.rpm postgresql18-pgaudit-debuginfo-18.0-160000.3.1.ppc64le.rpm postgresql18-pgaudit-debugsource-18.0-160000.3.1.ppc64le.rpm postgresql13-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql13-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql13-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql14-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql14-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql14-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql15-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql15-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql15-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql16-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql16-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql16-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql17-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql17-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql17-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql18-pgvector-0.8.1-160000.1.1.ppc64le.rpm postgresql18-pgvector-debuginfo-0.8.1-160000.1.1.ppc64le.rpm postgresql18-pgvector-debugsource-0.8.1-160000.1.1.ppc64le.rpm postgresql17-17.7-160000.1.1.s390x.rpm postgresql17-contrib-17.7-160000.1.1.s390x.rpm postgresql17-contrib-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-debugsource-17.7-160000.1.1.s390x.rpm postgresql17-devel-17.7-160000.1.1.s390x.rpm postgresql17-devel-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-llvmjit-17.7-160000.1.1.s390x.rpm postgresql17-llvmjit-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-llvmjit-devel-17.7-160000.1.1.s390x.rpm postgresql17-plperl-17.7-160000.1.1.s390x.rpm postgresql17-plperl-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-plpython-17.7-160000.1.1.s390x.rpm postgresql17-plpython-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-pltcl-17.7-160000.1.1.s390x.rpm postgresql17-pltcl-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-server-17.7-160000.1.1.s390x.rpm postgresql17-server-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-server-devel-17.7-160000.1.1.s390x.rpm postgresql17-server-devel-debuginfo-17.7-160000.1.1.s390x.rpm postgresql17-test-17.7-160000.1.1.s390x.rpm libecpg6-18.1-160000.1.1.s390x.rpm libecpg6-debuginfo-18.1-160000.1.1.s390x.rpm libpq5-18.1-160000.1.1.s390x.rpm libpq5-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-18.1-160000.1.1.s390x.rpm postgresql18-contrib-18.1-160000.1.1.s390x.rpm postgresql18-contrib-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-debugsource-18.1-160000.1.1.s390x.rpm postgresql18-devel-18.1-160000.1.1.s390x.rpm postgresql18-devel-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-llvmjit-18.1-160000.1.1.s390x.rpm postgresql18-llvmjit-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-llvmjit-devel-18.1-160000.1.1.s390x.rpm postgresql18-plperl-18.1-160000.1.1.s390x.rpm postgresql18-plperl-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-plpython-18.1-160000.1.1.s390x.rpm postgresql18-plpython-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-pltcl-18.1-160000.1.1.s390x.rpm postgresql18-pltcl-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-server-18.1-160000.1.1.s390x.rpm postgresql18-server-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-server-devel-18.1-160000.1.1.s390x.rpm postgresql18-server-devel-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-test-18.1-160000.1.1.s390x.rpm postgresql18-devel-mini-18.1-160000.1.1.s390x.rpm postgresql18-devel-mini-debuginfo-18.1-160000.1.1.s390x.rpm postgresql18-mini-debugsource-18.1-160000.1.1.s390x.rpm postgresql13-pgaudit-1.5.3-160000.3.1.s390x.rpm postgresql13-pgaudit-debuginfo-1.5.3-160000.3.1.s390x.rpm postgresql13-pgaudit-debugsource-1.5.3-160000.3.1.s390x.rpm postgresql14-pgaudit-1.6.3-160000.3.1.s390x.rpm postgresql14-pgaudit-debuginfo-1.6.3-160000.3.1.s390x.rpm postgresql14-pgaudit-debugsource-1.6.3-160000.3.1.s390x.rpm postgresql15-pgaudit-1.7.1-160000.3.1.s390x.rpm postgresql15-pgaudit-debuginfo-1.7.1-160000.3.1.s390x.rpm postgresql15-pgaudit-debugsource-1.7.1-160000.3.1.s390x.rpm postgresql16-pgaudit-16.1-160000.3.1.s390x.rpm postgresql16-pgaudit-debuginfo-16.1-160000.3.1.s390x.rpm postgresql16-pgaudit-debugsource-16.1-160000.3.1.s390x.rpm postgresql17-pgaudit-17.1-160000.3.1.s390x.rpm postgresql17-pgaudit-debuginfo-17.1-160000.3.1.s390x.rpm postgresql17-pgaudit-debugsource-17.1-160000.3.1.s390x.rpm postgresql18-pgaudit-18.0-160000.3.1.s390x.rpm postgresql18-pgaudit-debuginfo-18.0-160000.3.1.s390x.rpm postgresql18-pgaudit-debugsource-18.0-160000.3.1.s390x.rpm postgresql13-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql13-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql13-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql14-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql14-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql14-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql15-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql15-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql15-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql16-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql16-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql16-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql17-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql17-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql17-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql18-pgvector-0.8.1-160000.1.1.s390x.rpm postgresql18-pgvector-debuginfo-0.8.1-160000.1.1.s390x.rpm postgresql18-pgvector-debugsource-0.8.1-160000.1.1.s390x.rpm postgresql17-17.7-160000.1.1.x86_64.rpm postgresql17-contrib-17.7-160000.1.1.x86_64.rpm postgresql17-contrib-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-debugsource-17.7-160000.1.1.x86_64.rpm postgresql17-devel-17.7-160000.1.1.x86_64.rpm postgresql17-devel-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-llvmjit-17.7-160000.1.1.x86_64.rpm postgresql17-llvmjit-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-llvmjit-devel-17.7-160000.1.1.x86_64.rpm postgresql17-plperl-17.7-160000.1.1.x86_64.rpm postgresql17-plperl-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-plpython-17.7-160000.1.1.x86_64.rpm postgresql17-plpython-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-pltcl-17.7-160000.1.1.x86_64.rpm postgresql17-pltcl-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-server-17.7-160000.1.1.x86_64.rpm postgresql17-server-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-server-devel-17.7-160000.1.1.x86_64.rpm postgresql17-server-devel-debuginfo-17.7-160000.1.1.x86_64.rpm postgresql17-test-17.7-160000.1.1.x86_64.rpm libecpg6-18.1-160000.1.1.x86_64.rpm libecpg6-debuginfo-18.1-160000.1.1.x86_64.rpm libpq5-18.1-160000.1.1.x86_64.rpm libpq5-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-18.1-160000.1.1.x86_64.rpm postgresql18-contrib-18.1-160000.1.1.x86_64.rpm postgresql18-contrib-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-debugsource-18.1-160000.1.1.x86_64.rpm postgresql18-devel-18.1-160000.1.1.x86_64.rpm postgresql18-devel-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-llvmjit-18.1-160000.1.1.x86_64.rpm postgresql18-llvmjit-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-llvmjit-devel-18.1-160000.1.1.x86_64.rpm postgresql18-plperl-18.1-160000.1.1.x86_64.rpm postgresql18-plperl-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-plpython-18.1-160000.1.1.x86_64.rpm postgresql18-plpython-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-pltcl-18.1-160000.1.1.x86_64.rpm postgresql18-pltcl-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-server-18.1-160000.1.1.x86_64.rpm postgresql18-server-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-server-devel-18.1-160000.1.1.x86_64.rpm postgresql18-server-devel-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-test-18.1-160000.1.1.x86_64.rpm postgresql18-devel-mini-18.1-160000.1.1.x86_64.rpm postgresql18-devel-mini-debuginfo-18.1-160000.1.1.x86_64.rpm postgresql18-mini-debugsource-18.1-160000.1.1.x86_64.rpm postgresql13-pgaudit-1.5.3-160000.3.1.x86_64.rpm postgresql13-pgaudit-debuginfo-1.5.3-160000.3.1.x86_64.rpm postgresql13-pgaudit-debugsource-1.5.3-160000.3.1.x86_64.rpm postgresql14-pgaudit-1.6.3-160000.3.1.x86_64.rpm postgresql14-pgaudit-debuginfo-1.6.3-160000.3.1.x86_64.rpm postgresql14-pgaudit-debugsource-1.6.3-160000.3.1.x86_64.rpm postgresql15-pgaudit-1.7.1-160000.3.1.x86_64.rpm postgresql15-pgaudit-debuginfo-1.7.1-160000.3.1.x86_64.rpm postgresql15-pgaudit-debugsource-1.7.1-160000.3.1.x86_64.rpm postgresql16-pgaudit-16.1-160000.3.1.x86_64.rpm postgresql16-pgaudit-debuginfo-16.1-160000.3.1.x86_64.rpm postgresql16-pgaudit-debugsource-16.1-160000.3.1.x86_64.rpm postgresql17-pgaudit-17.1-160000.3.1.x86_64.rpm postgresql17-pgaudit-debuginfo-17.1-160000.3.1.x86_64.rpm postgresql17-pgaudit-debugsource-17.1-160000.3.1.x86_64.rpm postgresql18-pgaudit-18.0-160000.3.1.x86_64.rpm postgresql18-pgaudit-debuginfo-18.0-160000.3.1.x86_64.rpm postgresql18-pgaudit-debugsource-18.0-160000.3.1.x86_64.rpm postgresql13-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql13-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql13-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm postgresql14-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql14-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql14-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm postgresql15-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql15-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql15-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm postgresql16-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql16-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql16-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm postgresql17-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql17-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql17-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm postgresql18-pgvector-0.8.1-160000.1.1.x86_64.rpm postgresql18-pgvector-debuginfo-0.8.1-160000.1.1.x86_64.rpm postgresql18-pgvector-debugsource-0.8.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-217 Security update for elemental-register, elemental-toolkit important SUSE SLFO 1.2 This update for elemental-register, elemental-toolkit fixes the following issues: elemental-register was updated to 1.8.1: Changes on top of v1.8.1: * Update headers to 2026 * Update questions to include SL Micro 6.2 Update to v1.8.1: * Install yip config files in before-install step * Bump github.com/rancher-sandbox/go-tpm and its dependencies This includes few CVE fixes: * bsc#1241826 (CVE-2025-22872) * bsc#1241857 (CVE-2025-22872) * bsc#1251511 (CVE-2025-47911) * bsc#1251679 (CVE-2025-58190) elemental-toolkit was updated to v2.3.2: * Bump golang.org/x/crypto library This includes few CVE fixes: * bsc#1241826 (CVE-2025-22872) * bsc#1241857 (CVE-2025-22872) * bsc#1251511 (CVE-2025-47911) * bsc#1251679 (CVE-2025-58190) * bsc#1253581 (CVE-2025-47913) * bsc#1253901 (CVE-2025-58181) * bsc#1254079 (CVE-2025-47914) elemental-register-1.8.1-160000.1.1.aarch64.rpm elemental-register-1.8.1-160000.1.1.src.rpm elemental-support-1.8.1-160000.1.1.aarch64.rpm elemental-toolkit-2.3.2-160000.1.1.aarch64.rpm elemental-toolkit-2.3.2-160000.1.1.src.rpm elemental-toolkit-2.3.2-160000.1.1.ppc64le.rpm elemental-toolkit-2.3.2-160000.1.1.s390x.rpm elemental-register-1.8.1-160000.1.1.x86_64.rpm elemental-support-1.8.1-160000.1.1.x86_64.rpm elemental-toolkit-2.3.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-218 Security update for glibc important SUSE SLFO 1.2 This update for glibc fixes the following issues: Security fixes: - CVE-2025-0395: Fixed buffer overflow in the assert() function (bsc#1236282). - CVE-2026-0861: Fixed inadequate size check in the memalign suite may result in an integer overflow (bsc#1256766). - CVE-2026-0915: Fixed uninitialized stack buffer used as DNS query name when net==0 in _nss_dns_getnetbyaddr_r (bsc#1256822). - CVE-2025-15281: Fixed uninitialized memory may cause the process abort (bsc#1257005). Other fixes: - NPTL: Optimize trylock for high cache contention workloads (bsc#1256436) glibc-2.40-160000.3.1.aarch64.rpm glibc-2.40-160000.3.1.src.rpm glibc-debuginfo-2.40-160000.3.1.aarch64.rpm glibc-debugsource-2.40-160000.3.1.aarch64.rpm glibc-devel-2.40-160000.3.1.aarch64.rpm glibc-devel-debuginfo-2.40-160000.3.1.aarch64.rpm glibc-devel-static-2.40-160000.3.1.aarch64.rpm glibc-extra-2.40-160000.3.1.aarch64.rpm glibc-extra-debuginfo-2.40-160000.3.1.aarch64.rpm glibc-gconv-modules-extra-2.40-160000.3.1.aarch64.rpm glibc-gconv-modules-extra-debuginfo-2.40-160000.3.1.aarch64.rpm glibc-html-2.40-160000.3.1.noarch.rpm glibc-i18ndata-2.40-160000.3.1.noarch.rpm glibc-info-2.40-160000.3.1.noarch.rpm glibc-lang-2.40-160000.3.1.noarch.rpm glibc-locale-2.40-160000.3.1.aarch64.rpm glibc-locale-base-2.40-160000.3.1.aarch64.rpm glibc-profile-2.40-160000.3.1.aarch64.rpm glibc-utils-2.40-160000.3.1.aarch64.rpm glibc-utils-debuginfo-2.40-160000.3.1.aarch64.rpm glibc-utils-src-2.40-160000.3.1.src.rpm glibc-utils-src-debugsource-2.40-160000.3.1.aarch64.rpm cross-ppc64le-glibc-devel-2.40-160000.3.1.noarch.rpm glibc-cross-ppc64le-src-2.40-160000.3.1.src.rpm cross-riscv64-glibc-devel-2.40-160000.3.1.noarch.rpm glibc-cross-riscv64-src-2.40-160000.3.1.src.rpm cross-s390x-glibc-devel-2.40-160000.3.1.noarch.rpm glibc-cross-s390x-src-2.40-160000.3.1.src.rpm glibc-2.40-160000.3.1.ppc64le.rpm glibc-debuginfo-2.40-160000.3.1.ppc64le.rpm glibc-debugsource-2.40-160000.3.1.ppc64le.rpm glibc-devel-2.40-160000.3.1.ppc64le.rpm glibc-devel-debuginfo-2.40-160000.3.1.ppc64le.rpm glibc-devel-static-2.40-160000.3.1.ppc64le.rpm glibc-extra-2.40-160000.3.1.ppc64le.rpm glibc-extra-debuginfo-2.40-160000.3.1.ppc64le.rpm glibc-gconv-modules-extra-2.40-160000.3.1.ppc64le.rpm glibc-gconv-modules-extra-debuginfo-2.40-160000.3.1.ppc64le.rpm glibc-locale-2.40-160000.3.1.ppc64le.rpm glibc-locale-base-2.40-160000.3.1.ppc64le.rpm glibc-profile-2.40-160000.3.1.ppc64le.rpm glibc-utils-2.40-160000.3.1.ppc64le.rpm glibc-utils-debuginfo-2.40-160000.3.1.ppc64le.rpm glibc-utils-src-debugsource-2.40-160000.3.1.ppc64le.rpm cross-aarch64-glibc-devel-2.40-160000.3.1.noarch.rpm glibc-cross-aarch64-src-2.40-160000.3.1.src.rpm glibc-2.40-160000.3.1.s390x.rpm glibc-debuginfo-2.40-160000.3.1.s390x.rpm glibc-debugsource-2.40-160000.3.1.s390x.rpm glibc-devel-2.40-160000.3.1.s390x.rpm glibc-devel-debuginfo-2.40-160000.3.1.s390x.rpm glibc-devel-static-2.40-160000.3.1.s390x.rpm glibc-extra-2.40-160000.3.1.s390x.rpm glibc-extra-debuginfo-2.40-160000.3.1.s390x.rpm glibc-gconv-modules-extra-2.40-160000.3.1.s390x.rpm glibc-gconv-modules-extra-debuginfo-2.40-160000.3.1.s390x.rpm glibc-locale-2.40-160000.3.1.s390x.rpm glibc-locale-base-2.40-160000.3.1.s390x.rpm glibc-profile-2.40-160000.3.1.s390x.rpm glibc-utils-2.40-160000.3.1.s390x.rpm glibc-utils-debuginfo-2.40-160000.3.1.s390x.rpm glibc-utils-src-debugsource-2.40-160000.3.1.s390x.rpm glibc-2.40-160000.3.1.x86_64.rpm glibc-debuginfo-2.40-160000.3.1.x86_64.rpm glibc-debugsource-2.40-160000.3.1.x86_64.rpm glibc-devel-2.40-160000.3.1.x86_64.rpm glibc-devel-debuginfo-2.40-160000.3.1.x86_64.rpm glibc-devel-static-2.40-160000.3.1.x86_64.rpm glibc-extra-2.40-160000.3.1.x86_64.rpm glibc-extra-debuginfo-2.40-160000.3.1.x86_64.rpm glibc-gconv-modules-extra-2.40-160000.3.1.x86_64.rpm glibc-gconv-modules-extra-debuginfo-2.40-160000.3.1.x86_64.rpm glibc-locale-2.40-160000.3.1.x86_64.rpm glibc-locale-base-2.40-160000.3.1.x86_64.rpm glibc-profile-2.40-160000.3.1.x86_64.rpm glibc-utils-2.40-160000.3.1.x86_64.rpm glibc-utils-debuginfo-2.40-160000.3.1.x86_64.rpm glibc-utils-src-debugsource-2.40-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-219 Security update for java-17-openjdk important SUSE SLFO 1.2 This update for java-17-openjdk fixes the following issues: Upgrade to upstream tag jdk-17.0.18+8 (January 2026 CPU) Security fixes: - CVE-2026-21925: Fixed Oracle Java SE component RMI (bsc#1257034). - CVE-2026-21932: Fixed Oracle Java SE component AWT and JavaFX (bsc#1257036). - CVE-2026-21933: Fixed Oracle Java SE component Networking (bsc#1257037). - CVE-2026-21945: Fixed Oracle Java SE component Security (bsc#1257038). Other fixes: - OpenJDK rendering blue borders when it should not, due to missing the fix for JDK-6304250 from upstream (bsc#1255446). - Do not depend on update-desktop-files (jsc#PED-14507, jsc#PED-15216). java-17-openjdk-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-17.0.18.0-160000.1.1.src.rpm java-17-openjdk-debuginfo-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-demo-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-devel-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-devel-debuginfo-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-headless-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-headless-debuginfo-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-javadoc-17.0.18.0-160000.1.1.noarch.rpm java-17-openjdk-jmods-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-src-17.0.18.0-160000.1.1.aarch64.rpm java-17-openjdk-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-debuginfo-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-demo-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-devel-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-devel-debuginfo-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-headless-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-headless-debuginfo-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-jmods-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-src-17.0.18.0-160000.1.1.ppc64le.rpm java-17-openjdk-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-debuginfo-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-demo-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-devel-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-devel-debuginfo-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-headless-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-headless-debuginfo-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-jmods-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-src-17.0.18.0-160000.1.1.s390x.rpm java-17-openjdk-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-debuginfo-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-demo-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-devel-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-devel-debuginfo-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-headless-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-headless-debuginfo-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-jmods-17.0.18.0-160000.1.1.x86_64.rpm java-17-openjdk-src-17.0.18.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-22 Security update for samba critical SUSE SLFO 1.2 This update for samba fixes the following issues: Update to 4.22.5: * CVE-2025-10230: Command injection via WINS server hook script (bsc#1251280). * CVE-2025-9640: uninitialized memory disclosure via vfs_streams_xattr (bsc#1251279). - Relax samba-gpupdate requirement for cepces, certmonger, and sscep to a recommends. They are only required if utilizing certificate auto enrollment (bsc#1249087). - Disable timeouts for smb.service so that possibly slow running ExecStartPre script 'update-samba-security-profile' doesn't cause service start to fail due to timeouts (bsc#1249181). - Ensure semanage is pulled in as a requirement when samba in installed when selinux security access mechanism that is used (bsc#1249180). - don't attempt to label paths that don't exist, also remove unecessary evaluation of semange & restorecon cmds (bsc#1249179). Update to 4.22.4: * netr_LogonSamLogonEx returns NR_STATUS_ACCESS_DENIED with SysvolReady=0 * getpwuid does not shift to new DC when current DC is down * Windows security hardening locks out schannel'ed netlogon dc calls like netr_DsRGetDCName- * Unresponsive second DC can cause idmapping failure when using idmap_ad- * kinit command is failing with Missing cache Error. * Figuring out the DC name from IP address fails and breaks fork_domain_child(). * vfs_streams_depot fstatat broken. * Delayed leader broadcast can block ctdb forever. * Apparently there is a conflict between shadow_copy2 module and virusfilter (action quarantine). * Fix handling of empty GPO link. * SMB ACL inheritance doesn't work for files created. - adjust gpgme build dependency for future-proofing ctdb-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ctdb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ctdb-pcp-pmda-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ctdb-pcp-pmda-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ldb-tools-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ldb-tools-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm libldb-devel-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm libldb2-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm libldb2-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm python3-ldb-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm python3-ldb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-4.22.5+git.431.dc5a539f124-160000.1.1.src.rpm samba-ad-dc-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ad-dc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ad-dc-libs-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ad-dc-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ceph-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ceph-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-client-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-client-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-client-libs-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-client-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-dcerpc-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-dcerpc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-debugsource-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-devel-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-doc-4.22.5+git.431.dc5a539f124-160000.1.1.noarch.rpm samba-dsdb-modules-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-dsdb-modules-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-gpupdate-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ldb-ldap-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-ldb-ldap-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-libs-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-libs-python3-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-libs-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-python3-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-test-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-test-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-tool-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-winbind-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-winbind-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-winbind-libs-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm samba-winbind-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.aarch64.rpm ctdb-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ctdb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ldb-tools-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ldb-tools-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm libldb-devel-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm libldb2-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm libldb2-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm python3-ldb-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm python3-ldb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ad-dc-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ad-dc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ad-dc-libs-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ad-dc-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-client-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-client-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-client-libs-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-client-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-dcerpc-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-dcerpc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-debugsource-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-devel-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-dsdb-modules-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-dsdb-modules-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-gpupdate-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ldb-ldap-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-ldb-ldap-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-libs-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-libs-python3-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-libs-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-python3-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-test-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-test-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-tool-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-winbind-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-winbind-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-winbind-libs-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm samba-winbind-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.ppc64le.rpm ctdb-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ctdb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ctdb-pcp-pmda-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ctdb-pcp-pmda-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ldb-tools-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ldb-tools-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm libldb-devel-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm libldb2-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm libldb2-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm python3-ldb-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm python3-ldb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ad-dc-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ad-dc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ad-dc-libs-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ad-dc-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-client-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-client-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-client-libs-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-client-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-dcerpc-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-dcerpc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-debugsource-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-devel-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-dsdb-modules-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-dsdb-modules-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-gpupdate-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ldb-ldap-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-ldb-ldap-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-libs-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-libs-python3-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-libs-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-python3-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-test-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-test-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-tool-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-winbind-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-winbind-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-winbind-libs-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm samba-winbind-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.s390x.rpm ctdb-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm ctdb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm ctdb-pcp-pmda-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm ctdb-pcp-pmda-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm ldb-tools-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm ldb-tools-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm libldb-devel-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm libldb2-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm libldb2-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm python3-ldb-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm python3-ldb-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ad-dc-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ad-dc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ad-dc-libs-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ad-dc-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ceph-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ceph-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-client-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-client-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-client-libs-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-client-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-dcerpc-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-dcerpc-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-debugsource-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-devel-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-dsdb-modules-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-dsdb-modules-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-gpupdate-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ldb-ldap-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-ldb-ldap-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-libs-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-libs-python3-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-libs-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-python3-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-python3-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-test-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-test-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-tool-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-winbind-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-winbind-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-winbind-libs-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm samba-winbind-libs-debuginfo-4.22.5+git.431.dc5a539f124-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-220 Recommended update for samba important SUSE SLFO 1.2 This update for samba fixes the following issues: - Fix mistake in README.SUSE /var/spool/samba to /var/samba/spool (bsc#1254665) - Update to 4.22.7: * Samba 4.22 breaks Time Machine; * Searching for numbers doesn't work with Spotlight; * mdssvc doesn't support $time.iso dates before 1970; * Fix winbind cache consistency; * vfs_recycle does not update mtime; * Assert failed: (dirfd != -1) || (smb_fname to base_name[0] == '/') in vfswrap_openat; * ctdb can crash with inconsistent cluster lock configuration; * samba-bgqd: rework man page; * samba-bgqd can't find [printers] share (bsc#1254586); * Winbind can hang forever in gssapi if there are network issues; * libldb requires linking libreplace on Linux; * Crash in ctdbd on failed updateip; ctdb-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ctdb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ctdb-pcp-pmda-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ctdb-pcp-pmda-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ldb-tools-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ldb-tools-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm libldb-devel-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm libldb2-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm libldb2-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm python3-ldb-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm python3-ldb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-4.22.7+git.460.b680c782b85-160000.1.1.src.rpm samba-ad-dc-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ad-dc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ad-dc-libs-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ad-dc-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ceph-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ceph-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-client-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-client-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-client-libs-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-client-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-dcerpc-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-dcerpc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-debugsource-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-devel-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-doc-4.22.7+git.460.b680c782b85-160000.1.1.noarch.rpm samba-dsdb-modules-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-dsdb-modules-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-gpupdate-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ldb-ldap-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-ldb-ldap-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-libs-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-libs-python3-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-libs-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-python3-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-test-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-test-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-tool-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-winbind-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-winbind-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-winbind-libs-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm samba-winbind-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.aarch64.rpm ctdb-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ctdb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ldb-tools-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ldb-tools-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm libldb-devel-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm libldb2-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm libldb2-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm python3-ldb-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm python3-ldb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ad-dc-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ad-dc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ad-dc-libs-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ad-dc-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-client-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-client-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-client-libs-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-client-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-dcerpc-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-dcerpc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-debugsource-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-devel-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-dsdb-modules-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-dsdb-modules-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-gpupdate-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ldb-ldap-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-ldb-ldap-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-libs-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-libs-python3-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-libs-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-python3-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-test-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-test-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-tool-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-winbind-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-winbind-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-winbind-libs-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm samba-winbind-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.ppc64le.rpm ctdb-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ctdb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ctdb-pcp-pmda-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ctdb-pcp-pmda-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ldb-tools-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ldb-tools-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm libldb-devel-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm libldb2-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm libldb2-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm python3-ldb-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm python3-ldb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ad-dc-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ad-dc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ad-dc-libs-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ad-dc-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-client-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-client-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-client-libs-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-client-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-dcerpc-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-dcerpc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-debugsource-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-devel-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-dsdb-modules-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-dsdb-modules-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-gpupdate-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ldb-ldap-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-ldb-ldap-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-libs-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-libs-python3-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-libs-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-python3-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-test-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-test-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-tool-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-winbind-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-winbind-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-winbind-libs-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm samba-winbind-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.s390x.rpm ctdb-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm ctdb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm ctdb-pcp-pmda-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm ctdb-pcp-pmda-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm ldb-tools-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm ldb-tools-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm libldb-devel-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm libldb2-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm libldb2-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm python3-ldb-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm python3-ldb-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ad-dc-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ad-dc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ad-dc-libs-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ad-dc-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ceph-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ceph-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-client-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-client-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-client-libs-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-client-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-dcerpc-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-dcerpc-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-debugsource-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-devel-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-dsdb-modules-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-dsdb-modules-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-gpupdate-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ldb-ldap-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-ldb-ldap-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-libs-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-libs-python3-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-libs-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-python3-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-python3-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-test-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-test-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-tool-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-winbind-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-winbind-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-winbind-libs-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm samba-winbind-libs-debuginfo-4.22.7+git.460.b680c782b85-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-221 Security update for gpg2 important SUSE SLFO 1.2 This update for gpg2 fixes the following issues: - CVE-2026-24882: stack-based buffer overflow in TPM2 PKDECRYPT for TPM-backed RSA and ECC keys (bsc#1257396). - CVE-2026-24883: denial of service due to long signature packet length causing parse_signature to return success with sig->data[] set to a NULL value (bsc#1257395). - gpg.fail/filename: GnuPG Accepts Path Separators and Path Traversals in Literal Data "Filename" Field (bsc#1256389). dirmngr-2.5.5-160000.4.1.aarch64.rpm dirmngr-debuginfo-2.5.5-160000.4.1.aarch64.rpm gpg2-2.5.5-160000.4.1.aarch64.rpm gpg2-2.5.5-160000.4.1.src.rpm gpg2-debuginfo-2.5.5-160000.4.1.aarch64.rpm gpg2-debugsource-2.5.5-160000.4.1.aarch64.rpm gpg2-lang-2.5.5-160000.4.1.noarch.rpm gpg2-tpm-2.5.5-160000.4.1.aarch64.rpm gpg2-tpm-debuginfo-2.5.5-160000.4.1.aarch64.rpm dirmngr-2.5.5-160000.4.1.ppc64le.rpm dirmngr-debuginfo-2.5.5-160000.4.1.ppc64le.rpm gpg2-2.5.5-160000.4.1.ppc64le.rpm gpg2-debuginfo-2.5.5-160000.4.1.ppc64le.rpm gpg2-debugsource-2.5.5-160000.4.1.ppc64le.rpm gpg2-tpm-2.5.5-160000.4.1.ppc64le.rpm gpg2-tpm-debuginfo-2.5.5-160000.4.1.ppc64le.rpm dirmngr-2.5.5-160000.4.1.s390x.rpm dirmngr-debuginfo-2.5.5-160000.4.1.s390x.rpm gpg2-2.5.5-160000.4.1.s390x.rpm gpg2-debuginfo-2.5.5-160000.4.1.s390x.rpm gpg2-debugsource-2.5.5-160000.4.1.s390x.rpm gpg2-tpm-2.5.5-160000.4.1.s390x.rpm gpg2-tpm-debuginfo-2.5.5-160000.4.1.s390x.rpm dirmngr-2.5.5-160000.4.1.x86_64.rpm dirmngr-debuginfo-2.5.5-160000.4.1.x86_64.rpm gpg2-2.5.5-160000.4.1.x86_64.rpm gpg2-debuginfo-2.5.5-160000.4.1.x86_64.rpm gpg2-debugsource-2.5.5-160000.4.1.x86_64.rpm gpg2-tpm-2.5.5-160000.4.1.x86_64.rpm gpg2-tpm-debuginfo-2.5.5-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-222 Security update for openvpn important SUSE SLFO 1.2 This update for openvpn fixes the following issues: - CVE-2025-13086: Fixed improper validation of source IP addresses in OpenVPN that could lead to DoS (bsc#1254486). openvpn-2.6.10-160000.3.1.aarch64.rpm openvpn-2.6.10-160000.3.1.src.rpm openvpn-auth-pam-plugin-2.6.10-160000.3.1.aarch64.rpm openvpn-auth-pam-plugin-debuginfo-2.6.10-160000.3.1.aarch64.rpm openvpn-debuginfo-2.6.10-160000.3.1.aarch64.rpm openvpn-debugsource-2.6.10-160000.3.1.aarch64.rpm openvpn-devel-2.6.10-160000.3.1.aarch64.rpm openvpn-down-root-plugin-2.6.10-160000.3.1.aarch64.rpm openvpn-down-root-plugin-debuginfo-2.6.10-160000.3.1.aarch64.rpm openvpn-2.6.10-160000.3.1.ppc64le.rpm openvpn-auth-pam-plugin-2.6.10-160000.3.1.ppc64le.rpm openvpn-auth-pam-plugin-debuginfo-2.6.10-160000.3.1.ppc64le.rpm openvpn-debuginfo-2.6.10-160000.3.1.ppc64le.rpm openvpn-debugsource-2.6.10-160000.3.1.ppc64le.rpm openvpn-devel-2.6.10-160000.3.1.ppc64le.rpm openvpn-down-root-plugin-2.6.10-160000.3.1.ppc64le.rpm openvpn-down-root-plugin-debuginfo-2.6.10-160000.3.1.ppc64le.rpm openvpn-2.6.10-160000.3.1.s390x.rpm openvpn-auth-pam-plugin-2.6.10-160000.3.1.s390x.rpm openvpn-auth-pam-plugin-debuginfo-2.6.10-160000.3.1.s390x.rpm openvpn-debuginfo-2.6.10-160000.3.1.s390x.rpm openvpn-debugsource-2.6.10-160000.3.1.s390x.rpm openvpn-devel-2.6.10-160000.3.1.s390x.rpm openvpn-down-root-plugin-2.6.10-160000.3.1.s390x.rpm openvpn-down-root-plugin-debuginfo-2.6.10-160000.3.1.s390x.rpm openvpn-2.6.10-160000.3.1.x86_64.rpm openvpn-auth-pam-plugin-2.6.10-160000.3.1.x86_64.rpm openvpn-auth-pam-plugin-debuginfo-2.6.10-160000.3.1.x86_64.rpm openvpn-debuginfo-2.6.10-160000.3.1.x86_64.rpm openvpn-debugsource-2.6.10-160000.3.1.x86_64.rpm openvpn-devel-2.6.10-160000.3.1.x86_64.rpm openvpn-down-root-plugin-2.6.10-160000.3.1.x86_64.rpm openvpn-down-root-plugin-debuginfo-2.6.10-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-223 Security update for jasper moderate SUSE SLFO 1.2 This update for jasper fixes the following issues: Update to 4.2.8: - CVE-2025-8837: Fixed a bug in the JPC decoder that could cause bad memory accesses if the debug level is set sufficiently high (bsc#1247901). - CVE-2025-8836: Added some missing range checking on several coding parameters in the JPC encoder (bsc#1247902). - CVE-2025-8835: Added a check for a missing color component in the jas_image_chclrspc function (bsc#1247904). jasper-4.2.8-160000.1.1.aarch64.rpm jasper-4.2.8-160000.1.1.src.rpm jasper-debuginfo-4.2.8-160000.1.1.aarch64.rpm jasper-debugsource-4.2.8-160000.1.1.aarch64.rpm libjasper-devel-4.2.8-160000.1.1.aarch64.rpm libjasper7-4.2.8-160000.1.1.aarch64.rpm libjasper7-debuginfo-4.2.8-160000.1.1.aarch64.rpm jasper-4.2.8-160000.1.1.ppc64le.rpm jasper-debuginfo-4.2.8-160000.1.1.ppc64le.rpm jasper-debugsource-4.2.8-160000.1.1.ppc64le.rpm libjasper-devel-4.2.8-160000.1.1.ppc64le.rpm libjasper7-4.2.8-160000.1.1.ppc64le.rpm libjasper7-debuginfo-4.2.8-160000.1.1.ppc64le.rpm jasper-4.2.8-160000.1.1.s390x.rpm jasper-debuginfo-4.2.8-160000.1.1.s390x.rpm jasper-debugsource-4.2.8-160000.1.1.s390x.rpm libjasper-devel-4.2.8-160000.1.1.s390x.rpm libjasper7-4.2.8-160000.1.1.s390x.rpm libjasper7-debuginfo-4.2.8-160000.1.1.s390x.rpm jasper-4.2.8-160000.1.1.x86_64.rpm jasper-debuginfo-4.2.8-160000.1.1.x86_64.rpm jasper-debugsource-4.2.8-160000.1.1.x86_64.rpm libjasper-devel-4.2.8-160000.1.1.x86_64.rpm libjasper7-4.2.8-160000.1.1.x86_64.rpm libjasper7-debuginfo-4.2.8-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-224 Security update for unbound moderate SUSE SLFO 1.2 This update for unbound fixes the following issues: Update to 1.24.1: - CVE-2025-11411: Fixed possible domain hijacking attack (bsc#1252525). libunbound8-1.24.1-160000.1.1.aarch64.rpm libunbound8-debuginfo-1.24.1-160000.1.1.aarch64.rpm python3-unbound-1.24.1-160000.1.1.aarch64.rpm python3-unbound-debuginfo-1.24.1-160000.1.1.aarch64.rpm unbound-1.24.1-160000.1.1.aarch64.rpm unbound-1.24.1-160000.1.1.src.rpm unbound-anchor-1.24.1-160000.1.1.aarch64.rpm unbound-anchor-debuginfo-1.24.1-160000.1.1.aarch64.rpm unbound-debuginfo-1.24.1-160000.1.1.aarch64.rpm unbound-debugsource-1.24.1-160000.1.1.aarch64.rpm unbound-devel-1.24.1-160000.1.1.aarch64.rpm unbound-munin-1.24.1-160000.1.1.noarch.rpm libunbound8-1.24.1-160000.1.1.ppc64le.rpm libunbound8-debuginfo-1.24.1-160000.1.1.ppc64le.rpm python3-unbound-1.24.1-160000.1.1.ppc64le.rpm python3-unbound-debuginfo-1.24.1-160000.1.1.ppc64le.rpm unbound-1.24.1-160000.1.1.ppc64le.rpm unbound-anchor-1.24.1-160000.1.1.ppc64le.rpm unbound-anchor-debuginfo-1.24.1-160000.1.1.ppc64le.rpm unbound-debuginfo-1.24.1-160000.1.1.ppc64le.rpm unbound-debugsource-1.24.1-160000.1.1.ppc64le.rpm unbound-devel-1.24.1-160000.1.1.ppc64le.rpm libunbound8-1.24.1-160000.1.1.s390x.rpm libunbound8-debuginfo-1.24.1-160000.1.1.s390x.rpm python3-unbound-1.24.1-160000.1.1.s390x.rpm python3-unbound-debuginfo-1.24.1-160000.1.1.s390x.rpm unbound-1.24.1-160000.1.1.s390x.rpm unbound-anchor-1.24.1-160000.1.1.s390x.rpm unbound-anchor-debuginfo-1.24.1-160000.1.1.s390x.rpm unbound-debuginfo-1.24.1-160000.1.1.s390x.rpm unbound-debugsource-1.24.1-160000.1.1.s390x.rpm unbound-devel-1.24.1-160000.1.1.s390x.rpm libunbound8-1.24.1-160000.1.1.x86_64.rpm libunbound8-debuginfo-1.24.1-160000.1.1.x86_64.rpm python3-unbound-1.24.1-160000.1.1.x86_64.rpm python3-unbound-debuginfo-1.24.1-160000.1.1.x86_64.rpm unbound-1.24.1-160000.1.1.x86_64.rpm unbound-anchor-1.24.1-160000.1.1.x86_64.rpm unbound-anchor-debuginfo-1.24.1-160000.1.1.x86_64.rpm unbound-debuginfo-1.24.1-160000.1.1.x86_64.rpm unbound-debugsource-1.24.1-160000.1.1.x86_64.rpm unbound-devel-1.24.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-225 Security update for alloy important SUSE SLFO 1.2 This update for alloy fixes the following issues: Update to 1.12.2: Security fixes: - CVE-2025-68156: github.com/expr-lang/expr/builtin: Fixed potential DoS via unbounded recursion (bsc#1255333): - CVE-2025-31133, CVE-2025-52565, CVE-2025-52881: github.com/opencontainers/runc: Fixed container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files (bsc#1255074) Other fixes: - Add missing configuration parameter deployment_name_from_replicaset to k8sattributes processor (5b90a9d) (@dehaansa) - database_observability: Fix schema_details collector to fetch column definitions with case sensitive table names (#4872) (560dff4) (@jharvey10, @fridgepoet) - deps: Update jose2go to 1.7.0 (#4858) (dfdd341) (@jharvey10) - deps: Update npm dependencies [backport] (#5201) (8e06c26) (@jharvey10) - Ensure the squid exporter wrapper properly brackets ipv6 addresses [backport] (#5205) (e329cc6) (@dehaansa) - Preserve meta labels in loki.source.podlogs (#5097) (ab4b21e) (@kalleep) - Prevent panic in import.git when update fails [backport] (#5204) (c82fbae) (@dehaansa, @jharvey10) - show correct fallback alloy version instead of v1.13.0 (#5110) (b72be99) (@dehaansa, @jharvey10) alloy-1.12.2-160000.1.1.aarch64.rpm alloy-1.12.2-160000.1.1.src.rpm alloy-debuginfo-1.12.2-160000.1.1.aarch64.rpm alloy-1.12.2-160000.1.1.ppc64le.rpm alloy-debuginfo-1.12.2-160000.1.1.ppc64le.rpm alloy-1.12.2-160000.1.1.s390x.rpm alloy-debuginfo-1.12.2-160000.1.1.s390x.rpm alloy-1.12.2-160000.1.1.x86_64.rpm alloy-debuginfo-1.12.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-226 Security update for udisks2 moderate SUSE SLFO 1.2 This update for udisks2 fixes the following issues: - CVE-2025-8067: Fixed a missing bounds check that could lead to out-of-bounds read in udisks daemon (bsc#1248502). libudisks2-0-2.10.1-160000.3.1.aarch64.rpm libudisks2-0-debuginfo-2.10.1-160000.3.1.aarch64.rpm libudisks2-0-devel-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_btrfs-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_btrfs-debuginfo-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_lsm-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_lsm-debuginfo-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_lvm2-2.10.1-160000.3.1.aarch64.rpm libudisks2-0_lvm2-debuginfo-2.10.1-160000.3.1.aarch64.rpm typelib-1_0-UDisks-2_0-2.10.1-160000.3.1.aarch64.rpm udisks2-2.10.1-160000.3.1.aarch64.rpm udisks2-2.10.1-160000.3.1.src.rpm udisks2-bash-completion-2.10.1-160000.3.1.noarch.rpm udisks2-debuginfo-2.10.1-160000.3.1.aarch64.rpm udisks2-debugsource-2.10.1-160000.3.1.aarch64.rpm udisks2-docs-2.10.1-160000.3.1.noarch.rpm udisks2-lang-2.10.1-160000.3.1.noarch.rpm udisks2-zsh-completion-2.10.1-160000.3.1.noarch.rpm libudisks2-0-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0-debuginfo-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0-devel-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_btrfs-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_btrfs-debuginfo-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_lsm-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_lsm-debuginfo-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_lvm2-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0_lvm2-debuginfo-2.10.1-160000.3.1.ppc64le.rpm typelib-1_0-UDisks-2_0-2.10.1-160000.3.1.ppc64le.rpm udisks2-2.10.1-160000.3.1.ppc64le.rpm udisks2-debuginfo-2.10.1-160000.3.1.ppc64le.rpm udisks2-debugsource-2.10.1-160000.3.1.ppc64le.rpm libudisks2-0-2.10.1-160000.3.1.s390x.rpm libudisks2-0-debuginfo-2.10.1-160000.3.1.s390x.rpm libudisks2-0-devel-2.10.1-160000.3.1.s390x.rpm libudisks2-0_btrfs-2.10.1-160000.3.1.s390x.rpm libudisks2-0_btrfs-debuginfo-2.10.1-160000.3.1.s390x.rpm libudisks2-0_lsm-2.10.1-160000.3.1.s390x.rpm libudisks2-0_lsm-debuginfo-2.10.1-160000.3.1.s390x.rpm libudisks2-0_lvm2-2.10.1-160000.3.1.s390x.rpm libudisks2-0_lvm2-debuginfo-2.10.1-160000.3.1.s390x.rpm typelib-1_0-UDisks-2_0-2.10.1-160000.3.1.s390x.rpm udisks2-2.10.1-160000.3.1.s390x.rpm udisks2-debuginfo-2.10.1-160000.3.1.s390x.rpm udisks2-debugsource-2.10.1-160000.3.1.s390x.rpm libudisks2-0-2.10.1-160000.3.1.x86_64.rpm libudisks2-0-debuginfo-2.10.1-160000.3.1.x86_64.rpm libudisks2-0-devel-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_btrfs-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_btrfs-debuginfo-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_lsm-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_lsm-debuginfo-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_lvm2-2.10.1-160000.3.1.x86_64.rpm libudisks2-0_lvm2-debuginfo-2.10.1-160000.3.1.x86_64.rpm typelib-1_0-UDisks-2_0-2.10.1-160000.3.1.x86_64.rpm udisks2-2.10.1-160000.3.1.x86_64.rpm udisks2-debuginfo-2.10.1-160000.3.1.x86_64.rpm udisks2-debugsource-2.10.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-227 Security update for libsoup important SUSE SLFO 1.2 This update for libsoup fixes the following issues: - CVE-2025-11021: Fixed out-of-bounds read in Cookie Date Handling of libsoup HTTP Library (bsc#1250562). - CVE-2026-0719: Fixed stack-based buffer overflow in NTLM authentication can lead to arbitrary code execution (bsc#1256399). - CVE-2026-0716: Fixed improper bounds handling may allow out-of-bounds read (bsc#1256418). libsoup-3.6.5-160000.3.1.src.rpm libsoup-3_0-0-3.6.5-160000.3.1.aarch64.rpm libsoup-3_0-0-debuginfo-3.6.5-160000.3.1.aarch64.rpm libsoup-debugsource-3.6.5-160000.3.1.aarch64.rpm libsoup-devel-3.6.5-160000.3.1.aarch64.rpm libsoup-lang-3.6.5-160000.3.1.noarch.rpm typelib-1_0-Soup-3_0-3.6.5-160000.3.1.aarch64.rpm libsoup-3_0-0-3.6.5-160000.3.1.ppc64le.rpm libsoup-3_0-0-debuginfo-3.6.5-160000.3.1.ppc64le.rpm libsoup-debugsource-3.6.5-160000.3.1.ppc64le.rpm libsoup-devel-3.6.5-160000.3.1.ppc64le.rpm typelib-1_0-Soup-3_0-3.6.5-160000.3.1.ppc64le.rpm libsoup-3_0-0-3.6.5-160000.3.1.s390x.rpm libsoup-3_0-0-debuginfo-3.6.5-160000.3.1.s390x.rpm libsoup-debugsource-3.6.5-160000.3.1.s390x.rpm libsoup-devel-3.6.5-160000.3.1.s390x.rpm typelib-1_0-Soup-3_0-3.6.5-160000.3.1.s390x.rpm libsoup-3_0-0-3.6.5-160000.3.1.x86_64.rpm libsoup-3_0-0-debuginfo-3.6.5-160000.3.1.x86_64.rpm libsoup-debugsource-3.6.5-160000.3.1.x86_64.rpm libsoup-devel-3.6.5-160000.3.1.x86_64.rpm typelib-1_0-Soup-3_0-3.6.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-228 Security update for java-25-openjdk important SUSE SLFO 1.2 This update for java-25-openjdk fixes the following issues: Update to upstream tag jdk-25.0.2+10 (January 2026 CPU) Security fixes: - CVE-2026-21925: Fixed Oracle Java SE component RMI (bsc#1257034). - CVE-2026-21932: Fixed Oracle Java SE component AWT and JavaFX (bsc#1257036). - CVE-2026-21933: Fixed Oracle Java SE component Networking (bsc#1257037). - CVE-2026-21945: Fixed Oracle Java SE component Security (bsc#1257038). Other fixes: - Do not depend on update-desktop-files (jsc#PED-14507, jsc#PED-15221). java-25-openjdk-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-25.0.2.0-160000.1.1.src.rpm java-25-openjdk-debuginfo-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-demo-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-devel-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-devel-debuginfo-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-headless-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-headless-debuginfo-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-javadoc-25.0.2.0-160000.1.1.noarch.rpm java-25-openjdk-jmods-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-src-25.0.2.0-160000.1.1.aarch64.rpm java-25-openjdk-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-debuginfo-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-demo-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-devel-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-devel-debuginfo-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-headless-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-headless-debuginfo-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-jmods-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-src-25.0.2.0-160000.1.1.ppc64le.rpm java-25-openjdk-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-debuginfo-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-demo-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-devel-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-devel-debuginfo-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-headless-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-headless-debuginfo-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-jmods-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-src-25.0.2.0-160000.1.1.s390x.rpm java-25-openjdk-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-debuginfo-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-demo-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-devel-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-devel-debuginfo-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-headless-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-headless-debuginfo-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-jmods-25.0.2.0-160000.1.1.x86_64.rpm java-25-openjdk-src-25.0.2.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-229 Security update for python-filelock moderate SUSE SLFO 1.2 This update for python-filelock fixes the following issues: - CVE-2025-68146: TOCTOU race condition may allow local attackers to corrupt or truncate arbitrary user files (bsc#1255244). - CVE-2026-22701: TOCTOU race condition in the SoftFileLock implementation (bsc#1256457). python-filelock-3.18.0-160000.3.1.src.rpm python313-filelock-3.18.0-160000.3.1.noarch.rpm openSUSE-Leap-16.0-23 Security update for tiff important SUSE SLFO 1.2 This update for tiff fixes the following issues: tiff was updated to 4.7.1: * Software configuration changes: * Define HAVE_JPEGTURBO_DUAL_MODE_8_12 and LERC_STATIC in tif_config.h. * CMake: define WORDS_BIGENDIAN via tif_config.h * doc/CMakeLists.txt: remove useless cmake_minimum_required() * CMake: fix build with LLVM/Clang 17 (fixes issue #651) * CMake: set CMP0074 new policy * Set LINKER_LANGUAGE for C targets with C deps * Export tiffxx cmake target (fixes issue #674) * autogen.sh: Enable verbose wget. * configure.ac: Syntax updates for Autoconf 2.71 * autogen.sh: Re-implement based on autoreconf. Failure to update config.guess/config.sub does not return error (fixes issue #672) * CMake: fix CMake 4.0 warning when minimum required version is < 3.10. * CMake: Add build option tiff-static (fixes issue #709) Library changes: * Add TIFFOpenOptionsSetWarnAboutUnknownTags() for explicit control about emitting warnings for unknown tags. No longer emit warnings about unknown tags by default * tif_predict.c: speed-up decompression in some cases. * Bug fixes: * tif_fax3: For fax group 3 data if no EOL is detected, reading is retried without synchronisation for EOLs. (fixes issue #54) * Updating TIFFMergeFieldInfo() with read_count=write_count=0 for FIELD_IGNORE. Updating TIFFMergeFieldInfo() with read_count=write_count=0 for FIELD_IGNORE. Improving handling when field_name = NULL. (fixes issue #532) * tiff.h: add COMPRESSION_JXL_DNG_1_7=52546 as used for JPEGXL compression in the DNG 1.7 specification * TIFFWriteDirectorySec: Increment string length for ASCII tags for codec tags defined with FIELD_xxx bits, as it is done for FIELD_CUSTOM tags. (fixes issue #648) * Do not error out on a tag whose tag count value is zero, just issue a warning. Fix parsing a private tag 0x80a6 (fixes issue #647) * TIFFDefaultTransferFunction(): give up beyond td_bitspersample = 24 Fixes https://github.com/OSGeo/gdal/issues/10875) * tif_getimage.c: Remove unnecessary calls to TIFFRGBAImageOK() (fixes issue #175) * Fix writing a Predictor=3 file with non-native endianness * _TIFFVSetField(): fix potential use of unallocated memory (out-of-bounds * read / nullptr dereference) in case of out-of-memory situation when dealing with custom tags (fixes issue #663) * tif_fax3.c: Error out for CCITT fax encoding if SamplesPerPixel is not equal 1 and PlanarConfiguration = Contiguous (fixes issue #26) * tif_fax3.c: error out after a number of times end-of-line or unexpected bad code words have been reached. (fixes issue #670) * Fix memory leak in TIFFSetupStrips() (fixes issue #665) * tif_zip.c: Provide zlib allocation functions. Otherwise for zlib built with -DZ_SOLO inflating will fail. * Fix memory leak in _TIFFSetDefaultCompressionState. (fixes issue #676) * tif_predict.c: Don’t overwrite input buffer of TIFFWriteScanline() if "prediction" is enabled. Use extra working buffer in PredictorEncodeRow(). (fixes issue #5) * tif_getimage.c: update some integer overflow checks (fixes issue #79) * tif_getimage.c: Fix buffer underflow crash for less raster rows at TIFFReadRGBAImageOriented() (fixes issue #704, bsc#1250413, CVE-2025-9900) * TIFFReadRGBAImage(): several fixes to avoid buffer overflows. * Correct passing arguments to TIFFCvtIEEEFloatToNative() and TIFFCvtIEEEDoubleToNative() if HAVE_IEEEFP is not defined. (fixes issue #699) * LZWDecode(): avoid nullptr dereference when trying to read again after EOI marker has been found with remaining output bytes (fixes issue #698) * TIFFSetSubDirectory(): check _TIFFCheckDirNumberAndOffset() return. * TIFFUnlinkDirectory() and TIFFWriteDirectorySec(): clear tif_rawcp when clearing tif_rawdata (fixes issue #711) * JPEGEncodeRaw(): error out if a previous scanline failed to be written, to avoid out-of-bounds access (fixes issue #714) * tif_jpeg: Fix bug in JPEGDecodeRaw() if JPEG_LIB_MK1_OR_12BIT is defined for 8/12bit dual mode, introduced in libjpeg-turbo 2.2, which was actually released as 3.0. Fixes issue #717 * add assert for TIFFReadCustomDirectory infoarray check. * ppm2tiff: Fix bug in pack_words trailing bytes, where last two bytes of each line were written wrongly. (fixes issue #467) * fax2ps: fix regression of commit 28c38d648b64a66c3218778c4745225fe3e3a06d where TIFFTAG_FAXFILLFUNC is being used rather than an output buffer (fixes issue #649) * tiff2pdf: Check TIFFTAG_TILELENGTH and TIFFTAGTILEWIDTH (fixes issue #650) * tiff2pdf: check h_samp and v_samp for range 1 to 4 to avoid division by zero. Fixes issue #654 * tiff2pdf: avoid null pointer dereference. (fixes issue #741) * Improve non-secure integer overflow check (comparison of division result with multiplicant) at compiler optimisation in tiffcp, rgb2ycbcr and tiff2rgba. Fixes issue #546 * tiff2rgba: fix some "a partial expression can generate an overflow before it is assigned to a broader type" warnings. (fixes issue #682) * tiffdither/tiffmedian: Don't skip the first line of the input image. (fixes issue #703) * tiffdither: avoid out-of-bounds read identified in issue #733 * tiffmedian: error out if TIFFReadScanline() fails (fixes issue #707) * tiffmedian: close input file. (fixes issue #735) * thumbail: avoid potential out of bounds access (fixes issue #715) * tiffcrop: close open TIFF files and release allocated buffers before exiting in case of error to avoid memory leaks. (fixes issue #716) * tiffcrop: fix double-free and memory leak exposed by issue #721 * tiffcrop: avoid buffer overflow. (fixes issue #740) * tiffcrop: avoid nullptr dereference. (fixes issue #734) * tiffdump: Fix coverity scan issue CID 1373365: Passing tainted expression *datamem to PrintData, which uses it as a divisor or modulus. * tiff2ps: check return of TIFFGetFiled() for TIFFTAG_STRIPBYTECOUNTS and TIFFTAG_TILEBYTECOUNTS to avoid NULL pointer dereference. (fixes issue #718) * tiffcmp: fix memory leak when second file cannot be opened. (fixes issue #718 and issue #729) * tiffcp: fix setting compression level for lossless codecs. (fixes issue #730) * raw2tiff: close input file before exit (fixes issue #742) Tools changes: * tiffinfo: add a -W switch to warn about unknown tags. * tiffdither: process all pages in input TIFF file. * Documentation: * TIFFRGBAImage.rst note added for incorrect saving of images with TIFF orientation from 5 (LeftTop) to 8 (LeftBottom) in the raster. * TIFFRGBAImage.rst note added about un-associated alpha handling (fixes issue #67) * Update "Defining New TIFF Tags" description. (fixes issue #642) * Fix return type of TIFFReadEncodedTile() * Update the documentation to reflect deprecated typedefs. * TIFFWriteDirectory.rst: Clarify TIFFSetWriteOffset() only sets offset for image data and not for IFD data. * Update documentation on re-entrancy and thread safety. * Remove dead links to no more existing Awaresystems web-site. * Updating BigTIFF specification and some miscelaneous editions. * Replace some last links and remove last todos. * Added hints for correct allocation of TIFFYCbCrtoRGB structure and its associated buffers. (fixes issue #681) * Added chapter to "Using the TIFF Library" with links to handling multi-page TIFF and custom directories. (fixes issue #43) * update TIFFOpen.rst with the return values of mapproc and unmapproc. (fixes issue #12) Security issues fixed: * CVE-2025-8961: Fix segmentation fault via main function of tiffcrop utility [bsc#1248117] * CVE-2025-8534: Fix null pointer dereference in function PS_Lvl2page [bsc#1247582] * CVE-2025-9165: Fix local execution manipulation can lead to memory leak [bsc#1248330] * CVE-2024-13978: Fix null pointer dereference in tiff2pdf [bsc#1247581] * CVE-2025-8176: Fix heap use-after-free in tools/tiffmedian.c [bsc#1247108] * CVE-2025-8177: Fix possible buffer overflow in tools/thumbnail.c:setrow() [bsc#1247106] - Fix TIFFMergeFieldInfo() read_count=write_count=0 (bsc#1243503) libtiff-devel-4.7.1-160000.1.1.aarch64.rpm libtiff6-4.7.1-160000.1.1.aarch64.rpm libtiff6-debuginfo-4.7.1-160000.1.1.aarch64.rpm tiff-4.7.1-160000.1.1.aarch64.rpm tiff-4.7.1-160000.1.1.src.rpm tiff-debuginfo-4.7.1-160000.1.1.aarch64.rpm tiff-debugsource-4.7.1-160000.1.1.aarch64.rpm libtiff-devel-docs-4.7.1-160000.1.1.noarch.rpm tiff-docs-4.7.1-160000.1.1.noarch.rpm tiff-man-4.7.1-160000.1.1.src.rpm libtiff-devel-4.7.1-160000.1.1.ppc64le.rpm libtiff6-4.7.1-160000.1.1.ppc64le.rpm libtiff6-debuginfo-4.7.1-160000.1.1.ppc64le.rpm tiff-4.7.1-160000.1.1.ppc64le.rpm tiff-debuginfo-4.7.1-160000.1.1.ppc64le.rpm tiff-debugsource-4.7.1-160000.1.1.ppc64le.rpm libtiff-devel-4.7.1-160000.1.1.s390x.rpm libtiff6-4.7.1-160000.1.1.s390x.rpm libtiff6-debuginfo-4.7.1-160000.1.1.s390x.rpm tiff-4.7.1-160000.1.1.s390x.rpm tiff-debuginfo-4.7.1-160000.1.1.s390x.rpm tiff-debugsource-4.7.1-160000.1.1.s390x.rpm libtiff-devel-4.7.1-160000.1.1.x86_64.rpm libtiff6-4.7.1-160000.1.1.x86_64.rpm libtiff6-debuginfo-4.7.1-160000.1.1.x86_64.rpm tiff-4.7.1-160000.1.1.x86_64.rpm tiff-debuginfo-4.7.1-160000.1.1.x86_64.rpm tiff-debugsource-4.7.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-230 Security update for the Linux Kernel important SUSE SLFO 1.2 The SUSE Linux Enterprise 16.0 kernel was updated to fix various security issues The following security issues were fixed: - CVE-2025-38704: rcu/nocb: Fix possible invalid rdp's->nocb_cb_kthread pointer (bsc#1254408). - CVE-2025-39880: ceph: fix race condition validating r_parent before applying state (bsc#1250388). - CVE-2025-39977: futex: Prevent use-after-free during requeue-PI (bsc#1252046). - CVE-2025-40042: tracing: Fix race condition in kprobe initialization causing NULL pointer dereference (bsc#1252861). - CVE-2025-40123: bpf: Enforce expected_attach_type for tailcall compatibility (bsc#1253365). - CVE-2025-40130: scsi: ufs: core: Fix data race in CPU latency PM QoS request handling - CVE-2025-40160: xen/events: Cleanup find_virq() return codes (bsc#1253400). - CVE-2025-40167: ext4: detect invalid INLINE_DATA + EXTENTS flag combination (bsc#1253458). - CVE-2025-40170: net: use dst_dev_rcu() in sk_setup_caps() (bsc#1253413). - CVE-2025-40179: ext4: verify orphan file size is not too big (bsc#1253442). - CVE-2025-40190: ext4: guard against EA inode refcount underflow in xattr update (bsc#1253623). - CVE-2025-40214: af_unix: Initialise scc_index in unix_add_edge() (bsc#1254961). - CVE-2025-40215: xfrm: delete x->tunnel as we delete x (bsc#1254959). - CVE-2025-40218: mm/damon/vaddr: do not repeat pte_offset_map_lock() until success (bsc#1254964). - CVE-2025-40220: fuse: fix livelock in synchronous file put from fuseblk workers (bsc#1254520). - CVE-2025-40231: vsock: fix lock inversion in vsock_assign_transport() (bsc#1254815). - CVE-2025-40233: ocfs2: clear extent cache after moving/defragmenting extents (bsc#1254813). - CVE-2025-40237: fs/notify: call exportfs_encode_fid with s_umount (bsc#1254809). - CVE-2025-40238: net/mlx5: Fix IPsec cleanup over MPV device (bsc#1254871). - CVE-2025-40239: net: phy: micrel: always set shared->phydev for LAN8814 (bsc#1254868). - CVE-2025-40242: gfs2: Fix unlikely race in gdlm_put_lock (bsc#1255075). - CVE-2025-40246: xfs: fix out of bounds memory read error in symlink repair (bsc#1254861). - CVE-2025-40248: vsock: Ignore signal/timeout on connect() if already established (bsc#1254864). - CVE-2025-40250: net/mlx5: Clean up only new IRQ glue on request_irq() failure (bsc#1254854). - CVE-2025-40251: devlink: rate: Unset parent pointer in devl_rate_nodes_destroy (bsc#1254856). - CVE-2025-40252: net: qlogic/qede: fix potential out-of-bounds read in qede_tpa_cont() and qede_tpa_end() (bsc#1254849). - CVE-2025-40254: net: openvswitch: remove never-working support for setting nsh fields (bsc#1254852). - CVE-2025-40255: net: core: prevent NULL deref in generic_hwtstamp_ioctl_lower() (bsc#1255156). - CVE-2025-40258: mptcp: fix race condition in mptcp_schedule_work() (bsc#1254843). - CVE-2025-40264: be2net: pass wrb_params in case of OS2BMC (bsc#1254835). - CVE-2025-40268: cifs: client: fix memory leak in smb3_fs_context_parse_param (bsc#1255082). - CVE-2025-40271: fs/proc: fix uaf in proc_readdir_de() (bsc#1255297). - CVE-2025-40274: KVM: guest_memfd: Remove bindings on memslot deletion when gmem is dying (bsc#1254830). - CVE-2025-40276: drm/panthor: Flush shmem writes before mapping buffers CPU-uncached (bsc#1254824). - CVE-2025-40278: net: sched: act_ife: initialize struct tc_ife to fix KMSAN kernel-infoleak (bsc#1254825). - CVE-2025-40279: net: sched: act_connmark: initialize struct tc_ife to fix kernel leak (bsc#1254846). - CVE-2025-40280: tipc: Fix use-after-free in tipc_mon_reinit_self() (bsc#1254847). - CVE-2025-40292: virtio-net: fix received length check in big packets (bsc#1255175). - CVE-2025-40293: iommufd: Don't overflow during division for dirty tracking (bsc#1255179). - CVE-2025-40297: net: bridge: fix use-after-free due to MST port state bypass (bsc#1255187). - CVE-2025-40319: bpf: Sync pending IRQ work before freeing ring buffer (bsc#1254794). - CVE-2025-40328: smb: client: fix potential UAF in smb2_close_cached_fid() (bsc#1254624). - CVE-2025-40330: bnxt_en: Shutdown FW DMA in bnxt_shutdown() (bsc#1254616). - CVE-2025-40331: sctp: Prevent TOCTOU out-of-bounds write (bsc#1254615). - CVE-2025-40338: ASoC: Intel: avs: Do not share the name pointer between components (bsc#1255273). - CVE-2025-40346: arch_topology: Fix incorrect error check in topology_parse_cpu_capacity() (bsc#1255318). - CVE-2025-40347: net: enetc: fix the deadlock of enetc_mdio_lock (bsc#1255262). - CVE-2025-40350: net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for striding RQ (bsc#1255260). - CVE-2025-40355: sysfs: check visibility before changing group attribute ownership (bsc#1255261). - CVE-2025-40357: net/smc: fix general protection fault in __smc_diag_dump (bsc#1255097). - CVE-2025-40359: perf/x86/intel: Fix KASAN global-out-of-bounds warning (bsc#1255087). - CVE-2025-40362: ceph: fix multifs mds auth caps issue (bsc#1255103). - CVE-2025-68171: x86/fpu: Ensure XFD state on signal delivery (bsc#1255255). - CVE-2025-68197: bnxt_en: Fix null pointer dereference in bnxt_bs_trace_check_wrap() (bsc#1255242). - CVE-2025-68198: crash: fix crashkernel resource shrink (bsc#1255243). - CVE-2025-68202: sched_ext: Fix unsafe locking in the scx_dump_state() (bsc#1255223). - CVE-2025-68206: netfilter: nft_ct: add seqadj extension for natted connections (bsc#1255142). - CVE-2025-68208: bpf: account for current allocated stack depth in widen_imprecise_scalars() (bsc#1255227). - CVE-2025-68209: mlx5: Fix default values in create CQ (bsc#1255230). - CVE-2025-68215: ice: fix PTP cleanup on driver removal in error path (bsc#1255226). - CVE-2025-68239: binfmt_misc: restore write access before closing files opened by open_exec() (bsc#1255272). - CVE-2025-68259: KVM: SVM: Don't skip unrelated instruction if INT3/INTO is replaced (bsc#1255199). - CVE-2025-68264: ext4: refresh inline data size before write operations (bsc#1255380). - CVE-2025-68283: libceph: replace BUG_ON with bounds check for map->max_osd (bsc#1255379). - CVE-2025-68284: libceph: prevent potential out-of-bounds writes in handle_auth_session_key() (bsc#1255377). - CVE-2025-68285: libceph: fix potential use-after-free in have_mon_and_osd_map() (bsc#1255401). - CVE-2025-68293: mm/huge_memory: fix NULL pointer deference when splitting folio (bsc#1255150). - CVE-2025-68301: net: atlantic: fix fragment overflow handling in RX path (bsc#1255120). - CVE-2025-68302: net: sxgbe: fix potential NULL dereference in sxgbe_rx() (bsc#1255121). - CVE-2025-68317: io_uring/zctx: check chained notif contexts (bsc#1255354). - CVE-2025-68340: team: Move team device type change at the end of team_port_add (bsc#1255507). - CVE-2025-68353: net: vxlan: prevent NULL deref in vxlan_xmit_one (bsc#1255533). - CVE-2025-68363: bpf: Check skb->transport_header is set in bpf_skb_check_mtu (bsc#1255552). - CVE-2025-68378: bpf: Refactor stack map trace depth calculation into helper function (bsc#1255614). - CVE-2025-68736: landlock: Optimize file path walks and prepare for audit support (bsc#1255698). - CVE-2025-68742: bpf: Fix invalid prog->stats access when update_effective_progs fails (bsc#1255707). - CVE-2025-68744: bpf: Free special fields when update [lru_,]percpu_hash maps (bsc#1255709). - CVE-2025-71096: RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly (bsc#1256606). The following non security issues were fixed: - KVM: SEV: Drop GHCB_VERSION_DEFAULT and open code it (bsc#1255672). - Set HZ=1000 for ppc64 default configuration (jsc#PED-14344) - bpf: Do not limit bpf_cgroup_from_id to current's namespace (bsc#1255433). - btrfs: handle aligned EOF truncation correctly for subpage cases (bsc#1253238). - cgroup: rstat: use LOCK CMPXCHG in css_rstat_updated (bsc#1255434). - cifs: update dstaddr whenever channel iface is updated (git-fixes). - cpuidle: menu: Use residency threshold in polling state override decisions (bsc#1255026). - cpuset: fix warning when disabling remote partition (bsc#1256794). - ext4: use optimized mballoc scanning regardless of inode format (bsc#1254378). - net: usb: pegasus: fix memory leak in update_eth_regs_async() (git-fixes). - netdevsim: print human readable IP address (bsc#1255071). - powerpc/eeh: fix recursive pci_lock_rescan_remove locking in EEH event handling (bsc#1253262 ltc#216029). - powerpc/kexec: Enable SMT before waking offline CPUs (bsc#1214285 bsc#1205462 ltc#200161 ltc#200588 git-fixes bsc#1253739 ltc#211493 bsc#1254244 ltc#216496). - sched: Increase sched_tick_remote timeout (bsc#1254510). - selftests: net: fib-onlink-tests: Set high metric for default IPv6 route (bsc#1255346). - selftests: net: use slowwait to make sure IPv6 setup finished (bsc#1255349). - selftests: net: use slowwait to stabilize vrf_route_leaking test (bsc#1255349). - serial: xilinx_uartps: Use helper function hrtimer_update_function() (stable-fixes). - supported.conf: Mark lan 743x supported (jsc#PED-14571) - tick/sched: Limit non-timekeeper CPUs calling jiffies update (bsc#1254477). - wifi: ath10k: Avoid vdev delete timeout when firmware is already down (stable-fixes). - x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo (bsc#1256495). - x86/microcode/AMD: Make __verify_patch_size() return bool (bsc#1256495). - x86/microcode/AMD: Remove bogus comment from parse_container() (bsc#1256495). - x86/microcode/AMD: Select which microcode patch to load (bsc#1256495). - x86/microcode/AMD: Use sha256() instead of init/update/final (bsc#1256495). kernel-devel-6.12.0-160000.9.1.noarch.rpm True kernel-macros-6.12.0-160000.9.1.noarch.rpm True kernel-source-6.12.0-160000.9.1.noarch.rpm True kernel-source-6.12.0-160000.9.1.src.rpm True kernel-source-vanilla-6.12.0-160000.9.1.noarch.rpm True kernel-default-base-6.12.0-160000.9.1.160000.2.6.aarch64.rpm True kernel-default-base-6.12.0-160000.9.1.160000.2.6.src.rpm True dtb-aarch64-6.12.0-160000.9.1.nosrc.rpm True dtb-allwinner-6.12.0-160000.9.1.aarch64.rpm True dtb-altera-6.12.0-160000.9.1.aarch64.rpm True dtb-amazon-6.12.0-160000.9.1.aarch64.rpm True dtb-amd-6.12.0-160000.9.1.aarch64.rpm True dtb-amlogic-6.12.0-160000.9.1.aarch64.rpm True dtb-apm-6.12.0-160000.9.1.aarch64.rpm True dtb-apple-6.12.0-160000.9.1.aarch64.rpm True dtb-arm-6.12.0-160000.9.1.aarch64.rpm True dtb-broadcom-6.12.0-160000.9.1.aarch64.rpm True dtb-cavium-6.12.0-160000.9.1.aarch64.rpm True dtb-exynos-6.12.0-160000.9.1.aarch64.rpm True dtb-freescale-6.12.0-160000.9.1.aarch64.rpm True dtb-hisilicon-6.12.0-160000.9.1.aarch64.rpm True dtb-lg-6.12.0-160000.9.1.aarch64.rpm True dtb-marvell-6.12.0-160000.9.1.aarch64.rpm True dtb-mediatek-6.12.0-160000.9.1.aarch64.rpm True dtb-nvidia-6.12.0-160000.9.1.aarch64.rpm True dtb-qcom-6.12.0-160000.9.1.aarch64.rpm True dtb-renesas-6.12.0-160000.9.1.aarch64.rpm True dtb-rockchip-6.12.0-160000.9.1.aarch64.rpm True dtb-socionext-6.12.0-160000.9.1.aarch64.rpm True dtb-sprd-6.12.0-160000.9.1.aarch64.rpm True dtb-xilinx-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-64kb-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-64kb-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-64kb-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-6.12.0-160000.9.1.nosrc.rpm True kernel-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-devel-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-extra-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-extra-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-optional-6.12.0-160000.9.1.aarch64.rpm True kernel-64kb-optional-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-64kb-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-64kb-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-64kb-debuginfo-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-azure-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-azure-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-azure-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-6.12.0-160000.9.1.nosrc.rpm True kernel-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-devel-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-extra-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-extra-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-optional-6.12.0-160000.9.1.aarch64.rpm True kernel-azure-optional-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-azure-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-azure-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-azure-debuginfo-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-default-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-default-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-default-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-default-6.12.0-160000.9.1.aarch64.rpm True kernel-default-6.12.0-160000.9.1.nosrc.rpm True kernel-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-default-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-default-devel-6.12.0-160000.9.1.aarch64.rpm True kernel-default-extra-6.12.0-160000.9.1.aarch64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-default-optional-6.12.0-160000.9.1.aarch64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-default-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-default-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-docs-6.12.0-160000.9.1.noarch.rpm True kernel-docs-6.12.0-160000.9.1.nosrc.rpm True kernel-docs-html-6.12.0-160000.9.1.noarch.rpm True kernel-kvmsmall-6.12.0-160000.9.1.aarch64.rpm True kernel-kvmsmall-6.12.0-160000.9.1.nosrc.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-kvmsmall-devel-6.12.0-160000.9.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.9.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.9.1.src.rpm True kernel-obs-build-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.9.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.9.1.src.rpm True cluster-md-kmp-rt-6.12.0-160000.9.1.aarch64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-rt-6.12.0-160000.9.1.aarch64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-rt-6.12.0-160000.9.1.aarch64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-6.12.0-160000.9.1.nosrc.rpm True kernel-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-debugsource-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-devel-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-extra-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-optional-6.12.0-160000.9.1.aarch64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-rt-6.12.0-160000.9.1.aarch64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-rt-6.12.0-160000.9.1.aarch64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.9.1.aarch64.rpm True kernel-syms-6.12.0-160000.9.1.aarch64.rpm True kernel-syms-6.12.0-160000.9.1.src.rpm True kernel-default-base-6.12.0-160000.9.1.160000.2.6.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.9.1.ppc64le.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True dlm-kmp-default-6.12.0-160000.9.1.ppc64le.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True gfs2-kmp-default-6.12.0-160000.9.1.ppc64le.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-debugsource-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-devel-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-extra-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-extra-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-optional-6.12.0-160000.9.1.ppc64le.rpm True kernel-default-optional-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kselftests-kmp-default-6.12.0-160000.9.1.ppc64le.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True ocfs2-kmp-default-6.12.0-160000.9.1.ppc64le.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kernel-kvmsmall-6.12.0-160000.9.1.ppc64le.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.9.1.ppc64le.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.9.1.ppc64le.rpm True kernel-kvmsmall-devel-6.12.0-160000.9.1.ppc64le.rpm True kernel-obs-build-6.12.0-160000.9.1.ppc64le.rpm True kernel-obs-build-debugsource-6.12.0-160000.9.1.ppc64le.rpm True kernel-obs-qa-6.12.0-160000.9.1.ppc64le.rpm True kernel-syms-6.12.0-160000.9.1.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.9.1.s390x.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True dlm-kmp-default-6.12.0-160000.9.1.s390x.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True gfs2-kmp-default-6.12.0-160000.9.1.s390x.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True kernel-default-6.12.0-160000.9.1.s390x.rpm True kernel-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True kernel-default-debugsource-6.12.0-160000.9.1.s390x.rpm True kernel-default-devel-6.12.0-160000.9.1.s390x.rpm True kernel-default-extra-6.12.0-160000.9.1.s390x.rpm True kernel-default-extra-debuginfo-6.12.0-160000.9.1.s390x.rpm True kernel-default-optional-6.12.0-160000.9.1.s390x.rpm True kernel-default-optional-debuginfo-6.12.0-160000.9.1.s390x.rpm True kselftests-kmp-default-6.12.0-160000.9.1.s390x.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True ocfs2-kmp-default-6.12.0-160000.9.1.s390x.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.9.1.s390x.rpm True kernel-obs-build-6.12.0-160000.9.1.s390x.rpm True kernel-obs-build-debugsource-6.12.0-160000.9.1.s390x.rpm True kernel-obs-qa-6.12.0-160000.9.1.s390x.rpm True kernel-syms-6.12.0-160000.9.1.s390x.rpm True kernel-zfcpdump-6.12.0-160000.9.1.nosrc.rpm True kernel-zfcpdump-6.12.0-160000.9.1.s390x.rpm True kernel-zfcpdump-debuginfo-6.12.0-160000.9.1.s390x.rpm True kernel-zfcpdump-debugsource-6.12.0-160000.9.1.s390x.rpm True kernel-default-base-6.12.0-160000.9.1.160000.2.6.x86_64.rpm True cluster-md-kmp-azure-6.12.0-160000.9.1.x86_64.rpm True cluster-md-kmp-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-azure-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-azure-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-debugsource-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-devel-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-devel-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-extra-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-extra-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-optional-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-optional-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-vdso-6.12.0-160000.9.1.x86_64.rpm True kernel-azure-vdso-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-azure-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-azure-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-azure-debuginfo-6.12.0-160000.9.1.x86_64.rpm True cluster-md-kmp-default-6.12.0-160000.9.1.x86_64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-default-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-default-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-default-6.12.0-160000.9.1.x86_64.rpm True kernel-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-default-debugsource-6.12.0-160000.9.1.x86_64.rpm True kernel-default-devel-6.12.0-160000.9.1.x86_64.rpm True kernel-default-devel-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-default-extra-6.12.0-160000.9.1.x86_64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-default-optional-6.12.0-160000.9.1.x86_64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-default-vdso-6.12.0-160000.9.1.x86_64.rpm True kernel-default-vdso-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-default-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-default-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-devel-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-devel-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-vdso-6.12.0-160000.9.1.x86_64.rpm True kernel-kvmsmall-vdso-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-obs-build-6.12.0-160000.9.1.x86_64.rpm True kernel-obs-build-debugsource-6.12.0-160000.9.1.x86_64.rpm True kernel-obs-qa-6.12.0-160000.9.1.x86_64.rpm True cluster-md-kmp-rt-6.12.0-160000.9.1.x86_64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-rt-6.12.0-160000.9.1.x86_64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-rt-6.12.0-160000.9.1.x86_64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-debugsource-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-devel-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-devel-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-extra-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-optional-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-vdso-6.12.0-160000.9.1.x86_64.rpm True kernel-rt-vdso-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-rt-6.12.0-160000.9.1.x86_64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-rt-6.12.0-160000.9.1.x86_64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.9.1.x86_64.rpm True kernel-syms-6.12.0-160000.9.1.x86_64.rpm True openSUSE-Leap-16.0-231 Recommended update for the initial kernel livepatch important SUSE SLFO 1.2 This update contains initial livepatches for the SUSE Linux Enterprise Server 16.0 and SUSE Linux Micro 6.2 kernel update. kernel-livepatch-6_12_0-160000_9-default-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_9-default-debuginfo-1-160000.1.1.ppc64le.rpm True kernel-livepatch-SLE16_Update_4-1-160000.1.1.src.rpm True kernel-livepatch-SLE16_Update_4-debugsource-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_9-default-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_9-default-debuginfo-1-160000.1.1.s390x.rpm True kernel-livepatch-SLE16_Update_4-debugsource-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_9-default-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_9-default-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16_Update_4-debugsource-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_9-rt-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_9-rt-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16-RT_Update_4-1-160000.1.1.src.rpm True kernel-livepatch-SLE16-RT_Update_4-debugsource-1-160000.1.1.x86_64.rpm True openSUSE-Leap-16.0-232 Security update for python-wheel important SUSE SLFO 1.2 This update for python-wheel fixes the following issues: - CVE-2026-24049: Fixed absent path sanitization can cause arbitrary file permission modification (bsc#1257100). python-wheel-0.45.1-160000.3.1.src.rpm python313-wheel-0.45.1-160000.3.1.noarch.rpm openSUSE-Leap-16.0-233 Security update for dpdk moderate SUSE SLFO 1.2 This update for dpdk fixes the following issues: Update to version 24.11.4. Security issues fixed: - CVE-2025-23259: issue in the Poll Mode Driver (PMD) allows an attacker on a VM in the system to leak information and cause a denial of service on the network interface (bsc#1254161). Other issues fixed: - Remove obsolete build option -Denable_kmods. - Add "which" as a build requirement. - Drop pesign and needssslcertforbuild because we don't build a kmp anymore (bsc#1247389). dpdk-24.11.4-160000.1.1.aarch64.rpm dpdk-24.11.4-160000.1.1.src.rpm dpdk-debuginfo-24.11.4-160000.1.1.aarch64.rpm dpdk-debugsource-24.11.4-160000.1.1.aarch64.rpm dpdk-devel-24.11.4-160000.1.1.aarch64.rpm dpdk-devel-static-24.11.4-160000.1.1.aarch64.rpm dpdk-doc-24.11.4-160000.1.1.noarch.rpm dpdk-examples-24.11.4-160000.1.1.aarch64.rpm dpdk-examples-debuginfo-24.11.4-160000.1.1.aarch64.rpm dpdk-tools-24.11.4-160000.1.1.noarch.rpm libdpdk-25-24.11.4-160000.1.1.aarch64.rpm libdpdk-25-debuginfo-24.11.4-160000.1.1.aarch64.rpm dpdk-24.11.4-160000.1.1.ppc64le.rpm dpdk-debuginfo-24.11.4-160000.1.1.ppc64le.rpm dpdk-debugsource-24.11.4-160000.1.1.ppc64le.rpm dpdk-devel-24.11.4-160000.1.1.ppc64le.rpm dpdk-devel-static-24.11.4-160000.1.1.ppc64le.rpm dpdk-examples-24.11.4-160000.1.1.ppc64le.rpm dpdk-examples-debuginfo-24.11.4-160000.1.1.ppc64le.rpm libdpdk-25-24.11.4-160000.1.1.ppc64le.rpm libdpdk-25-debuginfo-24.11.4-160000.1.1.ppc64le.rpm dpdk-24.11.4-160000.1.1.x86_64.rpm dpdk-debuginfo-24.11.4-160000.1.1.x86_64.rpm dpdk-debugsource-24.11.4-160000.1.1.x86_64.rpm dpdk-devel-24.11.4-160000.1.1.x86_64.rpm dpdk-devel-static-24.11.4-160000.1.1.x86_64.rpm dpdk-examples-24.11.4-160000.1.1.x86_64.rpm dpdk-examples-debuginfo-24.11.4-160000.1.1.x86_64.rpm libdpdk-25-24.11.4-160000.1.1.x86_64.rpm libdpdk-25-debuginfo-24.11.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-234 Optional update for zbar low SUSE SLFO 1.2 This update for zbar fixes the following issues: Changes in zbar: - Do not build with Qt in openSUSE Tumbleweed and SLE16. libzbar-devel-0.23.93-160000.3.1.aarch64.rpm libzbar0-0.23.93-160000.3.1.aarch64.rpm libzbar0-debuginfo-0.23.93-160000.3.1.aarch64.rpm python3-zbar-0.23.93-160000.3.1.aarch64.rpm python3-zbar-debuginfo-0.23.93-160000.3.1.aarch64.rpm zbar-0.23.93-160000.3.1.aarch64.rpm zbar-0.23.93-160000.3.1.src.rpm zbar-debuginfo-0.23.93-160000.3.1.aarch64.rpm zbar-debugsource-0.23.93-160000.3.1.aarch64.rpm zbar-lang-0.23.93-160000.3.1.noarch.rpm libzbar-devel-0.23.93-160000.3.1.ppc64le.rpm libzbar0-0.23.93-160000.3.1.ppc64le.rpm libzbar0-debuginfo-0.23.93-160000.3.1.ppc64le.rpm python3-zbar-0.23.93-160000.3.1.ppc64le.rpm python3-zbar-debuginfo-0.23.93-160000.3.1.ppc64le.rpm zbar-0.23.93-160000.3.1.ppc64le.rpm zbar-debuginfo-0.23.93-160000.3.1.ppc64le.rpm zbar-debugsource-0.23.93-160000.3.1.ppc64le.rpm libzbar-devel-0.23.93-160000.3.1.s390x.rpm libzbar0-0.23.93-160000.3.1.s390x.rpm libzbar0-debuginfo-0.23.93-160000.3.1.s390x.rpm python3-zbar-0.23.93-160000.3.1.s390x.rpm python3-zbar-debuginfo-0.23.93-160000.3.1.s390x.rpm zbar-0.23.93-160000.3.1.s390x.rpm zbar-debuginfo-0.23.93-160000.3.1.s390x.rpm zbar-debugsource-0.23.93-160000.3.1.s390x.rpm libzbar-devel-0.23.93-160000.3.1.x86_64.rpm libzbar0-0.23.93-160000.3.1.x86_64.rpm libzbar0-debuginfo-0.23.93-160000.3.1.x86_64.rpm python3-zbar-0.23.93-160000.3.1.x86_64.rpm python3-zbar-debuginfo-0.23.93-160000.3.1.x86_64.rpm zbar-0.23.93-160000.3.1.x86_64.rpm zbar-debuginfo-0.23.93-160000.3.1.x86_64.rpm zbar-debugsource-0.23.93-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-235 Security update for glib2 important SUSE SLFO 1.2 This update for glib2 fixes the following issues: - CVE-2026-1485: Fixed buffer underflow and out-of-bounds access due to integer wraparound in content type parsing (bsc#1257354). - CVE-2026-1484: Fixed buffer underflow and out-of-bounds access due to miscalculated buffer boundaries in the Base64 encoding routine (bsc#1257355). - CVE-2026-1489: Fixed undersized heap allocation followed by out-of-bounds access due to integer overflow in Unicode case conversion (bsc#1257353). - CVE-2026-0988: Fixed a potential integer overflow in g_buffered_input_stream_peek (bsc#1257049). gio-branding-upstream-2.84.4-160000.2.1.noarch.rpm glib2-2.84.4-160000.2.1.src.rpm glib2-debugsource-2.84.4-160000.2.1.aarch64.rpm glib2-devel-2.84.4-160000.2.1.aarch64.rpm glib2-devel-debuginfo-2.84.4-160000.2.1.aarch64.rpm glib2-devel-static-2.84.4-160000.2.1.aarch64.rpm glib2-lang-2.84.4-160000.2.1.noarch.rpm glib2-tests-devel-2.84.4-160000.2.1.aarch64.rpm glib2-tests-devel-debuginfo-2.84.4-160000.2.1.aarch64.rpm glib2-tools-2.84.4-160000.2.1.aarch64.rpm glib2-tools-debuginfo-2.84.4-160000.2.1.aarch64.rpm libgio-2_0-0-2.84.4-160000.2.1.aarch64.rpm libgio-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm libgirepository-2_0-0-2.84.4-160000.2.1.aarch64.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm libglib-2_0-0-2.84.4-160000.2.1.aarch64.rpm libglib-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm libgmodule-2_0-0-2.84.4-160000.2.1.aarch64.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm libgobject-2_0-0-2.84.4-160000.2.1.aarch64.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm libgthread-2_0-0-2.84.4-160000.2.1.aarch64.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-GLib-2_0-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-GModule-2_0-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-GObject-2_0-2.84.4-160000.2.1.aarch64.rpm typelib-1_0-Gio-2_0-2.84.4-160000.2.1.aarch64.rpm glib2-doc-2.84.4-160000.2.1.aarch64.rpm glib2-doc-2.84.4-160000.2.1.src.rpm glib2-debugsource-2.84.4-160000.2.1.ppc64le.rpm glib2-devel-2.84.4-160000.2.1.ppc64le.rpm glib2-devel-debuginfo-2.84.4-160000.2.1.ppc64le.rpm glib2-devel-static-2.84.4-160000.2.1.ppc64le.rpm glib2-tests-devel-2.84.4-160000.2.1.ppc64le.rpm glib2-tests-devel-debuginfo-2.84.4-160000.2.1.ppc64le.rpm glib2-tools-2.84.4-160000.2.1.ppc64le.rpm glib2-tools-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libgio-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libgio-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libgirepository-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libglib-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libglib-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libgmodule-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libgobject-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm libgthread-2_0-0-2.84.4-160000.2.1.ppc64le.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-GLib-2_0-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-GModule-2_0-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-GObject-2_0-2.84.4-160000.2.1.ppc64le.rpm typelib-1_0-Gio-2_0-2.84.4-160000.2.1.ppc64le.rpm glib2-doc-2.84.4-160000.2.1.ppc64le.rpm glib2-debugsource-2.84.4-160000.2.1.s390x.rpm glib2-devel-2.84.4-160000.2.1.s390x.rpm glib2-devel-debuginfo-2.84.4-160000.2.1.s390x.rpm glib2-devel-static-2.84.4-160000.2.1.s390x.rpm glib2-tests-devel-2.84.4-160000.2.1.s390x.rpm glib2-tests-devel-debuginfo-2.84.4-160000.2.1.s390x.rpm glib2-tools-2.84.4-160000.2.1.s390x.rpm glib2-tools-debuginfo-2.84.4-160000.2.1.s390x.rpm libgio-2_0-0-2.84.4-160000.2.1.s390x.rpm libgio-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm libgirepository-2_0-0-2.84.4-160000.2.1.s390x.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm libglib-2_0-0-2.84.4-160000.2.1.s390x.rpm libglib-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm libgmodule-2_0-0-2.84.4-160000.2.1.s390x.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm libgobject-2_0-0-2.84.4-160000.2.1.s390x.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm libgthread-2_0-0-2.84.4-160000.2.1.s390x.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.2.1.s390x.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.2.1.s390x.rpm typelib-1_0-GLib-2_0-2.84.4-160000.2.1.s390x.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.2.1.s390x.rpm typelib-1_0-GModule-2_0-2.84.4-160000.2.1.s390x.rpm typelib-1_0-GObject-2_0-2.84.4-160000.2.1.s390x.rpm typelib-1_0-Gio-2_0-2.84.4-160000.2.1.s390x.rpm glib2-doc-2.84.4-160000.2.1.s390x.rpm glib2-debugsource-2.84.4-160000.2.1.x86_64.rpm glib2-devel-2.84.4-160000.2.1.x86_64.rpm glib2-devel-debuginfo-2.84.4-160000.2.1.x86_64.rpm glib2-devel-static-2.84.4-160000.2.1.x86_64.rpm glib2-tests-devel-2.84.4-160000.2.1.x86_64.rpm glib2-tests-devel-debuginfo-2.84.4-160000.2.1.x86_64.rpm glib2-tools-2.84.4-160000.2.1.x86_64.rpm glib2-tools-debuginfo-2.84.4-160000.2.1.x86_64.rpm libgio-2_0-0-2.84.4-160000.2.1.x86_64.rpm libgio-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm libgirepository-2_0-0-2.84.4-160000.2.1.x86_64.rpm libgirepository-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm libglib-2_0-0-2.84.4-160000.2.1.x86_64.rpm libglib-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm libgmodule-2_0-0-2.84.4-160000.2.1.x86_64.rpm libgmodule-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm libgobject-2_0-0-2.84.4-160000.2.1.x86_64.rpm libgobject-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm libgthread-2_0-0-2.84.4-160000.2.1.x86_64.rpm libgthread-2_0-0-debuginfo-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-GIRepository-3_0-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-GLib-2_0-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-GLibUnix-2_0-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-GModule-2_0-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-GObject-2_0-2.84.4-160000.2.1.x86_64.rpm typelib-1_0-Gio-2_0-2.84.4-160000.2.1.x86_64.rpm glib2-doc-2.84.4-160000.2.1.x86_64.rpm openSUSE-Leap-16.0-236 Security update for wireshark moderate SUSE SLFO 1.2 This update for wireshark fixes the following issues: Update to Wireshark 4.4.13: - CVE-2025-11626: MONGO dissector infinite loop (bsc#1251933). - CVE-2025-13499: Kafka dissector crash (bsc#1254108). - CVE-2025-13945: HTTP3 dissector crash (bsc#1254471). - CVE-2025-13946: MEGACO dissector infinite loop (bsc#1254472). - CVE-2025-9817: SSH dissector crash (bsc#1249090). - CVE-2026-0959: IEEE 802.11 dissector crash (bsc#1256734). - CVE-2026-0961: BLF file parser crash (bsc#1256738). - CVE-2026-0962: SOME/IP-SD dissector crash (bsc#1256739). Full changelog: https://www.wireshark.org/docs/relnotes/wireshark-4.4.13.html libwireshark18-4.4.13-160000.1.1.aarch64.rpm libwireshark18-debuginfo-4.4.13-160000.1.1.aarch64.rpm libwiretap15-4.4.13-160000.1.1.aarch64.rpm libwiretap15-debuginfo-4.4.13-160000.1.1.aarch64.rpm libwsutil16-4.4.13-160000.1.1.aarch64.rpm libwsutil16-debuginfo-4.4.13-160000.1.1.aarch64.rpm wireshark-4.4.13-160000.1.1.aarch64.rpm wireshark-4.4.13-160000.1.1.src.rpm wireshark-debuginfo-4.4.13-160000.1.1.aarch64.rpm wireshark-debugsource-4.4.13-160000.1.1.aarch64.rpm wireshark-devel-4.4.13-160000.1.1.aarch64.rpm wireshark-ui-qt-4.4.13-160000.1.1.aarch64.rpm wireshark-ui-qt-debuginfo-4.4.13-160000.1.1.aarch64.rpm libwireshark18-4.4.13-160000.1.1.ppc64le.rpm libwireshark18-debuginfo-4.4.13-160000.1.1.ppc64le.rpm libwiretap15-4.4.13-160000.1.1.ppc64le.rpm libwiretap15-debuginfo-4.4.13-160000.1.1.ppc64le.rpm libwsutil16-4.4.13-160000.1.1.ppc64le.rpm libwsutil16-debuginfo-4.4.13-160000.1.1.ppc64le.rpm wireshark-4.4.13-160000.1.1.ppc64le.rpm wireshark-debuginfo-4.4.13-160000.1.1.ppc64le.rpm wireshark-debugsource-4.4.13-160000.1.1.ppc64le.rpm wireshark-devel-4.4.13-160000.1.1.ppc64le.rpm wireshark-ui-qt-4.4.13-160000.1.1.ppc64le.rpm wireshark-ui-qt-debuginfo-4.4.13-160000.1.1.ppc64le.rpm libwireshark18-4.4.13-160000.1.1.s390x.rpm libwireshark18-debuginfo-4.4.13-160000.1.1.s390x.rpm libwiretap15-4.4.13-160000.1.1.s390x.rpm libwiretap15-debuginfo-4.4.13-160000.1.1.s390x.rpm libwsutil16-4.4.13-160000.1.1.s390x.rpm libwsutil16-debuginfo-4.4.13-160000.1.1.s390x.rpm wireshark-4.4.13-160000.1.1.s390x.rpm wireshark-debuginfo-4.4.13-160000.1.1.s390x.rpm wireshark-debugsource-4.4.13-160000.1.1.s390x.rpm wireshark-devel-4.4.13-160000.1.1.s390x.rpm wireshark-ui-qt-4.4.13-160000.1.1.s390x.rpm wireshark-ui-qt-debuginfo-4.4.13-160000.1.1.s390x.rpm libwireshark18-4.4.13-160000.1.1.x86_64.rpm libwireshark18-debuginfo-4.4.13-160000.1.1.x86_64.rpm libwiretap15-4.4.13-160000.1.1.x86_64.rpm libwiretap15-debuginfo-4.4.13-160000.1.1.x86_64.rpm libwsutil16-4.4.13-160000.1.1.x86_64.rpm libwsutil16-debuginfo-4.4.13-160000.1.1.x86_64.rpm wireshark-4.4.13-160000.1.1.x86_64.rpm wireshark-debuginfo-4.4.13-160000.1.1.x86_64.rpm wireshark-debugsource-4.4.13-160000.1.1.x86_64.rpm wireshark-devel-4.4.13-160000.1.1.x86_64.rpm wireshark-ui-qt-4.4.13-160000.1.1.x86_64.rpm wireshark-ui-qt-debuginfo-4.4.13-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-237 Security update for openssl-3 important SUSE SLFO 1.2 This update for openssl-3 fixes the following issues: Security fixes: - CVE-2025-11187: Improper validation of PBMAC1 parameters in PKCS#12 MAC verification (bsc#1256829). - CVE-2025-15467: Stack buffer overflow in CMS AuthEnvelopedData parsing (bsc#1256830). - CVE-2025-15468: NULL dereference in SSL_CIPHER_find() function on unknown cipher ID (bsc#1256831). - CVE-2025-15469: "openssl dgst" one-shot codepath silently truncates inputs >16MB (bsc#1256832). - CVE-2025-66199: TLS 1.3 CompressedCertificate excessive memory allocation (bsc#1256833). - CVE-2025-68160: Heap out-of-bounds write in BIO_f_linebuffer on short writes (bsc#1256834). - CVE-2025-69418: Unauthenticated/unencrypted trailing bytes with low-level OCB function calls (bsc#1256835). - CVE-2025-69419: Out of bounds write in PKCS12_get_friendlyname() UTF-8 conversion (bsc#1256836). - CVE-2025-69420: Missing ASN1_TYPE validation in TS_RESP_verify_response() function (bsc#1256837). - CVE-2025-69421: NULL Pointer Dereference in PKCS12_item_decrypt_d2i_ex function (bsc#1256838). - CVE-2026-22795: Missing ASN1_TYPE validation in PKCS#12 parsing (bsc#1256839). - CVE-2026-22796: ASN1_TYPE Type Confusion in the PKCS7_digest_from_attributes() function (bsc#1256840). Other fixes: - Enable livepatching support for ppc64le (bsc#1257274). libopenssl-3-devel-3.5.0-160000.5.1.aarch64.rpm libopenssl-3-fips-provider-3.5.0-160000.5.1.aarch64.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.5.1.aarch64.rpm libopenssl3-3.5.0-160000.5.1.aarch64.rpm libopenssl3-debuginfo-3.5.0-160000.5.1.aarch64.rpm openssl-3-3.5.0-160000.5.1.aarch64.rpm openssl-3-3.5.0-160000.5.1.src.rpm openssl-3-debuginfo-3.5.0-160000.5.1.aarch64.rpm openssl-3-debugsource-3.5.0-160000.5.1.aarch64.rpm openssl-3-doc-3.5.0-160000.5.1.noarch.rpm libopenssl-3-devel-3.5.0-160000.5.1.ppc64le.rpm libopenssl-3-fips-provider-3.5.0-160000.5.1.ppc64le.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.5.1.ppc64le.rpm libopenssl3-3.5.0-160000.5.1.ppc64le.rpm libopenssl3-debuginfo-3.5.0-160000.5.1.ppc64le.rpm openssl-3-3.5.0-160000.5.1.ppc64le.rpm openssl-3-debuginfo-3.5.0-160000.5.1.ppc64le.rpm openssl-3-debugsource-3.5.0-160000.5.1.ppc64le.rpm libopenssl-3-devel-3.5.0-160000.5.1.s390x.rpm libopenssl-3-fips-provider-3.5.0-160000.5.1.s390x.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.5.1.s390x.rpm libopenssl3-3.5.0-160000.5.1.s390x.rpm libopenssl3-debuginfo-3.5.0-160000.5.1.s390x.rpm openssl-3-3.5.0-160000.5.1.s390x.rpm openssl-3-debuginfo-3.5.0-160000.5.1.s390x.rpm openssl-3-debugsource-3.5.0-160000.5.1.s390x.rpm libopenssl-3-devel-3.5.0-160000.5.1.x86_64.rpm libopenssl-3-fips-provider-3.5.0-160000.5.1.x86_64.rpm libopenssl-3-fips-provider-debuginfo-3.5.0-160000.5.1.x86_64.rpm libopenssl-3-fips-provider-x86-64-v3-3.5.0-160000.5.1.x86_64.rpm libopenssl-3-fips-provider-x86-64-v3-debuginfo-3.5.0-160000.5.1.x86_64.rpm libopenssl3-3.5.0-160000.5.1.x86_64.rpm libopenssl3-debuginfo-3.5.0-160000.5.1.x86_64.rpm libopenssl3-x86-64-v3-3.5.0-160000.5.1.x86_64.rpm libopenssl3-x86-64-v3-debuginfo-3.5.0-160000.5.1.x86_64.rpm openssl-3-3.5.0-160000.5.1.x86_64.rpm openssl-3-debuginfo-3.5.0-160000.5.1.x86_64.rpm openssl-3-debugsource-3.5.0-160000.5.1.x86_64.rpm openSUSE-Leap-16.0-238 Recommended update for uriparser moderate SUSE SLFO 1.2 This update for uriparser fixes the following issues: Changes in uriparser: - Use Qt6's qhelpgenerator instead of Qt5's and fix its usage since Qt5 was being BuildRequired but qch docs weren't being generated. liburiparser1-0.9.8-160000.3.1.aarch64.rpm liburiparser1-debuginfo-0.9.8-160000.3.1.aarch64.rpm uriparser-0.9.8-160000.3.1.aarch64.rpm uriparser-0.9.8-160000.3.1.src.rpm uriparser-debuginfo-0.9.8-160000.3.1.aarch64.rpm uriparser-debugsource-0.9.8-160000.3.1.aarch64.rpm uriparser-devel-0.9.8-160000.3.1.aarch64.rpm uriparser-doc-0.9.8-160000.3.1.aarch64.rpm liburiparser1-0.9.8-160000.3.1.ppc64le.rpm liburiparser1-debuginfo-0.9.8-160000.3.1.ppc64le.rpm uriparser-0.9.8-160000.3.1.ppc64le.rpm uriparser-debuginfo-0.9.8-160000.3.1.ppc64le.rpm uriparser-debugsource-0.9.8-160000.3.1.ppc64le.rpm uriparser-devel-0.9.8-160000.3.1.ppc64le.rpm uriparser-doc-0.9.8-160000.3.1.ppc64le.rpm liburiparser1-0.9.8-160000.3.1.s390x.rpm liburiparser1-debuginfo-0.9.8-160000.3.1.s390x.rpm uriparser-0.9.8-160000.3.1.s390x.rpm uriparser-debuginfo-0.9.8-160000.3.1.s390x.rpm uriparser-debugsource-0.9.8-160000.3.1.s390x.rpm uriparser-devel-0.9.8-160000.3.1.s390x.rpm uriparser-doc-0.9.8-160000.3.1.s390x.rpm liburiparser1-0.9.8-160000.3.1.x86_64.rpm liburiparser1-debuginfo-0.9.8-160000.3.1.x86_64.rpm uriparser-0.9.8-160000.3.1.x86_64.rpm uriparser-debuginfo-0.9.8-160000.3.1.x86_64.rpm uriparser-debugsource-0.9.8-160000.3.1.x86_64.rpm uriparser-devel-0.9.8-160000.3.1.x86_64.rpm uriparser-doc-0.9.8-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-239 Recommended update for mariadb moderate SUSE SLFO 1.2 This update for mariadb fixes the following issues: Changes in mariadb: - Fix incomplete SELinux labels during database update (bsc#1255024) Updating mariadb might impact the database service. Do you want to proceed with the update? libmariadbd-devel-11.8.5-160000.3.1.aarch64.rpm libmariadbd19-11.8.5-160000.3.1.aarch64.rpm libmariadbd19-debuginfo-11.8.5-160000.3.1.aarch64.rpm mariadb-11.8.5-160000.3.1.aarch64.rpm mariadb-11.8.5-160000.3.1.src.rpm mariadb-bench-11.8.5-160000.3.1.aarch64.rpm mariadb-bench-debuginfo-11.8.5-160000.3.1.aarch64.rpm mariadb-client-11.8.5-160000.3.1.aarch64.rpm mariadb-client-debuginfo-11.8.5-160000.3.1.aarch64.rpm mariadb-debuginfo-11.8.5-160000.3.1.aarch64.rpm mariadb-debugsource-11.8.5-160000.3.1.aarch64.rpm mariadb-errormessages-11.8.5-160000.3.1.noarch.rpm mariadb-galera-11.8.5-160000.3.1.aarch64.rpm mariadb-rpm-macros-11.8.5-160000.3.1.aarch64.rpm mariadb-test-11.8.5-160000.3.1.aarch64.rpm mariadb-test-debuginfo-11.8.5-160000.3.1.aarch64.rpm mariadb-tools-11.8.5-160000.3.1.aarch64.rpm mariadb-tools-debuginfo-11.8.5-160000.3.1.aarch64.rpm libmariadbd-devel-11.8.5-160000.3.1.ppc64le.rpm libmariadbd19-11.8.5-160000.3.1.ppc64le.rpm libmariadbd19-debuginfo-11.8.5-160000.3.1.ppc64le.rpm mariadb-11.8.5-160000.3.1.ppc64le.rpm mariadb-bench-11.8.5-160000.3.1.ppc64le.rpm mariadb-bench-debuginfo-11.8.5-160000.3.1.ppc64le.rpm mariadb-client-11.8.5-160000.3.1.ppc64le.rpm mariadb-client-debuginfo-11.8.5-160000.3.1.ppc64le.rpm mariadb-debuginfo-11.8.5-160000.3.1.ppc64le.rpm mariadb-debugsource-11.8.5-160000.3.1.ppc64le.rpm mariadb-galera-11.8.5-160000.3.1.ppc64le.rpm mariadb-rpm-macros-11.8.5-160000.3.1.ppc64le.rpm mariadb-test-11.8.5-160000.3.1.ppc64le.rpm mariadb-test-debuginfo-11.8.5-160000.3.1.ppc64le.rpm mariadb-tools-11.8.5-160000.3.1.ppc64le.rpm mariadb-tools-debuginfo-11.8.5-160000.3.1.ppc64le.rpm libmariadbd-devel-11.8.5-160000.3.1.s390x.rpm libmariadbd19-11.8.5-160000.3.1.s390x.rpm libmariadbd19-debuginfo-11.8.5-160000.3.1.s390x.rpm mariadb-11.8.5-160000.3.1.s390x.rpm mariadb-bench-11.8.5-160000.3.1.s390x.rpm mariadb-bench-debuginfo-11.8.5-160000.3.1.s390x.rpm mariadb-client-11.8.5-160000.3.1.s390x.rpm mariadb-client-debuginfo-11.8.5-160000.3.1.s390x.rpm mariadb-debuginfo-11.8.5-160000.3.1.s390x.rpm mariadb-debugsource-11.8.5-160000.3.1.s390x.rpm mariadb-galera-11.8.5-160000.3.1.s390x.rpm mariadb-rpm-macros-11.8.5-160000.3.1.s390x.rpm mariadb-test-11.8.5-160000.3.1.s390x.rpm mariadb-test-debuginfo-11.8.5-160000.3.1.s390x.rpm mariadb-tools-11.8.5-160000.3.1.s390x.rpm mariadb-tools-debuginfo-11.8.5-160000.3.1.s390x.rpm libmariadbd-devel-11.8.5-160000.3.1.x86_64.rpm libmariadbd19-11.8.5-160000.3.1.x86_64.rpm libmariadbd19-debuginfo-11.8.5-160000.3.1.x86_64.rpm mariadb-11.8.5-160000.3.1.x86_64.rpm mariadb-bench-11.8.5-160000.3.1.x86_64.rpm mariadb-bench-debuginfo-11.8.5-160000.3.1.x86_64.rpm mariadb-client-11.8.5-160000.3.1.x86_64.rpm mariadb-client-debuginfo-11.8.5-160000.3.1.x86_64.rpm mariadb-debuginfo-11.8.5-160000.3.1.x86_64.rpm mariadb-debugsource-11.8.5-160000.3.1.x86_64.rpm mariadb-galera-11.8.5-160000.3.1.x86_64.rpm mariadb-rpm-macros-11.8.5-160000.3.1.x86_64.rpm mariadb-test-11.8.5-160000.3.1.x86_64.rpm mariadb-test-debuginfo-11.8.5-160000.3.1.x86_64.rpm mariadb-tools-11.8.5-160000.3.1.x86_64.rpm mariadb-tools-debuginfo-11.8.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-24 Security update for libxslt important SUSE SLFO 1.2 This update for libxslt fixes the following issues: Changes in libxslt: - CVE-2025-11731: Fixed type confusion in exsltFuncResultCompfunction leading to denial of service (bsc#1251979) - CVE-2025-10911: Fixed use-after-free with key data stored cross-RVT (bsc#1250553) libexslt0-1.1.43-160000.3.1.aarch64.rpm libexslt0-debuginfo-1.1.43-160000.3.1.aarch64.rpm libxslt-1.1.43-160000.3.1.src.rpm libxslt-debugsource-1.1.43-160000.3.1.aarch64.rpm libxslt-devel-1.1.43-160000.3.1.aarch64.rpm libxslt-tools-1.1.43-160000.3.1.aarch64.rpm libxslt-tools-debuginfo-1.1.43-160000.3.1.aarch64.rpm libxslt1-1.1.43-160000.3.1.aarch64.rpm libxslt1-debuginfo-1.1.43-160000.3.1.aarch64.rpm libexslt0-1.1.43-160000.3.1.ppc64le.rpm libexslt0-debuginfo-1.1.43-160000.3.1.ppc64le.rpm libxslt-debugsource-1.1.43-160000.3.1.ppc64le.rpm libxslt-devel-1.1.43-160000.3.1.ppc64le.rpm libxslt-tools-1.1.43-160000.3.1.ppc64le.rpm libxslt-tools-debuginfo-1.1.43-160000.3.1.ppc64le.rpm libxslt1-1.1.43-160000.3.1.ppc64le.rpm libxslt1-debuginfo-1.1.43-160000.3.1.ppc64le.rpm libexslt0-1.1.43-160000.3.1.s390x.rpm libexslt0-debuginfo-1.1.43-160000.3.1.s390x.rpm libxslt-debugsource-1.1.43-160000.3.1.s390x.rpm libxslt-devel-1.1.43-160000.3.1.s390x.rpm libxslt-tools-1.1.43-160000.3.1.s390x.rpm libxslt-tools-debuginfo-1.1.43-160000.3.1.s390x.rpm libxslt1-1.1.43-160000.3.1.s390x.rpm libxslt1-debuginfo-1.1.43-160000.3.1.s390x.rpm libexslt0-1.1.43-160000.3.1.x86_64.rpm libexslt0-debuginfo-1.1.43-160000.3.1.x86_64.rpm libxslt-debugsource-1.1.43-160000.3.1.x86_64.rpm libxslt-devel-1.1.43-160000.3.1.x86_64.rpm libxslt-tools-1.1.43-160000.3.1.x86_64.rpm libxslt-tools-debuginfo-1.1.43-160000.3.1.x86_64.rpm libxslt1-1.1.43-160000.3.1.x86_64.rpm libxslt1-debuginfo-1.1.43-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-240 Recommended update for az-cli-cmd low SUSE SLFO 1.2 This update for az-cli-cmd fixes the following issues: - Update package summary (bsc#1253491) az-cli-cmd-1.37.1-160000.2.1.noarch.rpm az-cli-cmd-1.37.1-160000.2.1.src.rpm openSUSE-Leap-16.0-241 Recommended update for agama moderate SUSE SLFO 1.2 This update for agama fixes the following issues: Changes in agama: - Do not export DASD settings if they are null (bsc#1257489). agama-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-17+461.2289ec0b6-160000.7.1.src.rpm agama-autoinstall-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-autoinstall-debuginfo-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-cli-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-cli-bash-completion-17+461.2289ec0b6-160000.7.1.noarch.rpm agama-cli-debuginfo-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-cli-fish-completion-17+461.2289ec0b6-160000.7.1.noarch.rpm agama-cli-zsh-completion-17+461.2289ec0b6-160000.7.1.noarch.rpm agama-debuginfo-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-debugsource-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-openapi-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-scripts-17+461.2289ec0b6-160000.7.1.aarch64.rpm agama-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-autoinstall-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-autoinstall-debuginfo-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-cli-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-cli-debuginfo-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-debuginfo-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-debugsource-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-openapi-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-scripts-17+461.2289ec0b6-160000.7.1.ppc64le.rpm agama-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-autoinstall-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-autoinstall-debuginfo-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-cli-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-cli-debuginfo-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-debuginfo-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-debugsource-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-openapi-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-scripts-17+461.2289ec0b6-160000.7.1.s390x.rpm agama-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-autoinstall-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-autoinstall-debuginfo-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-cli-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-cli-debuginfo-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-debuginfo-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-debugsource-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-openapi-17+461.2289ec0b6-160000.7.1.x86_64.rpm agama-scripts-17+461.2289ec0b6-160000.7.1.x86_64.rpm openSUSE-Leap-16.0-242 Security update for cups critical SUSE SLFO 1.2 This update for cups fixes the following issues: Update to version 2.4.16. Security issues fixed: - CVE-2025-61915: local denial-of-service via cupsd.conf update and related issues (bsc#1253783). - CVE-2025-58436: slow client communication leads to a possible DoS attack (bsc#1244057). - CVE-2025-58364: unsafe deserialization and validation of printer attributes can cause a null dereference (bsc#1249128). - CVE-2025-58060: authentication bypass with AuthType Negotiate (bsc#1249049). Other updates and bugfixes: - Version upgrade to 2.4.16: * 'cupsUTF8ToCharset' didn't validate 2-byte UTF-8 sequences, potentially reading past the end of the source string (Issue #1438) * The web interface did not support domain usernames fully (Issue #1441) * Fixed an infinite loop issue in the GTK+ print dialog (Issue #1439 boo#1254353) * Fixed stopping scheduler on unknown directive in configuration (Issue #1443) * Fixed packages for Immutable Mode (jsc#PED-14775 from epic jsc#PED-14688) - Version upgrade to 2.4.15: * Fixed potential crash in 'cups-driverd' when there are duplicate PPDs (Issue #1355) * Fixed error recovery when scanning for PPDs in 'cups-driverd' (Issue #1416) - Version upgrade to 2.4.14. - Version upgrade to 2.4.13: * Added 'print-as-raster' printer and job attributes for forcing rasterization (Issue #1282) * Updated documentation (Issue #1086) * Updated IPP backend to try a sanitized user name if the printer/server does not like the value (Issue #1145) * Updated the scheduler to send the "printer-added" or "printer-modified" events whenever an IPP Everywhere PPD is installed (Issue #1244) * Updated the scheduler to send the "printer-modified" event whenever the system default printer is changed (Issue #1246) * Fixed a memory leak in 'httpClose' (Issue #1223) * Fixed missing commas in 'ippCreateRequestedArray' (Issue #1234) * Fixed subscription issues in the scheduler and D-Bus notifier (Issue #1235) * Fixed media-default reporting for custom sizes (Issue #1238) * Fixed support for IPP/PPD options with periods or underscores (Issue #1249) * Fixed parsing of real numbers in PPD compiler source files (Issue #1263) * Fixed scheduler freezing with zombie clients (Issue #1264) * Fixed support for the server name in the ErrorLog filename (Issue #1277) * Fixed job cleanup after daemon restart (Issue #1315) * Fixed handling of buggy DYMO USB printer serial numbers (Issue #1338) * Fixed unreachable block in IPP backend (Issue #1351) * Fixed memory leak in _cupsConvertOptions (Issue #1354) - Version upgrade to 2.4.12: * GnuTLS follows system crypto policies now (Issue #1105) * Added `NoSystem` SSLOptions value (Issue #1130) * Now we raise alert for certificate issues (Issue #1194) * Added Kyocera USB quirk (Issue #1198) * The scheduler now logs a job's debugging history if the backend fails (Issue #1205) * Fixed a potential timing issue with `cupsEnumDests` (Issue #1084) * Fixed a potential "lost PPD" condition in the scheduler (Issue #1109) * Fixed a compressed file error handling bug (Issue #1070) * Fixed a bug in the make-and-model whitespace trimming code (Issue #1096) * Fixed a removal of IPP Everywhere permanent queue if installation failed (Issue #1102) * Fixed `ServerToken None` in scheduler (Issue #1111) * Fixed invalid IPP keyword values created from PPD option names (Issue #1118) * Fixed handling of "media" and "PageSize" in the same print request (Issue #1125) * Fixed client raster printing from macOS (Issue #1143) * Fixed the default User-Agent string. * Fixed a recursion issue in `ippReadIO`. * Fixed handling incorrect radix in `scan_ps()` (Issue #1188) * Fixed validation of dateTime values with time zones more than UTC+11 (Issue #1201) * Fixed attributes returned by the Create-Xxx-Subscriptions requests (Issue #1204) * Fixed `ippDateToTime` when using a non GMT/UTC timezone (Issue #1208) * Fixed `job-completed` event notifications for jobs that are cancelled before started (Issue #1209) * Fixed DNS-SD discovery with `ippfind` (Issue #1211) cups-2.4.16-160000.1.1.aarch64.rpm cups-2.4.16-160000.1.1.src.rpm cups-client-2.4.16-160000.1.1.aarch64.rpm cups-client-debuginfo-2.4.16-160000.1.1.aarch64.rpm cups-config-2.4.16-160000.1.1.aarch64.rpm cups-ddk-2.4.16-160000.1.1.aarch64.rpm cups-ddk-debuginfo-2.4.16-160000.1.1.aarch64.rpm cups-debuginfo-2.4.16-160000.1.1.aarch64.rpm cups-debugsource-2.4.16-160000.1.1.aarch64.rpm cups-devel-2.4.16-160000.1.1.aarch64.rpm libcups2-2.4.16-160000.1.1.aarch64.rpm libcups2-debuginfo-2.4.16-160000.1.1.aarch64.rpm libcupsimage2-2.4.16-160000.1.1.aarch64.rpm libcupsimage2-debuginfo-2.4.16-160000.1.1.aarch64.rpm cups-2.4.16-160000.1.1.ppc64le.rpm cups-client-2.4.16-160000.1.1.ppc64le.rpm cups-client-debuginfo-2.4.16-160000.1.1.ppc64le.rpm cups-config-2.4.16-160000.1.1.ppc64le.rpm cups-ddk-2.4.16-160000.1.1.ppc64le.rpm cups-ddk-debuginfo-2.4.16-160000.1.1.ppc64le.rpm cups-debuginfo-2.4.16-160000.1.1.ppc64le.rpm cups-debugsource-2.4.16-160000.1.1.ppc64le.rpm cups-devel-2.4.16-160000.1.1.ppc64le.rpm libcups2-2.4.16-160000.1.1.ppc64le.rpm libcups2-debuginfo-2.4.16-160000.1.1.ppc64le.rpm libcupsimage2-2.4.16-160000.1.1.ppc64le.rpm libcupsimage2-debuginfo-2.4.16-160000.1.1.ppc64le.rpm cups-2.4.16-160000.1.1.s390x.rpm cups-client-2.4.16-160000.1.1.s390x.rpm cups-client-debuginfo-2.4.16-160000.1.1.s390x.rpm cups-config-2.4.16-160000.1.1.s390x.rpm cups-ddk-2.4.16-160000.1.1.s390x.rpm cups-ddk-debuginfo-2.4.16-160000.1.1.s390x.rpm cups-debuginfo-2.4.16-160000.1.1.s390x.rpm cups-debugsource-2.4.16-160000.1.1.s390x.rpm cups-devel-2.4.16-160000.1.1.s390x.rpm libcups2-2.4.16-160000.1.1.s390x.rpm libcups2-debuginfo-2.4.16-160000.1.1.s390x.rpm libcupsimage2-2.4.16-160000.1.1.s390x.rpm libcupsimage2-debuginfo-2.4.16-160000.1.1.s390x.rpm cups-2.4.16-160000.1.1.x86_64.rpm cups-client-2.4.16-160000.1.1.x86_64.rpm cups-client-debuginfo-2.4.16-160000.1.1.x86_64.rpm cups-config-2.4.16-160000.1.1.x86_64.rpm cups-ddk-2.4.16-160000.1.1.x86_64.rpm cups-ddk-debuginfo-2.4.16-160000.1.1.x86_64.rpm cups-debuginfo-2.4.16-160000.1.1.x86_64.rpm cups-debugsource-2.4.16-160000.1.1.x86_64.rpm cups-devel-2.4.16-160000.1.1.x86_64.rpm libcups2-2.4.16-160000.1.1.x86_64.rpm libcups2-debuginfo-2.4.16-160000.1.1.x86_64.rpm libcupsimage2-2.4.16-160000.1.1.x86_64.rpm libcupsimage2-debuginfo-2.4.16-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-25 Recommended update for pesign-obs-integration moderate SUSE SLFO 1.2 This update for pesign-obs-integration fixes the following issues: - pesign-obs-integration fails build when no signed binary is produced (bsc#1248618) pesign-obs-integration-10.2+git20250219.c99462c-160000.3.1.aarch64.rpm pesign-obs-integration-10.2+git20250219.c99462c-160000.3.1.src.rpm pesign-obs-integration-10.2+git20250219.c99462c-160000.3.1.ppc64le.rpm pesign-obs-integration-10.2+git20250219.c99462c-160000.3.1.s390x.rpm pesign-obs-integration-10.2+git20250219.c99462c-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-26 Recommended update for dracut important SUSE SLFO 1.2 This update for dracut fixes the following issues: - Additional fixes for PXE boot with filled-in NBFT (bsc#1238848): * fix (74nvmf): make sure autoconnect script is run at least once * fix (74nvmf): only set netroot if it's yet empty dracut-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-059+suse.700.g40f7c5c4-160000.1.1.src.rpm dracut-debuginfo-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-debugsource-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-extra-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-fips-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-ima-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-tools-059+suse.700.g40f7c5c4-160000.1.1.aarch64.rpm dracut-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-debuginfo-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-debugsource-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-extra-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-fips-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-ima-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-tools-059+suse.700.g40f7c5c4-160000.1.1.ppc64le.rpm dracut-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-debuginfo-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-debugsource-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-extra-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-fips-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-ima-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-tools-059+suse.700.g40f7c5c4-160000.1.1.s390x.rpm dracut-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-debuginfo-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-debugsource-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-extra-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-fips-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-ima-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm dracut-tools-059+suse.700.g40f7c5c4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-27 Recommended update for wpa_supplicant moderate SUSE SLFO 1.2 This update for wpa_supplicant fixes the following issues: - Build wpa_gui with qt6 instead of obsolete qt5 - Update build config: * Enable 802.11ax support wpa_supplicant-2.11-160000.3.1.aarch64.rpm wpa_supplicant-2.11-160000.3.1.src.rpm wpa_supplicant-debuginfo-2.11-160000.3.1.aarch64.rpm wpa_supplicant-debugsource-2.11-160000.3.1.aarch64.rpm wpa_supplicant-gui-2.11-160000.3.1.aarch64.rpm wpa_supplicant-gui-debuginfo-2.11-160000.3.1.aarch64.rpm wpa_supplicant-2.11-160000.3.1.ppc64le.rpm wpa_supplicant-debuginfo-2.11-160000.3.1.ppc64le.rpm wpa_supplicant-debugsource-2.11-160000.3.1.ppc64le.rpm wpa_supplicant-gui-2.11-160000.3.1.ppc64le.rpm wpa_supplicant-gui-debuginfo-2.11-160000.3.1.ppc64le.rpm wpa_supplicant-2.11-160000.3.1.s390x.rpm wpa_supplicant-debuginfo-2.11-160000.3.1.s390x.rpm wpa_supplicant-debugsource-2.11-160000.3.1.s390x.rpm wpa_supplicant-gui-2.11-160000.3.1.s390x.rpm wpa_supplicant-gui-debuginfo-2.11-160000.3.1.s390x.rpm wpa_supplicant-2.11-160000.3.1.x86_64.rpm wpa_supplicant-debuginfo-2.11-160000.3.1.x86_64.rpm wpa_supplicant-debugsource-2.11-160000.3.1.x86_64.rpm wpa_supplicant-gui-2.11-160000.3.1.x86_64.rpm wpa_supplicant-gui-debuginfo-2.11-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-28 Recommended update for gnome-shell moderate SUSE SLFO 1.2 This update for gnome-shell fixes the following issues: - Avoid error log when can't load calendars (bsc#1247037). - Fix taking interactive screenshots via D-Bus. - Fix pointer scaling glitches in magnifier. - Fix drawing glitch in sliders in RTL locales. - Misc. bug fixes and cleanups. - Updated translations. gnome-extensions-48.4-160000.1.1.aarch64.rpm gnome-shell-48.4-160000.1.1.aarch64.rpm gnome-shell-48.4-160000.1.1.src.rpm gnome-shell-calendar-48.4-160000.1.1.aarch64.rpm gnome-shell-calendar-debuginfo-48.4-160000.1.1.aarch64.rpm gnome-shell-debuginfo-48.4-160000.1.1.aarch64.rpm gnome-shell-debugsource-48.4-160000.1.1.aarch64.rpm gnome-shell-devel-48.4-160000.1.1.aarch64.rpm gnome-shell-lang-48.4-160000.1.1.noarch.rpm gnome-extensions-48.4-160000.1.1.ppc64le.rpm gnome-shell-48.4-160000.1.1.ppc64le.rpm gnome-shell-calendar-48.4-160000.1.1.ppc64le.rpm gnome-shell-calendar-debuginfo-48.4-160000.1.1.ppc64le.rpm gnome-shell-debuginfo-48.4-160000.1.1.ppc64le.rpm gnome-shell-debugsource-48.4-160000.1.1.ppc64le.rpm gnome-shell-devel-48.4-160000.1.1.ppc64le.rpm gnome-extensions-48.4-160000.1.1.s390x.rpm gnome-shell-48.4-160000.1.1.s390x.rpm gnome-shell-calendar-48.4-160000.1.1.s390x.rpm gnome-shell-calendar-debuginfo-48.4-160000.1.1.s390x.rpm gnome-shell-debuginfo-48.4-160000.1.1.s390x.rpm gnome-shell-debugsource-48.4-160000.1.1.s390x.rpm gnome-shell-devel-48.4-160000.1.1.s390x.rpm gnome-extensions-48.4-160000.1.1.x86_64.rpm gnome-shell-48.4-160000.1.1.x86_64.rpm gnome-shell-calendar-48.4-160000.1.1.x86_64.rpm gnome-shell-calendar-debuginfo-48.4-160000.1.1.x86_64.rpm gnome-shell-debuginfo-48.4-160000.1.1.x86_64.rpm gnome-shell-debugsource-48.4-160000.1.1.x86_64.rpm gnome-shell-devel-48.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-29 Security update for expat important SUSE SLFO 1.2 This update for expat fixes the following issues: - CVE-2025-59375: Fixed large dynamic memory allocations via a small document submitted for parsing (bsc#1249584) expat-2.7.1-160000.3.1.aarch64.rpm expat-2.7.1-160000.3.1.src.rpm expat-debuginfo-2.7.1-160000.3.1.aarch64.rpm expat-debugsource-2.7.1-160000.3.1.aarch64.rpm libexpat-devel-2.7.1-160000.3.1.aarch64.rpm libexpat1-2.7.1-160000.3.1.aarch64.rpm libexpat1-debuginfo-2.7.1-160000.3.1.aarch64.rpm expat-2.7.1-160000.3.1.ppc64le.rpm expat-debuginfo-2.7.1-160000.3.1.ppc64le.rpm expat-debugsource-2.7.1-160000.3.1.ppc64le.rpm libexpat-devel-2.7.1-160000.3.1.ppc64le.rpm libexpat1-2.7.1-160000.3.1.ppc64le.rpm libexpat1-debuginfo-2.7.1-160000.3.1.ppc64le.rpm expat-2.7.1-160000.3.1.s390x.rpm expat-debuginfo-2.7.1-160000.3.1.s390x.rpm expat-debugsource-2.7.1-160000.3.1.s390x.rpm libexpat-devel-2.7.1-160000.3.1.s390x.rpm libexpat1-2.7.1-160000.3.1.s390x.rpm libexpat1-debuginfo-2.7.1-160000.3.1.s390x.rpm expat-2.7.1-160000.3.1.x86_64.rpm expat-debuginfo-2.7.1-160000.3.1.x86_64.rpm expat-debugsource-2.7.1-160000.3.1.x86_64.rpm libexpat-devel-2.7.1-160000.3.1.x86_64.rpm libexpat1-2.7.1-160000.3.1.x86_64.rpm libexpat1-debuginfo-2.7.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-3 Recommended update of python-instance-billing-flavor-check moderate SUSE SLFO 1.2 This update for python-instance-billing-flavor-check fixes the following issues: - Build fix for SLE 16 and later (bsc#1250110) python-instance-billing-flavor-check-1.0.1-160000.3.1.aarch64.rpm python-instance-billing-flavor-check-1.0.1-160000.3.1.src.rpm python-instance-billing-flavor-check-1.0.1-160000.3.1.ppc64le.rpm python-instance-billing-flavor-check-1.0.1-160000.3.1.s390x.rpm python-instance-billing-flavor-check-1.0.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-30 Security update for openexr moderate SUSE SLFO 1.2 This update for openexr fixes the following issues: - CVE-2025-64181: Fixed use of uninitialized memory in function generic_unpack() (bsc#1253233) libIex-3_2-31-3.2.2-160000.3.1.aarch64.rpm libIex-3_2-31-debuginfo-3.2.2-160000.3.1.aarch64.rpm libIlmThread-3_2-31-3.2.2-160000.3.1.aarch64.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.3.1.aarch64.rpm libOpenEXR-3_2-31-3.2.2-160000.3.1.aarch64.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.3.1.aarch64.rpm libOpenEXRCore-3_2-31-3.2.2-160000.3.1.aarch64.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.3.1.aarch64.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.3.1.aarch64.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.3.1.aarch64.rpm openexr-3.2.2-160000.3.1.aarch64.rpm openexr-3.2.2-160000.3.1.src.rpm openexr-debuginfo-3.2.2-160000.3.1.aarch64.rpm openexr-debugsource-3.2.2-160000.3.1.aarch64.rpm openexr-devel-3.2.2-160000.3.1.aarch64.rpm openexr-doc-3.2.2-160000.3.1.noarch.rpm libIex-3_2-31-3.2.2-160000.3.1.ppc64le.rpm libIex-3_2-31-debuginfo-3.2.2-160000.3.1.ppc64le.rpm libIlmThread-3_2-31-3.2.2-160000.3.1.ppc64le.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.3.1.ppc64le.rpm libOpenEXR-3_2-31-3.2.2-160000.3.1.ppc64le.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.3.1.ppc64le.rpm libOpenEXRCore-3_2-31-3.2.2-160000.3.1.ppc64le.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.3.1.ppc64le.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.3.1.ppc64le.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.3.1.ppc64le.rpm openexr-3.2.2-160000.3.1.ppc64le.rpm openexr-debuginfo-3.2.2-160000.3.1.ppc64le.rpm openexr-debugsource-3.2.2-160000.3.1.ppc64le.rpm openexr-devel-3.2.2-160000.3.1.ppc64le.rpm libIex-3_2-31-3.2.2-160000.3.1.s390x.rpm libIex-3_2-31-debuginfo-3.2.2-160000.3.1.s390x.rpm libIlmThread-3_2-31-3.2.2-160000.3.1.s390x.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.3.1.s390x.rpm libOpenEXR-3_2-31-3.2.2-160000.3.1.s390x.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.3.1.s390x.rpm libOpenEXRCore-3_2-31-3.2.2-160000.3.1.s390x.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.3.1.s390x.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.3.1.s390x.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.3.1.s390x.rpm openexr-3.2.2-160000.3.1.s390x.rpm openexr-debuginfo-3.2.2-160000.3.1.s390x.rpm openexr-debugsource-3.2.2-160000.3.1.s390x.rpm openexr-devel-3.2.2-160000.3.1.s390x.rpm libIex-3_2-31-3.2.2-160000.3.1.x86_64.rpm libIex-3_2-31-debuginfo-3.2.2-160000.3.1.x86_64.rpm libIex-3_2-31-x86-64-v3-3.2.2-160000.3.1.x86_64.rpm libIex-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.3.1.x86_64.rpm libIlmThread-3_2-31-3.2.2-160000.3.1.x86_64.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.3.1.x86_64.rpm libIlmThread-3_2-31-x86-64-v3-3.2.2-160000.3.1.x86_64.rpm libIlmThread-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXR-3_2-31-3.2.2-160000.3.1.x86_64.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXR-3_2-31-x86-64-v3-3.2.2-160000.3.1.x86_64.rpm libOpenEXR-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXRCore-3_2-31-3.2.2-160000.3.1.x86_64.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXRCore-3_2-31-x86-64-v3-3.2.2-160000.3.1.x86_64.rpm libOpenEXRCore-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.3.1.x86_64.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.3.1.x86_64.rpm libOpenEXRUtil-3_2-31-x86-64-v3-3.2.2-160000.3.1.x86_64.rpm libOpenEXRUtil-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.3.1.x86_64.rpm openexr-3.2.2-160000.3.1.x86_64.rpm openexr-debuginfo-3.2.2-160000.3.1.x86_64.rpm openexr-debugsource-3.2.2-160000.3.1.x86_64.rpm openexr-devel-3.2.2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-31 Recommended update for x3270 moderate SUSE SLFO 1.2 This update for x3270 fixes the following issues: Changes in x3270: - Upgrade to version 4.4ga6 x3270-4.4-160000.1.1.aarch64.rpm x3270-4.4-160000.1.1.src.rpm x3270-debuginfo-4.4-160000.1.1.aarch64.rpm x3270-debugsource-4.4-160000.1.1.aarch64.rpm x3270-4.4-160000.1.1.ppc64le.rpm x3270-debuginfo-4.4-160000.1.1.ppc64le.rpm x3270-debugsource-4.4-160000.1.1.ppc64le.rpm x3270-4.4-160000.1.1.s390x.rpm x3270-debuginfo-4.4-160000.1.1.s390x.rpm x3270-debugsource-4.4-160000.1.1.s390x.rpm x3270-4.4-160000.1.1.x86_64.rpm x3270-debuginfo-4.4-160000.1.1.x86_64.rpm x3270-debugsource-4.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-32 Recommended update for autofs important SUSE SLFO 1.2 This update for autofs fixes the following issues: Changes in autofs: - Modified NetworkManager-autofs: (bsc#1250091) * don't reload autofs.service on loopback interface changes * add --no-block option to request asynchronous behavior autofs-5.1.9-160000.4.1.aarch64.rpm autofs-5.1.9-160000.4.1.src.rpm autofs-debuginfo-5.1.9-160000.4.1.aarch64.rpm autofs-debugsource-5.1.9-160000.4.1.aarch64.rpm autofs-5.1.9-160000.4.1.ppc64le.rpm autofs-debuginfo-5.1.9-160000.4.1.ppc64le.rpm autofs-debugsource-5.1.9-160000.4.1.ppc64le.rpm autofs-5.1.9-160000.4.1.s390x.rpm autofs-debuginfo-5.1.9-160000.4.1.s390x.rpm autofs-debugsource-5.1.9-160000.4.1.s390x.rpm autofs-5.1.9-160000.4.1.x86_64.rpm autofs-debuginfo-5.1.9-160000.4.1.x86_64.rpm autofs-debugsource-5.1.9-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-33 Security update for ongres-scram important SUSE SLFO 1.2 This update for ongres-scram fixes the following issues: - CVE-2025-59432: Fixed timing attack vulnerability in SCRAM Authentication (bsc#1250399) ongres-scram-3.1-160000.3.1.noarch.rpm ongres-scram-3.1-160000.3.1.src.rpm ongres-scram-client-3.1-160000.3.1.noarch.rpm ongres-scram-javadoc-3.1-160000.3.1.noarch.rpm openSUSE-Leap-16.0-34 Recommended update for smartmontools moderate SUSE SLFO 1.2 This update for smartmontools fixes the following issues: - update-smart-drivedb: * Provide support for the new upstream GitHub repository. * Do not overwrite files in /usr/share. * Use /var/lib provided by --with-drivedbinstdir. - Add smartmontools-drivedb.h version 5894 from the branch 7.5. - Update to 7.5 (jsc#PED-13806). smartmontools-7.5-160000.3.1.aarch64.rpm smartmontools-7.5-160000.3.1.src.rpm smartmontools-debuginfo-7.5-160000.3.1.aarch64.rpm smartmontools-debugsource-7.5-160000.3.1.aarch64.rpm smartmontools-7.5-160000.3.1.ppc64le.rpm smartmontools-debuginfo-7.5-160000.3.1.ppc64le.rpm smartmontools-debugsource-7.5-160000.3.1.ppc64le.rpm smartmontools-7.5-160000.3.1.s390x.rpm smartmontools-debuginfo-7.5-160000.3.1.s390x.rpm smartmontools-debugsource-7.5-160000.3.1.s390x.rpm smartmontools-7.5-160000.3.1.x86_64.rpm smartmontools-debuginfo-7.5-160000.3.1.x86_64.rpm smartmontools-debugsource-7.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-35 Recommended update for openmpi5 moderate SUSE SLFO 1.2 This update for openmpi5 fixes the following issues: - Enable Grid Cluster Scheduler support (jsc#PED-13373) - Update to 5.0.8 - UCC collective operations: * Improved handling of MPI_IN_PLACE in allgather, allgatherv, alltoall, alltoallv, gather, gatherv, scatter, and scatterv operations - UCX OSC: Added support for "no_locks" info key to disable lock table usage - OFI MTL: Enhanced CXI provider support for better compatibility - AARCH64: Added SVE detection alongside NEON in aarch64 op component - Fortran: Fixed common symbol sizes and alignments for better compatibility - Hugepage Mpool: Fixed sizing of hugepages for better memory management - Configure: Fixed --with-prrte=internal option handling - Documentation: Updated shared memory and networking documentation - Build system: Fixed support for flang on OSX - Removed unused spread contrib sample scripts - Various documentation updates and improvements - CI: Removed Ubuntu 18 and RHEL 7 from test matrix - Fixed type mismatch errors in shared memory components - Updated Java configuration for latest Fedora releases - Fixed memory zone reference counting in UCX dynamic windows - Fixed a compilation error as it was merged upstream openmpi5-5.0.8-160000.1.1.aarch64.rpm openmpi5-5.0.8-160000.1.1.src.rpm openmpi5-config-5.0.8-160000.1.1.aarch64.rpm openmpi5-debuginfo-5.0.8-160000.1.1.aarch64.rpm openmpi5-debugsource-5.0.8-160000.1.1.aarch64.rpm openmpi5-devel-5.0.8-160000.1.1.aarch64.rpm openmpi5-devel-debuginfo-5.0.8-160000.1.1.aarch64.rpm openmpi5-docs-5.0.8-160000.1.1.aarch64.rpm openmpi5-libs-5.0.8-160000.1.1.aarch64.rpm openmpi5-libs-debuginfo-5.0.8-160000.1.1.aarch64.rpm openmpi5-macros-devel-5.0.8-160000.1.1.aarch64.rpm openmpi5-testsuite-5.0.8-160000.1.1.noarch.rpm openmpi5-testsuite-5.0.8-160000.1.1.src.rpm openmpi5-5.0.8-160000.1.1.ppc64le.rpm openmpi5-config-5.0.8-160000.1.1.ppc64le.rpm openmpi5-debuginfo-5.0.8-160000.1.1.ppc64le.rpm openmpi5-debugsource-5.0.8-160000.1.1.ppc64le.rpm openmpi5-devel-5.0.8-160000.1.1.ppc64le.rpm openmpi5-devel-debuginfo-5.0.8-160000.1.1.ppc64le.rpm openmpi5-docs-5.0.8-160000.1.1.ppc64le.rpm openmpi5-libs-5.0.8-160000.1.1.ppc64le.rpm openmpi5-libs-debuginfo-5.0.8-160000.1.1.ppc64le.rpm openmpi5-macros-devel-5.0.8-160000.1.1.ppc64le.rpm openmpi5-5.0.8-160000.1.1.s390x.rpm openmpi5-config-5.0.8-160000.1.1.s390x.rpm openmpi5-debuginfo-5.0.8-160000.1.1.s390x.rpm openmpi5-debugsource-5.0.8-160000.1.1.s390x.rpm openmpi5-devel-5.0.8-160000.1.1.s390x.rpm openmpi5-devel-debuginfo-5.0.8-160000.1.1.s390x.rpm openmpi5-docs-5.0.8-160000.1.1.s390x.rpm openmpi5-libs-5.0.8-160000.1.1.s390x.rpm openmpi5-libs-debuginfo-5.0.8-160000.1.1.s390x.rpm openmpi5-macros-devel-5.0.8-160000.1.1.s390x.rpm openmpi5-5.0.8-160000.1.1.x86_64.rpm openmpi5-config-5.0.8-160000.1.1.x86_64.rpm openmpi5-debuginfo-5.0.8-160000.1.1.x86_64.rpm openmpi5-debugsource-5.0.8-160000.1.1.x86_64.rpm openmpi5-devel-5.0.8-160000.1.1.x86_64.rpm openmpi5-devel-debuginfo-5.0.8-160000.1.1.x86_64.rpm openmpi5-docs-5.0.8-160000.1.1.x86_64.rpm openmpi5-libs-5.0.8-160000.1.1.x86_64.rpm openmpi5-libs-debuginfo-5.0.8-160000.1.1.x86_64.rpm openmpi5-macros-devel-5.0.8-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-36 Recommended update for openmpi4 moderate SUSE SLFO 1.2 This update for openmpi4 fixes the following issues: - Enable Grid Cluster Scheduler support (jsc#PED-13373) openmpi4-4.1.8-160000.3.1.aarch64.rpm openmpi4-4.1.8-160000.3.1.src.rpm openmpi4-config-4.1.8-160000.3.1.aarch64.rpm openmpi4-debuginfo-4.1.8-160000.3.1.aarch64.rpm openmpi4-debugsource-4.1.8-160000.3.1.aarch64.rpm openmpi4-devel-4.1.8-160000.3.1.aarch64.rpm openmpi4-devel-debuginfo-4.1.8-160000.3.1.aarch64.rpm openmpi4-docs-4.1.8-160000.3.1.aarch64.rpm openmpi4-libs-4.1.8-160000.3.1.aarch64.rpm openmpi4-libs-debuginfo-4.1.8-160000.3.1.aarch64.rpm openmpi4-macros-devel-4.1.8-160000.3.1.aarch64.rpm openmpi4-testsuite-4.1.8-160000.3.1.noarch.rpm openmpi4-testsuite-4.1.8-160000.3.1.src.rpm openmpi4-4.1.8-160000.3.1.ppc64le.rpm openmpi4-config-4.1.8-160000.3.1.ppc64le.rpm openmpi4-debuginfo-4.1.8-160000.3.1.ppc64le.rpm openmpi4-debugsource-4.1.8-160000.3.1.ppc64le.rpm openmpi4-devel-4.1.8-160000.3.1.ppc64le.rpm openmpi4-devel-debuginfo-4.1.8-160000.3.1.ppc64le.rpm openmpi4-docs-4.1.8-160000.3.1.ppc64le.rpm openmpi4-libs-4.1.8-160000.3.1.ppc64le.rpm openmpi4-libs-debuginfo-4.1.8-160000.3.1.ppc64le.rpm openmpi4-macros-devel-4.1.8-160000.3.1.ppc64le.rpm openmpi4-4.1.8-160000.3.1.s390x.rpm openmpi4-config-4.1.8-160000.3.1.s390x.rpm openmpi4-debuginfo-4.1.8-160000.3.1.s390x.rpm openmpi4-debugsource-4.1.8-160000.3.1.s390x.rpm openmpi4-devel-4.1.8-160000.3.1.s390x.rpm openmpi4-devel-debuginfo-4.1.8-160000.3.1.s390x.rpm openmpi4-docs-4.1.8-160000.3.1.s390x.rpm openmpi4-libs-4.1.8-160000.3.1.s390x.rpm openmpi4-libs-debuginfo-4.1.8-160000.3.1.s390x.rpm openmpi4-macros-devel-4.1.8-160000.3.1.s390x.rpm openmpi4-4.1.8-160000.3.1.x86_64.rpm openmpi4-config-4.1.8-160000.3.1.x86_64.rpm openmpi4-debuginfo-4.1.8-160000.3.1.x86_64.rpm openmpi4-debugsource-4.1.8-160000.3.1.x86_64.rpm openmpi4-devel-4.1.8-160000.3.1.x86_64.rpm openmpi4-devel-debuginfo-4.1.8-160000.3.1.x86_64.rpm openmpi4-docs-4.1.8-160000.3.1.x86_64.rpm openmpi4-libs-4.1.8-160000.3.1.x86_64.rpm openmpi4-libs-debuginfo-4.1.8-160000.3.1.x86_64.rpm openmpi4-macros-devel-4.1.8-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-37 Recommended update for plymouth important SUSE SLFO 1.2 This update for plymouth fixes the following issues: - Use frame-buffer in vmware VM platform, since the system use vesa, plymouth DRM driver intial out of time, and the cutomer also feedback frame-buffer works fine (bsc#1234643). - Bochs and cirrus DRM drivers are fully compatible with plymouth. Remove the workaround that forces them to use fbdev. - Resolves the blank screen when disabling fbdev interfaces (bsc#1232727, bsc#1234643). - Support the 2nd monitor hotplugin to the system in random order (bsc#1231214). - Tumbleweed following upstream, which already support "--runstatedir", don't need this modification anymore (jsc#PED-5841). - The current edition of autoconf on SLE-15-SP6:GA don't support "--runstatedir" yet, so reverse plymouth compile option to the old "--withruntimedir" (jsc#PED-5841). - Properly list services as parameters to: * populate-initrd: Install label-freetype plugin into initrd if * ply-device-manager: Add plymouth.force-frame-buffer-on-boot * systemd: Add mkinitcpio support to * ply-device-manager: Also ignore SimpleDRM devs in coldplug - Avoid invalid script commands failure (bsc#1203147). libply-boot-client5-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply-boot-client5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply-splash-core5-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply-splash-core5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply-splash-graphics5-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply-splash-graphics5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply5-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm libply5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-22.02.122+94.4bd41a3-160000.3.1.src.rpm plymouth-branding-upstream-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-debugsource-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-devel-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-dracut-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-lang-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-plugin-fade-throbber-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-fade-throbber-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-label-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-label-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-label-ft-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-label-ft-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-script-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-script-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-space-flares-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-space-flares-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-tribar-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-tribar-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-two-step-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-plugin-two-step-debuginfo-22.02.122+94.4bd41a3-160000.3.1.aarch64.rpm plymouth-scripts-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-bgrt-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-fade-in-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-script-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-solar-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-spinfinity-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-spinner-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm plymouth-theme-tribar-22.02.122+94.4bd41a3-160000.3.1.noarch.rpm libply-boot-client5-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-boot-client5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-splash-core5-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-splash-core5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-splash-graphics5-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-splash-graphics5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply5-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-debugsource-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-devel-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-fade-throbber-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-fade-throbber-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-label-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-label-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-label-ft-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-label-ft-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-script-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-script-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-space-flares-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-space-flares-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-tribar-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-tribar-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-two-step-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm plymouth-plugin-two-step-debuginfo-22.02.122+94.4bd41a3-160000.3.1.ppc64le.rpm libply-boot-client5-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-boot-client5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-splash-core5-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-splash-core5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-splash-graphics5-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-splash-graphics5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply5-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-debugsource-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-devel-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-fade-throbber-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-fade-throbber-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-label-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-label-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-label-ft-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-label-ft-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-script-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-script-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-space-flares-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-space-flares-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-tribar-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-tribar-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-two-step-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm plymouth-plugin-two-step-debuginfo-22.02.122+94.4bd41a3-160000.3.1.s390x.rpm libply-boot-client5-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply-boot-client5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply-splash-core5-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply-splash-core5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply-splash-graphics5-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply-splash-graphics5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply5-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm libply5-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-debugsource-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-devel-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-fade-throbber-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-fade-throbber-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-label-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-label-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-label-ft-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-label-ft-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-script-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-script-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-space-flares-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-space-flares-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-tribar-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-tribar-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-two-step-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm plymouth-plugin-two-step-debuginfo-22.02.122+94.4bd41a3-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-38 Recommended update for powerpc-utils important SUSE SLFO 1.2 This update for powerpc-utils fixes the following issues: - Fix psize reporting on a CPU pool (bsc#1252108) - Start SMT service after networking (bsc#1249152) powerpc-utils-1.3.13-160000.3.1.ppc64le.rpm powerpc-utils-1.3.13-160000.3.1.src.rpm powerpc-utils-debuginfo-1.3.13-160000.3.1.ppc64le.rpm powerpc-utils-debugsource-1.3.13-160000.3.1.ppc64le.rpm openSUSE-Leap-16.0-39 Security update for MozillaFirefox important SUSE SLFO 1.2 This update for MozillaFirefox fixes the following issues: Changes in MozillaFirefox: Firefox Extended Support Release 140.5.0 ESR: * Fixed: Various security fixes (MFSA 2025-88 bsc#1253188): * CVE-2025-13012 Race condition in the Graphics component * CVE-2025-13016 Incorrect boundary conditions in the JavaScript: WebAssembly component * CVE-2025-13017 Same-origin policy bypass in the DOM: Notifications component * CVE-2025-13018 Mitigation bypass in the DOM: Security component * CVE-2025-13019 Same-origin policy bypass in the DOM: Workers component * CVE-2025-13013 Mitigation bypass in the DOM: Core & HTML component * CVE-2025-13020 Use-after-free in the WebRTC: Audio/Video component * CVE-2025-13014 Use-after-free in the Audio/Video component * CVE-2025-13015 Spoofing issue in Firefox - Firefox Extended Support Release 140.4.0 ESR * Fixed: Various security fixes. MFSA 2025-83 (bsc#1251263) * CVE-2025-11708 Use-after-free in MediaTrackGraphImpl::GetInstance() * CVE-2025-11709 Out of bounds read/write in a privileged process triggered by WebGL textures * CVE-2025-11710 Cross-process information leaked due to malicious IPC messages * CVE-2025-11711 Some non-writable Object properties could be modified * CVE-2025-11712 An OBJECT tag type attribute overrode browser behavior on web resources without a content-type * CVE-2025-11713 Potential user-assisted code execution in “Copy as cURL” command * CVE-2025-11714 Memory safety bugs fixed in Firefox ESR 115.29, Firefox ESR 140.4, Thunderbird ESR 140.4, Firefox 144 and Thunderbird 144 * CVE-2025-11715 Memory safety bugs fixed in Firefox ESR 140.4, Thunderbird ESR 140.4, Firefox 144 and Thunderbird 144 - Firefox Extended Support Release 140.3.1 ESR (bsc#1250452) * Fixed: Improved reliability when HTTP/3 connections fail: Firefox no longer forces HTTP/2 during fallback, allowing the server to choose the protocol and preventing stalls on some sites. Firefox Extended Support Release 140.3.0 ESR * Fixed: Various security fixes (MFSA 2025-75 bsc#1249391) * CVE-2025-10527 Sandbox escape due to use-after-free in the Graphics: Canvas2D component * CVE-2025-10528 Sandbox escape due to undefined behavior, invalid pointer in the Graphics: Canvas2D component * CVE-2025-10529 Same-origin policy bypass in the Layout component * CVE-2025-10532 Incorrect boundary conditions in the JavaScript: GC component * CVE-2025-10533 Integer overflow in the SVG component * CVE-2025-10536 Information disclosure in the Networking: Cache component * CVE-2025-10537 Memory safety bugs fixed in Firefox ESR 140.3, Thunderbird ESR 140.3, Firefox 143 and Thunderbird 143 MozillaFirefox-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-140.5.0-160000.1.1.src.rpm MozillaFirefox-branding-upstream-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-debuginfo-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-debugsource-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-devel-140.5.0-160000.1.1.noarch.rpm MozillaFirefox-translations-common-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-translations-other-140.5.0-160000.1.1.aarch64.rpm MozillaFirefox-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-branding-upstream-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-debuginfo-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-debugsource-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-common-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-translations-other-140.5.0-160000.1.1.ppc64le.rpm MozillaFirefox-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-branding-upstream-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-debuginfo-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-debugsource-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-translations-common-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-translations-other-140.5.0-160000.1.1.s390x.rpm MozillaFirefox-140.5.0-160000.1.1.x86_64.rpm MozillaFirefox-branding-upstream-140.5.0-160000.1.1.x86_64.rpm MozillaFirefox-debuginfo-140.5.0-160000.1.1.x86_64.rpm MozillaFirefox-debugsource-140.5.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-common-140.5.0-160000.1.1.x86_64.rpm MozillaFirefox-translations-other-140.5.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-4 Recommended update of cloud-regionsrv-client moderate SUSE SLFO 1.2 This update for cloud-regionsrv-client fixes the following issues: Update version to 10.5.2 (bsc#1247539) + When an instance fails verification server side the default credentials were left behind requireing manual intervantion prior to the next registration attempt. + Fix issue triggered when using instance-billing-flavor-check due to IP address handling as object rather than string introduced 10.5.0 cloud-regionsrv-client-10.5.2-160000.3.1.noarch.rpm cloud-regionsrv-client-10.5.2-160000.3.1.src.rpm cloud-regionsrv-client-generic-config-1.0.0-160000.3.1.noarch.rpm cloud-regionsrv-client-license-watcher-1.0.0-160000.3.1.noarch.rpm cloud-regionsrv-client-plugin-azure-2.0.0-160000.3.1.noarch.rpm cloud-regionsrv-client-plugin-ec2-1.0.5-160000.3.1.noarch.rpm cloud-regionsrv-client-plugin-gce-1.0.0-160000.3.1.noarch.rpm openSUSE-Leap-16.0-40 Recommended update for docker important SUSE SLFO 1.2 This update for docker fixes the following issues: Changes in docker: - Enable SELinux in default daemon.json config (--selinux-enabled). This has no impact on non-SELinux systems (bsc#1252290) docker-28.3.2_ce-160000.3.1.aarch64.rpm docker-28.3.2_ce-160000.3.1.src.rpm docker-bash-completion-28.3.2_ce-160000.3.1.noarch.rpm docker-buildx-0.25.0-160000.3.1.aarch64.rpm docker-buildx-debuginfo-0.25.0-160000.3.1.aarch64.rpm docker-debuginfo-28.3.2_ce-160000.3.1.aarch64.rpm docker-fish-completion-28.3.2_ce-160000.3.1.noarch.rpm docker-rootless-extras-28.3.2_ce-160000.3.1.noarch.rpm docker-zsh-completion-28.3.2_ce-160000.3.1.noarch.rpm docker-28.3.2_ce-160000.3.1.ppc64le.rpm docker-buildx-0.25.0-160000.3.1.ppc64le.rpm docker-buildx-debuginfo-0.25.0-160000.3.1.ppc64le.rpm docker-debuginfo-28.3.2_ce-160000.3.1.ppc64le.rpm docker-28.3.2_ce-160000.3.1.s390x.rpm docker-buildx-0.25.0-160000.3.1.s390x.rpm docker-buildx-debuginfo-0.25.0-160000.3.1.s390x.rpm docker-debuginfo-28.3.2_ce-160000.3.1.s390x.rpm docker-28.3.2_ce-160000.3.1.x86_64.rpm docker-buildx-0.25.0-160000.3.1.x86_64.rpm docker-buildx-debuginfo-0.25.0-160000.3.1.x86_64.rpm docker-debuginfo-28.3.2_ce-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-41 Recommended update for mariadb moderate SUSE SLFO 1.2 This update for mariadb fixes the following issues: - Update to 11.8.3 - Read config files when doing mysql_upgrade (bsc#1249396) libmariadbd-devel-11.8.3-160000.1.1.aarch64.rpm libmariadbd19-11.8.3-160000.1.1.aarch64.rpm libmariadbd19-debuginfo-11.8.3-160000.1.1.aarch64.rpm mariadb-11.8.3-160000.1.1.aarch64.rpm mariadb-11.8.3-160000.1.1.src.rpm mariadb-bench-11.8.3-160000.1.1.aarch64.rpm mariadb-bench-debuginfo-11.8.3-160000.1.1.aarch64.rpm mariadb-client-11.8.3-160000.1.1.aarch64.rpm mariadb-client-debuginfo-11.8.3-160000.1.1.aarch64.rpm mariadb-debuginfo-11.8.3-160000.1.1.aarch64.rpm mariadb-debugsource-11.8.3-160000.1.1.aarch64.rpm mariadb-errormessages-11.8.3-160000.1.1.noarch.rpm mariadb-galera-11.8.3-160000.1.1.aarch64.rpm mariadb-rpm-macros-11.8.3-160000.1.1.aarch64.rpm mariadb-test-11.8.3-160000.1.1.aarch64.rpm mariadb-test-debuginfo-11.8.3-160000.1.1.aarch64.rpm mariadb-tools-11.8.3-160000.1.1.aarch64.rpm mariadb-tools-debuginfo-11.8.3-160000.1.1.aarch64.rpm libmariadbd-devel-11.8.3-160000.1.1.ppc64le.rpm libmariadbd19-11.8.3-160000.1.1.ppc64le.rpm libmariadbd19-debuginfo-11.8.3-160000.1.1.ppc64le.rpm mariadb-11.8.3-160000.1.1.ppc64le.rpm mariadb-bench-11.8.3-160000.1.1.ppc64le.rpm mariadb-bench-debuginfo-11.8.3-160000.1.1.ppc64le.rpm mariadb-client-11.8.3-160000.1.1.ppc64le.rpm mariadb-client-debuginfo-11.8.3-160000.1.1.ppc64le.rpm mariadb-debuginfo-11.8.3-160000.1.1.ppc64le.rpm mariadb-debugsource-11.8.3-160000.1.1.ppc64le.rpm mariadb-galera-11.8.3-160000.1.1.ppc64le.rpm mariadb-rpm-macros-11.8.3-160000.1.1.ppc64le.rpm mariadb-test-11.8.3-160000.1.1.ppc64le.rpm mariadb-test-debuginfo-11.8.3-160000.1.1.ppc64le.rpm mariadb-tools-11.8.3-160000.1.1.ppc64le.rpm mariadb-tools-debuginfo-11.8.3-160000.1.1.ppc64le.rpm libmariadbd-devel-11.8.3-160000.1.1.s390x.rpm libmariadbd19-11.8.3-160000.1.1.s390x.rpm libmariadbd19-debuginfo-11.8.3-160000.1.1.s390x.rpm mariadb-11.8.3-160000.1.1.s390x.rpm mariadb-bench-11.8.3-160000.1.1.s390x.rpm mariadb-bench-debuginfo-11.8.3-160000.1.1.s390x.rpm mariadb-client-11.8.3-160000.1.1.s390x.rpm mariadb-client-debuginfo-11.8.3-160000.1.1.s390x.rpm mariadb-debuginfo-11.8.3-160000.1.1.s390x.rpm mariadb-debugsource-11.8.3-160000.1.1.s390x.rpm mariadb-galera-11.8.3-160000.1.1.s390x.rpm mariadb-rpm-macros-11.8.3-160000.1.1.s390x.rpm mariadb-test-11.8.3-160000.1.1.s390x.rpm mariadb-test-debuginfo-11.8.3-160000.1.1.s390x.rpm mariadb-tools-11.8.3-160000.1.1.s390x.rpm mariadb-tools-debuginfo-11.8.3-160000.1.1.s390x.rpm libmariadbd-devel-11.8.3-160000.1.1.x86_64.rpm libmariadbd19-11.8.3-160000.1.1.x86_64.rpm libmariadbd19-debuginfo-11.8.3-160000.1.1.x86_64.rpm mariadb-11.8.3-160000.1.1.x86_64.rpm mariadb-bench-11.8.3-160000.1.1.x86_64.rpm mariadb-bench-debuginfo-11.8.3-160000.1.1.x86_64.rpm mariadb-client-11.8.3-160000.1.1.x86_64.rpm mariadb-client-debuginfo-11.8.3-160000.1.1.x86_64.rpm mariadb-debuginfo-11.8.3-160000.1.1.x86_64.rpm mariadb-debugsource-11.8.3-160000.1.1.x86_64.rpm mariadb-galera-11.8.3-160000.1.1.x86_64.rpm mariadb-rpm-macros-11.8.3-160000.1.1.x86_64.rpm mariadb-test-11.8.3-160000.1.1.x86_64.rpm mariadb-test-debuginfo-11.8.3-160000.1.1.x86_64.rpm mariadb-tools-11.8.3-160000.1.1.x86_64.rpm mariadb-tools-debuginfo-11.8.3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-42 Security update for poppler important SUSE SLFO 1.2 This update for poppler fixes the following issues: - CVE-2025-52885: Fixed raw pointers leading to dangling pointers when the vector is resized (bsc#1251940) libpoppler-cpp2-25.04.0-160000.3.1.aarch64.rpm libpoppler-cpp2-debuginfo-25.04.0-160000.3.1.aarch64.rpm libpoppler-devel-25.04.0-160000.3.1.aarch64.rpm libpoppler-glib-devel-25.04.0-160000.3.1.aarch64.rpm libpoppler-glib8-25.04.0-160000.3.1.aarch64.rpm libpoppler-glib8-debuginfo-25.04.0-160000.3.1.aarch64.rpm libpoppler148-25.04.0-160000.3.1.aarch64.rpm libpoppler148-debuginfo-25.04.0-160000.3.1.aarch64.rpm poppler-25.04.0-160000.3.1.src.rpm poppler-debugsource-25.04.0-160000.3.1.aarch64.rpm poppler-tools-25.04.0-160000.3.1.aarch64.rpm poppler-tools-debuginfo-25.04.0-160000.3.1.aarch64.rpm typelib-1_0-Poppler-0_18-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt5-1-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt5-1-debuginfo-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt5-devel-25.04.0-160000.3.1.aarch64.rpm poppler-qt5-25.04.0-160000.3.1.src.rpm poppler-qt5-debugsource-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt6-3-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt6-3-debuginfo-25.04.0-160000.3.1.aarch64.rpm libpoppler-qt6-devel-25.04.0-160000.3.1.aarch64.rpm poppler-qt6-25.04.0-160000.3.1.src.rpm poppler-qt6-debugsource-25.04.0-160000.3.1.aarch64.rpm libpoppler-cpp2-25.04.0-160000.3.1.ppc64le.rpm libpoppler-cpp2-debuginfo-25.04.0-160000.3.1.ppc64le.rpm libpoppler-devel-25.04.0-160000.3.1.ppc64le.rpm libpoppler-glib-devel-25.04.0-160000.3.1.ppc64le.rpm libpoppler-glib8-25.04.0-160000.3.1.ppc64le.rpm libpoppler-glib8-debuginfo-25.04.0-160000.3.1.ppc64le.rpm libpoppler148-25.04.0-160000.3.1.ppc64le.rpm libpoppler148-debuginfo-25.04.0-160000.3.1.ppc64le.rpm poppler-debugsource-25.04.0-160000.3.1.ppc64le.rpm poppler-tools-25.04.0-160000.3.1.ppc64le.rpm poppler-tools-debuginfo-25.04.0-160000.3.1.ppc64le.rpm typelib-1_0-Poppler-0_18-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt5-1-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt5-1-debuginfo-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt5-devel-25.04.0-160000.3.1.ppc64le.rpm poppler-qt5-debugsource-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt6-3-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt6-3-debuginfo-25.04.0-160000.3.1.ppc64le.rpm libpoppler-qt6-devel-25.04.0-160000.3.1.ppc64le.rpm poppler-qt6-debugsource-25.04.0-160000.3.1.ppc64le.rpm libpoppler-cpp2-25.04.0-160000.3.1.s390x.rpm libpoppler-cpp2-debuginfo-25.04.0-160000.3.1.s390x.rpm libpoppler-devel-25.04.0-160000.3.1.s390x.rpm libpoppler-glib-devel-25.04.0-160000.3.1.s390x.rpm libpoppler-glib8-25.04.0-160000.3.1.s390x.rpm libpoppler-glib8-debuginfo-25.04.0-160000.3.1.s390x.rpm libpoppler148-25.04.0-160000.3.1.s390x.rpm libpoppler148-debuginfo-25.04.0-160000.3.1.s390x.rpm poppler-debugsource-25.04.0-160000.3.1.s390x.rpm poppler-tools-25.04.0-160000.3.1.s390x.rpm poppler-tools-debuginfo-25.04.0-160000.3.1.s390x.rpm typelib-1_0-Poppler-0_18-25.04.0-160000.3.1.s390x.rpm libpoppler-qt5-1-25.04.0-160000.3.1.s390x.rpm libpoppler-qt5-1-debuginfo-25.04.0-160000.3.1.s390x.rpm libpoppler-qt5-devel-25.04.0-160000.3.1.s390x.rpm poppler-qt5-debugsource-25.04.0-160000.3.1.s390x.rpm libpoppler-qt6-3-25.04.0-160000.3.1.s390x.rpm libpoppler-qt6-3-debuginfo-25.04.0-160000.3.1.s390x.rpm libpoppler-qt6-devel-25.04.0-160000.3.1.s390x.rpm poppler-qt6-debugsource-25.04.0-160000.3.1.s390x.rpm libpoppler-cpp2-25.04.0-160000.3.1.x86_64.rpm libpoppler-cpp2-debuginfo-25.04.0-160000.3.1.x86_64.rpm libpoppler-devel-25.04.0-160000.3.1.x86_64.rpm libpoppler-glib-devel-25.04.0-160000.3.1.x86_64.rpm libpoppler-glib8-25.04.0-160000.3.1.x86_64.rpm libpoppler-glib8-debuginfo-25.04.0-160000.3.1.x86_64.rpm libpoppler148-25.04.0-160000.3.1.x86_64.rpm libpoppler148-debuginfo-25.04.0-160000.3.1.x86_64.rpm poppler-debugsource-25.04.0-160000.3.1.x86_64.rpm poppler-tools-25.04.0-160000.3.1.x86_64.rpm poppler-tools-debuginfo-25.04.0-160000.3.1.x86_64.rpm typelib-1_0-Poppler-0_18-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt5-1-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt5-1-debuginfo-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt5-devel-25.04.0-160000.3.1.x86_64.rpm poppler-qt5-debugsource-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt6-3-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt6-3-debuginfo-25.04.0-160000.3.1.x86_64.rpm libpoppler-qt6-devel-25.04.0-160000.3.1.x86_64.rpm poppler-qt6-debugsource-25.04.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-43 Recommended update for liburing moderate SUSE SLFO 1.2 This update for liburing fixes the following issues: - Add upstream patch to fix test on ppc64le liburing-2.8-160000.3.1.src.rpm liburing-debuginfo-2.8-160000.3.1.aarch64.rpm liburing-debugsource-2.8-160000.3.1.aarch64.rpm liburing-devel-2.8-160000.3.1.aarch64.rpm liburing-ffi2-2.8-160000.3.1.aarch64.rpm liburing-ffi2-debuginfo-2.8-160000.3.1.aarch64.rpm liburing2-2.8-160000.3.1.aarch64.rpm liburing2-debuginfo-2.8-160000.3.1.aarch64.rpm liburing-debuginfo-2.8-160000.3.1.ppc64le.rpm liburing-debugsource-2.8-160000.3.1.ppc64le.rpm liburing-devel-2.8-160000.3.1.ppc64le.rpm liburing-ffi2-2.8-160000.3.1.ppc64le.rpm liburing-ffi2-debuginfo-2.8-160000.3.1.ppc64le.rpm liburing2-2.8-160000.3.1.ppc64le.rpm liburing2-debuginfo-2.8-160000.3.1.ppc64le.rpm liburing-debuginfo-2.8-160000.3.1.s390x.rpm liburing-debugsource-2.8-160000.3.1.s390x.rpm liburing-devel-2.8-160000.3.1.s390x.rpm liburing-ffi2-2.8-160000.3.1.s390x.rpm liburing-ffi2-debuginfo-2.8-160000.3.1.s390x.rpm liburing2-2.8-160000.3.1.s390x.rpm liburing2-debuginfo-2.8-160000.3.1.s390x.rpm liburing-debuginfo-2.8-160000.3.1.x86_64.rpm liburing-debugsource-2.8-160000.3.1.x86_64.rpm liburing-devel-2.8-160000.3.1.x86_64.rpm liburing-ffi2-2.8-160000.3.1.x86_64.rpm liburing-ffi2-debuginfo-2.8-160000.3.1.x86_64.rpm liburing2-2.8-160000.3.1.x86_64.rpm liburing2-debuginfo-2.8-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-44 Recommended update for nvidia-open-driver-G06-signed moderate SUSE SLFO 1.2 This update for nvidia-open-driver-G06-signed fixes the following issues: Changes in nvidia-open-driver-G06-signed: Update CUDA variant to 580.95.05. Update to version 580.95.05 (boo#1250536). Update non-CUDA variant to 580.82.07 (boo#1249235). Update CUDA variant to 580.82.07. nvidia-open-driver-G06-signed-580.95.05-160000.1.1.src.rpm nvidia-open-driver-G06-signed-64kb-devel-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-check-580.95.05-160000.1.1.noarch.rpm nvidia-open-driver-G06-signed-debugsource-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-default-devel-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-64kb-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-64kb-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-default-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-kmp-default-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nv-prefer-signed-open-driver-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-580.95.05-160000.1.1.src.rpm nvidia-open-driver-G06-signed-cuda-64kb-devel-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-check-580.95.05-160000.1.1.noarch.rpm nvidia-open-driver-G06-signed-cuda-debugsource-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-default-devel-580.95.05-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-64kb-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-64kb-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.aarch64.rpm nvidia-open-driver-G06-signed-debugsource-580.95.05-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-default-devel-580.95.05-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-kmp-default-580.95.05_k6.12.0_160000.6-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-kmp-default-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.x86_64.rpm nv-prefer-signed-open-driver-580.95.05-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-debugsource-580.95.05-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-default-devel-580.95.05-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-580.95.05_k6.12.0_160000.6-160000.1.1.x86_64.rpm nvidia-open-driver-G06-signed-cuda-kmp-default-debuginfo-580.95.05_k6.12.0_160000.6-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-45 Recommended update for wsl-firstboot moderate SUSE SLFO 1.2 This update for wsl-firstboot fixes the following issues: Update to version 1.5.9+git20251110.c1fca4e: * Adding Leap/TW check to modules/registration * Changing date tag for modules/switch Update to version 1.5.8+git20251110.828658c: * Adding 'or' for when ID == opensuse-tumbleweed so that wsl-config doesn't list 'switch' as an option in TW as well Update to version 1.5.7+git20251108.7a67d02: * Adding a check for ID since we have Leap/SLE 16.0 - Also will 'continue' when ID == opensuse-leap so that wsl-config doesn't list 'switch' as an option in Leap Update to version 1.5.6+git20251104.86be8d4: * Adding 'sleep and clear' to sbin/wsl-firstboot * Adding skip check for SLE16.0 to modules/switch * Removing ability to skip initual user creation wsl-firstboot-1.5.9+git20251110.c1fca4e-160000.1.1.noarch.rpm wsl-firstboot-1.5.9+git20251110.c1fca4e-160000.1.1.src.rpm openSUSE-Leap-16.0-46 Security update for runc important SUSE SLFO 1.2 This update for runc fixes the following issues: - Update to runc v1.3.3: * CVE-2025-31133, CVE-2025-52565, CVE-2025-52881: Fixed container breakouts by bypassing runc's restrictions for writing to arbitrary /proc files (bsc#1252232) runc-1.3.3-160000.1.1.aarch64.rpm runc-1.3.3-160000.1.1.src.rpm runc-debuginfo-1.3.3-160000.1.1.aarch64.rpm runc-1.3.3-160000.1.1.ppc64le.rpm runc-debuginfo-1.3.3-160000.1.1.ppc64le.rpm runc-1.3.3-160000.1.1.s390x.rpm runc-debuginfo-1.3.3-160000.1.1.s390x.rpm runc-1.3.3-160000.1.1.x86_64.rpm runc-debuginfo-1.3.3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-47 Security update for alloy moderate SUSE SLFO 1.2 This update for alloy fixes the following issues: - CVE-2025-58058: Removed dependency on vulnerable github.com/ulikunitz/xz (bsc#1248960). - CVE-2025-11065: Fixed sensitive information leak in logs (bsc#1250621). alloy-1.11.3-160000.1.1.aarch64.rpm alloy-1.11.3-160000.1.1.src.rpm alloy-debuginfo-1.11.3-160000.1.1.aarch64.rpm alloy-1.11.3-160000.1.1.ppc64le.rpm alloy-debuginfo-1.11.3-160000.1.1.ppc64le.rpm alloy-1.11.3-160000.1.1.s390x.rpm alloy-debuginfo-1.11.3-160000.1.1.s390x.rpm alloy-1.11.3-160000.1.1.x86_64.rpm alloy-debuginfo-1.11.3-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-48 Recommended update for crmsh moderate SUSE SLFO 1.2 This update for crmsh fixes the following issues: - Version update 5.0.0+20251110.f6e38810: - Fix: Avoid unnecessary sudo in sftp and ssh commands (bsc#1229416). - Fix: Avoid unnecessary sudo calls in ClusterShell SSH commands (bsc#1229416). - Fix: corosync: Fallback to CIB when node name is missing (bsc#1250585). - Fix: migration: Populate node name during corosync configuration migration (bsc#1250585). - Fix: sbd: Ensure proper cluster restart when adding diskless SBD (bsc#1248874). - Fix: Call crm report directly for the legacy `crm cluster health` command (bsc#1230324). - Fix: various fixes on: user interface, bootstrap auth, logs and docs - Dev: sbd: Check if fence-agents-sbd is installed on all nodes. - Dev: various code refactoring. crmsh-5.0.0+20251110.f6e38810-160000.1.1.noarch.rpm crmsh-5.0.0+20251110.f6e38810-160000.1.1.src.rpm crmsh-scripts-5.0.0+20251110.f6e38810-160000.1.1.noarch.rpm crmsh-test-5.0.0+20251110.f6e38810-160000.1.1.noarch.rpm openSUSE-Leap-16.0-49 Recommended update for colord moderate SUSE SLFO 1.2 This update for colord fixes the following issues: - Update to version 1.4.8: + New Features: - Add AppStream metainfo XML with hardware provide info. - Add support for -Dsystemd_root_prefix to make local building easier. - Install sysusers.d config file if configured user is not root. + Bugfixes: - Add the source attribute for each man page. - Drop component type from AppStream metadata XML to avoid parsing error. - Fix a critical warning when running the self tests. - Fix USB scanners not working with RestrictAddressFamilies. - Fix writing to the database with ProtectSystem=strict. - Properly set the status to CD_SESSION_STATUS_RUNNING. - Use g_ascii_strtod instead of atof(). - Use sqlite3_errmsg() to avoid getting a mutable error message. - Changes from version 1.4.7: + Bugfixes: - Add various hardenings to the systemd service. - Always close the ICC profile when loading fails. - Avoid destructing LCMS plugin twice with lcms 2.14. - Do not make state files executable in tmpfiles.d/colord.conf. - Fix a double free spotted by Coverity. - Fix an error check when parsing the DTP94 data. - Fix a -Wincompatible-pointer-types warning. - Fix potential crash when reading from broken Huey hardware. - Set FILE_OFFSET_BITS explicitly. - Use a 64-bit time_t. - Use thread context for Gamut Alarm codes. colord-1.4.8-160000.1.1.aarch64.rpm colord-1.4.8-160000.1.1.src.rpm colord-color-profiles-1.4.8-160000.1.1.aarch64.rpm colord-debuginfo-1.4.8-160000.1.1.aarch64.rpm colord-debugsource-1.4.8-160000.1.1.aarch64.rpm colord-lang-1.4.8-160000.1.1.noarch.rpm libcolord-devel-1.4.8-160000.1.1.aarch64.rpm libcolord2-1.4.8-160000.1.1.aarch64.rpm libcolord2-debuginfo-1.4.8-160000.1.1.aarch64.rpm libcolorhug2-1.4.8-160000.1.1.aarch64.rpm libcolorhug2-debuginfo-1.4.8-160000.1.1.aarch64.rpm typelib-1_0-Colord-1_0-1.4.8-160000.1.1.aarch64.rpm typelib-1_0-Colorhug-1_0-1.4.8-160000.1.1.aarch64.rpm colord-1.4.8-160000.1.1.ppc64le.rpm colord-color-profiles-1.4.8-160000.1.1.ppc64le.rpm colord-debuginfo-1.4.8-160000.1.1.ppc64le.rpm colord-debugsource-1.4.8-160000.1.1.ppc64le.rpm libcolord-devel-1.4.8-160000.1.1.ppc64le.rpm libcolord2-1.4.8-160000.1.1.ppc64le.rpm libcolord2-debuginfo-1.4.8-160000.1.1.ppc64le.rpm libcolorhug2-1.4.8-160000.1.1.ppc64le.rpm libcolorhug2-debuginfo-1.4.8-160000.1.1.ppc64le.rpm typelib-1_0-Colord-1_0-1.4.8-160000.1.1.ppc64le.rpm typelib-1_0-Colorhug-1_0-1.4.8-160000.1.1.ppc64le.rpm colord-1.4.8-160000.1.1.s390x.rpm colord-color-profiles-1.4.8-160000.1.1.s390x.rpm colord-debuginfo-1.4.8-160000.1.1.s390x.rpm colord-debugsource-1.4.8-160000.1.1.s390x.rpm libcolord-devel-1.4.8-160000.1.1.s390x.rpm libcolord2-1.4.8-160000.1.1.s390x.rpm libcolord2-debuginfo-1.4.8-160000.1.1.s390x.rpm libcolorhug2-1.4.8-160000.1.1.s390x.rpm libcolorhug2-debuginfo-1.4.8-160000.1.1.s390x.rpm typelib-1_0-Colord-1_0-1.4.8-160000.1.1.s390x.rpm typelib-1_0-Colorhug-1_0-1.4.8-160000.1.1.s390x.rpm colord-1.4.8-160000.1.1.x86_64.rpm colord-color-profiles-1.4.8-160000.1.1.x86_64.rpm colord-debuginfo-1.4.8-160000.1.1.x86_64.rpm colord-debugsource-1.4.8-160000.1.1.x86_64.rpm libcolord-devel-1.4.8-160000.1.1.x86_64.rpm libcolord2-1.4.8-160000.1.1.x86_64.rpm libcolord2-debuginfo-1.4.8-160000.1.1.x86_64.rpm libcolorhug2-1.4.8-160000.1.1.x86_64.rpm libcolorhug2-debuginfo-1.4.8-160000.1.1.x86_64.rpm typelib-1_0-Colord-1_0-1.4.8-160000.1.1.x86_64.rpm typelib-1_0-Colorhug-1_0-1.4.8-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-5 Recommended update of aws-cli-cmd, az-cli-cmd moderate SUSE SLFO 1.2 This update for aws-cli-cmd and az-cli-cmd fixes the following issues: - Use fixed python version 3.13 aws-cli-cmd-1.36.1-160000.2.1.noarch.rpm aws-cli-cmd-1.36.1-160000.2.1.src.rpm az-cli-cmd-1.36.1-160000.2.1.noarch.rpm az-cli-cmd-1.36.1-160000.2.1.src.rpm openSUSE-Leap-16.0-50 Security update for the Linux Kernel important SUSE SLFO 1.2 The SUSE Linux Enterprise Server 16.0 and SUSE Linux Micro 6.2 kernel was updated to receive various security bugfixes. The following security bugs were fixed: - CVE-2024-53164: net: sched: fix ordering of qlen adjustment (bsc#1234863). - CVE-2024-57891: sched_ext: Fix invalid irq restore in scx_ops_bypass() (bsc#1235953). - CVE-2024-57951: hrtimers: Handle CPU state correctly on hotplug (bsc#1237108). - CVE-2024-57952: Revert "libfs: fix infinite directory reads for offset dir" (bsc#1237131). - CVE-2024-58090: sched/core: Prevent rescheduling when interrupts are disabled (bsc#1240324). - CVE-2025-22034: mm/rmap: avoid -EBUSY from make_device_exclusive() (bsc#1241435). - CVE-2025-22077: Revert "smb: client: fix TCP timers deadlock after rmmod" (bsc#1241403). - CVE-2025-23141: KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses (bsc#1242782). - CVE-2025-37821: sched/eevdf: Fix se->slice being set to U64_MAX and resulting (bsc#1242864). - CVE-2025-37849: KVM: arm64: Tear down vGIC on failed vCPU creation (bsc#1243000). - CVE-2025-37856: btrfs: harden block_group::bg_list against list_del() races (bsc#1243068). - CVE-2025-37861: scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue (bsc#1243055). - CVE-2025-37864: net: dsa: clean up FDB, MDB, VLAN entries on unbind (bsc#1242965). - CVE-2025-38006: net: mctp: Do not access ifa_index when missing (bsc#1244930). - CVE-2025-38008: mm/page_alloc: fix race condition in unaccepted memory handling (bsc#1244939). - CVE-2025-38019: mlxsw: spectrum_router: Fix use-after-free when deleting GRE net devices (bsc#1245000). - CVE-2025-38034: btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref (bsc#1244792). - CVE-2025-38038: cpufreq: amd-pstate: Remove unnecessary driver_lock in set_boost (bsc#1244812). - CVE-2025-38058: __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock (bsc#1245151). - CVE-2025-38062: kABI: restore layout of struct msi_desc (bsc#1245216). - CVE-2025-38075: scsi: target: iscsi: Fix timeout on deleted connection (bsc#1244734). - CVE-2025-38101: ring-buffer: Fix buffer locking in ring_buffer_subbuf_order_set() (bsc#1245659). - CVE-2025-38103: HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse() (bsc#1245663). - CVE-2025-38106: io_uring/sqpoll: do not put task_struct on tctx setup failure (bsc#1245664). - CVE-2025-38117: hci_dev centralize extra lock (bsc#1245695). - CVE-2025-38119: scsi: core: ufs: Fix a hang in the error handler (bsc#1245700). - CVE-2025-38125: net: stmmac: make sure that ptp_rate is not 0 before configuring EST (bsc#1245710). - CVE-2025-38146: net: openvswitch: Fix the dead loop of MPLS parse (bsc#1245767). - CVE-2025-38160: clk: bcm: rpi: Add NULL check in raspberrypi_clk_register() (bsc#1245780). - CVE-2025-38168: perf: arm-ni: Unregister PMUs on probe failure (bsc#1245763). - CVE-2025-38180: net: atm: fix /proc/net/atm/lec handling (bsc#1245970). - CVE-2025-38182: ublk: santizize the arguments from userspace when adding a device (bsc#1245937). - CVE-2025-38184: tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer (bsc#1245956). - CVE-2025-38185: atm: atmtcp: Free invalid length skb in atmtcp_c_send() (bsc#1246012). - CVE-2025-38190: atm: Revert atm_account_tx() if copy_from_iter_full() fails (bsc#1245973). - CVE-2025-38201: netfilter: nft_set_pipapo: clamp maximum map bucket size to INT_MAX (bsc#1245977). - CVE-2025-38205: drm/amd/display: Avoid divide by zero by initializing dummy pitch to 1 (bsc#1246005). - CVE-2025-38208: smb: client: add NULL check in automount_fullpath (bsc#1245815). - CVE-2025-38216: iommu/vt-d: Restore context entry setup order for aliased devices (bsc#1245963). - CVE-2025-38220: ext4: only dirty folios when data journaling regular files (bsc#1245966). - CVE-2025-38222: ext4: inline: fix len overflow in ext4_prepare_inline_data (bsc#1245976). - CVE-2025-38242: mm: userfaultfd: fix race of userfaultfd_move and swap cache (bsc#1246176). - CVE-2025-38244: smb: client: fix potential deadlock when reconnecting channels (bsc#1246183). - CVE-2025-38245: atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister() (bsc#1246193). - CVE-2025-38251: atm: clip: prevent NULL deref in clip_push() (bsc#1246181). - CVE-2025-38256: io_uring/rsrc: fix folio unpinning (bsc#1246188). - CVE-2025-38258: mm/damon/sysfs-schemes: free old damon_sysfs_scheme_filter->memcg_path on write (bsc#1246185). - CVE-2025-38263: bcache: fix NULL pointer in cache_set_flush() (bsc#1246248). - CVE-2025-38267: ring-buffer: Do not trigger WARN_ON() due to a commit_overrun (bsc#1246245). - CVE-2025-38270: net: drv: netdevsim: do not napi_complete() from netpoll (bsc#1246252). - CVE-2025-38272: net: dsa: b53: do not enable EEE on bcm63xx (bsc#1246268). - CVE-2025-38301: nvmem: zynqmp_nvmem: unbreak driver after cleanup (bsc#1246351). - CVE-2025-38306: fs/fhandle.c: fix a race in call of has_locked_children() (bsc#1246366). - CVE-2025-38311: iavf: get rid of the crit lock (bsc#1246376). - CVE-2025-38318: perf: arm-ni: Fix missing platform_set_drvdata() (bsc#1246444). - CVE-2025-38322: perf/x86/intel: Fix crash in icl_update_topdown_event() (bsc#1246447). - CVE-2025-38323: net: atm: add lec_mutex (bsc#1246473). - CVE-2025-38337: jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() (bsc#1246253). - CVE-2025-38341: eth: fbnic: avoid double free when failing to DMA-map FW msg (bsc#1246260). - CVE-2025-38349: eventpoll: do not decrement ep refcount while still holding the ep mutex (bsc#1246777). - CVE-2025-38350: net/sched: Always pass notifications when child class becomes empty (bsc#1246781). - CVE-2025-38351: KVM: x86/hyper-v: Skip non-canonical addresses during PV TLB flush (bsc#1246782). - CVE-2025-38352: posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del() (bsc#1246911). - CVE-2025-38359: s390/mm: Fix in_atomic() handling in do_secure_storage_access() (bsc#1247076). - CVE-2025-38360: drm/amd/display: Add more checks for DSC / HUBP ONO guarantees (bsc#1247078). - CVE-2025-38365: btrfs: fix a race between renames and directory logging (bsc#1247023). - CVE-2025-38374: optee: ffa: fix sleep in atomic context (bsc#1247024). - CVE-2025-38382: btrfs: fix iteration of extrefs during log replay (bsc#1247031). - CVE-2025-38383: mm/vmalloc: fix data race in show_numa_info() (bsc#1247250). - CVE-2025-38392: idpf: convert control queue mutex to a spinlock (bsc#1247169). - CVE-2025-38396: fs: export anon_inode_make_secure_inode() and fix secretmem LSM bypass (bsc#1247156). - CVE-2025-38399: scsi: target: Fix NULL pointer dereference in core_scsi3_decode_spec_i_port() (bsc#1247097). - CVE-2025-38402: idpf: return 0 size for RSS key if not supported (bsc#1247262). - CVE-2025-38408: genirq/irq_sim: Initialize work context pointers properly (bsc#1247126). - CVE-2025-38418: remoteproc: core: Release rproc->clean_table after rproc_attach() fails (bsc#1247137). - CVE-2025-38419: remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() (bsc#1247136). - CVE-2025-38426: drm/amdgpu: Add basic validation for RAS header (bsc#1247252). - CVE-2025-38439: bnxt_en: Set DMA unmap len correctly for XDP_REDIRECT (bsc#1247155). - CVE-2025-38440: net/mlx5e: Fix race between DIM disable and net_dim() (bsc#1247290). - CVE-2025-38441: netfilter: flowtable: account for Ethernet header in nf_flow_pppoe_proto() (bsc#1247167). - CVE-2025-38444: raid10: cleanup memleak at raid10_make_request (bsc#1247162). - CVE-2025-38445: md/raid1: Fix stack memory use after return in raid1_reshape (bsc#1247229). - CVE-2025-38451: md/md-bitmap: fix GPF in bitmap_get_stats() (bsc#1247102). - CVE-2025-38453: kABI: io_uring: msg_ring ensure io_kiocb freeing is deferred (bsc#1247234). - CVE-2025-38456: ipmi:msghandler: Fix potential memory corruption in ipmi_create_user() (bsc#1247099). - CVE-2025-38457: net/sched: Abort __tc_modify_qdisc if parent class does not exist (bsc#1247098). - CVE-2025-38458: atm: clip: Fix NULL pointer dereference in vcc_sendmsg() (bsc#1247116). - CVE-2025-38459: atm: clip: Fix infinite recursive call of clip_push() (bsc#1247119). - CVE-2025-38460: atm: clip: Fix potential null-ptr-deref in to_atmarpd() (bsc#1247143). - CVE-2025-38463: tcp: Correct signedness in skb remaining space calculation (bsc#1247113). - CVE-2025-38464: tipc: Fix use-after-free in tipc_conn_close() (bsc#1247112). - CVE-2025-38470: net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime (bsc#1247288). - CVE-2025-38472: netfilter: nf_conntrack: fix crash due to removal of uninitialised entry (bsc#1247313). - CVE-2025-38475: smc: Fix various oops due to inet_sock type confusion (bsc#1247308). - CVE-2025-38488: smb: client: fix use-after-free in crypt_message when using async crypto (bsc#1247239). - CVE-2025-38490: net: libwx: remove duplicate page_pool_put_full_page() (bsc#1247243). - CVE-2025-38491: mptcp: make fallback action and fallback decision atomic (bsc#1247280). - CVE-2025-38493: tracing/osnoise: Fix crash in timerlat_dump_stack() (bsc#1247283). - CVE-2025-38497: usb: gadget: configfs: Fix OOB read on empty string write (bsc#1247347). - CVE-2025-38499: clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right userns (bsc#1247976). - CVE-2025-38500: xfrm: interface: fix use-after-free after changing collect_md xfrm interface (bsc#1248088). - CVE-2025-38508: x86/sev: Use TSC_FACTOR for Secure TSC frequency calculation (bsc#1248190). - CVE-2025-38514: rxrpc: Fix oops due to non-existence of prealloc backlog struct (bsc#1248202). - CVE-2025-38524: rxrpc: Fix recv-recv race of completed call (bsc#1248194). - CVE-2025-38526: ice: add NULL check in eswitch lag check (bsc#1248192). - CVE-2025-38527: smb: client: fix use-after-free in cifs_oplock_break (bsc#1248199). - CVE-2025-38533: net: libwx: fix the using of Rx buffer DMA (bsc#1248200). - CVE-2025-38539: tracing: Add down_write(trace_event_sem) when adding trace event (bsc#1248211). - CVE-2025-38544: rxrpc: Fix bug due to prealloc collision (bsc#1248225). - CVE-2025-38545: net: ethernet: ti: am65-cpsw-nuss: Fix skb size by accounting for skb_shared_info (bsc#1248224). - CVE-2025-38546: atm: clip: Fix memory leak of struct clip_vcc (bsc#1248223). - CVE-2025-38549: efivarfs: Fix memory leak of efivarfs_fs_info in fs_context error paths (bsc#1248235). - CVE-2025-38554: mm: fix a UAF when vma->mm is freed after vma->vm_refcnt got dropped (bsc#1248299). - CVE-2025-38556: HID: core: Harden s32ton() against conversion to 0 bits (bsc#1248296). - CVE-2025-38560: x86/sev: Evict cache lines during SNP memory validation (bsc#1248312). - CVE-2025-38566: sunrpc: fix handling of server side tls alerts (bsc#1248374). - CVE-2025-38571: sunrpc: fix client side handling of tls alerts (bsc#1248401). - CVE-2025-38572: ipv6: reject malicious packets in ipv6_gso_segment() (bsc#1248399). - CVE-2025-38574: pptp: ensure minimal skb length in pptp_xmit() (bsc#1248365). - CVE-2025-38584: padata: Fix pd UAF once and for all (bsc1248343). - CVE-2025-38588: ipv6: prevent infinite loop in rt6_nlmsg_size() (bsc#1248368). - CVE-2025-38593: kABI workaround for bluetooth discovery_state change (bsc#1248357). - CVE-2025-38597: drm/rockchip: vop2: fail cleanly if missing a primary plane for a video-port (bsc#1248378). - CVE-2025-38608: bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls (bsc#1248338). - CVE-2025-38614: eventpoll: Fix semi-unbounded recursion (bsc#1248392). - CVE-2025-38616: tls: handle data disappearing from under the TLS ULP (bsc#1248512). - CVE-2025-38618: vsock: Do not allow binding to VMADDR_PORT_ANY (bsc#1248511). - CVE-2025-38622: net: drop UFO packets in udp_rcv_segment() (bsc#1248619). - CVE-2025-38623: PCI: pnv_php: Fix surprise plug detection and recovery (bsc#1248610). - CVE-2025-38628: vdpa/mlx5: Fix release of uninitialized resources on error path (bsc#1248616). - CVE-2025-38639: netfilter: xt_nfacct: do not assume acct name is null-terminated (bsc#1248674). - CVE-2025-38640: bpf: Disable migration in nf_hook_run_bpf() (bsc#1248622). - CVE-2025-38643: wifi: cfg80211: Add missing lock in cfg80211_check_and_end_cac() (bsc#1248681). - CVE-2025-38644: wifi: mac80211: reject TDLS operations when station is not associated (bsc#1248748). - CVE-2025-38659: gfs2: No more self recovery (bsc#1248639). - CVE-2025-38660: [ceph] parse_longname(): strrchr() expects NUL-terminated string (bsc#1248634). - CVE-2025-38664: ice: Fix a null pointer dereference in ice_copy_and_init_pkg() (bsc#1248628). - CVE-2025-38676: iommu/amd: Avoid stack buffer overflow from kernel cmdline (bsc#1248775). - CVE-2025-38678: netfilter: nf_tables: reject duplicate device on updates (bsc#1249126). - CVE-2025-38684: net/sched: ets: use old 'nbands' while purging unused classes (bsc#1249156). - CVE-2025-38686: userfaultfd: fix a crash in UFFDIO_MOVE when PMD is a migration entry (bsc#1249160). - CVE-2025-38700: scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated (bsc#1249182). - CVE-2025-38701: ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr (bsc#1249258). - CVE-2025-38709: loop: Avoid updating block size under exclusive owner (bsc#1249199). - CVE-2025-38710: gfs2: Validate i_depth for exhash directories (bsc#1249201). - CVE-2025-38730: io_uring/net: commit partial buffers on retry (bsc#1249172). - CVE-2025-38734: net/smc: fix UAF on smcsk after smc_listen_out() (bsc#1249324). - CVE-2025-39673: ppp: fix race conditions in ppp_fill_forward_path (bsc#1249320). - CVE-2025-39677: net/sched: Fix backlog accounting in qdisc_dequeue_internal (bsc#1249300). - CVE-2025-39681: x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper (bsc#1249303). - CVE-2025-39682: tls: fix handling of zero-length records on the rx_list (bsc#1249284). - CVE-2025-39683: tracing: Limit access to parser->buffer when trace_get_user failed (bsc#1249286). - CVE-2025-39691: fs/buffer: fix use-after-free when call bh_read() helper (bsc#1249374). - CVE-2025-39698: io_uring/futex: ensure io_futex_wait() cleans up properly on failure (bsc#1249322). - CVE-2025-39703: net, hsr: reject HSR frame if skb can't hold tag (bsc#1249315). - CVE-2025-39723: kABI: netfs: handle new netfs_io_stream flag (bsc#1249314). - CVE-2025-39744: rcu: Fix rcu_read_unlock() deadloop due to IRQ work (bsc#1249494). - CVE-2025-39749: rcu: Protect ->defer_qs_iw_pending from data race (bsc#1249533). - CVE-2025-39754: mm/smaps: fix race between smaps_hugetlb_range and migration (bsc#1249524). - CVE-2025-39766: net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit (bsc#1249510). - CVE-2025-39770: net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM (bsc#1249508). - CVE-2025-39773: net: bridge: fix soft lockup in br_multicast_query_expired() (bsc#1249504). - CVE-2025-39775: mm/mremap: fix WARN with uffd that has remap events disabled (bsc#1249500). - CVE-2025-39782: jbd2: prevent softlockup in jbd2_log_do_checkpoint() (bsc#1249526). - CVE-2025-39791: dm: dm-crypt: Do not partially accept write BIOs with zoned targets (bsc#1249550). - CVE-2025-39792: dm: Always split write BIOs to zoned device limits (bsc#1249618). - CVE-2025-39797: xfrm: xfrm_alloc_spi shouldn't use 0 as SPI (bsc#1249608). - CVE-2025-39813: ftrace: Also allocate and copy hash for reading of filter files (bsc#1250032). - CVE-2025-39816: io_uring/kbuf: always use READ_ONCE() to read ring provided buffer lengths (bsc#1249906). - CVE-2025-39823: KVM: x86: use array_index_nospec with indices that come from guest (bsc#1250002). - CVE-2025-39825: smb: client: fix race with concurrent opens in rename(2) (bsc#1250179). - CVE-2025-39828: kABI workaround for struct atmdev_ops extension (bsc#1250205). - CVE-2025-39830: net/mlx5: HWS, Fix memory leak in hws_pool_buddy_init error path (bsc#1249974). - CVE-2025-39838: cifs: prevent NULL pointer dereference in UTF16 conversion (bsc#1250365). - CVE-2025-39842: ocfs2: prevent release journal inode after journal shutdown (bsc#1250267). - CVE-2025-39847: ppp: fix memory leak in pad_compress_skb (bsc#1250292). - CVE-2025-39850: vxlan: Fix NPD in {arp,neigh}_reduce() when using nexthop objects (bsc#1250276). - CVE-2025-39851: vxlan: Fix NPD when refreshing an FDB entry with a nexthop object (bsc#1250296). - CVE-2025-39852: net/tcp: Fix socket memory leak in TCP-AO failure handling for IPv6 (bsc#1250258). - CVE-2025-39853: i40e: Fix potential invalid access when MAC list is empty (bsc#1250275). - CVE-2025-39854: ice: fix NULL access of tx->in_use in ice_ll_ts_intr (bsc#1250297). - CVE-2025-39857: net/smc: fix one NULL pointer dereference in smc_ib_is_sg_need_sync() (bsc#1250251). - CVE-2025-39865: tee: fix NULL pointer dereference in tee_shm_put (bsc#1250294). - CVE-2025-39875: igb: Fix NULL pointer dereference in ethtool loopback test (bsc#1250398). - CVE-2025-39885: ocfs2: fix recursive semaphore deadlock in fiemap call (bsc#1250407). - CVE-2025-39898: e1000e: fix heap overflow in e1000_set_eeprom (bsc#1250742). - CVE-2025-39900: net_sched: gen_estimator: fix est_timer() vs CONFIG_PREEMPT_RT=y (bsc#1250758). - CVE-2025-39902: mm/slub: avoid accessing metadata when pointer is invalid in object_err() (bsc#1250702). - CVE-2025-39922: ixgbe: fix incorrect map used in eee linkmode (bsc#1250722). - CVE-2025-39926: genetlink: fix genl_bind() invoking bind() after -EPERM (bsc#1250737). - CVE-2025-39945: cnic: Fix use-after-free bugs in cnic_delete_task (bsc#1251230). - CVE-2025-39946: tls: make sure to abort the stream if headers are bogus (bsc#1251114). - CVE-2025-40300: x86/vmscape: Warn when STIBP is disabled with SMT (bsc#1247483). - CVE-2026-38264: nvme-tcp: sanitize request list handling (bsc#1246387). The following non-security bugs were fixed: - ACPI/IORT: Fix memory leak in iort_rmr_alloc_sids() (git-fixes). - ACPI/processor_idle: Add FFH state handling (jsc#PED-13815). - ACPI/processor_idle: Export acpi_processor_ffh_play_dead() (jsc#PED-13815). - ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path (stable-fixes). - ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered (stable-fixes). - ACPI: EC: Add device to acpi_ec_no_wakeup[] qurik list (stable-fixes). - ACPI: LPSS: Remove AudioDSP related ID (git-fixes). - ACPI: NFIT: Fix incorrect ndr_desc being reportedin dev_err message (git-fixes). - ACPI: RISC-V: Fix FFH_CPPC_CSR error handling (git-fixes). - ACPI: Return -ENODEV from acpi_parse_spcr() when SPCR support is disabled (stable-fixes). - ACPI: Suppress misleading SPCR console message when SPCR table is absent (stable-fixes). - ACPI: TAD: Add missing sysfs_remove_group() for ACPI_TAD_RT (git-fixes). - ACPI: battery: Add synchronization between interface updates (git-fixes). - ACPI: debug: fix signedness issues in read/write helpers (git-fixes). - ACPI: pfr_update: Fix the driver update version check (git-fixes). - ACPI: processor: Rescan "dead" SMT siblings during initialization (jsc#PED-13815). - ACPI: processor: fix acpi_object initialization (stable-fixes). - ACPI: processor: idle: Fix memory leak when register cpuidle device failed (git-fixes). - ACPI: processor: perflib: Fix initial _PPC limit application (git-fixes). - ACPI: processor: perflib: Move problematic pr->performance check (git-fixes). - ACPI: property: Fix buffer properties extraction for subnodes (git-fixes). - ACPICA: Fix largest possible resource descriptor index (git-fixes). - ALSA: firewire-motu: drop EPOLLOUT from poll return values as write is not supported (stable-fixes). - ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control (stable-fixes). - ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out() (git-fixes). - ALSA: hda/cs35l56: Workaround bad dev-index on Lenovo Yoga Book 9i GenX (stable-fixes). - ALSA: hda/hdmi: Add pin fix for another HP EliteDesk 800 G4 model (stable-fixes). - ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx (stable-fixes). - ALSA: hda/realtek - Add mute LED support for HP Victus 15-fa0xxx (stable-fixes). - ALSA: hda/realtek - Fix mute LED for HP Victus 16-d1xxx (MB 8A26) (stable-fixes). - ALSA: hda/realtek - Fix mute LED for HP Victus 16-r0xxx (stable-fixes). - ALSA: hda/realtek - Fix mute LED for HP Victus 16-r1xxx (stable-fixes). - ALSA: hda/realtek - Fix mute LED for HP Victus 16-s0xxx (stable-fixes). - ALSA: hda/realtek: Add ALC295 Dell TAS2781 I2C fixup (git-fixes). - ALSA: hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks (stable-fixes). - ALSA: hda/realtek: Add quirk for ASUS ROG Strix G712LWS (stable-fixes). - ALSA: hda/realtek: Add support for ASUS NUC using CS35L41 HDA (stable-fixes). - ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 (stable-fixes). - ALSA: hda/realtek: Audio disappears on HP 15-fc000 after warm boot again (git-fixes). - ALSA: hda/realtek: Fix headset mic for TongFang X6[AF]R5xxY (stable-fixes). - ALSA: hda/realtek: Fix headset mic on ASUS Zenbook 14 (git-fixes). - ALSA: hda/realtek: Fix headset mic on HONOR BRB-X (stable-fixes). - ALSA: hda/realtek: Fix mute LED mask on HP OMEN 16 laptop (git-fixes). - ALSA: hda/realtek: Fix mute led for HP Laptop 15-dw4xx (stable-fixes). - ALSA: hda/realtek: add LG gram 16Z90R-A to alc269 fixup table (stable-fixes). - ALSA: hda: Disable jack polling at shutdown (stable-fixes). - ALSA: hda: Handle the jack polling always via a work (stable-fixes). - ALSA: hda: intel-dsp-config: Prevent SEGFAULT if ACPI_HANDLE() is NULL (git-fixes). - ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4 (stable-fixes). - ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe() (git-fixes). - ALSA: lx_core: use int type to store negative error codes (git-fixes). - ALSA: pcm: Disable bottom softirqs as part of spin_lock_irq() on PREEMPT_RT (git-fixes). - ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop (stable-fixes). - ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx() (git-fixes). - ALSA: timer: fix ida_free call while not allocated (git-fixes). - ALSA: usb-audio: Add DSD support for Comtrue USB Audio device (stable-fixes). - ALSA: usb-audio: Add mixer quirk for Sony DualSense PS5 (stable-fixes). - ALSA: usb-audio: Add mute TLV for playback volumes on more devices (stable-fixes). - ALSA: usb-audio: Add mute TLV for playback volumes on some devices (stable-fixes). - ALSA: usb-audio: Allow Focusrite devices to use low samplerates (git-fixes). - ALSA: usb-audio: Avoid multiple assignments in mixer_quirks (stable-fixes). - ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros (stable-fixes). - ALSA: usb-audio: Convert comma to semicolon (git-fixes). - ALSA: usb-audio: Drop unnecessary parentheses in mixer_quirks (stable-fixes). - ALSA: usb-audio: Fix block comments in mixer_quirks (stable-fixes). - ALSA: usb-audio: Fix build with CONFIG_INPUT=n (git-fixes). - ALSA: usb-audio: Fix code alignment in mixer_quirks (stable-fixes). - ALSA: usb-audio: Fix size validation in convert_chmap_v3() (git-fixes). - ALSA: usb-audio: Remove unneeded wmb() in mixer_quirks (stable-fixes). - ALSA: usb-audio: Simplify NULL comparison in mixer_quirks (stable-fixes). - ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation (git-fixes). - ALSA: usb-audio: Validate UAC3 cluster segment descriptors (git-fixes). - ALSA: usb-audio: Validate UAC3 power domain descriptors, too (git-fixes). - ALSA: usb-audio: fix race condition to UAF in snd_usbmidi_free (git-fixes). - ALSA: usb-audio: move mixer_quirks' min_mute into common quirk (stable-fixes). - ASoC: Intel: avs: Fix uninitialized pointer error in probe() (stable-fixes). - ASoC: Intel: bytcht_es8316: Fix invalid quirk input mapping (git-fixes). - ASoC: Intel: bytcr_rt5640: Fix invalid quirk input mapping (git-fixes). - ASoC: Intel: bytcr_rt5651: Fix invalid quirk input mapping (git-fixes). - ASoC: Intel: catpt: Expose correct bit depth to userspace (git-fixes). - ASoC: Intel: fix SND_SOC_SOF dependencies (stable-fixes). - ASoC: Intel: sof_sdw: Prevent jump to NULL add_sidecar callback (git-fixes). - ASoC: SOF: Intel: Read the LLP via the associated Link DMA channel (git-fixes). - ASoC: SOF: Intel: hda-pcm: Place the constraint on period time instead of buffer time (git-fixes). - ASoC: SOF: Intel: hda-stream: Fix incorrect variable used in error message (git-fixes). - ASoC: SOF: amd: acp-loader: Use GFP_KERNEL for DMA allocations in resume context (git-fixes). - ASoC: SOF: ipc3-topology: Fix multi-core and static pipelines tear down (git-fixes). - ASoC: SOF: ipc4-topology: Account for different ChainDMA host buffer size (git-fixes). - ASoC: SOF: ipc4-topology: Correct the minimum host DMA buffer size (git-fixes). - ASoC: SOF: topology: Parse the dapm_widget_tokens in case of DSPless mode (stable-fixes). - ASoC: amd: acp: Adjust pdm gain value (stable-fixes). - ASoC: amd: yc: Add DMI entries to support HP 15-fb1xxx (stable-fixes). - ASoC: amd: yc: Add DMI quirk for HP Laptop 17 cp-2033dx (stable-fixes). - ASoC: amd: yc: add DMI quirk for ASUS M6501RM (stable-fixes). - ASoC: codecs: rt5640: Retry DEVICE_ID verification (stable-fixes). - ASoC: codecs: tx-macro: correct tx_macro_component_drv name (stable-fixes). - ASoC: codecs: wcd9375: Fix double free of regulator supplies (git-fixes). - ASoC: codecs: wcd937x: Drop unused buck_supply (git-fixes). - ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime() (stable-fixes). - ASoC: fsl_sai: replace regmap_write with regmap_update_bits (git-fixes). - ASoC: fsl_xcvr: get channel status data when PHY is not exists (git-fixes). - ASoC: hdac_hdmi: Rate limit logging on connection and disconnection (stable-fixes). - ASoC: imx-hdmi: remove cpu_pdev related code (git-fixes). - ASoC: mediatek: mt8365-dai-i2s: pass correct size to mt8365_dai_set_priv (git-fixes). - ASoC: mediatek: use reserved memory or enable buffer pre-allocation (git-fixes). - ASoC: ops: dynamically allocate struct snd_ctl_elem_value (git-fixes). - ASoC: qcom: audioreach: Fix lpaif_type configuration for the I2S interface (git-fixes). - ASoC: qcom: audioreach: fix potential null pointer dereference (git-fixes). - ASoC: qcom: q6apm-lpass-dais: Fix NULL pointer dereference if source graph failed (git-fixes). - ASoC: qcom: q6apm-lpass-dais: Fix missing set_fmt DAI op for I2S (git-fixes). - ASoC: qcom: use drvdata instead of component to keep id (stable-fixes). - ASoC: rt5682s: Adjust SAR ADC button mode to fix noise issue (stable-fixes). - ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask() (git-fixes). - ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed (stable-fixes). - ASoC: tas2781: Fix the wrong step for TLV on tas2781 (git-fixes). - ASoC: wcd934x: fix error handling in wcd934x_codec_parse_data() (git-fixes). - ASoC: wm8940: Correct PLL rate rounding (git-fixes). - ASoC: wm8940: Correct typo in control name (git-fixes). - ASoC: wm8974: Correct PLL rate rounding (git-fixes). - Bluetooth: Fix use-after-free in l2cap_sock_cleanup_listen() (git-fixes). - Bluetooth: ISO: Fix possible UAF on iso_conn_free (git-fixes). - Bluetooth: ISO: do not leak skb in ISO_CONT RX (git-fixes). - Bluetooth: ISO: free rx_skb if not consumed (git-fixes). - Bluetooth: MGMT: Fix not exposing debug UUID on MGMT_OP_READ_EXP_FEATURES_INFO (git-fixes). - Bluetooth: MGMT: Fix possible UAFs (git-fixes). - Bluetooth: btmtk: Fix wait_on_bit_timeout interruption during shutdown (git-fixes). - Bluetooth: btusb: Add USB ID 2001:332a for D-Link AX9U rev. A1 (stable-fixes). - Bluetooth: btusb: Add USB ID 3625:010b for TP-LINK Archer TX10UB Nano (stable-fixes). - Bluetooth: btusb: Add new VID/PID 0489/e14e for MT7925 (stable-fixes). - Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync() (git-fixes). - Bluetooth: hci_core: Fix using {cis,bis}_capable for current settings (git-fixes). - Bluetooth: hci_event: Detect if HCI_EV_NUM_COMP_PKTS is unbalanced (git-fixes). - Bluetooth: hci_event: Fix UAF in hci_acl_create_conn_sync (git-fixes). - Bluetooth: hci_event: Mark connection as closed during suspend disconnect (git-fixes). - Bluetooth: hci_event: Mask data status from LE ext adv reports (git-fixes). - Bluetooth: hci_event: Treat UNKNOWN_CONN_ID on disconnect as success (git-fixes). - Bluetooth: hci_event: fix MTU for BN == 0 in CIS Established (git-fixes). - Bluetooth: hci_sock: Reset cookie to zero in hci_sock_free_cookie() (stable-fixes). - Bluetooth: hci_sync: Avoid adding default advertising on startup (stable-fixes). - Bluetooth: hci_sync: Fix hci_resume_advertising_sync (git-fixes). - Bluetooth: hci_sync: Fix scan state after PA Sync has been established (git-fixes). - Bluetooth: hci_sync: Fix using random address for BIG/PA advertisements (git-fixes). - Bluetooth: hci_sync: Prevent unintended PA sync when SID is 0xFF (git-fixes). - Bluetooth: hci_sync: fix set_local_name race condition (git-fixes). - Bluetooth: vhci: Prevent use-after-free by removing debugfs files early (git-fixes). - CONFIG & no reference -> OK temporarily, must be resolved eventually - Disable CET before shutdown by tboot (bsc#1247950). - Docs/ABI: Fix sysfs-kernel-address_bits path (git-fixes). - Documentation/x86: Document new attack vector controls (git-fixes). - Documentation: ACPI: Fix parent device references (git-fixes). - Documentation: KVM: Fix unexpected unindent warning (git-fixes). - Documentation: KVM: Fix unexpected unindent warnings (git-fixes). - Documentation: usb: gadget: Wrap remaining usage snippets in literal code block (git-fixes). - Drop ath12k patch that was reverted in the upstream (git-fixes) - EDAC/{i10nm,skx,skx_common}: Support UV systems (bsc#1234693). - Enable CONFIG_CMA_SYSFS This is a generally useful feature for anyone using CMA or investigating CMA issues, with a small and simple code base and no runtime overhead. - Enable MT7925 WiFi drivers for openSUSE Leap 16.0 (bsc#1247325) - Enable SMC_LO (a.k.a SMC-D) (jsc#PED-13256). - Fix bogus i915 patch backport (bsc#1238972) It's been already cherry-picked in 6.12 kernel itself. - Fix dma_unmap_sg() nents value (git-fixes) - HID: amd_sfh: Add sync across amd sfh work functions (git-fixes). - HID: apple: avoid setting up battery timer for devices without battery (git-fixes). - HID: apple: validate feature-report field count to prevent NULL pointer dereference (git-fixes). - HID: asus: add support for missing PX series fn keys (stable-fixes). - HID: asus: fix UAF via HID_CLAIMED_INPUT validation (git-fixes). - HID: core: do not bypass hid_hw_raw_request (stable-fixes). - HID: core: ensure the allocated report buffer can contain the reserved report ID (stable-fixes). - HID: hid-ntrig: fix unable to handle page fault in ntrig_report_version() (stable-fixes). - HID: hidraw: tighten ioctl command parsing (git-fixes). - HID: input: rename hidinput_set_battery_charge_status() (stable-fixes). - HID: input: report battery status changes immediately (git-fixes). - HID: intel-ish-ipc: Remove redundant ready check after timeout function (git-fixes). - HID: logitech: Add ids for G PRO 2 LIGHTSPEED (stable-fixes). - HID: magicmouse: avoid setting up battery timer when not needed (git-fixes). - HID: multitouch: fix slab out-of-bounds access in mt_report_fixup() (git-fixes). - HID: quirks: add support for Legion Go dual dinput modes (stable-fixes). - HID: wacom: Add a new Art Pen 2 (stable-fixes). - IB/mlx5: Fix obj_type mismatch for SRQ event subscriptions (git-fixes) - IB/sa: Fix sa_local_svc_timeout_ms read race (git-fixes) - Input: i8042 - add TUXEDO InfinityBook Pro Gen10 AMD to i8042 quirk table (stable-fixes). - Input: iqs7222 - avoid enabling unused interrupts (stable-fixes). - Input: psxpad-spi - add a check for the return value of spi_setup() (git-fixes). - Input: uinput - zero-initialize uinput_ff_upload_compat to avoid info leak (git-fixes). - KEYS: X.509: Fix Basic Constraints CA flag parsing (git-fixes). - KEYS: trusted_tpm1: Compare HMAC values in constant time (git-fixes). - KVM: Allow CPU to reschedule while setting per-page memory attributes (git-fixes). - KVM: Bail from the dirty ring reset flow if a signal is pending (git-fixes). - KVM: Bound the number of dirty ring entries in a single reset at INT_MAX (git-fixes). - KVM: Conditionally reschedule when resetting the dirty ring (git-fixes). - KVM: PPC: Fix misleading interrupts comment in kvmppc_prepare_to_enter() (bsc#1215199). - KVM: SVM: Disable interception of SPEC_CTRL iff the MSR exists for the guest (git-fixes). - KVM: SVM: Fix SNP AP destroy race with VMRUN (git-fixes). - KVM: SVM: Reject SEV{-ES} intra host migration if vCPU creation is in-flight (git-fixes). - KVM: TDX: Add new TDVMCALL status code for unsupported subfuncs (jsc#PED-13302). - KVM: TDX: Do not report base TDVMCALLs (git-fixes). - KVM: TDX: Exit to userspace for GetTdVmCallInfo (jsc#PED-13302). - KVM: TDX: Exit to userspace for SetupEventNotifyInterrupt (jsc#PED-13302). - KVM: TDX: Handle TDG.VP.VMCALL&lt;GetQuote> (jsc#PED-13302). - KVM: TDX: Report supported optional TDVMCALLs in TDX capabilities (jsc#PED-13302). - KVM: TDX: Use kvm_arch_vcpu.host_debugctl to restore the host's DEBUGCTL (git-fixes). - KVM: VMX: Apply MMIO Stale Data mitigation if KVM maps MMIO into the guest (git-fixes). - KVM: VMX: Ensure unused kvm_tdx_capabilities fields are zeroed out (jsc#PED-13302). - KVM: arm64: Adjust range correctly during host stage-2 faults (git-fixes). - KVM: arm64: Do not free hyp pages with pKVM on GICv2 (git-fixes). - KVM: arm64: Fix error path in init_hyp_mode() (git-fixes). - KVM: arm64: Mark freed S2 MMUs as invalid (git-fixes). - KVM: arm64: vgic: fix incorrect spinlock API usage (git-fixes). - KVM: s390: Fix access to unavailable adapter indicator pages during postcopy (git-fixes bsc#1250124). - KVM: s390: Fix incorrect usage of mmu_notifier_register() (git-fixes bsc#1250123). - KVM: x86/mmu: Locally cache whether a PFN is host MMIO when making a SPTE (git-fixes). - KVM: x86/xen: Allow 'out of range' event channel ports in IRQ routing table (git-fixes). - KVM: x86: Avoid calling kvm_is_mmio_pfn() when kvm_x86_ops.get_mt_mask is NULL (git-fixes). - KVM: x86: Convert vcpu_run()'s immediate exit param into a generic bitmap (git-fixes). - KVM: x86: Drop pending_smi vs. INIT_RECEIVED check when setting MP_STATE (git-fixes). - KVM: x86: Reject KVM_SET_TSC_KHZ vCPU ioctl for TSC protected guest (git-fixes). - KVM: x86: avoid underflow when scaling TSC frequency (git-fixes). - Limit patch filenames to 100 characters (bsc#1249604). - Move upstreamed SPI patch into sorted section - NFS: Fix a race when updating an existing write (git-fixes). - NFS: Fix filehandle bounds checking in nfs_fh_to_dentry() (git-fixes). - NFS: Fix the setting of capabilities when automounting a new filesystem (git-fixes). - NFS: Fix wakeup of __nfs_lookup_revalidate() in unblock_revalidate() (git-fixes). - NFS: Fixup allocation flags for nfsiod's __GFP_NORETRY (git-fixes). - NFS: nfs_invalidate_folio() must observe the offset and size arguments (git-fixes). - NFSD: Define a proc_layoutcommit for the FlexFiles layout type (git-fixes). - NFSD: Fix destination buffer size in nfsd4_ssc_setup_dul() (git-fixes). - NFSD: detect mismatch of file handle and delegation stateid in OPEN op (git-fixes). - NFSv4.1: fix backchannel max_resp_sz verification check (git-fixes). - NFSv4.2: another fix for listxattr (git-fixes). - NFSv4/flexfiles: Fix layout merge mirror check (git-fixes). - NFSv4: Clear NFS_CAP_OPEN_XOR and NFS_CAP_DELEGTIME if not supported (git-fixes). - NFSv4: Clear the NFS_CAP_FS_LOCATIONS flag if it is not set (git-fixes). - NFSv4: Clear the NFS_CAP_XATTR flag if not supported by the server (git-fixes). - NFSv4: Do not clear capabilities that won't be reset (git-fixes). - Octeontx2-af: Skip overlap check for SPI field (git-fixes). - PCI/ACPI: Fix pci_acpi_preserve_config() memory leak (git-fixes). - PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports (git-fixes). - PCI/AER: Fix missing uevent on recovery when a reset is requested (git-fixes). - PCI/ERR: Fix uevent on failure to recover (git-fixes). - PCI/IOV: Add PCI rescan-remove locking when enabling/disabling SR-IOV (git-fixes). - PCI/MSI: Export pci_msix_prepare_desc() for dynamic MSI-X allocations (bsc#1245457). - PCI/portdrv: Use is_pciehp instead of is_hotplug_bridge (git-fixes). - PCI/pwrctrl: Fix device leak at registration (git-fixes). - PCI/sysfs: Ensure devices are powered for config reads (git-fixes). - PCI: Extend isolated function probing to LoongArch (git-fixes). - PCI: Rename PCIE_RESET_CONFIG_DEVICE_WAIT_MS to PCIE_RESET_CONFIG_WAIT_MS (git-fixes). - PCI: Support Immediate Readiness on devices without PM capabilities (git-fixes). - PCI: dw-rockchip: Replace PERST# sleep time with proper macro (git-fixes). - PCI: dw-rockchip: Wait PCIE_RESET_CONFIG_WAIT_MS after link-up IRQ (git-fixes). - PCI: dwc: Ensure that dw_pcie_wait_for_link() waits 100 ms after link up (stable-fixes). - PCI: endpoint: Fix configfs group list head handling (git-fixes). - PCI: endpoint: Fix configfs group removal on driver teardown (git-fixes). - PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute (git-fixes). - PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails (git-fixes). - PCI: hv: Allow dynamic MSI-X vector allocation (bsc#1245457). - PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features (git-fixes). - PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features (git-fixes). - PCI: imx6: Add i.MX8Q PCIe Endpoint (EP) support (git-fixes). - PCI: imx6: Delay link start until configfs 'start' written (git-fixes). - PCI: imx6: Remove apps_reset toggling from imx_pcie_{assert/deassert}_core_reset (git-fixes). - PCI: j721e: Fix incorrect error message in probe() (git-fixes). - PCI: j721e: Fix programming sequence of "strap" settings (git-fixes). - PCI: keystone: Use devm_request_irq() to free "ks-pcie-error-irq" on exit (git-fixes). - PCI: pnv_php: Clean up allocated IRQs on unplug (bsc#1215199). - PCI: pnv_php: Work around switches with broken presence detection (bsc#1215199). - PCI: qcom: Wait PCIE_RESET_CONFIG_WAIT_MS after link-up IRQ (git-fixes). - PCI: rcar-gen4: Add missing 1ms delay after PWR reset assertion (git-fixes). - PCI: rcar-gen4: Assure reset occurs before DBI access (git-fixes). - PCI: rcar-gen4: Fix PHY initialization (git-fixes). - PCI: rcar-gen4: Fix inverted break condition in PHY initialization (git-fixes). - PCI: rcar-host: Convert struct rcar_msi mask_lock into raw spinlock (git-fixes). - PCI: rcar-host: Drop PMSR spinlock (git-fixes). - PCI: rockchip-host: Fix "Unexpected Completion" log message (git-fixes). - PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining (git-fixes). - PCI: rockchip: Use standard PCIe definitions (git-fixes). - PCI: tegra194: Fix broken tegra_pcie_ep_raise_msi_irq() (git-fixes). - PCI: tegra194: Fix duplicate PLL disable in pex_ep_event_pex_rst_assert() (git-fixes). - PCI: tegra194: Handle errors in BPMP response (git-fixes). - PCI: tegra194: Reset BARs when running in PCIe endpoint mode (git-fixes). - PCI: tegra: Convert struct tegra_msi mask_lock into raw spinlock (git-fixes). - PCI: tegra: Fix devm_kcalloc() argument order for port->phys allocation (git-fixes). - PCI: xilinx-nwl: Fix ECAM programming (git-fixes). - PM / devfreq: Check governor before using governor->name (git-fixes). - PM / devfreq: Fix a index typo in trans_stat (git-fixes). - PM / devfreq: governor: Replace sscanf() with kstrtoul() in set_freq_store() (stable-fixes). - PM / devfreq: mtk-cci: Fix potential error pointer dereference in probe() (git-fixes). - PM / devfreq: rockchip-dfi: double count on RK3588 (git-fixes). - PM: EM: use kfree_rcu() to simplify the code (stable-fixes). - PM: cpufreq: powernv/tracing: Move powernv_throttle trace event (git-fixes). - PM: hibernate: Add pm_hibernation_mode_is_suspend() (bsc#1243112). - PM: hibernate: Add stub for pm_hibernate_is_recovering() (bsc#1243112). - PM: hibernate: Fix pm_hibernation_mode_is_suspend() build breakage (bsc#1243112). - PM: hibernate: add new api pm_hibernate_is_recovering() (bsc#1243112). - PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit() (stable-fixes). - PM: runtime: Take active children into account in pm_runtime_get_if_in_use() (git-fixes). - PM: sleep: console: Fix the black screen issue (stable-fixes). - PM: sleep: core: Clear power.must_resume in noirq suspend error path (git-fixes). - RAS/AMD/ATL: Include row bit in row retirement (bsc#1242034). - RAS/AMD/FMPM: Get masked address (bsc#1242034). - RDMA/bnxt_re: Fix a possible memory leak in the driver (git-fixes) - RDMA/bnxt_re: Fix size of uverbs_copy_to() in BNXT_RE_METHOD_GET_TOGGLE_MEM (git-fixes) - RDMA/bnxt_re: Fix to do SRQ armena by default (git-fixes) - RDMA/bnxt_re: Fix to initialize the PBL array (git-fixes) - RDMA/bnxt_re: Fix to remove workload check in SRQ limit path (git-fixes) - RDMA/cm: Rate limit destroy CM ID timeout error message (git-fixes) - RDMA/core: Rate limit GID cache warning messages (git-fixes) - RDMA/core: Resolve MAC of next-hop device without ARP support (git-fixes) - RDMA/core: reduce stack using in nldev_stat_get_doit() (git-fixes) - RDMA/counter: Check CAP_NET_RAW check in user namespace for RDMA counters (git-fixes) - RDMA/erdma: Fix ignored return value of init_kernel_qp (git-fixes) - RDMA/hns: Drop GFP_NOWARN (git-fixes) - RDMA/hns: Fix -Wframe-larger-than issue (git-fixes) - RDMA/hns: Fix HW configurations not cleared in error flow (git-fixes) - RDMA/hns: Fix accessing uninitialized resources (git-fixes) - RDMA/hns: Fix dip entries leak on devices newer than hip09 (git-fixes) - RDMA/hns: Fix double destruction of rsv_qp (git-fixes) - RDMA/hns: Fix querying wrong SCC context for DIP algorithm (git-fixes) - RDMA/hns: Get message length of ack_req from FW (git-fixes) - RDMA/mana_ib: Add device statistics support (bsc#1246651). - RDMA/mana_ib: Drain send wrs of GSI QP (bsc#1251135). - RDMA/mana_ib: Extend modify QP (bsc#1251135). - RDMA/mana_ib: Fix DSCP value in modify QP (git-fixes). - RDMA/mana_ib: add additional port counters (git-fixes). - RDMA/mana_ib: add support of multiple ports (git-fixes). - RDMA/mlx5: Better estimate max_qp_wr to reflect WQE count (git-fixes) - RDMA/mlx5: Check CAP_NET_RAW in user namespace for anchor create (git-fixes) - RDMA/mlx5: Check CAP_NET_RAW in user namespace for devx create (git-fixes) - RDMA/mlx5: Check CAP_NET_RAW in user namespace for flow create (git-fixes) - RDMA/mlx5: Fix UMR modifying of mkey page size (git-fixes) - RDMA/mlx5: Fix compilation warning when USER_ACCESS isn't set (git-fixes) - RDMA/mlx5: Fix vport loopback forcing for MPV device (git-fixes) - RDMA/nldev: Check CAP_NET_RAW in user namespace for QP modify (git-fixes) - RDMA/rxe: Fix race in do_task() when draining (git-fixes) - RDMA/rxe: Flush delayed SKBs while releasing RXE resources (git-fixes) - RDMA/siw: Always report immediate post SQ errors (git-fixes) - RDMA/siw: Fix the sendmsg byte count in siw_tcp_sendpages (git-fixes) - RDMA/uverbs: Add empty rdma_uattrs_has_raw_cap() declaration (git-fixes) - RDMA/uverbs: Check CAP_NET_RAW in user namespace for QP create (git-fixes) - RDMA/uverbs: Check CAP_NET_RAW in user namespace for RAW QP create (git-fixes) - RDMA/uverbs: Check CAP_NET_RAW in user namespace for flow create (git-fixes) - RDMA: hfi1: fix possible divide-by-zero in find_hw_thread_mask() (git-fixes) - README.BRANCH: mfranc@suse.cz leaving SUSE - RISC-V: Add defines for the SBI nested acceleration extension (jsc#PED-348). - Reapply "wifi: mac80211: Update skb's control block key in ieee80211_tx_dequeue()" (git-fixes). - Reapply "x86/smp: Eliminate mwait_play_dead_cpuid_hint()" (jsc#PED-13815). - Revert "SUNRPC: Do not allow waiting for exiting tasks" (git-fixes). - Revert "drm/amdgpu: fix incorrect vm flags to map bo" (stable-fixes). - Revert "drm/nouveau: check ioctl command codes better" (git-fixes). - Revert "gpio: mlxbf3: only get IRQ for device instance 0" (git-fixes). - Revert "leds: trigger: netdev: Configure LED blink interval for HW offload" (git-fixes). - Revert "mac80211: Dynamically set CoDel parameters per station" (stable-fixes). - Revert "usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running" (git-fixes). - Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" (stable-fixes). - Revert "wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO" (git-fixes). - SUNRPC: call xs_sock_process_cmsg for all cmsg (git-fixes). - Squashfs: add additional inode sanity checking (git-fixes). - Squashfs: fix uninit-value in squashfs_get_parent (git-fixes). - Squashfs: reject negative file sizes in squashfs_read_inode() (git-fixes). - USB: gadget: dummy-hcd: Fix locking bug in RT-enabled kernels (git-fixes). - USB: gadget: f_hid: Fix memory leak in hidg_bind error path (git-fixes). - USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI (stable-fixes). - USB: serial: option: add Foxconn T99W640 (stable-fixes). - USB: serial: option: add Foxconn T99W709 (stable-fixes). - USB: serial: option: add SIMCom 8230C compositions (stable-fixes). - USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition (stable-fixes). - USB: serial: option: add Telit Cinterion FN990A w/audio compositions (stable-fixes). - USB: serial: option: add Telit Cinterion LE910C4-WWX new compositions (stable-fixes). - USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera (stable-fixes). - USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles (stable-fixes). - Update config files. (bsc#1249186) Enable where we define KABI refs + rely on Kconfig deps. - Update config files: revive pwc driver for Leap (bsc#1249060) - accel/habanalabs/gaudi2: Use kvfree() for memory allocated with kvcalloc() (git-fixes). - accel/ivpu: Correct DCT interrupt handling (git-fixes). - accel/ivpu: Fix reset_engine debugfs file logic (stable-fixes). - accel/ivpu: Fix warning in ivpu_gem_bo_free() (git-fixes). - accel/ivpu: Prevent recovery work from being queued during device removal (git-fixes). - amdgpu/amdgpu_discovery: increase timeout limit for IFWI init (stable-fixes). - aoe: defer rexmit timer downdev work to workqueue (git-fixes). - arch/powerpc: Remove .interp section in vmlinux (bsc#1215199). - arm64/entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack() (git-fixes) - arm64/mm: Check PUD_TYPE_TABLE in pud_bad() (git-fixes) - arm64/mm: Check pmd_table() in pmd_trans_huge() (git-fixes) - arm64/mm: Close theoretical race where stale TLB entry remains valid (git-fixes) - arm64/mm: Drop wrong writes into TCR2_EL1 (git-fixes) - arm64/mm: Ensure adequate HUGE_MAX_HSTATE (git-fixes) - arm64/sysreg: Add register fields for HDFGRTR2_EL2 (git-fixes) - arm64/sysreg: Add register fields for HDFGWTR2_EL2 (git-fixes) - arm64/sysreg: Add register fields for HFGITR2_EL2 (git-fixes) - arm64/sysreg: Add register fields for HFGRTR2_EL2 (git-fixes) - arm64/sysreg: Add register fields for HFGWTR2_EL2 (git-fixes) - arm64/sysreg: Update register fields for ID_AA64MMFR0_EL1 (git-fixes) - arm64: Filter out SME hwcaps when FEAT_SME isn't implemented (git-fixes) - arm64: Handle KCOV __init vs inline mismatches (git-fixes) - arm64: Mark kernel as tainted on SAE and SError panic (git-fixes) - arm64: Restrict pagetable teardown to avoid false warning (git-fixes) - arm64: config: Make tpm_tis_spi module build-in (bsc#1246896) - arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD (git-fixes) - arm64: dts: add big-endian property back into watchdog node (git-fixes) - arm64: dts: apple: Add ethernet0 alias for J375 template (git-fixes) - arm64: dts: apple: t8103-j457: Fix PCIe ethernet iommu-map (git-fixes) - arm64: dts: apple: t8103: Fix PCIe BCM4377 nodename (git-fixes) - arm64: dts: exynos: gs101: Add 'local-timer-stop' to cpuidle nodes (git-fixes) - arm64: dts: exynos: gs101: ufs: add dma-coherent property (git-fixes) - arm64: dts: freescale: imx8mm-verdin: Keep LDO5 always on (git-fixes) - arm64: dts: freescale: imx93-tqma9352: Limit BUCK2 to 600mV (git-fixes) - arm64: dts: imx8mm-beacon: Fix HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mm-beacon: Fix RTC capacitive load (git-fixes) - arm64: dts: imx8mm-beacon: Set SAI5 MCLK direction to output for HDMI (git-fixes) - arm64: dts: imx8mm-venice-gw700x: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mm-venice-gw7901: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mm-venice-gw7902: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mm-venice-gw7903: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mm-venice-gw7904: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mn-beacon: Fix HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mn-beacon: Fix RTC capacitive load (git-fixes) - arm64: dts: imx8mn-beacon: Set SAI5 MCLK direction to output for HDMI (git-fixes) - arm64: dts: imx8mn-venice-gw7902: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mp-beacon: Fix RTC capacitive load (git-fixes) - arm64: dts: imx8mp-tqma8mpql: fix LDO5 power off (git-fixes) - arm64: dts: imx8mp-venice-gw702x: Increase HS400 USDHC clock speed (git-fixes) - arm64: dts: imx8mp-venice-gw71xx: fix TPM SPI frequency (git-fixes) - arm64: dts: imx8mp-venice-gw72xx: fix TPM SPI frequency (git-fixes) - arm64: dts: imx8mp-venice-gw73xx: fix TPM SPI frequency (git-fixes) - arm64: dts: imx8mp-venice-gw74xx: fix TPM SPI frequency (git-fixes) - arm64: dts: imx8mp: Correct thermal sensor index (git-fixes) - arm64: dts: imx8mp: Fix missing microSD slot vqmmc on DH electronics (git-fixes) - arm64: dts: imx8mp: Fix missing microSD slot vqmmc on Data Modul (git-fixes) - arm64: dts: imx93-kontron: Fix GPIO for panel regulator (git-fixes) - arm64: dts: imx93-kontron: Fix USB port assignment (git-fixes) - arm64: dts: imx95: Correct the DMA interrupter number of pcie0_ep (git-fixes) - arm64: dts: imx95: Correct the lpuart7 and lpuart8 srcid (git-fixes) - arm64: dts: marvell: cn9132-clearfog: disable eMMC high-speed modes (git-fixes) - arm64: dts: marvell: cn9132-clearfog: fix multi-lane pci x2 and x4 (git-fixes) - arm64: dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi 4B (git-fixes). - arm64: dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi CM5 (git-fixes) - arm64: dts: rockchip: Add vcc-supply to SPI flash on (git-fixes) - arm64: dts: rockchip: Add vcc-supply to SPI flash on rk3566-rock3c (git-fixes) - arm64: dts: rockchip: Fix Bluetooth interrupts flag on Neardi LBA3368 (git-fixes) - arm64: dts: rockchip: Fix the headphone detection on the orangepi 5 (git-fixes) - arm64: dts: rockchip: Move SHMEM memory to reserved memory on rk3588 (git-fixes) - arm64: dts: rockchip: Update eMMC for NanoPi R5 series (git-fixes) - arm64: dts: rockchip: disable unrouted USB controllers and PHY on (git-fixes) - arm64: dts: rockchip: disable unrouted USB controllers and PHY on RK3399 Puma (git-fixes) - arm64: dts: rockchip: fix endpoint dtc warning for PX30 ISP (git-fixes) - arm64: dts: rockchip: fix internal USB hub instability on RK3399 Puma (git-fixes) - arm64: dts: rockchip: use cs-gpios for spi1 on ringneck (git-fixes) - arm64: dts: st: fix timer used for ticks (git-fixes) - arm64: ftrace: fix unreachable PLT for ftrace_caller in init_module (git-fixes) - arm64: map [_text, _stext) virtual address range (git-fixes) - arm64: mte: Do not flag the zero page as PG_mte_tagged (git-fixes) - arm64: poe: Handle spurious Overlay faults (git-fixes) - arm64: rust: clean Rust 1.85.0 warning using softfloat target (git-fixes) - arm64: stacktrace: Check kretprobe_find_ret_addr() return value (git-fixes) - arm64: tegra: Add uartd serial alias for Jetson TX1 module (git-fixes) - arm64: tegra: Drop remaining serial clock-names and reset-names (git-fixes) - arm64: tegra: Resize aperture for the IGX PCIe C5 slot (git-fixes) - arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator (git-fixes) - arm64: zynqmp: add clock-output-names property in clock nodes (git-fixes) - ata: ahci: Disable DIPM if host lacks support (stable-fixes). - ata: ahci: Disallow LPM policy control if not supported (stable-fixes). - ata: libata-sata: Add link_power_management_supported sysfs attribute (git-fixes). - ata: libata-sata: Disallow changing LPM state if not supported (stable-fixes). - ata: libata-scsi: Fix CDL control (git-fixes). - audit,module: restore audit logging in load failure case (git-fixes). - ax25: properly unshare skbs in ax25_kiss_rcv() (git-fixes). - batman-adv: fix OOB read/write in network-coding decode (git-fixes). - benet: fix BUG when creating VFs (git-fixes). - block: Introduce bio_needs_zone_write_plugging() (git-fixes). - block: Make REQ_OP_ZONE_FINISH a write operation (git-fixes, bsc#1249552). - block: ensure discard_granularity is zero when discard is not supported (git-fixes). - block: fix kobject leak in blk_unregister_queue (git-fixes). - block: mtip32xx: Fix usage of dma_map_sg() (git-fixes). - block: sanitize chunk_sectors for atomic write limits (git-fixes). - bnxt_en: Add a helper function to configure MRU and RSS (git-fixes). - bnxt_en: Adjust TX rings if reservation is less than requested (git-fixes). - bnxt_en: Fix DCB ETS validation (git-fixes). - bnxt_en: Fix memory corruption when FW resources change during ifdown (git-fixes). - bnxt_en: Fix stats context reservation logic (git-fixes). - bnxt_en: Flush FW trace before copying to the coredump (git-fixes). - bnxt_en: Update MRU and RSS table of RSS contexts on queue reset (git-fixes). - bnxt_en: eliminate the compile warning in bnxt_request_irq due to CONFIG_RFS_ACCEL (git-fixes). - bpf, arm64: Call bpf_jit_binary_pack_finalize() in bpf_jit_free() (git-fixes) - bpf, arm64: Fix fp initialization for exception boundary (git-fixes) - bpf, docs: Fix broken link to renamed bpf_iter_task_vmas.c (git-fixes). - bpf, sockmap: Fix psock incorrectly pointing to sk (git-fixes). - bpf: Adjust free target to avoid global starvation of LRU map (git-fixes). - bpf: Allow XDP dev-bound programs to perform XDP_REDIRECT into maps (git-fixes). - bpf: Avoid RCU context warning when unpinning htab with internal structs (git-fixes). - bpf: Check link_create.flags parameter for multi_kprobe (git-fixes). - bpf: Check link_create.flags parameter for multi_uprobe (git-fixes). - bpf: Fix metadata_dst leak __bpf_redirect_neigh_v{4,6} (git-fixes). - bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ (git-fixes). - bpf: Forget ranges when refining tnum after JSET (git-fixes). - bpf: Make reg_not_null() true for CONST_PTR_TO_MAP (git-fixes). - bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage (git-fixes). - bpf: Reject %p% format string in bprintf-like helpers (git-fixes). - bpf: Reject attaching fexit/fmod_ret to __noreturn functions (git-fixes). - bpf: Reject narrower access to pointer ctx fields (git-fixes). - bpf: Return prog btf_id without capable check (git-fixes). - bpf: Use preempt_count() directly in bpf_send_signal_common() (git-fixes). - bpf: Use proper type to calculate bpf_raw_tp_null_args.mask index (git-fixes). - bpf: fix possible endless loop in BPF map iteration (git-fixes). - btrfs: abort transaction during log replay if walk_log_tree() failed (git-fixes). - btrfs: abort transaction on unexpected eb generation at btrfs_copy_root() (git-fixes). - btrfs: add assertions and comment about path expectations to btrfs_cross_ref_exist() (git-fixes). - btrfs: add debug build only WARN (bsc#1249038). - btrfs: add function comment for check_committed_ref() (git-fixes). - btrfs: always abort transaction on failure to add block group to free space tree (git-fixes). - btrfs: avoid load/store tearing races when checking if an inode was logged (git-fixes). - btrfs: avoid redundant call to get inline ref type at check_committed_ref() (git-fixes). - btrfs: avoid starting new transaction when cleaning qgroup during subvolume drop (git-fixes). - btrfs: clear dirty status from extent buffer on error at insert_new_root() (git-fixes). - btrfs: codify pattern for adding block_group to bg_list (git-fixes). - btrfs: convert ASSERT(0) with handled errors to DEBUG_WARN() (bsc#1249038). - btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling (git-fixes). - btrfs: correctly escape subvol in btrfs_show_options() (git-fixes). - btrfs: do not allow relocation of partially dropped subvolumes (bsc#1249540). - btrfs: do not ignore inode missing when replaying log tree (git-fixes). - btrfs: do not output error message if a qgroup has been already cleaned up (git-fixes). - btrfs: do not return VM_FAULT_SIGBUS on failure to set delalloc for mmap write (bsc#1247949). - btrfs: do not silently ignore unexpected extent type when replaying log (git-fixes). - btrfs: do not skip remaining extrefs if dir not found during log replay (git-fixes). - btrfs: enhance ASSERT() to take optional format string (bsc#1249038). - btrfs: error on missing block group when unaccounting log tree extent buffers (git-fixes). - btrfs: exit after state split error at set_extent_bit() (git-fixes). - btrfs: explicitly ref count block_group on new_bgs list (bsc#1243068) - btrfs: fix -ENOSPC mmap write failure on NOCOW files/extents (bsc#1247949). - btrfs: fix assertion when building free space tree (git-fixes). - btrfs: fix corruption reading compressed range when block size is smaller than page size (git-fixes). - btrfs: fix data overwriting bug during buffered write when block size &lt; page size (git-fixes). - btrfs: fix data race when accessing the inode's disk_i_size at btrfs_drop_extents() (git-fixes). - btrfs: fix incorrect log message for nobarrier mount option (git-fixes). - btrfs: fix inode lookup error handling during log replay (git-fixes). - btrfs: fix invalid extref key setup when replaying dentry (git-fixes). - btrfs: fix invalid inode pointer after failure to create reloc inode (git-fixes). - btrfs: fix invalid inode pointer dereferences during log replay (git-fixes). - btrfs: fix iteration bug in __qgroup_excl_accounting() (git-fixes). - btrfs: fix log tree replay failure due to file with 0 links and extents (git-fixes). - btrfs: fix missing error handling when searching for inode refs during log replay (git-fixes). - btrfs: fix non-empty delayed iputs list on unmount due to async workers (git-fixes). - btrfs: fix printing of mount info messages for NODATACOW/NODATASUM (git-fixes). - btrfs: fix race between logging inode and checking if it was logged before (git-fixes). - btrfs: fix race between setting last_dir_index_offset and inode logging (git-fixes). - btrfs: fix squota compressed stats leak (git-fixes). - btrfs: fix ssd_spread overallocation (git-fixes). - btrfs: fix subvolume deletion lockup caused by inodes xarray race (git-fixes). - btrfs: fix the inode leak in btrfs_iget() (git-fixes). - btrfs: fix two misuses of folio_shift() (git-fixes). - btrfs: fix wrong length parameter for btrfs_cleanup_ordered_extents() (git-fixes). - btrfs: handle unaligned EOF truncation correctly for subpage cases (bsc#1249038). - btrfs: initialize inode::file_extent_tree after i_mode has been set (git-fixes). - btrfs: make btrfs_discard_workfn() block_group ref explicit (bsc#1243068) - btrfs: make btrfs_iget() return a btrfs inode instead (git-fixes). - btrfs: make btrfs_iget_path() return a btrfs inode instead (git-fixes). - btrfs: move transaction aborts to the error site in add_block_group_free_space() (git-fixes). - btrfs: pass a btrfs_inode to fixup_inode_link_count() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_defrag_file() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_double_mmap_lock() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_double_mmap_unlock() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_extent_same_range() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_fill_inode() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_iget_locked() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_inode_inherit_props() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_inode_type() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_load_inode_props() (git-fixes). - btrfs: pass struct btrfs_inode to btrfs_read_locked_inode() (git-fixes). - btrfs: pass struct btrfs_inode to can_nocow_extent() (git-fixes). - btrfs: pass struct btrfs_inode to clone_copy_inline_extent() (git-fixes). - btrfs: pass struct btrfs_inode to extent_range_clear_dirty_for_io() (git-fixes). - btrfs: pass struct btrfs_inode to fill_stack_inode_item() (git-fixes). - btrfs: pass struct btrfs_inode to new_simple_dir() (git-fixes). - btrfs: pass true to btrfs_delalloc_release_space() at btrfs_page_mkwrite() (bsc#1247949). - btrfs: propagate last_unlink_trans earlier when doing a rmdir (git-fixes). - btrfs: props: switch prop_handler::apply to struct btrfs_inode (git-fixes). - btrfs: props: switch prop_handler::extract to struct btrfs_inode (git-fixes). - btrfs: push cleanup into btrfs_read_locked_inode() (git-fixes). - btrfs: qgroup: fix qgroup create ioctl returning success after quotas disabled (git-fixes). - btrfs: qgroup: fix race between quota disable and quota rescan ioctl (git-fixes). - btrfs: qgroup: remove no longer used fs_info->qgroup_ulist (git-fixes). - btrfs: qgroup: set quota enabled bit if quota disable fails flushing reservations (git-fixes). - btrfs: record new subvolume in parent dir earlier to avoid dir logging races (git-fixes). - btrfs: remove conditional path allocation in btrfs_read_locked_inode() (git-fixes). - btrfs: remove no longer needed strict argument from can_nocow_extent() (git-fixes). - btrfs: remove redundant path release when replaying a log tree (git-fixes). - btrfs: remove the snapshot check from check_committed_ref() (git-fixes). - btrfs: restore mount option info messages during mount (git-fixes). - btrfs: return a btrfs_inode from btrfs_iget_logging() (git-fixes). - btrfs: return a btrfs_inode from read_one_inode() (git-fixes). - btrfs: return any hit error from extent_writepage_io() (git-fixes). - btrfs: send: remove unnecessary inode lookup at send_encoded_inline_extent() (git-fixes). - btrfs: simplify arguments for btrfs_cross_ref_exist() (git-fixes). - btrfs: simplify early error checking in btrfs_page_mkwrite() (bsc#1247949). - btrfs: simplify error detection flow during log replay (git-fixes). - btrfs: simplify return logic at check_committed_ref() (git-fixes). - btrfs: subpage: fix the bitmap dump of the locked flags (git-fixes). - btrfs: tests: fix chunk map leak after failure to add it to the tree (git-fixes). - btrfs: tree-checker: fix the incorrect inode ref size check (git-fixes). - btrfs: unfold transaction aborts when replaying log trees (git-fixes). - btrfs: unify ordering of btrfs_key initializations (git-fixes). - btrfs: update superblock's device bytes_used when dropping chunk (git-fixes). - btrfs: use a single variable to track return value at btrfs_page_mkwrite() (bsc#1247949). - btrfs: use btrfs_record_snapshot_destroy() during rmdir (git-fixes). - btrfs: use filemap_get_folio() helper (git-fixes). - btrfs: use struct btrfs_inode inside btrfs_get_name() (git-fixes). - btrfs: use struct btrfs_inode inside btrfs_get_parent() (git-fixes). - btrfs: use struct btrfs_inode inside btrfs_remap_file_range() (git-fixes). - btrfs: use struct btrfs_inode inside btrfs_remap_file_range_prep() (git-fixes). - btrfs: use struct btrfs_inode inside create_pending_snapshot() (git-fixes). - btrfs: use verbose ASSERT() in volumes.c (bsc#1249038). - build_bug.h: Add KABI assert (bsc#1249186). - bus: firewall: Fix missing static inline annotations for stubs (git-fixes). - bus: fsl-mc: Check return value of platform_get_resource() (git-fixes). - bus: fsl-mc: Fix potential double device reference in fsl_mc_get_endpoint() (git-fixes). - bus: mhi: ep: Fix chained transfer handling in read path (git-fixes). - bus: mhi: host: Detect events pointing to unexpected TREs (git-fixes). - bus: mhi: host: Do not use uninitialized 'dev' pointer in mhi_init_irq_setup() (git-fixes). - bus: mhi: host: pci_generic: Fix the modem name of Foxconn T99W640 (git-fixes). - can: etas_es58x: populate ndo_change_mtu() to prevent buffer overflow (git-fixes). - can: hi311x: fix null pointer dereference when resuming from sleep before interface was enabled (stable-fixes). - can: hi311x: populate ndo_change_mtu() to prevent buffer overflow (git-fixes). - can: j1939: implement NETDEV_UNREGISTER notification handler (git-fixes). - can: j1939: j1939_local_ecu_get(): undo increment when j1939_local_ecu_get() fails (git-fixes). - can: j1939: j1939_sk_bind(): call j1939_priv_put() immediately when j1939_local_ecu_get() failed (git-fixes). - can: kvaser_pciefd: Store device channel index (git-fixes). - can: kvaser_usb: Assign netdev.dev_port based on device channel index (git-fixes). - can: mcba_usb: populate ndo_change_mtu() to prevent buffer overflow (git-fixes). - can: netlink: can_changelink(): fix NULL pointer deref of struct can_priv::do_set_mode (git-fixes). - can: peak_usb: fix USB FD devices potential malfunction (git-fixes). - can: peak_usb: fix shift-out-of-bounds issue (git-fixes). - can: rcar_can: rcar_can_resume(): fix s2ram with PSCI (stable-fixes). - can: rcar_canfd: Fix controller mode setting (stable-fixes). - can: sun4i_can: populate ndo_change_mtu() to prevent buffer overflow (git-fixes). - can: xilinx_can: xcan_write_frame(): fix use-after-free of transmitted SKB (git-fixes). - cdc-acm: fix race between initial clearing halt and open (git-fixes). - cdc_ncm: Flag Intel OEM version of Fibocom L850-GL as WWAN (stable-fixes). - cdx: Fix off-by-one error in cdx_rpmsg_probe() (git-fixes). - cgroup/cpuset: Fix a partition error with CPU hotplug (bsc#1241166). - cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key (bsc#1241166). - cgroup: Add compatibility option for content of /proc/cgroups (jsc#PED-12405). - cgroup: Print message when /proc/cgroups is read on v2-only system (jsc#PED-12405). - cgroup: llist: avoid memory tears for llist_node (bsc#1247963). - cgroup: make css_rstat_updated nmi safe (bsc#1247963). - cgroup: remove per-cpu per-subsystem locks (bsc#1247963). - cgroup: support to enable nmi-safe css_rstat_updated (bsc#1247963). - char: misc: Fix improper and inaccurate error code returned by misc_init() (stable-fixes). - clk: at91: peripheral: fix return value (git-fixes). - clk: at91: sam9x7: update pll clk ranges (git-fixes). - clk: clk-axi-clkgen: fix fpfd_max frequency for zynq (git-fixes). - clk: davinci: Add NULL check in davinci_lpsc_clk_register() (git-fixes). - clk: imx95-blk-ctl: Fix synchronous abort (git-fixes). - clk: mediatek: clk-mux: Do not pass flags to clk_mux_determine_rate_flags() (git-fixes). - clk: mediatek: mt8195-infra_ao: Fix parent for infra_ao_hdmi_26m (git-fixes). - clk: qcom: common: Fix NULL vs IS_ERR() check in qcom_cc_icc_register() (git-fixes). - clk: qcom: gcc-ipq8074: fix broken freq table for nss_port6_tx_clk_src (git-fixes). - clk: qcom: tcsrcc-x1e80100: Set the bi_tcxo as parent to eDP refclk (git-fixes). - clk: renesas: cpg-mssr: Fix memory leak in cpg_mssr_reserved_init() (git-fixes). - clk: renesas: rzv2h: Fix missing CLK_SET_RATE_PARENT flag for ddiv clocks (git-fixes). - clk: samsung: exynos850: fix a comment (git-fixes). - clk: samsung: gs101: fix CLK_DOUT_CMU_G3D_BUSD (git-fixes). - clk: samsung: gs101: fix alternate mout_hsi0_usb20_ref parent clock (git-fixes). - clk: sunxi-ng: v3s: Fix de clock definition (git-fixes). - clk: tegra: do not overallocate memory for bpmp clocks (git-fixes). - clk: thead: th1520-ap: Correctly refer the parent of osc_12m (git-fixes). - clk: xilinx: vcu: unregister pll_post only if registered correctly (git-fixes). - comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl() (git-fixes). - comedi: Make insn_rw_emulate_bits() do insn->n samples (git-fixes). - comedi: fix race between polling and detaching (git-fixes). - comedi: pcl726: Prevent invalid irq number (git-fixes). - compiler-clang.h: define __SANITIZE_*__ macros only when undefined (stable-fixes). - compiler: remove __ADDRESSABLE_ASM{_STR,}() again (git-fixes). - config.sh: SLFO 1.2 branched in IBS - config: arm64: default: enable mtu3 dual-role support for MediaTek platforms (bsc#1245206) - coredump: Fixes core_pipe_limit sysctl proc_handler (git-fixes). - cpu: Define attack vectors (git-fixes). - cpufreq/amd-pstate: Fix a regression leading to EPP 0 after resume (git-fixes). - cpufreq/amd-pstate: Fix setting of CPPC.min_perf in active mode for performance governor (git-fixes). - cpufreq/sched: Explicitly synchronize limits_changed flag (git-fixes) - cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS (git-fixes) - cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist (stable-fixes). - cpufreq: CPPC: Avoid using CPUFREQ_ETERNAL as transition delay (stable-fixes). - cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag (stable-fixes). - cpufreq: Exit governor when failed to start old governor (stable-fixes). - cpufreq: Init policy->rwsem before it may be possibly used (git-fixes). - cpufreq: Initialize cpufreq-based frequency-invariance later (git-fixes). - cpufreq: Initialize cpufreq-based invariance before subsys (git-fixes). - cpufreq: Make drivers using CPUFREQ_ETERNAL specify transition latency (stable-fixes git-fixes). - cpufreq: Reference count policy in cpufreq_update_limits() (git-fixes). - cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table() (stable-fixes). - cpufreq: armada-8k: make both cpu masks static (git-fixes). - cpufreq: cppc: Fix invalid return value in .get() callback (git-fixes). - cpufreq: governor: Fix negative 'idle_time' handling in dbs_update() (git-fixes). - cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode (stable-fixes). - cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode (git-fixes). - cpufreq: intel_pstate: Fix object lifecycle issue in update_qos_request() (git-fixes). - cpufreq: intel_pstate: Unchecked MSR aceess in legacy mode (git-fixes). - cpufreq: mediatek: fix device leak on probe failure (git-fixes). - cpufreq: scmi: Account for malformed DT in scmi_dev_used_by_cpus() (git-fixes). - cpufreq: scmi: Skip SCMI devices that are not used by the CPUs (stable-fixes). - cpufreq: scpi: compare kHz instead of Hz (git-fixes). - cpufreq: sun50i: prevent out-of-bounds access (git-fixes). - cpufreq: tegra186: Set target frequency for all cpus in policy (git-fixes). - cpufreq: tegra186: Share policy per cluster (stable-fixes). - cpupower: Fix a bug where the -t option of the set subcommand was not working (stable-fixes). - crypto: af_alg - Set merge to zero early in af_alg_sendmsg (git-fixes). - crypto: arm/aes-neonbs - work around gcc-15 warning (git-fixes). - crypto: aspeed - Fix dma_unmap_sg() direction (git-fixes). - crypto: atmel - Fix dma_unmap_sg() direction (git-fixes). - crypto: caam - Prevent crash on suspend with iMX8QM / iMX8ULP (git-fixes). - crypto: ccp - Add missing bootloader info reg for pspv6 (stable-fixes). - crypto: ccp - Fix crash when rebind ccp device for ccp.ko (git-fixes). - crypto: ccp - Fix locking on alloc failure handling (git-fixes). - crypto: essiv - Check ssize for decryption and in-place encryption (git-fixes). - crypto: hisilicon - re-enable address prefetch after device resuming (git-fixes). - crypto: hisilicon/hpre - fix dma unmap sequence (stable-fixes). - crypto: hisilicon/qm - check whether the input function and PF are on the same device (git-fixes). - crypto: hisilicon/qm - set NULL to qm->debug.qm_diff_regs (git-fixes). - crypto: hisilicon/zip - remove unnecessary validation for high-performance mode configurations (git-fixes). - crypto: img-hash - Fix dma_unmap_sg() nents value (git-fixes). - crypto: inside-secure - Fix `dma_unmap_sg()` nents value (git-fixes). - crypto: jitter - fix intermediary handling (stable-fixes). - crypto: keembay - Add missing check after sg_nents_for_len() (git-fixes). - crypto: keembay - Fix dma_unmap_sg() nents value (git-fixes). - crypto: marvell/cesa - Fix engine load inaccuracy (git-fixes). - crypto: octeontx2 - Call strscpy() with correct size argument (git-fixes). - crypto: octeontx2 - Fix address alignment issue on ucode loading (stable-fixes). - crypto: octeontx2 - Fix address alignment on CN10K A0/A1 and OcteonTX2 (stable-fixes). - crypto: octeontx2 - Fix address alignment on CN10KB and CN10KA-B0 (stable-fixes). - crypto: octeontx2 - add timeout for load_fvc completion poll (stable-fixes). - crypto: qat - allow enabling VFs in the absence of IOMMU (git-fixes). - crypto: qat - disable ZUC-256 capability for QAT GEN5 (git-fixes). - crypto: qat - fix DMA direction for compression on GEN2 devices (git-fixes). - crypto: qat - fix seq_file position update in adf_ring_next() (git-fixes). - crypto: qat - fix state restore for banks with exceptions (git-fixes). - crypto: qat - flush misc workqueue during device shutdown (git-fixes). - crypto: qat - lower priority for skcipher and aead algorithms (stable-fixes). - crypto: qat - use unmanaged allocation for dc_data (git-fixes). - crypto: rng - Ensure set_ent is always present (git-fixes). - crypto: rockchip - Fix dma_unmap_sg() nents value (git-fixes). - crypto: sun8i-ce - fix nents passed to dma_unmap_sg() (git-fixes). - devlink: Add support for u64 parameters (jsc#PED-13331). - devlink: avoid param type value translations (jsc#PED-13331). - devlink: define enum for attr types of dynamic attributes (jsc#PED-13331). - devlink: introduce devlink_nl_put_u64() (jsc#PED-13331). - devlink: let driver opt out of automatic phys_port_name generation (git-fixes). - dm-mpath: do not print the "loaded" message if registering fails (git-fixes). - dm-stripe: limit chunk_sectors to the stripe size (git-fixes). - dm-table: fix checking for rq stackable devices (git-fixes). - dm: Check for forbidden splitting of zone write operations (git-fixes). - dm: split write BIOs on zone boundaries when zone append is not emulated (git-fixes). - dma/pool: Ensure DMA_DIRECT_REMAP allocations are decrypted (stable-fixes). - dmaengine: Fix dma_async_tx_descriptor->tx_submit documentation (git-fixes). - dmaengine: dw-edma: Drop unused dchan2dev() and chan2dev() (git-fixes). - dmaengine: dw: dmamux: Fix device reference leak in rzn1_dmamux_route_allocate (git-fixes). - dmaengine: fsl-dpaa2-qdma: Drop unused mc_enc() (git-fixes). - dmaengine: idxd: Fix double free in idxd_setup_wqs() (git-fixes). - dmaengine: idxd: Fix refcount underflow on module unload (git-fixes). - dmaengine: idxd: Remove improper idxd_free (git-fixes). - dmaengine: mediatek: Fix a flag reuse error in mtk_cqdma_tx_status() (git-fixes). - dmaengine: mmp: Fix again Wvoid-pointer-to-enum-cast warning (git-fixes). - dmaengine: mv_xor: Fix missing check after DMA map and missing unmap (git-fixes). - dmaengine: nbpfaxi: Add missing check after DMA map (git-fixes). - dmaengine: qcom: bam_dma: Fix DT error handling for num-channels/ees (git-fixes). - dmaengine: qcom: gpi: Drop unused gpi_write_reg_field() (git-fixes). - dmaengine: stm32-dma: configure next sg only if there are more than 2 sgs (stable-fixes). - dmaengine: ti: edma: Fix memory allocation size for queue_priority_map (git-fixes). - docs: admin-guide: update to current minimum pipe size default (git-fixes). - dpll: Add basic Microchip ZL3073x support (jsc#PED-13331). - dpll: Make ZL3073X invisible (jsc#PED-13331). - dpll: zl3073x: Add support to get/set frequency on pins (jsc#PED-13331). - dpll: zl3073x: Add support to get/set priority on input pins (jsc#PED-13331). - dpll: zl3073x: Fetch invariants during probe (jsc#PED-13331). - dpll: zl3073x: Fix build failure (jsc#PED-13331). - dpll: zl3073x: Implement input pin selection in manual mode (jsc#PED-13331). - dpll: zl3073x: Implement input pin state setting in automatic mode (jsc#PED-13331). - dpll: zl3073x: Read DPLL types and pin properties from system firmware (jsc#PED-13331). - dpll: zl3073x: Register DPLL devices and pins (jsc#PED-13331). - dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET (jsc#PED-13331). - driver core/PM: Set power.no_callbacks along with power.no_pm (stable-fixes). - drivers/base/node: fix double free in register_one_node() (git-fixes). - drivers/base/node: handle error properly in register_one_node() (git-fixes). - drivers: base: handle module_kobject creation (git-fixes). - drm/amd : Update MES API header file for v11 & v12 (stable-fixes). - drm/amd/amdgpu: Declare isp firmware binary file (stable-fixes). - drm/amd/amdgpu: Fix missing error return on kzalloc failure (git-fixes). - drm/amd/amdgpu: Implement MES suspend/resume gang functionality for v12 (bsc#1243112). - drm/amd/amdgpu: disable hwmon power1_cap* for gfx 11.0.3 on vf mode (stable-fixes). - drm/amd/display: Add NULL check for stream before dereference in 'dm_vupdate_high_irq' (bsc#1243112). - drm/amd/display: Add missing DCE6 SCL_HORZ_FILTER_INIT* SRIs (git-fixes). - drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session() (git-fixes). - drm/amd/display: Add primary plane to commits for correct VRR handling (stable-fixes). - drm/amd/display: Adjust DCE 8-10 clock, do not overclock by 15% (git-fixes). - drm/amd/display: Allow DCN301 to clear update flags (git-fixes). - drm/amd/display: Allow RX6xxx & RX7700 to invoke amdgpu_irq_get/put (git-fixes). - drm/amd/display: Avoid a NULL pointer dereference (stable-fixes). - drm/amd/display: Avoid configuring PSR granularity if PSR-SU not supported (stable-fixes). - drm/amd/display: Avoid trying AUX transactions on disconnected ports (stable-fixes). - drm/amd/display: Clear the CUR_ENABLE register on DCN314 w/out DPP PG (stable-fixes). - drm/amd/display: Default IPS to RCG_IN_ACTIVE_IPS2_IN_OFF (git-fixes). - drm/amd/display: Disable CRTC degamma LUT for DCN401 (stable-fixes). - drm/amd/display: Disable DPCD Probe Quirk (bsc#1248121). - drm/amd/display: Disable dsc_power_gate for dcn314 by default (stable-fixes). - drm/amd/display: Disable scaling on DCE6 for now (git-fixes). - drm/amd/display: Do not check for NULL divisor in fixpt code (git-fixes). - drm/amd/display: Do not overclock DCE 6 by 15% (git-fixes). - drm/amd/display: Do not overwrite dce60_clk_mgr (git-fixes). - drm/amd/display: Do not print errors for nonexistent connectors (git-fixes). - drm/amd/display: Do not warn when missing DCE encoder caps (stable-fixes). - drm/amd/display: Enable Dynamic DTBCLK Switch (bsc#1243112). - drm/amd/display: Fill display clock and vblank time in dce110_fill_display_configs (stable-fixes). - drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs (stable-fixes). - drm/amd/display: Fix 'failed to blank crtc!' (stable-fixes). - drm/amd/display: Fix DP audio DTO1 clock source on DCE 6 (stable-fixes). - drm/amd/display: Fix Xorg desktop unresponsive on Replay panel (stable-fixes). - drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3 (git-fixes). - drm/amd/display: Fix mismatch type comparison (stable-fixes). - drm/amd/display: Fix vupdate_offload_work doc (bsc#1243112). - drm/amd/display: Free memory allocation (stable-fixes). - drm/amd/display: Init DCN35 clocks from pre-os HW values (git-fixes). - drm/amd/display: Initialize mode_select to 0 (stable-fixes). - drm/amd/display: Only finalize atomic_obj if it was initialized (stable-fixes). - drm/amd/display: Properly clear SCL_*_FILTER_CONTROL on DCE6 (git-fixes). - drm/amd/display: Properly disable scaling on DCE6 (git-fixes). - drm/amd/display: Remove redundant semicolons (git-fixes). - drm/amd/display: Separate set_gsl from set_gsl_source_select (stable-fixes). - drm/amd/display: Update DMCUB loading sequence for DCN3.5 (stable-fixes). - drm/amd/display: add workaround flag to link to force FFE preset (stable-fixes). - drm/amd/display: fix a Null pointer dereference vulnerability (stable-fixes). - drm/amd/display: fix dmub access race condition (bsc#1243112). - drm/amd/display: fix initial backlight brightness calculation (git-fixes). - drm/amd/display: limit clear_update_flags to dcn32 and above (stable-fixes). - drm/amd/display: more liberal vmin/vmax update for freesync (bsc#1243112). - drm/amd/display: remove output_tf_change flag (git-fixes). - drm/amd/display: use udelay rather than fsleep (git-fixes). - drm/amd/include : MES v11 and v12 API header update (stable-fixes). - drm/amd/include : Update MES v12 API for fence update (stable-fixes). - drm/amd/pm/powerplay/hwmgr/smu_helper: fix order of mask and value (git-fixes). - drm/amd/pm: Adjust si_upload_smc_data register programming (v3) (git-fixes). - drm/amd/pm: Disable MCLK switching with non-DC at 120 Hz+ (v2) (git-fixes). - drm/amd/pm: Disable SCLK switching on Oland with high pixel clocks (v3) (git-fixes). - drm/amd/pm: Disable ULV even if unsupported (v3) (git-fixes). - drm/amd/pm: Fix si_upload_smc_data (v3) (git-fixes). - drm/amd/pm: Treat zero vblank time as too short in si_dpm (v3) (git-fixes). - drm/amd/pm: fix null pointer access (stable-fixes). - drm/amd: Allow printing VanGogh OD SCLK levels without setting dpm to manual (stable-fixes). - drm/amd: Avoid evicting resources at S5 (bsc#1243112). - drm/amd: Check whether secure display TA loaded successfully (bsc#1243112). - drm/amd: Fix hybrid sleep (bsc#1243112). - drm/amd: Only restore cached manual clock settings in restore if OD enabled (bsc#1243112). - drm/amd: Restore cached manual clock settings during resume (bsc#1243112). - drm/amd: Restore cached power limit during resume (stable-fixes). - drm/amdgpu/discovery: fix fw based ip discovery (git-fixes). - drm/amdgpu/discovery: optionally use fw based ip discovery (stable-fixes). - drm/amdgpu/gfx10: fix KGQ reset sequence (git-fixes). - drm/amdgpu/gfx10: fix kiq locking in KCQ reset (git-fixes). - drm/amdgpu/gfx9.4.3: fix kiq locking in KCQ reset (git-fixes). - drm/amdgpu/gfx9: fix kiq locking in KCQ reset (git-fixes). - drm/amdgpu/mes11: implement detect and reset callback (bsc#1243112). - drm/amdgpu/mes12: implement detect and reset callback (bsc#1243112). - drm/amdgpu/mes: add front end for detect and reset hung queue (bsc#1243112). - drm/amdgpu/mes: add missing locking in helper functions (stable-fixes). - drm/amdgpu/mes: enable compute pipes across all MEC (git-fixes). - drm/amdgpu/mes: optimize compute loop handling (stable-fixes). - drm/amdgpu/swm14: Update power limit logic (stable-fixes). - drm/amdgpu/vcn4: Fix IB parsing with multiple engine info packages (stable-fixes). - drm/amdgpu/vcn: Allow limiting ctx to instance 0 for AV1 at any time (stable-fixes). - drm/amdgpu/vcn: fix ref counting for ring based profile handling (git-fixes). - drm/amdgpu/vpe: cancel delayed work in hw_fini (bsc#1243112). - drm/amdgpu: Add additional DCE6 SCL registers (git-fixes). - drm/amdgpu: Avoid extra evict-restore process (stable-fixes). - drm/amdgpu: Avoid rma causes GPU duplicate reset (bsc#1243112). - drm/amdgpu: Enable MES lr_compute_wa by default (stable-fixes). - drm/amdgpu: Fix allocating extra dwords for rings (v2) (git-fixes). - drm/amdgpu: Fix for GPU reset being blocked by KIQ I/O (bsc#1243112). - drm/amdgpu: Increase reset counter only on success (stable-fixes). - drm/amdgpu: Initialize data to NULL in imu_v12_0_program_rlc_ram() (git-fixes). - drm/amdgpu: Power up UVD 3 for FW validation (v2) (git-fixes). - drm/amdgpu: Remove nbiov7.9 replay count reporting (git-fixes). - drm/amdgpu: Report individual reset error (bsc#1243112). - drm/amdgpu: Reset the clear flag in buddy during resume (git-fixes). - drm/amdgpu: Update external revid for GC v9.5.0 (stable-fixes). - drm/amdgpu: VCN v5_0_1 to prevent FW checking RB during DPG pause (stable-fixes). - drm/amdgpu: add kicker fws loading for gfx11/smu13/psp13 (stable-fixes). - drm/amdgpu: check if hubbub is NULL in debugfs/amdgpu_dm_capabilities (stable-fixes). - drm/amdgpu: do not resume device in thaw for normal hibernation (bsc#1243112). - drm/amdgpu: drop hw access in non-DC audio fini (stable-fixes). - drm/amdgpu: fix a memory leak in fence cleanup when unloading (git-fixes). - drm/amdgpu: fix incorrect vm flags to map bo (git-fixes). - drm/amdgpu: fix link error for !PM_SLEEP (bsc#1243112). - drm/amdgpu: fix task hang from failed job submission during process kill (git-fixes). - drm/amdgpu: fix vram reservation issue (git-fixes). - drm/amdgpu: remove the redeclaration of variable i (git-fixes). - drm/amdgpu: update mmhub 3.0.1 client id mappings (stable-fixes). - drm/amdgpu: update mmhub 4.1.0 client id mappings (stable-fixes). - drm/amdkfd: Destroy KFD debugfs after destroy KFD wq (stable-fixes). - drm/amdkfd: Fix error code sign for EINVAL in svm_ioctl() (git-fixes). - drm/amdkfd: Fix mmap write lock not release (bsc#1243112). - drm/ast: Use msleep instead of mdelay for edid read (git-fixes). - drm/bridge: fix OF node leak (git-fixes). - drm/bridge: it6505: select REGMAP_I2C (git-fixes). - drm/bridge: ti-sn65dsi86: Remove extra semicolon in ti_sn_bridge_probe() (git-fixes). - drm/bridge: ti-sn65dsi86: fix REFCLK setting (git-fixes). - drm/cirrus-qemu: Fix pitch programming (git-fixes). - drm/connector: hdmi: Evaluate limited range after computing format (git-fixes). - drm/dp: Add an EDID quirk for the DPCD register access probe (bsc#1248121). - drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS (stable-fixes). - drm/dp: Change AUX DPCD probe address from LANE0_1_STATUS to TRAINING_PATTERN_SET (bsc#1248121). - drm/edid: Add support for quirks visible to DRM core and drivers (bsc#1248121). - drm/edid: Define the quirks in an enum list (bsc#1248121). - drm/format-helper: Add conversion from XRGB8888 to BGR888 (stable-fixes). - drm/gem: Internally test import_attach for imported objects (git-fixes). - drm/gem: Test for imported GEM buffers with helper (stable-fixes). - drm/gma500: Fix null dereference in hdmi teardown (git-fixes). - drm/hisilicon/hibmc: fix the hibmc loaded failed bug (git-fixes). - drm/hisilicon/hibmc: fix the i2c device resource leak when vdac init failed (git-fixes). - drm/hisilicon/hibmc: refactored struct hibmc_drm_private (stable-fixes). - drm/i915/backlight: Return immediately when scale() finds invalid parameters (stable-fixes). - drm/i915/ddi: change intel_ddi_init_{dp, hdmi}_connector() return type (stable-fixes). - drm/i915/ddi: gracefully handle errors from intel_ddi_init_hdmi_connector() (stable-fixes). - drm/i915/ddi: only call shutdown hooks for valid encoders (stable-fixes). - drm/i915/display: Fix dma_fence_wait_timeout() return value handling (git-fixes). - drm/i915/display: add intel_encoder_is_hdmi() (stable-fixes). - drm/i915/dp: Fix 2.7 Gbps DP_LINK_BW value on g4x (git-fixes). - drm/i915/dp_mst: Work around Thunderbolt sink disconnect after SINK_COUNT_ESI read (stable-fixes). - drm/i915/hdmi: add error handling in g4x_hdmi_init() (stable-fixes). - drm/i915/hdmi: propagate errors from intel_hdmi_init_connector() (stable-fixes). - drm/i915/icl+/tc: Cache the max lane count value (stable-fixes). - drm/i915/icl+/tc: Convert AUX powered WARN to a debug message (stable-fixes). - drm/i915/power: fix size for for_each_set_bit() in abox iteration (git-fixes). - drm/imagination: Clear runtime PM errors while resetting the GPU (stable-fixes). - drm/mediatek: Add error handling for old state CRTC in atomic_disable (git-fixes). - drm/mediatek: Fix device/node reference count leaks in mtk_drm_get_all_drm_priv (git-fixes). - drm/mediatek: fix potential OF node use-after-free (git-fixes). - drm/msm/dp: account for widebus and yuv420 during mode validation (git-fixes). - drm/msm/dpu: Fill in min_prefill_lines for SC8180X (git-fixes). - drm/msm/dpu: fix incorrect type for ret (git-fixes). - drm/msm/kms: move snapshot init earlier in KMS init (git-fixes). - drm/msm: Add error handling for krealloc in metadata setup (stable-fixes). - drm/msm: Defer fd_install in SUBMIT ioctl (git-fixes). - drm/msm: update the high bitfield of certain DSI registers (git-fixes). - drm/msm: use trylock for debugfs (stable-fixes). - drm/nouveau/disp: Always accept linear modifier (git-fixes). - drm/nouveau/gsp: fix potential leak of memory used during acpi init (git-fixes). - drm/nouveau/nvif: Fix potential memory leak in nvif_vmm_ctor() (git-fixes). - drm/nouveau: fix bad ret code in nouveau_bo_move_prep (git-fixes). - drm/nouveau: fix error path in nvkm_gsp_fwsec_v2 (git-fixes). - drm/nouveau: fix typos in comments (git-fixes). - drm/nouveau: remove unused increment in gm200_flcn_pio_imem_wr (git-fixes). - drm/nouveau: remove unused memory target test (git-fixes). - drm/panel: novatek-nt35560: Fix invalid return value (git-fixes). - drm/panfrost: Fix panfrost device variable name in devfreq (git-fixes). - drm/panthor: Add missing explicit padding in drm_panthor_gpu_info (git-fixes). - drm/panthor: Defer scheduler entitiy destruction to queue release (git-fixes). - drm/panthor: Fix memory leak in panthor_ioctl_group_create() (git-fixes). - drm/panthor: validate group queue count (git-fixes). - drm/radeon/r600_cs: clean up of dead code in r600_cs (git-fixes). - drm/rcar-du: dsi: Fix 1/2/3 lane support (git-fixes). - drm/rockchip: cleanup fb when drm_gem_fb_afbc_init failed (git-fixes). - drm/sched: Remove optimization that causes hang when killing dependent jobs (git-fixes). - drm/simpledrm: Do not upcast in release helpers (git-fixes). - drm/tests: Fix endian warning (git-fixes). - drm/ttm: Respect the shrinker core free target (stable-fixes). - drm/ttm: Should to return the evict error (stable-fixes). - drm/vmwgfx: Fix Host-Backed userspace on Guest-Backed kernel (git-fixes). - drm/vmwgfx: Fix Use-after-free in validation (git-fixes). - drm/vmwgfx: Fix a null-ptr access in the cursor snooper (git-fixes). - drm/vmwgfx: Fix copy-paste typo in validation (git-fixes). - drm/xe/bmg: Add new PCI IDs (stable-fixes). - drm/xe/bmg: Add one additional PCI ID (stable-fixes). - drm/xe/bmg: Update Wa_22019338487 (git-fixes). - drm/xe/gsc: do not flush the GSC worker from the reset path (git-fixes). - drm/xe/hw_engine_group: Fix double write lock release in error path (git-fixes). - drm/xe/mocs: Initialize MOCS index early (stable-fixes). - drm/xe/pf: Move VFs reprovisioning to worker (stable-fixes). - drm/xe/pf: Prepare to stop SR-IOV support prior GT reset (git-fixes). - drm/xe/pf: Sanitize VF scratch registers on FLR (stable-fixes). - drm/xe/tile: Release kobject for the failure path (git-fixes). - drm/xe/uapi: Correct sync type definition in comments (git-fixes). - drm/xe/uapi: loosen used tracking restriction (git-fixes). - drm/xe/vf: Disable CSC support on VF (git-fixes). - drm/xe/vm: Clear the scratch_pt pointer on error (git-fixes). - drm/xe/xe_query: Use separate iterator while filling GT list (stable-fixes). - drm/xe/xe_sync: avoid race during ufence signaling (git-fixes). - drm/xe: Allow dropping kunit dependency as built-in (git-fixes). - drm/xe: Attempt to bring bos back to VRAM after eviction (git-fixes). - drm/xe: Carve out wopcm portion from the stolen memory (git-fixes). - drm/xe: Do not trigger rebind on initial dma-buf validation (git-fixes). - drm/xe: Ensure fixed_slice_mode gets set after ccs_mode change (git-fixes). - drm/xe: Fix a NULL vs IS_ERR() in xe_vm_add_compute_exec_queue() (git-fixes). - drm/xe: Fix build without debugfs (git-fixes). - drm/xe: Make dma-fences compliant with the safe access rules (stable-fixes). - drm/xe: Move page fault init after topology init (git-fixes). - drm: bridge: anx7625: Fix NULL pointer dereference with early IRQ (git-fixes). - drm: bridge: cdns-mhdp8546: Fix missing mutex unlock on error path (git-fixes). - drm: renesas: rz-du: mipi_dsi: Add min check for VCLK range (stable-fixes). - dt-bindings: dpll: Add DPLL device and pin (jsc#PED-13331). - dt-bindings: dpll: Add support for Microchip Azurite chip family (jsc#PED-13331). - e1000e: disregard NVM checksum on tgp when valid checksum bit is not set (git-fixes). - e1000e: ignore uninitialized checksum word on tgp (git-fixes). - efi: stmm: Fix incorrect buffer allocation method (git-fixes). - erofs: avoid reading more for fragment maps (git-fixes). - erofs: fix atomic context detection when !CONFIG_DEBUG_LOCK_ALLOC (git-fixes). - execmem: enforce allocation size aligment to PAGE_SIZE (git-fixes). - exfat: add cluster chain loop check for dir (git-fixes). - exfat: fdatasync flag should be same like generic_write_sync() (git-fixes). - ext4: fix checks for orphan inodes (bsc#1250119). - ext4: remove writable userspace mappings before truncating page cache (bsc#1247223). - fbcon: Fix OOB access in font allocation (git-fixes). - fbcon: Fix outdated registered_fb reference in comment (git-fixes). - fbcon: fix integer overflow in fbcon_do_set_font (git-fixes). - fbdev: Fix logic error in "offb" name match (git-fixes). - fbdev: Fix vmalloc out-of-bounds write in fast_imageblit (stable-fixes). - fbdev: fix potential buffer overflow in do_register_framebuffer() (stable-fixes). - fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref (git-fixes). - fbdev: simplefb: Fix use after free in simplefb_detach_genpds() (git-fixes). - fgraph: Fix set_graph_notrace with setting TRACE_GRAPH_NOTRACE_BIT (git-fixes). - firewire: core: fix overlooked update of subsystem ABI version (git-fixes). - firewire: ohci: correct code comments about bus_reset tasklet (git-fixes). - firmware: arm_ffa: Change initcall level of ffa_init() to rootfs_initcall (stable-fixes). - firmware: arm_scmi: Convert to SYSTEM_SLEEP_PM_OPS (git-fixes). - firmware: arm_scmi: Fix up turbo frequencies selection (git-fixes). - firmware: arm_scmi: Mark VirtIO ready before registering scmi_virtio_driver (git-fixes). - firmware: arm_scmi: power_control: Ensure SCMI_SYSPOWER_IDLE is set early during resume (stable-fixes). - firmware: firmware: meson-sm: fix compile-test default (git-fixes). - firmware: meson_sm: fix device leak at probe (git-fixes). - firmware: tegra: Fix IVC dependency problems (stable-fixes). - flexfiles/pNFS: fix NULL checks on result of ff_layout_choose_ds_for_read (git-fixes). - fs/nfs/io: make nfs_start_io_*() killable (git-fixes). - fs/proc/task_mmu: check p->vec_buf for NULL (git-fixes). - fs/proc: Use inode_get_dev() for device numbers in procmap_query References: bsc#1246450 - ftrace: Fix function profiler's filtering functionality (git-fixes). - ftrace: fix incorrect hash size in register_ftrace_direct() (git-fixes). - gfs2: Call gfs2_queue_verify_delete from gfs2_evict_inode (bsc#1247220). - gfs2: Clean up delete work processing (bsc#1247220). - gfs2: Faster gfs2_upgrade_iopen_glock wakeups (bsc#1247220). - gfs2: Initialize gl_no_formal_ino earlier (bsc#1247220). - gfs2: Minor delete_work_func cleanup (bsc#1247220). - gfs2: Only defer deletes when we have an iopen glock (bsc#1247220). - gfs2: Prevent inode creation race (2) (bsc#1247220). - gfs2: Prevent inode creation race (bsc#1247220). - gfs2: Randomize GLF_VERIFY_DELETE work delay (bsc#1247220). - gfs2: Rename GIF_{DEFERRED -> DEFER}_DELETE (bsc#1247220). - gfs2: Rename dinode_demise to evict_behavior (bsc#1247220). - gfs2: Replace GIF_DEFER_DELETE with GLF_DEFER_DELETE (bsc#1247220). - gfs2: Return enum evict_behavior from gfs2_upgrade_iopen_glock (bsc#1247220). - gfs2: Simplify DLM_LKF_QUECVT use (bsc#1247220). - gfs2: Update to the evict / remote delete documentation (bsc#1247220). - gfs2: Use mod_delayed_work in gfs2_queue_try_to_evict (bsc#1247220). - gfs2: gfs2_evict_inode clarification (bsc#1247220). - gfs2: minor evict fix (bsc#1247220). - gfs2: skip if we cannot defer delete (bsc#1247220). - gpio: mlxbf2: use platform_get_irq_optional() (git-fixes). - gpio: mlxbf3: use platform_get_irq_optional() (git-fixes). - gpio: tps65912: check the return value of regmap_update_bits() (stable-fixes). - gpio: virtio: Fix config space reading (git-fixes). - gpio: wcd934x: check the return value of regmap_update_bits() (stable-fixes). - gpio: wcd934x: mark the GPIO controller as sleeping (git-fixes). - gpiolib: Extend software-node support to support secondary software-nodes (git-fixes). - gve: Fix stuck TX queue for DQ queue format (git-fixes). - gve: prevent ethtool ops after shutdown (git-fixes). - habanalabs: fix UAF in export_dmabuf() (git-fixes). - hid: fix I2C read buffer overflow in raw_event() for mcp2221 (stable-fixes). - hv_netvsc: Fix panic during namespace deletion with VF (bsc#1248111). - hv_netvsc: Link queues to NAPIs (git-fixes). - hwmon: (emc2305) Set initial PWM minimum value during probe based on thermal state (stable-fixes). - hwmon: (gsc-hwmon) fix fan pwm setpoint show functions (git-fixes). - hwmon: (mlxreg-fan) Separate methods of fan setting coming from different subsystems (git-fixes). - hwmon: mlxreg-fan: Prevent fans from getting stuck at 0 RPM (git-fixes). - hwrng: ks-sa - fix division by zero in ks_sa_rng_init (git-fixes). - hwrng: mtk - handle devm_pm_runtime_enable errors (git-fixes). - hwrng: nomadik - add ARM_AMBA dependency (git-fixes). - i2c: Force DLL0945 touchpad i2c freq to 100khz (stable-fixes). - i2c: designware: Add disabling clocks when probe fails (git-fixes). - i2c: designware: Add quirk for Intel Xe (stable-fixes). - i2c: designware: Fix clock issue when PM is disabled (git-fixes). - i2c: designware: Use temporary variable for struct device (stable-fixes). - i2c: i801: Hide Intel Birch Stream SoC TCO WDT (git-fixes). - i2c: mediatek: fix potential incorrect use of I2C_MASTER_WRRD (git-fixes). - i2c: muxes: mule: Fix an error handling path in mule_i2c_mux_probe() (git-fixes). - i2c: omap: Add support for setting mux (stable-fixes). - i2c: omap: Fix an error handling path in omap_i2c_probe() (git-fixes). - i2c: omap: Handle omap_i2c_init() errors in omap_i2c_probe() (git-fixes). - i2c: omap: fix deprecated of_property_read_bool() use (git-fixes). - i2c: qup: jump out of the loop in case of timeout (git-fixes). - i2c: riic: Allow setting frequencies lower than 50KHz (git-fixes). - i2c: tegra: Fix reset error handling with ACPI (git-fixes). - i2c: tegra: Use internal reset when reset property is not available (bsc#1249143) - i2c: virtio: Avoid hang by using interruptible completion wait (git-fixes). - i3c: Fix default I2C adapter timeout value (git-fixes). - i3c: add missing include to internal header (stable-fixes). - i3c: do not fail if GETHDRCAP is unsupported (stable-fixes). - i3c: fix module_i3c_i2c_driver() with I3C=n (git-fixes). - i3c: master: Initialize ret in i3c_i2c_notifier_call() (stable-fixes). - i3c: master: svc: Recycle unused IBI slot (git-fixes). - i3c: master: svc: Use manual response for IBI events (git-fixes). - i40e: When removing VF MAC filters, only check PF-set MAC (git-fixes). - i40e: report VF tx_dropped with tx_errors instead of tx_discards (git-fixes). - ibmvnic: Fix hardcoded NUM_RX_STATS/NUM_TX_STATS with dynamic sizeof (git-fixes). - ice, irdma: fix an off by one in error handling code (bsc#1247712). - ice, irdma: move interrupts code to irdma (bsc#1247712). - ice/ptp: fix crosstimestamp reporting (git-fixes). - ice: Fix signedness bug in ice_init_interrupt_scheme() (bsc#1247712). - ice: Replace ice specific DSCP mapping num with a kernel define (jsc#PED-13728 jsc#PED-13762). - ice: check correct pointer in fwlog debugfs (git-fixes). - ice: count combined queues using Rx/Tx count (bsc#1247712). - ice: devlink PF MSI-X max and min parameter (bsc#1247712). - ice: do not leave device non-functional if Tx scheduler config fails (git-fixes). - ice: enable_rdma devlink param (bsc#1247712). - ice: fix NULL pointer dereference in ice_unplug_aux_dev() on reset (jsc#PED-13728). - ice: fix incorrect counter for buffer allocation failures (git-fixes). - ice: get rid of num_lan_msix field (bsc#1247712). - ice: init flow director before RDMA (bsc#1247712). - ice: remove splitting MSI-X between features (bsc#1247712). - ice: simplify VF MSI-X managing (bsc#1247712). - ice: treat dyn_allowed only as suggestion (bsc#1247712). - ice: use fixed adapter index for E825C embedded devices (git-fixes). - idpf: add PTP clock configuration (jsc#PED-13728 jsc#PED-13762). - idpf: add Tx timestamp capabilities negotiation (jsc#PED-13728 jsc#PED-13762). - idpf: add Tx timestamp flows (jsc#PED-13728 jsc#PED-13762). - idpf: add cross timestamping (jsc#PED-13728). - idpf: add flow steering support (jsc#PED-13728). - idpf: add initial PTP support (jsc#PED-13728 jsc#PED-13762). - idpf: add mailbox access to read PTP clock time (jsc#PED-13728 jsc#PED-13762). - idpf: add support for Rx timestamping (jsc#PED-13728 jsc#PED-13762). - idpf: add support for Tx refillqs in flow scheduling mode (jsc#PED-13728). - idpf: assign extracted ptype to struct libeth_rqe_info field (jsc#PED-13728 jsc#PED-13762). - idpf: change the method for mailbox workqueue allocation (jsc#PED-13728 jsc#PED-13762). - idpf: fix UAF in RDMA core aux dev deinitialization (jsc#PED-13728). - idpf: implement IDC vport aux driver MTU change handler (jsc#PED-13728 jsc#PED-13762). - idpf: implement RDMA vport auxiliary dev create, init, and destroy (jsc#PED-13728 jsc#PED-13762). - idpf: implement core RDMA auxiliary dev create, init, and destroy (jsc#PED-13728 jsc#PED-13762). - idpf: implement get LAN MMIO memory regions (jsc#PED-13728 jsc#PED-13762). - idpf: implement remaining IDC RDMA core callbacks and handlers (jsc#PED-13728 jsc#PED-13762). - idpf: improve when to set RE bit logic (jsc#PED-13728). - idpf: move virtchnl structures to the header file (jsc#PED-13728 jsc#PED-13762). - idpf: negotiate PTP capabilities and get PTP clock (jsc#PED-13728 jsc#PED-13762). - idpf: preserve coalescing settings across resets (jsc#PED-13728). - idpf: remove obsolete stashing code (jsc#PED-13728). - idpf: remove unreachable code from setting mailbox (jsc#PED-13728 jsc#PED-13762). - idpf: replace flow scheduling buffer ring with buffer pool (jsc#PED-13728). - idpf: set mac type when adding and removing MAC filters (jsc#PED-13728). - idpf: simplify and fix splitq Tx packet rollback error path (jsc#PED-13728). - idpf: stop Tx if there are insufficient buffer resources (jsc#PED-13728). - idpf: use reserved RDMA vectors from control plane (jsc#PED-13728 jsc#PED-13762). - igb: xsk: solve negative overflow of nb_pkts in zerocopy mode (git-fixes). - igc: disable L1.2 PCI-E link substate to avoid performance issue (git-fixes). - igc: fix disabling L1.2 PCI-E link substate on I226 on init (git-fixes). - iidc/ice/irdma: Break iidc.h into two headers (jsc#PED-13728 jsc#PED-13762). - iidc/ice/irdma: Rename IDC header file (jsc#PED-13728 jsc#PED-13762). - iidc/ice/irdma: Rename to iidc_* convention (jsc#PED-13728 jsc#PED-13762). - iidc/ice/irdma: Update IDC to support multiple consumers (jsc#PED-13728 jsc#PED-13762). - iio/adc/pac1934: fix channel disable configuration (git-fixes). - iio: accel: adxl355: Make timestamp 64-bit aligned using aligned_s64 (git-fixes). - iio: accel: fxls8962af: Fix temperature calculation (git-fixes). - iio: adc: ad7173: fix setting ODR in probe (git-fixes). - iio: adc: ad7266: Fix potential timestamp alignment issue (git-fixes). - iio: adc: ad7768-1: Ensure SYNC_IN pulse minimum timing requirement (stable-fixes). - iio: adc: ad7768-1: Fix insufficient alignment of timestamp (git-fixes). - iio: adc: ad_sigma_delta: change to buffer predisable (git-fixes). - iio: adc: ad_sigma_delta: do not overallocate scan buffer (stable-fixes). - iio: adc: dln2: Use aligned_s64 for timestamp (git-fixes). - iio: adc: max1363: Fix MAX1363_4X_CHANS/MAX1363_8X_CHANS[] (stable-fixes). - iio: adc: max1363: Reorder mode_list[] entries (stable-fixes). - iio: chemical: pms7003: use aligned_s64 for timestamp (git-fixes). - iio: chemical: sps30: use aligned_s64 for timestamp (git-fixes). - iio: common: st_sensors: Fix use of uninitialize device structs (stable-fixes). - iio: consumers: Fix handling of negative channel scale in iio_convert_raw_to_processed() (git-fixes). - iio: consumers: Fix offset handling in iio_convert_raw_to_processed() (git-fixes). - iio: dac: ad5360: use int type to store negative error codes (git-fixes). - iio: dac: ad5421: use int type to store negative error codes (git-fixes). - iio: frequency: adf4350: Fix ADF4350_REG3_12BIT_CLKDIV_MODE (git-fixes). - iio: frequency: adf4350: Fix prescaler usage (git-fixes). - iio: hid-sensor-prox: Fix incorrect OFFSET calculation (git-fixes). - iio: hid-sensor-prox: Restore lost scale assignments (git-fixes). - iio: imu: bno055: fix OOB access of hw_xlate array (git-fixes). - iio: imu: inv_icm42600: Convert to uXX and sXX integer types (stable-fixes). - iio: imu: inv_icm42600: Drop redundant pm_runtime reinitialization in resume (git-fixes). - iio: imu: inv_icm42600: change invalid data error to -EBUSY (git-fixes). - iio: imu: inv_icm42600: fix spi burst write not supported (git-fixes). - iio: imu: inv_icm42600: switch timestamp type from int64_t __aligned(8) to aligned_s64 (stable-fixes). - iio: imu: inv_icm42600: use = { } instead of memset() (stable-fixes). - iio: light: Use aligned_s64 instead of open coding alignment (stable-fixes). - iio: light: as73211: Ensure buffer holes are zeroed (git-fixes). - iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() (git-fixes). - iio: pressure: mprls0025pa: use aligned_s64 for timestamp (git-fixes). - iio: proximity: isl29501: fix buffered read on big-endian systems (git-fixes). - iio: temperature: maxim_thermocouple: use DMA-safe buffer for spi_read() (git-fixes). - iio: xilinx-ams: Fix AMS_ALARM_THR_DIRECT_MASK (git-fixes). - iio: xilinx-ams: Unmask interrupts after updating alarms (git-fixes). - integrity/platform_certs: Allow loading of keys in the static key management mode (jsc#PED-13345 jsc#PED-13343). - intel_idle: Provide the default enter_dead() handler (jsc#PED-13815). - intel_idle: Rescan "dead" SMT siblings during initialization (jsc#PED-13815). - intel_idle: Use subsys_initcall_sync() for initialization (jsc#PED-13815). - interconnect: qcom: sc8180x: specify num_nodes (git-fixes). - interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg (git-fixes). - io_uring/rw: do not mask in f_iocb_flags (jsc#PED-12882 bsc#1237542). Drop blacklisting. - io_uring: expose read/write attribute capability (jsc#PED-12882 bsc#1237542). - io_uring: fix potential page leak in io_sqe_buffer_register() (git-fixes). - iommu/amd: Enable PASID and ATS capabilities in the correct order (git-fixes). - iommu/amd: Fix alias device DTE setting (git-fixes). - iommu/amd: Fix geometry.aperture_end for V2 tables (git-fixes). - iommu/arm-smmu-qcom: Add SM6115 MDSS compatible (git-fixes). - iommu/arm-smmu-v3: Fix smmu_domain->nr_ats_masters decrement (git-fixes). - iommu/tegra241-cmdqv: Read SMMU IDR1.CMDQS instead of hardcoding (git-fixes). - iommu/vt-d: Disallow dirty tracking if incoherent page walk (git-fixes). - iommu/vt-d: Fix __domain_mapping()'s usage of switch_to_super_page() (git-fixes). - iommu/vt-d: Fix missing PASID in dev TLB flush with cache_tag_flush_all (git-fixes). - iommu/vt-d: Fix possible circular locking dependency (git-fixes). - iommu/vt-d: Fix system hang on reboot -f (git-fixes). - iommu/vt-d: PRS isn't usable if PDS isn't supported (git-fixes). - iommu: Handle race with default domain setup (git-fixes). - iosys-map: Fix undefined behavior in iosys_map_clear() (git-fixes). - ipmi: Fix strcpy source and destination the same (stable-fixes). - ipmi: Use dev_warn_ratelimited() for incorrect message warnings (stable-fixes). - ipv6: annotate data-races around rt->fib6_nsiblings (git-fixes). - ipv6: fix possible infinite loop in fib6_info_uses_dev() (git-fixes). - ipv6: prevent infinite loop in rt6_nlmsg_size() (git-fixes). - ipv6: reject malicious packets in ipv6_gso_segment() (git-fixes). - ipvs: Fix clamp() of ip_vs_conn_tab on small memory systems (git-fixes). - irdma: free iwdev->rf after removing MSI-X (bsc#1247712). - isolcpus: add missing hunk back (bsc#1236897 bsc#1249206). - iwlwifi: Add missing check for alloc_ordered_workqueue (git-fixes). - ixgbe: fix ixgbe_orom_civd_info struct layout (bsc#1245410). - ixgbe: prevent from unwanted interface name changes (git-fixes). - ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc (git-fixes). - kABI fix after Add TDX support for vSphere (jsc#PED-13302). - kABI fix after KVM: SVM: Fix SNP AP destroy race with VMRUN (git-fixes). - kABI fix after KVM: VMX: Apply MMIO Stale Data mitigation if KVM maps MMIO into the guest (git-fixes). - kABI fix after KVM: x86: Convert vcpu_run()'s immediate exit param into a generic bitmap (git-fixes). - kABI fix after vhost: Reintroduce kthread API and add mode selection (git-fixes). - kABI workaround for "drm/dp: Add an EDID quirk for the DPCD register access probe" (bsc#1248121). - kABI workaround for amd_sfh (git-fixes). - kABI workaround for drm_gem.h (git-fixes). - kABI workaround for struct mtk_base_afe changes (git-fixes). - kABI: Fix the module::name type in audit_context (git-fixes). - kABI: PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports (git-fixes). - kABI: arm64: ftrace: Restore struct mod_arch_specific layout (git-fixes). - kABI: fix for struct devlink_port_attrs: move new member to the end (git-fixes). - kABI: netfilter: supress warnings for nft_set_ops (git-fixes). - kABI: x86/sev: Use TSC_FACTOR for Secure TSC frequency calculation (git-fixes). - kabi/severities: ignore kABI compatibility in iio inv_icm42600 drivers They are used only locally - kabi/severities: ignore two unused/dropped symbols from MEI - kabi: Hide adding of u64 to devlink_param_type (jsc#PED-12745). - kabi: Restore layout of parallel_data (bsc1248343). - kabi: restore layout of struct cgroup_rstat_cpu (bsc#1247963). - kasan: use vmalloc_dump_obj() for vmalloc error reports (git-fixes). - kbuild/modpost: Continue processing all unresolved symbols when KLP_SYM_RELA is found (bsc#1218644, bsc#1250655). - kbuild: rust: add rustc-min-version support function (git-fixes) - kernel-binary: Another installation ordering fix (bsc#1241353). - kernel-subpackage-build: Decompress ghost file when compressed version exists (bsc#1249346) - kernel: globalize lookup_or_create_module_kobject() (stable-fixes). - kernel: param: rename locate_module_kobject (stable-fixes). - leds: flash: leds-qcom-flash: Fix registry access after re-bind (git-fixes). - leds: flash: leds-qcom-flash: Update torch current clamp setting (git-fixes). - leds: leds-lp50xx: Handle reg to get correct multi_index (stable-fixes). - leds: leds-lp55xx: Use correct address for memory programming (git-fixes). - lib/group_cpus: fix NULL pointer dereference from group_cpus_evenly() (bsc#1236897). - libbpf: Add identical pointer detection to btf_dedup_is_equiv() (git-fixes). - libeth: move idpf_rx_csum_decoded and idpf_rx_extracted (jsc#PED-13728 jsc#PED-13762). - livepatch: Add stack_order sysfs attribute (poo#187320). - loop: use kiocb helpers to fix lockdep warning (git-fixes). - lpfc: do not use file->f_path.dentry for comparisons (bsc#1250519). - mISDN: Fix memory leak in dsp_hwec_enable() (git-fixes). - mISDN: hfcpci: Fix warning when deleting uninitialized timer (git-fixes). - mailbox: Not protect module_put with spin_lock_irqsave (stable-fixes). - mailbox: mtk-cmdq: Remove pm_runtime APIs from cmdq_mbox_send_data() (git-fixes). - mailbox: pcc: Always clear the platform ack interrupt first (stable-fixes). - mailbox: pcc: Fix the possible race in updation of chan_in_use flag (stable-fixes). - mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() (stable-fixes). - mailbox: zynqmp-ipi: Fix SGI cleanup on unbind (git-fixes). - mailbox: zynqmp-ipi: Fix out-of-bounds access in mailbox cleanup loop (git-fixes). - mailbox: zynqmp-ipi: Remove dev.parent check in zynqmp_ipi_free_mboxes (git-fixes). - mailbox: zynqmp-ipi: Remove redundant mbox_controller_unregister() call (git-fixes). - maple_tree: fix MAPLE_PARENT_RANGE32 and parent pointer docs (git-fixes). - maple_tree: fix status setup on restore to active (git-fixes). - maple_tree: fix testing for 32 bit builds (git-fixes). - mctp: no longer rely on net->dev_index_head (git-fixes). - md/raid1,raid10: strip REQ_NOWAIT from member bios (git-fixes). - md: allow removing faulty rdev during resync (git-fixes). - md: dm-zoned-target: Initialize return variable r to avoid uninitialized use (git-fixes). - md: make rdev_addable usable for rcu mode (git-fixes). - media: b2c2: Fix use-after-free causing by irq_check_work in flexcop_pci_remove (git-fixes). - media: cec: extron-da-hd-4k-plus: drop external-module make commands (git-fixes). - media: cx18: Add missing check after DMA map (git-fixes). - media: dvb-frontends: dib7090p: fix null-ptr-deref in dib7090p_rw_on_apb() (stable-fixes). - media: dvb-frontends: w7090p: fix null-ptr-deref in w7090p_tuner_write_serpar and w7090p_tuner_read_serpar (stable-fixes). - media: gspca: Add bounds checking to firmware parser (git-fixes). - media: hi556: Fix reset GPIO timings (stable-fixes). - media: hi556: correct the test pattern configuration (git-fixes). - media: i2c: mt9v111: fix incorrect type for ret (git-fixes). - media: i2c: tc358743: Fix use-after-free bugs caused by orphan timer in probe (git-fixes). - media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init() (git-fixes). - media: ipu-bridge: Add _HID for OV5670 (stable-fixes). - media: ipu6: isys: Use correct pads for xlate_streams() (git-fixes). - media: ivsc: Fix crash at shutdown due to missing mei_cldev_disable() calls (git-fixes). - media: lirc: Fix error handling in lirc_register() (git-fixes). - media: mc: Fix MUST_CONNECT handling for pads with no links (git-fixes). - media: mt9m114: Fix deadlock in get_frame_interval/set_frame_interval (git-fixes). - media: ov2659: Fix memory leaks in ov2659_probe() (git-fixes). - media: pci: ivtv: Add missing check after DMA map (git-fixes). - media: pci: mg4b: fix uninitialized iio scan data (git-fixes). - media: pisp_be: Fix pm_runtime underrun in probe (git-fixes). - media: qcom: camss: cleanup media device allocated resource on error path (git-fixes). - media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() (git-fixes). - media: rc: fix races with imon_disconnect() (git-fixes). - media: rj54n1cb0c: Fix memleak in rj54n1_probe() (git-fixes). - media: s5p-mfc: remove an unused/uninitialized variable (git-fixes). - media: st-delta: avoid excessive stack usage (git-fixes). - media: tc358743: Check I2C succeeded during probe (stable-fixes). - media: tc358743: Increase FIFO trigger level to 374 (stable-fixes). - media: tc358743: Return an appropriate colorspace from tc358743_set_fmt (stable-fixes). - media: ti: j721e-csi2rx: Fix source subdev link creation (git-fixes). - media: ti: j721e-csi2rx: Use devm_of_platform_populate (git-fixes). - media: ti: j721e-csi2rx: fix list_del corruption (git-fixes). - media: tuner: xc5000: Fix use-after-free in xc5000_release (git-fixes). - media: usb: hdpvr: disable zero-length read messages (stable-fixes). - media: usbtv: Lock resolution while streaming (git-fixes). - media: uvcvideo: Add quirk for HP Webcam HD 2300 (stable-fixes). - media: uvcvideo: Do not mark valid metadata as invalid (git-fixes). - media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format() (git-fixes). - media: uvcvideo: Fix bandwidth issue for Alcor camera (stable-fixes). - media: uvcvideo: Mark invalid entities with id UVC_INVALID_ENTITY_ID (git-fixes). - media: uvcvideo: Rollback non processed entities on error (git-fixes). - media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control (stable-fixes). - media: v4l2-ctrls: Do not reset handler's error in v4l2_ctrl_handler_free() (git-fixes). - media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check (git-fixes). - media: v4l2-subdev: Fix alloc failure check in v4l2_subdev_call_state_try() (git-fixes). - media: v4l2: Add support for NV12M tiled variants to v4l2_format_info() (git-fixes). - media: venus: Add a check for packet size after reading from shared memory (git-fixes). - media: venus: Fix MSM8998 frequency table (git-fixes). - media: venus: Fix OOB read due to missing payload bound check (git-fixes). - media: venus: firmware: Use correct reset sequence for IRIS2 (git-fixes). - media: venus: hfi: explicitly release IRQ during teardown (git-fixes). - media: venus: protect against spurious interrupts during probe (git-fixes). - media: venus: vdec: Clamp param smaller than 1fps and bigger than 240 (git-fixes). - media: venus: venc: Clamp param smaller than 1fps and bigger than 240 (git-fixes). - media: verisilicon: Fix AV1 decoder clock frequency (git-fixes). - media: vivid: fix wrong pixel_array control size (git-fixes). - media: zoran: Remove zoran_fh structure (git-fixes). - mei: bus: Check for still connected devices in mei_cl_bus_dev_release() (stable-fixes). - mei: vsc: Destroy mutex after freeing the IRQ (git-fixes). - mei: vsc: Do not re-init VSC from mei_vsc_hw_reset() on stop (git-fixes). - mei: vsc: Drop unused vsc_tp_request_irq() and vsc_tp_free_irq() (stable-fixes). - mei: vsc: Event notifier fixes (git-fixes). - mei: vsc: Fix "BUG: Invalid wait context" lockdep error (git-fixes). - mei: vsc: Run event callback from a workqueue (git-fixes). - mei: vsc: Unset the event callback on remove and probe errors (git-fixes). - memory: mtk-smi: Add ostd setting for mt8186 (git-fixes). - memory: samsung: exynos-srom: Fix of_iomap leak in exynos_srom_probe (git-fixes). - memstick: Fix deadlock by moving removing flag earlier (git-fixes). - mfd: axp20x: Set explicit ID for AXP313 regulator (stable-fixes). - mfd: cros_ec: Separate charge-control probing from USB-PD (git-fixes). - mfd: exynos-lpass: Fix another error handling path in exynos_lpass_probe() (git-fixes). - mfd: rz-mtu3: Fix MTU5 NFCR register offset (git-fixes). - mfd: vexpress-sysreg: Check the return value of devm_gpiochip_add_data() (git-fixes). - microchip: lan865x: Fix LAN8651 autoloading (git-fixes). - microchip: lan865x: Fix module autoloading (git-fixes). - microchip: lan865x: fix missing Timer Increment config for Rev.B0/B1 (git-fixes). - microchip: lan865x: fix missing netif_start_queue() call on device open (git-fixes). - misc: fastrpc: Fix fastrpc_map_lookup operation (git-fixes). - misc: fastrpc: Save actual DMA size in fastrpc_map structure (git-fixes). - misc: fastrpc: Skip reference for DMA handles (git-fixes). - misc: fastrpc: fix possible map leak in fastrpc_put_args (git-fixes). - misc: genwqe: Fix incorrect cmd field being reported in error (git-fixes). - misc: pci_endpoint_test: Fix 'irq_type' to convey the correct type (git-fixes). - misc: pci_endpoint_test: Give disabled BARs a distinct error code (stable-fixes). - misc: rtsx: usb: Ensure mmc child device is active when card is present (git-fixes). - mm/damon/core: avoid destroyed target reference from DAMOS quota (git-fixes). - mm/damon/core: prevent unnecessary overflow in damos_set_effective_quota() (git-fixes). - mm/damon/core: set quota->charged_from to jiffies at first charge window (git-fixes). - mm/damon/lru_sort: avoid divide-by-zero in damon_lru_sort_apply_parameters() (git-fixes). - mm/damon/ops-common: ignore migration request to invalid nodes (git-fixes). - mm/damon/reclaim: avoid divide-by-zero in damon_reclaim_apply_parameters() (git-fixes). - mm/damon/sysfs: fix use-after-free in state_show() (git-fixes). - mm/memory-failure: fix redundant updates for already poisoned pages (bsc#1250087). - mm/ptdump: take the memory hotplug lock inside ptdump_walk_pgd() (git-fixes) - mm/userfaultfd: fix kmap_local LIFO ordering for CONFIG_HIGHPTE (git-fixes). - mm: close theoretical race where stale TLB entries could linger (git-fixes). - mm: fault in complete folios instead of individual pages for tmpfs (git-fixes). - mm: fix the inaccurate memory statistics issue for users (bsc#1244723). - mm: introduce and use {pgd,p4d}_populate_kernel() (git-fixes). - mm: khugepaged: fix call hpage_collapse_scan_file() for anonymous vma (git-fixes). - mm: memory-tiering: fix PGPROMOTE_CANDIDATE counting (bsc#1245630). - mm: memory-tiering: fix PGPROMOTE_CANDIDATE counting - kabi (bsc#1245630). - mm: move page table sync declarations to linux/pgtable.h (git-fixes). - mm: swap: fix potential buffer overflow in setup_clusters() (git-fixes). - mmc: core: Fix variable shadowing in mmc_route_rpmb_frames() (git-fixes). - mmc: mvsdio: Fix dma_unmap_sg() nents value (git-fixes). - mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode() (stable-fixes). - mmc: sdhci-cadence: add Mobileye eyeQ support (stable-fixes). - mmc: sdhci-msm: Ensure SD card power isn't ON when card removed (stable-fixes). - mmc: sdhci-of-arasan: Ensure CD logic stabilization before power-up (stable-fixes). - mmc: sdhci-of-arasan: Support for emmc hardware reset (stable-fixes). - mmc: sdhci-pci-gli: Add a new function to simplify the code (git-fixes). - mmc: sdhci-pci-gli: GL9763e: Mask the replay timer timeout of AER (git-fixes). - mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency (git-fixes). - mmc: sdhci_am654: Disable HS400 for AM62P SR1.0 and SR1.1 (git-fixes). - module: Fix memory deallocation on error path in move_module() (git-fixes). - module: Prevent silent truncation of module name in delete_module(2) (git-fixes). - module: Remove unnecessary +1 from last_unloaded_module::name size (git-fixes). - module: Restore the moduleparam prefix length check (git-fixes). - most: core: Drop device reference after usage in get_channel() (git-fixes). - mptcp: fix spurious wake-up on under memory pressure (git-fixes). - mtd: fix possible integer overflow in erase_xfer() (git-fixes). - mtd: nand: raw: atmel: Respect tAR, tCLR in read setup timing (git-fixes). - mtd: rawnand: atmel: Fix dma_mapping_error() address (git-fixes). - mtd: rawnand: atmel: Fix error handling path in atmel_nand_controller_add_nands (git-fixes). - mtd: rawnand: atmel: set pmecc data setup time (git-fixes). - mtd: rawnand: fsmc: Add missing check after DMA map (git-fixes). - mtd: rawnand: omap2: fix device leak on probe failure (git-fixes). - mtd: rawnand: qcom: Fix last codeword read in qcom_param_page_type_exec() (git-fixes). - mtd: rawnand: renesas: Add missing check after DMA map (git-fixes). - mtd: rawnand: rockchip: Add missing check after DMA map (git-fixes). - mtd: rawnand: stm32_fmc2: avoid overlapping mappings on ECC buffer (git-fixes). - mtd: rawnand: stm32_fmc2: fix ECC overwrite (git-fixes). - mtd: spi-nor: Fix spi_nor_try_unlock_all() (git-fixes). - mtd: spi-nor: spansion: Fixup params->set_4byte_addr_mode for SEMPER (git-fixes). - mtd: spinand: propagate spinand_wait() errors from spinand_write_page() (git-fixes). - mwl8k: Add missing check after DMA map (git-fixes). - neighbour: Fix null-ptr-deref in neigh_flush_dev() (git-fixes). - net/mlx5: Base ECVF devlink port attrs from 0 (git-fixes). - net/mlx5: CT: Use the correct counter offset (git-fixes). - net/mlx5: Check device memory pointer before usage (git-fixes). - net/mlx5: Correctly set gso_segs when LRO is used (git-fixes). - net/mlx5: Correctly set gso_size when LRO is used (git-fixes). - net/mlx5: E-Switch, Fix peer miss rules to use peer eswitch (git-fixes). - net/mlx5: Fix lockdep assertion on sync reset unload event (git-fixes). - net/mlx5: Fix memory leak in cmd_exec() (git-fixes). - net/mlx5: HWS, Fix memory leak in hws_action_get_shared_stc_nic error flow (git-fixes). - net/mlx5: HWS, Fix pattern destruction in mlx5hws_pat_get_pattern error path (git-fixes). - net/mlx5: HWS, fix bad parameter in CQ creation (git-fixes). - net/mlx5: Nack sync reset when SFs are present (git-fixes). - net/mlx5: Prevent flow steering mode changes in switchdev mode (git-fixes). - net/mlx5: Reload auxiliary drivers on fw_activate (git-fixes). - net/mlx5e: Add new prio for promiscuous mode (git-fixes). - net/mlx5e: Clear Read-Only port buffer size in PBMC before update (git-fixes). - net/mlx5e: Preserve shared buffer capacity during headroom updates (git-fixes). - net/mlx5e: Remove skb secpath if xfrm state is not found (git-fixes). - net/mlx5e: Set local Xoff after FW update (git-fixes). - net/mlx5e: Update and set Xon/Xoff upon MTU set (git-fixes). - net/mlx5e: Update and set Xon/Xoff upon port speed set (git-fixes). - net/packet: fix a race in packet_set_ring() and packet_notifier() (git-fixes). - net/sched: Restrict conditions for adding duplicating netems to qdisc tree (git-fixes). - net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing (git-fixes). - net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in qfq_delete_class (git-fixes). - net/sched: taprio: enforce minimum value for picos_per_byte (git-fixes). - net/smc: check sndbuf_space again after NOSPACE flag is set in smc_poll (git-fixes). - net: 802: LLC+SNAP OID:PID lookup on start of skb data (git-fixes). - net: dsa: restore dsa_software_vlan_untag() ability to operate on VLAN-untagged traffic (git-fixes). - net: dsa: tag_ocelot_8021q: fix broken reception (git-fixes). - net: hsr: fix fill_frame_info() regression vs VLAN packets (git-fixes). - net: hsr: fix hsr_init_sk() vs network/transport headers (git-fixes). - net: hv_netvsc: fix loss of early receive events from host during channel open (git-fixes). - net: ieee8021q: fix insufficient table-size assertion (stable-fixes). - net: llc: reset skb->transport_header (git-fixes). - net: mana: Add handler for hardware servicing events (bsc#1245730). - net: mana: Add speed support in mana_get_link_ksettings (bsc#1245726). - net: mana: Add support for net_shaper_ops (bsc#1245726). - net: mana: Allocate MSI-X vectors dynamically (bsc#1245457). - net: mana: Allow irq_setup() to skip cpus for affinity (bsc#1245457). - net: mana: Expose additional hardware counters for drop and TC via ethtool (bsc#1245729). - net: mana: Fix build errors when CONFIG_NET_SHAPER is disabled (gix-fixes). - net: mana: Fix potential deadlocks in mana napi ops (bsc#1245726). - net: mana: Handle Reset Request from MANA NIC (bsc#1245728). - net: mana: Handle unsupported HWC commands (bsc#1245726). - net: mana: Set tx_packets to post gso processing packet count (bsc#1245731). - net: mana: Use page pool fragments for RX buffers instead of full pages to improve memory efficiency (bsc#1248754). - net: mana: explain irq_setup() algorithm (bsc#1245457). - net: mana: fix spelling for mana_gd_deregiser_irq() (git-fixes). - net: mctp: handle skb cleanup on sock_queue failures (git-fixes). - net: mdio: mdio-bcm-unimac: Correct rate fallback logic (git-fixes). - net: nfc: nci: Add parameter validation for packet data (git-fixes). - net: page_pool: allow enabling recycling late, fix false positive warning (git-fixes). - net: phy: bcm54811: PHY initialization (stable-fixes). - net: phy: fix phy_uses_state_machine() (git-fixes). - net: phy: micrel: Add ksz9131_resume() (stable-fixes). - net: phy: micrel: fix KSZ8081/KSZ8091 cable test (git-fixes). - net: phy: smsc: add proper reset flags for LAN8710A (stable-fixes). - net: rfkill: gpio: Fix crash due to dereferencering uninitialized pointer (git-fixes). - net: rose: convert 'use' field to refcount_t (git-fixes). - net: rose: fix a typo in rose_clear_routes() (git-fixes). - net: rose: include node references in rose_neigh refcount (git-fixes). - net: rose: split remove and free operations in rose_remove_neigh() (stable-fixes). - net: thunderbolt: Enable end-to-end flow control also in transmit (stable-fixes). - net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths() (stable-fixes). - net: usb: Remove disruptive netif_wake_queue in rtl8150_set_multicast (git-fixes). - net: usb: asix: hold PM usage ref to avoid PM/MDIO + RTNL deadlock (git-fixes). - net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization (git-fixes). - net: usb: asix_devices: add phy_mask for ax88772 mdio bus (git-fixes). - net: usb: cdc-ncm: check for filtering capability (git-fixes). - net: usb: qmi_wwan: add Telit Cinterion FN990A w/audio composition (stable-fixes). - net: usb: qmi_wwan: add Telit Cinterion LE910C4-WWX new compositions (git-fixes). - net: usb: qmi_wwan: fix Telit Cinterion FE990A name (stable-fixes). - net: usb: qmi_wwan: fix Telit Cinterion FN990A name (stable-fixes). - net: usbnet: Avoid potential RCU stall on LINK_CHANGE event (git-fixes). - net: usbnet: Fix the wrong netif_carrier_on() call (git-fixes). - netfilter: ctnetlink: fix refcount leak on table dump (git-fixes). - netfilter: ctnetlink: remove refcounting in expectation dumpers (git-fixes). - netfilter: nf_conncount: garbage collection is not skipped when jiffies wrap around (git-fixes). - netfilter: nf_nat: also check reverse tuple to obtain clashing entry (git-fixes). - netfilter: nf_reject: do not leak dst refcount for loopback packets (git-fixes). - netfilter: nf_tables: Drop dead code from fill_*_info routines (git-fixes). - netfilter: nf_tables: adjust lockdep assertions handling (git-fixes). - netfilter: nf_tables: fix set size with rbtree backend (git-fixes). - netfilter: nf_tables: imbalance in flowtable binding (git-fixes). - netfilter: nft_ct: Use __refcount_inc() for per-CPU nft_ct_pcpu_template (git-fixes). - netfilter: nft_flow_offload: update tcp state flags under lock (git-fixes). - netfilter: nft_objref: validate objref and objrefmap expressions (bsc#1250237). - netfilter: nft_set_hash: skip duplicated elements pending gc run (git-fixes). - netfilter: nft_set_hash: unaligned atomic read on struct nft_set_ext (git-fixes). - netfilter: nft_set_pipapo: prefer kvmalloc for scratch maps (git-fixes). - netfilter: nft_tunnel: fix geneve_opt dump (git-fixes). - netfilter: xtables: support arpt_mark and ipv6 optstrip for iptables-nft only builds (git-fixes). - netlink: fix policy dump for int with validation callback (jsc#PED-13331). - netlink: specs: devlink: replace underscores with dashes in names (jsc#PED-13331). - netpoll: prevent hanging NAPI when netcons gets enabled (git-fixes). - nfs/localio: add direct IO enablement with sync and async IO support (git-fixes). - nfs/localio: remove extra indirect nfs_to call to check {read,write}_iter (git-fixes). - nfsd: Fix NFSD_MAY_BYPASS_GSS and NFSD_MAY_BYPASS_GSS_ON_ROOT (git-fixes). - nfsd: fix access checking for NLM under XPRTSEC policies (git-fixes). - nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm() (git-fixes). - nouveau: fix disabling the nonstall irq due to storm code (git-fixes). - nvme-auth: update bi_directional flag (git-fixes). - nvme-fc: use lock accessing port_state and rport state (bsc#1245193 bsc#1247500). - nvme-pci: try function level reset on init failure (git-fixes). - nvme-tcp: log TLS handshake failures at error level (git-fixes). - nvme-tcp: send only permitted commands for secure concat (git-fixes). - nvme: fix PI insert on write (git-fixes). - nvme: fix endianness of command word prints in nvme_log_err_passthru() (git-fixes). - nvme: fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list() (git-fixes). - nvme: fix misaccounting of nvme-mpath inflight I/O (git-fixes). - nvmet-fc: avoid scheduling association deletion twice (bsc#1245193 bsc#1247500). - nvmet-fc: move lsop put work to nvmet_fc_ls_req_op (bsc#1245193 bsc#1247500). - nvmet-fcloop: call done callback even when remote port is gone (bsc#1245193 bsc#1247500). - nvmet-tcp: fix callback lock for TLS handshake (git-fixes). - nvmet: exit debugfs after discovery subsystem exits (git-fixes). - nvmet: initialize discovery subsys after debugfs is initialized (git-fixes). - nvmet: pci-epf: Do not complete commands twice if nvmet_req_init() fails (git-fixes). - objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() (stable-fixes). - objtool, lkdtm: Obfuscate the do_nothing() pointer (stable-fixes). - objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() (stable-fixes). - of: dynamic: Fix memleak when of_pci_add_properties() failed (git-fixes). - of: dynamic: Fix use after free in of_changeset_add_prop_helper() (git-fixes). - of: resolver: Fix device node refcount leakage in of_resolve_phandles() (git-fixes). - of: resolver: Simplify of_resolve_phandles() using __free() (stable-fixes). - of: unittest: Fix device reference count leak in of_unittest_pci_node_verify (git-fixes). - of: unittest: Unlock on error in unittest_data_add() (git-fixes). - pNFS/flexfiles: do not attempt pnfs on fatal DS errors (git-fixes). - pNFS: Fix disk addr range check in block/scsi layout (git-fixes). - pNFS: Fix stripe mapping in block/scsi layout (git-fixes). - pNFS: Fix uninited ptr deref in block/scsi layout (git-fixes). - pNFS: Handle RPC size limit for layoutcommits (git-fixes). - percpu: fix race on alloc failed warning limit (git-fixes). - perf bpf-event: Fix use-after-free in synthesis (git-fixes). - perf bpf-utils: Constify bpil_array_desc (git-fixes). - perf bpf-utils: Harden get_bpf_prog_info_linear (git-fixes). - perf dso: Add missed dso__put to dso__load_kcore (git-fixes). - perf hwmon_pmu: Avoid shortening hwmon PMU name (git-fixes). - perf parse-events: Set default GH modifier properly (git-fixes). - perf record: Cache build-ID of hit DSOs only (git-fixes). - perf sched: Fix memory leaks for evsel->priv in timehist (git-fixes). - perf sched: Fix memory leaks in 'perf sched latency' (git-fixes). - perf sched: Fix memory leaks in 'perf sched map' (git-fixes). - perf sched: Fix thread leaks in 'perf sched timehist' (git-fixes). - perf sched: Free thread->priv using priv_destructor (git-fixes). - perf sched: Make sure it frees the usage string (git-fixes). - perf sched: Use RC_CHK_EQUAL() to compare pointers (git-fixes). - perf symbol-minimal: Fix ehdr reading in filename__read_build_id (git-fixes). - perf test: Fix a build error in x86 topdown test (git-fixes). - perf tests bp_account: Fix leaked file descriptor (git-fixes). - perf tools: Remove libtraceevent in .gitignore (git-fixes). - perf topdown: Use attribute to see an event is a topdown metic or slots (git-fixes). - perf trace: Remove --map-dump documentation (git-fixes). - phy: fsl-imx8mq-usb: fix phy_tx_vboost_level_from_property() (git-fixes). - phy: mscc: Fix parsing of unicast frames (git-fixes). - phy: mscc: Fix timestamping for vsc8584 (git-fixes). - phy: qcom: phy-qcom-m31: Update IPQ5332 M31 USB phy initialization sequence (git-fixes). - phy: qualcomm: phy-qcom-eusb2-repeater: Do not zero-out registers (git-fixes). - phy: qualcomm: phy-qcom-eusb2-repeater: fix override properties (git-fixes). - phy: rockchip-pcie: Properly disable TEST_WRITE strobe signal (stable-fixes). - phy: rockchip: naneng-combphy: Enable U3 OTG port for RK3568 (git-fixes). - phy: rockchip: samsung-hdptx: Do no set rk_hdptx_phy->rate in case of errors (git-fixes). - phy: rockchip: samsung-hdptx: Fix clock ratio setup (git-fixes). - phy: tegra: xusb: fix device and OF node leak at probe (git-fixes). - phy: ti-pipe3: fix device leak at unbind (git-fixes). - phy: ti: omap-usb2: fix device leak at unbind (git-fixes). - pidfs: Fix memory leak in pidfd_info() (jsc#PED-13113). - pidfs: raise SB_I_NODEV and SB_I_NOEXEC (bsc#1249562). - pinctrl: STMFX: add missing HAS_IOMEM dependency (git-fixes). - pinctrl: berlin: fix memory leak in berlin_pinctrl_build_state() (git-fixes). - pinctrl: equilibrium: Remove redundant semicolons (git-fixes). - pinctrl: meson-gxl: add missing i2c_d pinmux (git-fixes). - pinctrl: renesas: Use int type to store negative error codes (git-fixes). - pinctrl: renesas: rzg2l: Fix invalid unsigned return in rzg3s_oen_read() (git-fixes). - pinctrl: samsung: Drop unused S3C24xx driver data (git-fixes). - pinctrl: stm32: Manage irq affinity settings (stable-fixes). - pinctrl: sunxi: Fix memory leak on krealloc failure (git-fixes). - pinmux: fix race causing mux_owner NULL with active mux_usecount (git-fixes). - platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister() (git-fixes). - platform/chrome: cros_ec_sensorhub: Retries when a sensor is not ready (stable-fixes). - platform/chrome: cros_ec_typec: Defer probe on missing EC parent (stable-fixes). - platform/mellanox: mlxbf-pmc: Remove newline char from event name input (git-fixes). - platform/mellanox: mlxbf-pmc: Use kstrtobool() to check 0/1 input (git-fixes). - platform/mellanox: mlxbf-pmc: Validate event/enable input (git-fixes). - platform/x86/amd/hsmp: Ensure sock->metric_tbl_addr is non-NULL (git-fixes). - platform/x86/amd/pmc: Add MECHREVO Yilong15Pro to spurious_8042 list (stable-fixes). - platform/x86/amd/pmc: Add Stellaris Slim Gen6 AMD to spurious 8042 quirks list (stable-fixes). - platform/x86/amd/pmc: Add TUXEDO IB Pro Gen10 AMD to spurious 8042 quirks list (stable-fixes). - platform/x86/amd/pmf: Support new ACPI ID AMDI0108 (stable-fixes). - platform/x86/amd: pmc: Add Lenovo Yoga 6 13ALC6 to pmc quirk list (stable-fixes). - platform/x86/intel-uncore-freq: Check write blocked for ELC (git-fixes). - platform/x86/intel: power-domains: Use topology_logical_package_id() for package ID (git-fixes). - platform/x86: Fix initialization order for firmware_attributes_class (git-fixes). - platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo UX8406CA (stable-fixes). - platform/x86: asus-wmi: Fix ROG button mapping, tablet mode on ASUS ROG Z13 (stable-fixes). - platform/x86: asus-wmi: Re-add extra keys to ignore_key_wlan quirk (git-fixes). - platform/x86: asus-wmi: Remove extra keys from ignore_key_wlan quirk (git-fixes). - platform/x86: ideapad-laptop: Fix FnLock not remembered among boots (git-fixes). - platform/x86: ideapad-laptop: Fix kbd backlight not remembered among boots (git-fixes). - platform/x86: lg-laptop: Fix WMAB call in fan_mode_store() (git-fixes). - pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop() (stable-fixes). - pm: cpupower: bench: Prevent NULL dereference on malloc failure (stable-fixes). - power: supply: bq27xxx: fix error return in case of no bq27000 hdq battery (git-fixes). - power: supply: bq27xxx: restrict no-battery detection to bq27000 (git-fixes). - power: supply: cpcap-charger: Fix null check for power_supply_get_by_name (git-fixes). - power: supply: cw2015: Fix a alignment coding style issue (git-fixes). - power: supply: max14577: Handle NULL pdata when CONFIG_OF is not set (git-fixes). - power: supply: max77976_charger: fix constant current reporting (git-fixes). - power: supply: qcom_battmgr: Add lithium-polymer entry (stable-fixes). - powercap: dtpm_cpu: Fix NULL pointer dereference in get_pd_power_uw() (git-fixes). - powerpc/eeh: Export eeh_unfreeze_pe() (bsc#1215199). - powerpc/eeh: Make EEH driver device hotplug safe (bsc#1215199). - powerpc/ftrace: ensure ftrace record ops are always set for NOPs (git-fixes). - powerpc/ftrace: ensure ftrace record ops are always set for NOPs (jsc#PED-10909 git-fixes). - powerpc/kernel: Fix ppc_save_regs inclusion in build (bsc#1215199). - powerpc/kvm: Fix ifdef to remove build warning (bsc#1215199). - powerpc/powernv/pci: Fix underflow and leak issue (bsc#1215199). - powerpc/pseries/msi: Fix potential underflow and leak issue (bsc#1215199). - powerpc/pseries: Correct secvar format representation for static key management (jsc#PED-13345 jsc#PED-13343). - powerpc/secvar: Expose secvars relevant to the key management mode (jsc#PED-13345 jsc#PED-13343). - powerpc64/modules: correctly iterate over stubs in setup_ftrace_ool_stubs (jsc#PED-10909 git-fixes). - powerpc: do not build ppc_save_regs.o always (bsc#1215199). - powerpc: floppy: Add missing checks after DMA map (bsc#1215199). - pptp: fix pptp_xmit() error path (git-fixes). - printk: nbcon: Allow reacquire during panic (bsc#1246688). - psample: adjust size if rate_as_probability is set (git-fixes). - ptp: fix breakage after ptp_vclock_in_use() rework (git-fixes). - pwm: berlin: Fix wrong register in suspend/resume (git-fixes). - pwm: imx-tpm: Reset counter if CMOD is 0 (git-fixes). - pwm: mediatek: Fix duty and period setting (git-fixes). - pwm: mediatek: Handle hardware enable and clock enable separately (stable-fixes). - pwm: rockchip: Round period/duty down on apply, up on get (git-fixes). - pwm: tiehrpwm: Do not drop runtime PM reference in .free() (git-fixes). - pwm: tiehrpwm: Fix corner case in clock divisor calculation (git-fixes). - pwm: tiehrpwm: Fix various off-by-one errors in duty-cycle calculation (git-fixes). - pwm: tiehrpwm: Make code comment in .free() more useful (git-fixes). - r8169: add support for RTL8125D (stable-fixes). - r8169: disable RTL8126 ZRX-DC timeout (stable-fixes). - r8169: do not scan PHY addresses > 0 (stable-fixes). - rcu: Fix racy re-initialization of irq_work causing hangs (git-fixes) - regmap: Remove superfluous check for !config in __regmap_init() (git-fixes). - regulator: core: fix NULL dereference on unbind due to stale coupling data (stable-fixes). - regulator: scmi: Use int type to store negative error codes (git-fixes). - regulator: sy7636a: fix lifecycle of power good gpio (git-fixes). - reset: brcmstb: Enable reset drivers for ARCH_BCM2835 (stable-fixes). - reset: eyeq: fix OF node leak (git-fixes). - resource: Add resource set range and size helpers (jsc#PED-13728 jsc#PED-13762). - resource: fix false warning in __request_region() (git-fixes). - ring-buffer: Do not allow events in NMI with generic atomic64 cmpxchg() (git-fixes). - ring-buffer: Make reading page consistent with the code logic (git-fixes). - rpm/config.sh: SLFO 1.2 is now synced to OBS as well - rtc: ds1307: fix incorrect maximum clock rate handling (git-fixes). - rtc: ds1307: handle oscillator stop flag (OSF) for ds1341 (stable-fixes). - rtc: ds1307: remove clear of oscillator stop flag (OSF) in probe (stable-fixes). - rtc: hym8563: fix incorrect maximum clock rate handling (git-fixes). - rtc: nct3018y: fix incorrect maximum clock rate handling (git-fixes). - rtc: optee: fix memory leak on driver removal (git-fixes). - rtc: pcf85063: fix incorrect maximum clock rate handling (git-fixes). - rtc: pcf8563: fix incorrect maximum clock rate handling (git-fixes). - rtc: rv3028: fix incorrect maximum clock rate handling (git-fixes). - rtc: x1205: Fix Xicor X1205 vendor prefix (git-fixes). - s390/ap: Unmask SLCF bit in card and queue ap functions sysfs (git-fixes bsc#1247837). - s390/bpf: Fix bpf_arch_text_poke() with new_addr == NULL again (git-fixes bsc#1246868). - s390/cpum_cf: Deny all sampling events by counter PMU (git-fixes bsc#1249477). - s390/early: Copy last breaking event address to pt_regs (git-fixes bsc#1249061). - s390/hypfs: Avoid unnecessary ioctl registration in debugfs (bsc#1248727 git-fixes). - s390/hypfs: Enable limited access during lockdown (bsc#1248727 git-fixes). - s390/ism: fix concurrency management in ism_cmd() (git-fixes bsc#1247372). - s390/mm: Allocate page table with PAGE_SIZE granularity (git-fixes bsc#1247838). - s390/mm: Do not map lowcore with identity mapping (git-fixes bsc#1249066). - s390/mm: Remove possible false-positive warning in pte_free_defer() (git-fixes bsc#1247366). - s390/pai: Deny all events not handled by this PMU (git-fixes bsc#1249478). - s390/pci: Allow automatic recovery with minimal driver support (bsc#1248728 git-fixes). - s390/sclp: Fix SCCB present check (git-fixes bsc#1249065). - s390/stp: Remove udelay from stp_sync_clock() (git-fixes bsc#1249062). - s390/time: Use monotonic clock in get_cycles() (git-fixes bsc#1249064). - samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora (git-fixes). - samples: mei: Fix building on musl libc (git-fixes). - sched/deadline: Always stop dl-server before changing parameters (bsc#1247936). - sched/deadline: Do not count nr_running for dl_server proxy tasks (git-fixes, bsc#1247936). - sched/deadline: Fix RT task potential starvation when expiry time passed (git-fixes, bsc#1247936). - sched/deadline: Fix dl_server_stopped() (bsc#1247936). - sched/deadline: Initialize dl_servers after SMP (git-fixes) - sched_ext, sched/core: Do not call scx_group_set_weight() (git-fixes) - scsi: Revert "scsi: iscsi: Fix HW conn removal use after free" (git-fixes). - scsi: core: Fix kernel doc for scsi_track_queue_full() (git-fixes). - scsi: elx: efct: Fix dma_unmap_sg() nents value (git-fixes). - scsi: fc: Avoid -Wflex-array-member-not-at-end warnings (bsc#1250519). - scsi: ibmvscsi_tgt: Fix dma_unmap_sg() nents value (git-fixes). - scsi: isci: Fix dma_unmap_sg() nents value (git-fixes). - scsi: lpfc: Abort outstanding ELS WQEs regardless of if rmmod is in progress (bsc#1250519). - scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET (bsc#1250519). - scsi: lpfc: Clean up allocated queues when queue setup mbox commands fail (bsc#1250519). - scsi: lpfc: Clean up extraneous phba dentries (bsc#1250519). - scsi: lpfc: Convert debugfs directory counts from atomic to unsigned int (bsc#1250519). - scsi: lpfc: Copyright updates for 14.4.0.11 patches (bsc#1250519). - scsi: lpfc: Decrement ndlp kref after FDISC retries exhausted (bsc#1250519). - scsi: lpfc: Define size of debugfs entry for xri rebalancing (bsc#1250519). - scsi: lpfc: Ensure PLOGI_ACC is sent prior to PRLI in Point to Point topology (bsc#1250519). - scsi: lpfc: Fix buffer free/clear order in deferred receive path (bsc#1250519). - scsi: lpfc: Fix wrong function reference in a comment (bsc#1250519). - scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup (bsc#1250519). - scsi: lpfc: Remove redundant assignment to avoid memory leak (bsc#1250519). - scsi: lpfc: Remove unused member variables in struct lpfc_hba and lpfc_vport (bsc#1250519). - scsi: lpfc: Update lpfc version to 14.4.0.11 (bsc#1250519). - scsi: lpfc: Use int type to store negative error codes (bsc#1250519). - scsi: lpfc: Use switch case statements in DIF debugfs handlers (bsc#1250519). - scsi: lpfc: use min() to improve code (bsc#1250519). - scsi: mpi3mr: Event processing debug improvement (bsc#1251186). - scsi: mpi3mr: Fix I/O failures during controller reset (bsc#1251186). - scsi: mpi3mr: Fix controller init failure on fault during queue creation (bsc#1251186). - scsi: mpi3mr: Fix device loss during enclosure reboot due to zero link speed (bsc#1251186). - scsi: mpi3mr: Fix kernel-doc issues in mpi3mr_app.c (git-fixes). - scsi: mpi3mr: Fix premature TM timeouts on virtual drives (bsc#1251186). - scsi: mpi3mr: Fix race between config read submit and interrupt completion (git-fixes). - scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems (git-fixes). - scsi: mpi3mr: Update MPI headers to revision 37 (bsc#1251186). - scsi: mpi3mr: Update driver version to 8.15.0.5.50 (bsc#1251186). - scsi: mpt3sas: Fix a fw_event memory leak (git-fixes). - scsi: mvsas: Fix dma_unmap_sg() nents value (git-fixes). - scsi: qla2xxx: Avoid stack frame size warning in qla_dfs (git-fixes). - scsi: qla2xxx: Fix incorrect sign of error code in START_SP_W_RETRIES() (git-fixes). - scsi: qla2xxx: Fix incorrect sign of error code in qla_nvme_xmt_ls_rsp() (git-fixes). - scsi: qla2xxx: Remove firmware URL (git-fixes). - scsi: qla2xxx: Use secs_to_jiffies() instead of msecs_to_jiffies() (git-fixes). - scsi: qla2xxx: edif: Fix incorrect sign of error code (git-fixes). - scsi: sd: Make sd shutdown issue START STOP UNIT appropriately (git-fixes). - scsi: smartpqi: Enhance WWID logging logic (bsc#1246631). - scsi: smartpqi: Take drives offline when controller is offline (bsc#1246631). - scsi: smartpqi: Update driver version to 2.1.34-035 (bsc#1246631). - scsi: ufs: Fix toggling of clk_gating.state when clock gating is not allowed (git-fixes). - scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices (git-fixes). - scsi: ufs: bsg: Delete bsg_dev when setting up bsg fails (git-fixes). - scsi: ufs: core: Add missing post notify for power mode change (git-fixes). - scsi: ufs: core: Add ufshcd_send_bsg_uic_cmd() for UFS BSG (git-fixes). - scsi: ufs: core: Always initialize the UIC done completion (git-fixes). - scsi: ufs: core: Do not perform UFS clkscaling during host async scan (git-fixes). - scsi: ufs: core: Fix clk scaling to be conditional in reset and restore (git-fixes). - scsi: ufs: core: Fix error return with query response (git-fixes). - scsi: ufs: core: Fix spelling of a sysfs attribute name (git-fixes). - scsi: ufs: core: Fix ufshcd_is_ufs_dev_busy() and ufshcd_eh_timed_out() (git-fixes). - scsi: ufs: core: Honor runtime/system PM levels if set by host controller drivers (git-fixes). - scsi: ufs: core: Improve ufshcd_mcq_sq_cleanup() (git-fixes). - scsi: ufs: core: Introduce ufshcd_has_pending_tasks() (git-fixes). - scsi: ufs: core: Prepare to introduce a new clock_gating lock (git-fixes). - scsi: ufs: core: Remove redundant query_complete trace (git-fixes). - scsi: ufs: core: Set default runtime/system PM levels before ufshcd_hba_init() (git-fixes). - scsi: ufs: core: Update compl_time_stamp_local_clock after completing a cqe (git-fixes). - scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume (git-fixes). - scsi: ufs: exynos: Add check inside exynos_ufs_config_smu() (git-fixes). - scsi: ufs: exynos: Add gs101_ufs_drv_init() hook and enable WriteBooster (git-fixes). - scsi: ufs: exynos: Enable PRDT pre-fetching with UFSHCD_CAP_CRYPTO (git-fixes). - scsi: ufs: exynos: Ensure consistent phy reference counts (git-fixes). - scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init() (git-fixes). - scsi: ufs: exynos: Fix hibern8 notify callbacks (git-fixes). - scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE (git-fixes). - scsi: ufs: exynos: Move UFS shareability value to drvdata (git-fixes). - scsi: ufs: exynos: Move phy calls to .exit() callback (git-fixes). - scsi: ufs: exynos: Remove empty drv_init method (git-fixes). - scsi: ufs: exynos: Remove superfluous function parameter (git-fixes). - scsi: ufs: exynos: gs101: Put UFS device in reset on .suspend() (git-fixes). - scsi: ufs: mcq: Delete ufshcd_release_scsi_cmd() in ufshcd_mcq_abort() (git-fixes). - scsi: ufs: pltfrm: Disable runtime PM during removal of glue drivers (git-fixes). - scsi: ufs: pltfrm: Drop PM runtime reference count after ufshcd_remove() (git-fixes). - scsi: ufs: qcom: Fix crypto key eviction (git-fixes). - scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get (git-fixes). - scsi: ufs: ufs-pci: Fix default runtime and system PM levels (git-fixes). - scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers (git-fixes). - seccomp: Fix a race with WAIT_KILLABLE_RECV if the tracer replies too fast (git-fixes bsc#1250671). - selftest/livepatch: Only run test-kprobe with CONFIG_KPROBES_ON_FTRACE (poo#187320). - selftests/cpufreq: Fix cpufreq basic read and update testcases (bsc#1250344). - selftests/livepatch: Ignore NO_SUPPORT line in dmesg (poo#187320). - selftests/livepatch: Replace hardcoded module name with variable in test-callbacks.sh (poo#187320). - selftests/run_kselftest.sh: Fix help string for --per-test-log (poo#187320). - selftests/run_kselftest.sh: Use readlink if realpath is not available (poo#187320). - selftests/tracing: Fix false failure of subsystem event test (git-fixes). - selftests: ALSA: fix memory leak in utimer test (git-fixes). - selftests: livepatch: add new ftrace helpers functions (poo#187320). - selftests: livepatch: add test cases of stack_order sysfs interface (poo#187320). - selftests: livepatch: handle PRINTK_CALLER in check_result() (poo#187320). - selftests: livepatch: rename KLP_SYSFS_DIR to SYSFS_KLP_DIR (poo#187320). - selftests: livepatch: save and restore kprobe state (poo#187320). - selftests: livepatch: test if ftrace can trace a livepatched function (poo#187320). - selftests: livepatch: test livepatching a kprobed function (poo#187320). - selftests: ncdevmem: Move ncdevmem under drivers/net/hw (poo#187443). - selinux: change security_compute_sid to return the ssid or tsid on match (git-fixes). - selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len (stable-fixes). - serial: 8250: Touch watchdogs in write_atomic() (bsc#1246688). - serial: 8250: fix panic due to PSLVERR (git-fixes). - serial: max310x: Add error checking in probe() (git-fixes). - serial: sc16is7xx: fix bug in flow control levels init (git-fixes). - skmsg: Return copied bytes in sk_msg_memcopy_from_iter (bsc#1250650). - slab: Decouple slab_debug and no_hash_pointers (bsc#1249022). - smb: client: fix crypto buffers in non-linear memory (bsc#1250491, boo#1239206). - smb: client: fix netns refcount leak after net_passive changes (git-fixes). - soc/tegra: cbb: Clear ERR_FORCE register with ERR_STATUS (git-fixes). - soc/tegra: pmc: Ensure power-domains are in a known state (git-fixes). - soc: mediatek: mtk-svs: fix device leaks on mt8183 probe failure (git-fixes). - soc: mediatek: mtk-svs: fix device leaks on mt8192 probe failure (git-fixes). - soc: qcom: QMI encoding/decoding for big endian (git-fixes). - soc: qcom: fix endianness for QMI header (git-fixes). - soc: qcom: mdt_loader: Actually use the e_phoff (stable-fixes). - soc: qcom: mdt_loader: Deal with zero e_shentsize (git-fixes). - soc: qcom: mdt_loader: Ensure we do not read past the ELF header (git-fixes). - soc: qcom: mdt_loader: Fix error return values in mdt_header_valid() (git-fixes). - soc: qcom: pmic_glink: fix OF node leak (git-fixes). - soc: qcom: rpmh-rsc: Add RSC version 4 support (stable-fixes). - soc: qcom: rpmh-rsc: Unconditionally clear _TRIGGER bit for TCS (git-fixes). - soundwire: Move handle_nested_irq outside of sdw_dev_lock (stable-fixes). - soundwire: amd: cancel pending slave status handling workqueue during remove sequence (stable-fixes). - soundwire: amd: fix for handling slave alerts after link is down (git-fixes). - soundwire: amd: serialize amd manager resume sequence during pm_prepare (stable-fixes). - soundwire: stream: restore params when prepare ports fail (git-fixes). - spi: bcm2835: Remove redundant semicolons (git-fixes). - spi: cadence-quadspi: Fix cqspi_setup_flash() (git-fixes). - spi: cadence-quadspi: Flush posted register writes before DAC access (git-fixes). - spi: cadence-quadspi: Flush posted register writes before INDAC access (git-fixes). - spi: cadence-quadspi: fix cleanup of rx_chan on failure paths (stable-fixes). - spi: cs42l43: Property entry should be a null-terminated array (bsc#1246979). - spi: fix return code when spi device has too many chipselects (git-fixes). - spi: mtk-snfi: Remove redundant semicolons (git-fixes). - spi: spi-fsl-lpspi: Clamp too high speed_hz (git-fixes). - spi: spi-fsl-lpspi: Clear status register after disabling the module (git-fixes). - spi: spi-fsl-lpspi: Fix transmissions when using CONT (git-fixes). - spi: spi-fsl-lpspi: Reset FIFO and disable module on transfer abort (git-fixes). - spi: spi-fsl-lpspi: Set correct chip-select polarity bit (git-fixes). - spi: stm32: Check for cfg availability in stm32_spi_probe (git-fixes). - sprintf.h requires stdarg.h (git-fixes). - sprintf.h: mask additional include (git-fixes). - squashfs: fix memory leak in squashfs_fill_super (git-fixes). - staging: axis-fifo: fix TX handling on copy_from_user() failure (git-fixes). - staging: axis-fifo: fix maximum TX packet length check (git-fixes). - staging: axis-fifo: flush RX FIFO on read errors (git-fixes). - staging: axis-fifo: remove sysfs interface (git-fixes). - staging: fbtft: fix potential memory leak in fbtft_framebuffer_alloc() (git-fixes). - staging: media: atomisp: Fix stack buffer overflow in gmin_get_var_int() (git-fixes). - staging: nvec: Fix incorrect null termination of battery manufacturer (git-fixes). - staging: vchiq_arm: Make vchiq_shutdown never fail (git-fixes). - struct cdc_ncm_ctx: move new member to end (git-fixes). - sunrpc: fix client side handling of tls alerts (git-fixes). - sunrpc: fix handling of server side tls alerts (git-fixes). - sunrpc: fix null pointer dereference on zero-length checksum (git-fixes). - sunvdc: Balance device refcount in vdc_port_mpgroup_check (git-fixes). - supported.conf: Mark ZL3073X modules supported - supported.conf: mark hyperv_drm as external - tcp: call tcp_measure_rcv_mss() for ooo packets (git-fixes). - tcp_bpf: Fix copied value in tcp_bpf_sendmsg (bsc#1250650). - thermal/drivers/mediatek/lvts_thermal: Add lvts commands and their sizes to driver data (stable-fixes). - thermal/drivers/mediatek/lvts_thermal: Add mt7988 lvts commands (stable-fixes). - thermal/drivers/mediatek/lvts_thermal: Change lvts commands array to static const (stable-fixes). - thermal/drivers/qcom-spmi-temp-alarm: Enable stage 2 shutdown when required (stable-fixes). - thermal/drivers/qcom/lmh: Add missing IRQ includes (git-fixes). - thermal: sysfs: Return ENODATA instead of EAGAIN for reads (stable-fixes). - thunderbolt: Compare HMAC values in constant time (git-fixes). - thunderbolt: Fix copy+paste error in match_service_id() (git-fixes). - tools/power turbostat: Clustered Uncore MHz counters should honor show/hide options (stable-fixes). - tools/power turbostat: Fix bogus SysWatt for forked program (git-fixes). - tools/power turbostat: Fix build with musl (stable-fixes). - tools/power turbostat: Handle cap_get_proc() ENOSYS (stable-fixes). - tools/power turbostat: Handle non-root legacy-uncore sysfs permissions (stable-fixes). - tools/resolve_btfids: Fix build when cross compiling kernel with clang (git-fixes). - tpm_tis: Fix incorrect arguments in tpm_tis_probe_irq_single (git-fixes). - trace/fgraph: Fix error handling (git-fixes). - trace/ring-buffer: Do not use TP_printk() formatting for boot mapped buffers (git-fixes). - tracepoint: Print the function symbol when tracepoint_debug is set (jsc#PED-13631). - tracing/kprobe: Make trace_kprobe's module callback called after jump_label update (git-fixes). - tracing/kprobes: Fix to free objects when failed to copy a symbol (git-fixes). - tracing: Correct the refcount if the hist/hist_debug file fails to open (git-fixes). - tracing: Fix filter string testing (git-fixes). - tracing: Fix using ret variable in tracing_set_tracer() (git-fixes). - tracing: Remove unneeded goto out logic (bsc#1249286). - tracing: Switch trace.c code over to use guard() (git-fixes). - tracing: Switch trace_events_hist.c code over to use guard() (git-fixes). - tracing: fprobe events: Fix possible UAF on modules (git-fixes). - tracing: tprobe-events: Fix leakage of module refcount (git-fixes). - tty: hvc_console: Call hvc_kick in hvc_write unconditionally (bsc#1230062). - tty: n_gsm: Do not block input queue by waiting MSC (git-fixes). - tty: serial: fix print format specifiers (stable-fixes). - ublk: sanity check add_dev input for underflow (git-fixes). - ublk: use vmalloc for ublk_device's __queues (git-fixes). - ucount: fix atomic_long_inc_below() argument type (git-fixes). - uio: uio_pdrv_genirq: Remove MODULE_DEVICE_TABLE (git-fixes). - usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init() (git-fixes). - usb: cdns3: cdnsp-pci: remove redundant pci_disable_device() call (git-fixes). - usb: core: Add 0x prefix to quirks debug output (stable-fixes). - usb: core: config: Prevent OOB read in SS endpoint companion parsing (stable-fixes). - usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test (git-fixes). - usb: core: usb_submit_urb: downgrade type check (stable-fixes). - usb: dwc3: Ignore late xferNotReady event to prevent halt timeout (git-fixes). - usb: dwc3: Remove WARN_ON for device endpoint command timeouts (stable-fixes). - usb: dwc3: imx8mp: fix device leak at unbind (git-fixes). - usb: dwc3: meson-g12a: fix device leaks at unbind (git-fixes). - usb: dwc3: pci: add support for the Intel Wildcat Lake (stable-fixes). - usb: dwc3: qcom: Do not leave BCR asserted (git-fixes). - usb: early: xhci-dbc: Fix early_ioremap leak (git-fixes). - usb: gadget : fix use-after-free in composite_dev_cleanup() (git-fixes). - usb: gadget: configfs: Correctly set use_os_string at bind (git-fixes). - usb: gadget: midi2: Fix MIDI2 IN EP max packet size (git-fixes). - usb: gadget: midi2: Fix missing UMP group attributes initialization (git-fixes). - usb: gadget: udc: renesas_usb3: fix device leak at unbind (git-fixes). - usb: host: max3421-hcd: Fix error pointer dereference in probe cleanup (git-fixes). - usb: host: xhci-plat: fix incorrect type for of_match variable in xhci_plat_probe() (git-fixes). - usb: misc: apple-mfi-fastcharge: Make power supply names unique (git-fixes). - usb: misc: qcom_eud: Access EUD_MODE_MANAGER2 through secure calls (git-fixes). - usb: musb: omap2430: fix device leak at unbind (git-fixes). - usb: phy: twl6030: Fix incorrect type for ret (git-fixes). - usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive (stable-fixes). - usb: renesas-xhci: Fix External ROM access timeouts (git-fixes). - usb: storage: realtek_cr: Use correct byte order for bcs->Residue (git-fixes). - usb: typec: fusb302: cache PD RX state (git-fixes). - usb: typec: intel_pmc_mux: Defer probe if SCU IPC isn't present (stable-fixes). - usb: typec: maxim_contaminant: disable low power mode when reading comparator values (git-fixes). - usb: typec: maxim_contaminant: re-enable cc toggle if cc is open and port is clean (git-fixes). - usb: typec: tcpm/tcpci_maxim: fix irq wake usage (stable-fixes). - usb: typec: tcpm: allow switching to mode accessory to mux properly (stable-fixes). - usb: typec: tcpm: allow to use sink in accessory mode (stable-fixes). - usb: typec: tcpm: apply vbus before data bringup in tcpm_src_attach (git-fixes). - usb: typec: tcpm: properly deliver cable vdms to altmode drivers (git-fixes). - usb: typec: tipd: Clear interrupts first (git-fixes). - usb: typec: ucsi: Update power_supply on power role change (git-fixes). - usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default (stable-fixes). - usb: typec: ucsi: yoga-c630: fix error and remove paths (git-fixes). - usb: vhci-hcd: Prevent suspending virtually attached devices (git-fixes). - usb: xhci: Avoid showing errors during surprise removal (stable-fixes). - usb: xhci: Avoid showing warnings for dying controller (stable-fixes). - usb: xhci: Fix slot_id resource race conflict (git-fixes). - usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command (stable-fixes). - usb: xhci: print xhci->xhc_state when queue_command failed (stable-fixes). - use uniform permission checks for all mount propagation changes (git-fixes). - vdpa/mlx5: Fix needs_teardown flag calculation (git-fixes). - vdpa: Fix IDR memory leak in VDUSE module exit (git-fixes). - vhost-scsi: Fix log flooding with target does not exist errors (git-fixes). - vhost/net: Protect ubufs with rcu read lock in vhost_net_ubuf_put() (git-fixes). - vhost/vsock: Avoid allocating arbitrarily-sized SKBs (git-fixes). - vhost: Fix ioctl # for VHOST_[GS]ET_FORK_FROM_OWNER (git-fixes). - vhost: Reintroduce kthread API and add mode selection (git-fixes). - vhost: fail early when __vhost_add_used() fails (git-fixes). - virtchnl2: add flow steering support (jsc#PED-13728). - virtchnl2: rename enum virtchnl2_cap_rss (jsc#PED-13728). - virtchnl: add PTP virtchnl definitions (jsc#PED-13728 jsc#PED-13762). - virtio_net: Enforce minimum TX ring size for reliability (git-fixes). - virtio_ring: Fix error reporting in virtqueue_resize (git-fixes). - vmci: Prevent the dispatching of uninitialized payloads (git-fixes). - vsock/virtio: Resize receive buffers so that each SKB fits in a 4K page (git-fixes). - vsock/virtio: Validate length in packet header before skb_put() (git-fixes). - vt: defkeymap: Map keycodes above 127 to K_HOLE (git-fixes). - vt: keyboard: Do not process Unicode characters in K_OFF mode (git-fixes). - watchdog: dw_wdt: Fix default timeout (stable-fixes). - watchdog: iTCO_wdt: Report error if timeout configuration fails (stable-fixes). - watchdog: mpc8xxx_wdt: Reload the watchdog timer when enabling the watchdog (git-fixes). - watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition (stable-fixes). - watchdog: ziirave_wdt: check record length in ziirave_firm_verify() (git-fixes). - wifi: ath10k: avoid unnecessary wait for service ready message (git-fixes). - wifi: ath10k: shutdown driver when hardware is unreliable (stable-fixes). - wifi: ath11k: HAL SRNG: do not deinitialize and re-initialize again (git-fixes). - wifi: ath11k: clear initialized flag for deinit-ed srng lists (git-fixes). - wifi: ath11k: fix NULL dereference in ath11k_qmi_m3_load() (git-fixes). - wifi: ath11k: fix dest ring-buffer corruption (git-fixes). - wifi: ath11k: fix dest ring-buffer corruption when ring is full (git-fixes). - wifi: ath11k: fix group data packet drops during rekey (git-fixes). - wifi: ath11k: fix sleeping-in-atomic in ath11k_mac_op_set_bitrate_mask() (git-fixes). - wifi: ath11k: fix source ring-buffer corruption (git-fixes). - wifi: ath11k: fix suspend use-after-free after probe failure (git-fixes). - wifi: ath12k: Add MODULE_FIRMWARE() entries (bsc#1250952). - wifi: ath12k: Add memset and update default rate value in wmi tx completion (stable-fixes). - wifi: ath12k: Correct tid cleanup when tid setup fails (stable-fixes). - wifi: ath12k: Decrement TID on RX peer frag setup error handling (stable-fixes). - wifi: ath12k: Enable REO queue lookup table feature on QCN9274 hw2.0 (stable-fixes). - wifi: ath12k: Fix station association with MBSSID Non-TX BSS (stable-fixes). - wifi: ath12k: Pass ab pointer directly to ath12k_dp_tx_get_encap_type() (git-fixes). - wifi: ath12k: fix dest ring-buffer corruption (git-fixes). - wifi: ath12k: fix dest ring-buffer corruption when ring is full (git-fixes). - wifi: ath12k: fix endianness handling while accessing wmi service bit (git-fixes). - wifi: ath12k: fix memory leak in ath12k_pci_remove() (stable-fixes). - wifi: ath12k: fix memory leak in ath12k_service_ready_ext_event (git-fixes). - wifi: ath12k: fix source ring-buffer corruption (git-fixes). - wifi: ath12k: fix the fetching of combined rssi (git-fixes). - wifi: ath12k: fix wrong handling of CCMP256 and GCMP ciphers (git-fixes). - wifi: ath12k: fix wrong logging ID used for CE (git-fixes). - wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE (git-fixes). - wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work (git-fixes). - wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() (git-fixes). - wifi: cfg80211: Fix interface type validation (stable-fixes). - wifi: cfg80211: fix use-after-free in cmp_bss() (git-fixes). - wifi: cfg80211: reject HTC bit for management frames (stable-fixes). - wifi: cfg80211: sme: cap SSID length in __cfg80211_connect_result() (git-fixes). - wifi: cw1200: cap SSID length in cw1200_do_join() (git-fixes). - wifi: iwlegacy: Check rate_idx range after addition (stable-fixes). - wifi: iwlwifi: Add missing firmware info for bz-b0-* models (bsc#1252084). - wifi: iwlwifi: Fix error code in iwl_op_mode_dvm_start() (git-fixes). - wifi: iwlwifi: Fix memory leak in iwl_mvm_init() (git-fixes). - wifi: iwlwifi: Remove redundant header files (git-fixes). - wifi: iwlwifi: config: unify fw/pnvm MODULE_FIRMWARE (bsc#1252084). - wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd() (stable-fixes). - wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect (stable-fixes). - wifi: iwlwifi: mvm: avoid outdated reorder buffer head_sn (stable-fixes). - wifi: iwlwifi: mvm: fix scan request validation (stable-fixes). - wifi: iwlwifi: mvm: set gtk id also in older FWs (stable-fixes). - wifi: iwlwifi: return ERR_PTR from opmode start() (stable-fixes). - wifi: iwlwifi: uefi: check DSM item validity (git-fixes). - wifi: libertas: cap SSID len in lbs_associate() (git-fixes). - wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key() (git-fixes). - wifi: mac80211: Do not call fq_flow_idx() for management frames (git-fixes). - wifi: mac80211: Do not schedule stopped TXQs (git-fixes). - wifi: mac80211: Write cnt before copying in ieee80211_copy_rnr_beacon() (git-fixes). - wifi: mac80211: avoid weird state in error path (stable-fixes). - wifi: mac80211: do not complete management TX on SAE commit (stable-fixes). - wifi: mac80211: do not unreserve never reserved chanctx (stable-fixes). - wifi: mac80211: fix Rx packet handling when pubsta information is not available (git-fixes). - wifi: mac80211: fix incorrect type for ret (stable-fixes). - wifi: mac80211: fix rx link assignment for non-MLO stations (stable-fixes). - wifi: mac80211: increase scan_ies_len for S1G (stable-fixes). - wifi: mac80211: reject TDLS operations when station is not associated (git-fixes). - wifi: mac80211: update radar_required in channel context after channel switch (stable-fixes). - wifi: mt76: fix linked list corruption (git-fixes). - wifi: mt76: fix potential memory leak in mt76_wmac_probe() (git-fixes). - wifi: mt76: free pending offchannel tx frames on wcid cleanup (git-fixes). - wifi: mt76: mt7915: fix mt7981 pre-calibration (git-fixes). - wifi: mt76: mt7915: mcu: re-init MCU before loading FW patch (stable-fixes). - wifi: mt76: mt7925: adjust rm BSS flow to prevent next connection failure (git-fixes). - wifi: mt76: mt7925: fix locking in mt7925_change_vif_links() (git-fixes). - wifi: mt76: mt7925: fix the wrong bss cleanup for SAP (git-fixes). - wifi: mt76: mt7925u: use connac3 tx aggr check in tx complete (git-fixes). - wifi: mt76: mt7996: Convert mt7996_wed_rro_addr to LE (git-fixes). - wifi: mt76: mt7996: Fix RX packets configuration for primary WED device (git-fixes). - wifi: mt76: mt7996: Initialize hdr before passing to skb_put_data() (git-fixes). - wifi: mt76: prevent non-offchannel mgmt tx during scan/roc (git-fixes). - wifi: mwifiex: Initialize the chan_stats array to zero (git-fixes). - wifi: mwifiex: send world regulatory domain to driver (git-fixes). - wifi: nl80211: Set num_sub_specs before looping through sub_specs (git-fixes). - wifi: plfxlc: Fix error handling in usb driver probe (git-fixes). - wifi: rtl818x: Kill URBs before clearing tx status queue (git-fixes). - wifi: rtl8xxxu: Do not claim USB ID 07b8:8188 (stable-fixes). - wifi: rtl8xxxu: Fix RX skb size for aggregation disabled (git-fixes). - wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc() (stable-fixes). - wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()` (stable-fixes). - wifi: rtlwifi: rtl8192cu: Do not claim USB ID 07b8:8188 (stable-fixes). - wifi: rtw88: Fix macid assigned to TDLS station (git-fixes). - wifi: rtw89: Fix rtw89_mac_power_switch() for USB (stable-fixes). - wifi: rtw89: Lower the timeout in rtw89_fw_read_c2h_reg() for USB (stable-fixes). - wifi: rtw89: avoid NULL dereference when RX problematic packet on unsupported 6 GHz band (git-fixes). - wifi: rtw89: avoid circular locking dependency in ser_state_run() (git-fixes). - wifi: rtw89: scan abort when assign/unassign_vif (stable-fixes). - wifi: rtw89: wow: Add Basic Rate IE to probe request in scheduled scan mode (stable-fixes). - wifi: virt_wifi: Fix page fault on connect (stable-fixes). - wifi: wilc1000: avoid buffer overflow in WID string configuration (stable-fixes). - writeback: Avoid contention on wb->list_lock when switching inodes (bsc#1237776). - writeback: Avoid contention on wb->list_lock when switching inodes (kABI fixup) (bsc#1237776). - writeback: Avoid excessively long inode switching times (bsc#1237776). - writeback: Avoid softlockup when switching many inodes (bsc#1237776). - x86/CPU/AMD: Add CPUID faulting support (jsc#PED-13704). - x86/Kconfig: Add arch attack vector support (git-fixes). - x86/Kconfig: Always enable ARCH_SPARSEMEM_ENABLE (git-fixes). - x86/boot: Sanitize boot params before parsing command line (git-fixes). - x86/bugs: Add SRSO_MITIGATION_NOSMT (git-fixes). - x86/bugs: Add attack vector controls for BHI (git-fixes). - x86/bugs: Add attack vector controls for GDS (git-fixes). - x86/bugs: Add attack vector controls for ITS (git-fixes). - x86/bugs: Add attack vector controls for L1TF (git-fixes). - x86/bugs: Add attack vector controls for MDS (git-fixes). - x86/bugs: Add attack vector controls for MMIO (git-fixes). - x86/bugs: Add attack vector controls for RFDS (git-fixes). - x86/bugs: Add attack vector controls for SRBDS (git-fixes). - x86/bugs: Add attack vector controls for SRSO (git-fixes). - x86/bugs: Add attack vector controls for SSB (git-fixes). - x86/bugs: Add attack vector controls for TAA (git-fixes). - x86/bugs: Add attack vector controls for TSA (git-fixes). - x86/bugs: Add attack vector controls for retbleed (git-fixes). - x86/bugs: Add attack vector controls for spectre_v1 (git-fixes). - x86/bugs: Add attack vector controls for spectre_v2 (git-fixes). - x86/bugs: Add attack vector controls for spectre_v2_user (git-fixes). - x86/bugs: Allow ITS stuffing in eIBRS+retpoline mode also (git-fixes). - x86/bugs: Avoid AUTO after the select step in the retbleed mitigation (git-fixes). - x86/bugs: Avoid warning when overriding return thunk (git-fixes). - x86/bugs: Clean up SRSO microcode handling (git-fixes). - x86/bugs: Define attack vectors relevant for each bug (git-fixes). - x86/bugs: Fix GDS mitigation selecting when mitigation is off (git-fixes). - x86/bugs: Introduce cdt_possible() (git-fixes). - x86/bugs: Print enabled attack vectors (git-fixes). - x86/bugs: Remove its=stuff dependency on retbleed (git-fixes). - x86/bugs: Select best SRSO mitigation (git-fixes). - x86/bugs: Simplify the retbleed=stuff checks (git-fixes). - x86/bugs: Use IBPB for retbleed if used by SRSO (git-fixes). - x86/bugs: Use switch/case in its_apply_mitigation() (git-fixes). - x86/cacheinfo: Properly parse CPUID(0x80000005) L1d/L1i associativity (git-fixes). - x86/cacheinfo: Properly parse CPUID(0x80000006) L2/L3 associativity (git-fixes). - x86/cpu: Sanitize CPUID(0x80000000) output (git-fixes). - x86/entry: Fix ORC unwinder for PUSH_REGS with save_ret=1 (git-fixes). - x86/fpu/xstate: Fix inconsistencies in guest FPU xfeatures (git-fixes). - x86/fpu: Avoid copying dynamic FP state from init_task in arch_dup_task_struct() (git-fixes). - x86/fpu: Delay instruction pointer fixup until after warning (git-fixes). - x86/fpu: Fix guest FPU state buffer allocation size (git-fixes). - x86/fpu: Fully optimize out WARN_ON_FPU() (git-fixes). - x86/fpu: Refactor xfeature bitmask update code for sigframe XSAVE (git-fixes). - x86/fred/signal: Prevent immediate repeat of single step trap on return from SIGTRAP handler (git-fixes). - x86/headers: Replace __ASSEMBLY__ with __ASSEMBLER__ in UAPI headers (git-fixes). - x86/locking: Use ALT_OUTPUT_SP() for percpu_{,try_}cmpxchg{64,128}_op() (git-fixes). - x86/mce/amd: Add default names for MCA banks and blocks (git-fixes). - x86/mce: Do not remove sysfs if thresholding sysfs init fails (git-fixes). - x86/mce: Ensure user polling settings are honored when restarting timer (git-fixes). - x86/mce: Make sure CMCI banks are cleared during shutdown on Intel (git-fixes). - x86/microcode/AMD: Handle the case of no BIOS microcode (git-fixes). - x86/microcode: Consolidate the loader enablement checking (git-fixes). - x86/microcode: Update the Intel processor flag scan check (git-fixes). - x86/mm/64: define ARCH_PAGE_TABLE_SYNC_MASK and arch_sync_kernel_mappings() (git-fixes). - x86/mm/pat: do not collapse pages without PSE set (git-fixes). - x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() (git-fixes). - x86/percpu: Disable named address spaces for UBSAN_BOOL with KASAN for GCC &lt; 14.2 (git-fixes). - x86/pkeys: Simplify PKRU update in signal frame (git-fixes). - x86/platform/olpc: Remove unused variable 'len' in olpc_dt_compatible_match() (git-fixes). - x86/pti: Add attack vector controls for PTI (git-fixes). - x86/rdrand: Disable RDSEED on AMD Cyan Skillfish (git-fixes). - x86/smp: Allow calling mwait_play_dead with an arbitrary hint (jsc#PED-13815). - x86/smp: Fix mwait_play_dead() and acpi_processor_ffh_play_dead() noreturn behavior (jsc#PED-13815). - x86/smp: PM/hibernate: Split arch_resume_nosmt() (jsc#PED-13815). - x86/smpboot: Fix INIT delay assignment for extended Intel Families (git-fixes). - x86/topology: Implement topology_is_core_online() to address SMT regression (jsc#PED-13815). - x86/traps: Initialize DR6 by writing its architectural reset value (git-fixes). - xen/gntdev: remove struct gntdev_copy_batch from stack (git-fixes). - xen/netfront: Fix TX response spurious interrupts (git-fixes). - xen: fix UAF in dmabuf_exp_from_pages() (git-fixes). - xfrm: replay: Fix the update of replay_esn->oseq_hi for GSO (git-fixes). - xfs: change xfs_xattr_class from a TRACE_EVENT() to DECLARE_EVENT_CLASS() (git-fixes). - xfs: do not propagate ENODATA disk errors into xattr code (git-fixes). - xfs: fix scrub trace with null pointer in quotacheck (git-fixes). - xfs: only create event xfs_file_compat_ioctl when CONFIG_COMPAT is configure (git-fixes). - xfs: remove unused event xfs_alloc_near_error (git-fixes). - xfs: remove unused event xfs_alloc_near_nominleft (git-fixes). - xfs: remove unused event xfs_attr_node_removename (git-fixes). - xfs: remove unused event xfs_ioctl_clone (git-fixes). - xfs: remove unused event xfs_pagecache_inval (git-fixes). - xfs: remove unused event xlog_iclog_want_sync (git-fixes). - xfs: remove unused trace event xfs_attr_remove_iter_return (git-fixes). - xfs: remove unused trace event xfs_attr_rmtval_set (git-fixes). - xfs: remove unused trace event xfs_discard_rtrelax (git-fixes). - xfs: remove unused trace event xfs_log_cil_return (git-fixes). - xfs: remove unused trace event xfs_reflink_cow_enospc (git-fixes). - xfs: remove unused xfs_attr events (git-fixes). - xfs: remove unused xfs_reflink_compare_extents events (git-fixes). - xfs: remove usused xfs_end_io_direct events (git-fixes). - xhci: dbc: Fix full DbC transfer ring after several reconnects (git-fixes). - xhci: dbc: decouple endpoint allocation from initialization (git-fixes). - xhci: fix memory leak regression when freeing xhci vdev devices depth first (git-fixes). - xirc2ps_cs: fix register access when enabling FullDuplex (git-fixes). - zram: permit only one post-processing operation at a time (git-fixes). kernel-devel-6.12.0-160000.6.1.noarch.rpm True kernel-macros-6.12.0-160000.6.1.noarch.rpm True kernel-source-6.12.0-160000.6.1.noarch.rpm True kernel-source-6.12.0-160000.6.1.src.rpm True kernel-source-vanilla-6.12.0-160000.6.1.noarch.rpm True dtb-aarch64-6.12.0-160000.6.1.nosrc.rpm True dtb-allwinner-6.12.0-160000.6.1.aarch64.rpm True dtb-altera-6.12.0-160000.6.1.aarch64.rpm True dtb-amazon-6.12.0-160000.6.1.aarch64.rpm True dtb-amd-6.12.0-160000.6.1.aarch64.rpm True dtb-amlogic-6.12.0-160000.6.1.aarch64.rpm True dtb-apm-6.12.0-160000.6.1.aarch64.rpm True dtb-apple-6.12.0-160000.6.1.aarch64.rpm True dtb-arm-6.12.0-160000.6.1.aarch64.rpm True dtb-broadcom-6.12.0-160000.6.1.aarch64.rpm True dtb-cavium-6.12.0-160000.6.1.aarch64.rpm True dtb-exynos-6.12.0-160000.6.1.aarch64.rpm True dtb-freescale-6.12.0-160000.6.1.aarch64.rpm True dtb-hisilicon-6.12.0-160000.6.1.aarch64.rpm True dtb-lg-6.12.0-160000.6.1.aarch64.rpm True dtb-marvell-6.12.0-160000.6.1.aarch64.rpm True dtb-mediatek-6.12.0-160000.6.1.aarch64.rpm True dtb-nvidia-6.12.0-160000.6.1.aarch64.rpm True dtb-qcom-6.12.0-160000.6.1.aarch64.rpm True dtb-renesas-6.12.0-160000.6.1.aarch64.rpm True dtb-rockchip-6.12.0-160000.6.1.aarch64.rpm True dtb-socionext-6.12.0-160000.6.1.aarch64.rpm True dtb-sprd-6.12.0-160000.6.1.aarch64.rpm True dtb-xilinx-6.12.0-160000.6.1.aarch64.rpm True cluster-md-kmp-64kb-6.12.0-160000.6.1.aarch64.rpm True cluster-md-kmp-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-64kb-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-64kb-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-6.12.0-160000.6.1.nosrc.rpm True kernel-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-debugsource-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-devel-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-extra-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-extra-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-optional-6.12.0-160000.6.1.aarch64.rpm True kernel-64kb-optional-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-64kb-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-64kb-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-64kb-debuginfo-6.12.0-160000.6.1.aarch64.rpm True cluster-md-kmp-default-6.12.0-160000.6.1.aarch64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-default-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-default-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-default-6.12.0-160000.6.1.aarch64.rpm True kernel-default-6.12.0-160000.6.1.nosrc.rpm True kernel-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-default-debugsource-6.12.0-160000.6.1.aarch64.rpm True kernel-default-devel-6.12.0-160000.6.1.aarch64.rpm True kernel-default-extra-6.12.0-160000.6.1.aarch64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-default-optional-6.12.0-160000.6.1.aarch64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-default-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-default-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-docs-6.12.0-160000.6.1.noarch.rpm True kernel-docs-6.12.0-160000.6.1.nosrc.rpm True kernel-docs-html-6.12.0-160000.6.1.noarch.rpm True kernel-kvmsmall-6.12.0-160000.6.1.aarch64.rpm True kernel-kvmsmall-6.12.0-160000.6.1.nosrc.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.6.1.aarch64.rpm True kernel-kvmsmall-devel-6.12.0-160000.6.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.6.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.6.1.src.rpm True kernel-obs-build-debugsource-6.12.0-160000.6.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.6.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.6.1.src.rpm True cluster-md-kmp-rt-6.12.0-160000.6.1.aarch64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-rt-6.12.0-160000.6.1.aarch64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-rt-6.12.0-160000.6.1.aarch64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-6.12.0-160000.6.1.nosrc.rpm True kernel-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-debugsource-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-devel-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-extra-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-optional-6.12.0-160000.6.1.aarch64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-rt-6.12.0-160000.6.1.aarch64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-rt-6.12.0-160000.6.1.aarch64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.6.1.aarch64.rpm True kernel-syms-6.12.0-160000.6.1.aarch64.rpm True kernel-syms-6.12.0-160000.6.1.src.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.aarch64.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.src.rpm True cluster-md-kmp-default-6.12.0-160000.6.1.ppc64le.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True dlm-kmp-default-6.12.0-160000.6.1.ppc64le.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True gfs2-kmp-default-6.12.0-160000.6.1.ppc64le.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-debugsource-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-devel-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-extra-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-extra-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-optional-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-optional-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kselftests-kmp-default-6.12.0-160000.6.1.ppc64le.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True ocfs2-kmp-default-6.12.0-160000.6.1.ppc64le.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kernel-kvmsmall-6.12.0-160000.6.1.ppc64le.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.6.1.ppc64le.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.6.1.ppc64le.rpm True kernel-kvmsmall-devel-6.12.0-160000.6.1.ppc64le.rpm True kernel-obs-build-6.12.0-160000.6.1.ppc64le.rpm True kernel-obs-build-debugsource-6.12.0-160000.6.1.ppc64le.rpm True kernel-obs-qa-6.12.0-160000.6.1.ppc64le.rpm True kernel-syms-6.12.0-160000.6.1.ppc64le.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.6.1.s390x.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True dlm-kmp-default-6.12.0-160000.6.1.s390x.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True gfs2-kmp-default-6.12.0-160000.6.1.s390x.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True kernel-default-6.12.0-160000.6.1.s390x.rpm True kernel-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True kernel-default-debugsource-6.12.0-160000.6.1.s390x.rpm True kernel-default-devel-6.12.0-160000.6.1.s390x.rpm True kernel-default-extra-6.12.0-160000.6.1.s390x.rpm True kernel-default-extra-debuginfo-6.12.0-160000.6.1.s390x.rpm True kernel-default-optional-6.12.0-160000.6.1.s390x.rpm True kernel-default-optional-debuginfo-6.12.0-160000.6.1.s390x.rpm True kselftests-kmp-default-6.12.0-160000.6.1.s390x.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True ocfs2-kmp-default-6.12.0-160000.6.1.s390x.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.6.1.s390x.rpm True kernel-obs-build-6.12.0-160000.6.1.s390x.rpm True kernel-obs-build-debugsource-6.12.0-160000.6.1.s390x.rpm True kernel-obs-qa-6.12.0-160000.6.1.s390x.rpm True kernel-syms-6.12.0-160000.6.1.s390x.rpm True kernel-zfcpdump-6.12.0-160000.6.1.nosrc.rpm True kernel-zfcpdump-6.12.0-160000.6.1.s390x.rpm True kernel-zfcpdump-debuginfo-6.12.0-160000.6.1.s390x.rpm True kernel-zfcpdump-debugsource-6.12.0-160000.6.1.s390x.rpm True cluster-md-kmp-default-6.12.0-160000.6.1.x86_64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True dlm-kmp-default-6.12.0-160000.6.1.x86_64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True gfs2-kmp-default-6.12.0-160000.6.1.x86_64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-default-6.12.0-160000.6.1.x86_64.rpm True kernel-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-default-debugsource-6.12.0-160000.6.1.x86_64.rpm True kernel-default-devel-6.12.0-160000.6.1.x86_64.rpm True kernel-default-devel-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-default-extra-6.12.0-160000.6.1.x86_64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-default-optional-6.12.0-160000.6.1.x86_64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-default-vdso-6.12.0-160000.6.1.x86_64.rpm True kernel-default-vdso-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kselftests-kmp-default-6.12.0-160000.6.1.x86_64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True ocfs2-kmp-default-6.12.0-160000.6.1.x86_64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-devel-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-devel-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-vdso-6.12.0-160000.6.1.x86_64.rpm True kernel-kvmsmall-vdso-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-obs-build-6.12.0-160000.6.1.x86_64.rpm True kernel-obs-build-debugsource-6.12.0-160000.6.1.x86_64.rpm True kernel-obs-qa-6.12.0-160000.6.1.x86_64.rpm True cluster-md-kmp-rt-6.12.0-160000.6.1.x86_64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True dlm-kmp-rt-6.12.0-160000.6.1.x86_64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True gfs2-kmp-rt-6.12.0-160000.6.1.x86_64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-debugsource-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-devel-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-devel-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-extra-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-optional-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-vdso-6.12.0-160000.6.1.x86_64.rpm True kernel-rt-vdso-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kselftests-kmp-rt-6.12.0-160000.6.1.x86_64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True ocfs2-kmp-rt-6.12.0-160000.6.1.x86_64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.6.1.x86_64.rpm True kernel-syms-6.12.0-160000.6.1.x86_64.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.x86_64.rpm True openSUSE-Leap-16.0-51 Recommended update for scanner-databases moderate SUSE SLFO 1.2 This update for scanner-databases fixes the following issues: - database refresh on 2025-10-11 (bsc#1084929) clamav-database-202510111041-160000.2.1.noarch.rpm scanner-databases-202510111041-160000.2.1.src.rpm trivy-database-202510110052-160000.2.1.aarch64.rpm trivy-database-202510110052-160000.2.1.ppc64le.rpm trivy-database-202510110052-160000.2.1.s390x.rpm trivy-database-202510110052-160000.2.1.x86_64.rpm openSUSE-Leap-16.0-52 Security update for lasso critical SUSE SLFO 1.2 This update for lasso fixes the following issues: - CVE-2025-46404: specially crafted SAML response can lead to a denial of service (bsc#1253092). - CVE-2025-46705: specially crafted SAML assertion response can lead to a denial of service (bsc#1253093). - CVE-2025-47151: type confusion vulnerability exists in the lasso_node_impl_init_from_xml functionality can lead to an arbitrary code execution (bsc#1253095). lasso-2.8.2-160000.3.1.src.rpm lasso-debuginfo-2.8.2-160000.3.1.aarch64.rpm lasso-debugsource-2.8.2-160000.3.1.aarch64.rpm liblasso-devel-2.8.2-160000.3.1.aarch64.rpm liblasso3-2.8.2-160000.3.1.aarch64.rpm liblasso3-debuginfo-2.8.2-160000.3.1.aarch64.rpm python3-lasso-2.8.2-160000.3.1.aarch64.rpm python3-lasso-debuginfo-2.8.2-160000.3.1.aarch64.rpm lasso-debuginfo-2.8.2-160000.3.1.ppc64le.rpm lasso-debugsource-2.8.2-160000.3.1.ppc64le.rpm liblasso-devel-2.8.2-160000.3.1.ppc64le.rpm liblasso3-2.8.2-160000.3.1.ppc64le.rpm liblasso3-debuginfo-2.8.2-160000.3.1.ppc64le.rpm python3-lasso-2.8.2-160000.3.1.ppc64le.rpm python3-lasso-debuginfo-2.8.2-160000.3.1.ppc64le.rpm lasso-debuginfo-2.8.2-160000.3.1.s390x.rpm lasso-debugsource-2.8.2-160000.3.1.s390x.rpm liblasso-devel-2.8.2-160000.3.1.s390x.rpm liblasso3-2.8.2-160000.3.1.s390x.rpm liblasso3-debuginfo-2.8.2-160000.3.1.s390x.rpm python3-lasso-2.8.2-160000.3.1.s390x.rpm python3-lasso-debuginfo-2.8.2-160000.3.1.s390x.rpm lasso-debuginfo-2.8.2-160000.3.1.x86_64.rpm lasso-debugsource-2.8.2-160000.3.1.x86_64.rpm liblasso-devel-2.8.2-160000.3.1.x86_64.rpm liblasso3-2.8.2-160000.3.1.x86_64.rpm liblasso3-debuginfo-2.8.2-160000.3.1.x86_64.rpm python3-lasso-2.8.2-160000.3.1.x86_64.rpm python3-lasso-debuginfo-2.8.2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-53 Recommended update for man-pages-posix important SUSE SLFO 1.2 This update for man-pages-posix fixes the following issues: - use %license tag (bsc#1252161) man-pages-posix-2017a-160000.4.1.noarch.rpm man-pages-posix-2017a-160000.4.1.src.rpm openSUSE-Leap-16.0-54 Recommended update for multipath-tools moderate SUSE SLFO 1.2 This update for multipath-tools fixes the following issues: - Fixes from upstream 0.11.3 (bsc#1253260) * Improved the communication with **udev** and **systemd** by triggering uevents when path devices are added to or removed from multipath maps, or when `multipathd reconfigure` is executed after changing blacklist directives in `multipath.conf`. * Failed paths should be checked every `polling_interval`. In certain cases, this wouldn't happen, because the check interval wasn't reset by multipathd. * It could happen that multipathd would accidentally release a SCSI persistent reservation held by another node. * After manually failing some paths and then reinstating them, sometimes the reinstated paths were immediately failed again by multipathd. * Various minor fixes reported by coverity. kpartx-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm kpartx-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm libdmmp-devel-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm libdmmp0_2_0-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm libdmmp0_2_0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm libmpath0-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm libmpath0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm multipath-tools-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm multipath-tools-0.11.3+184+suse.e1501732-160000.1.1.src.rpm multipath-tools-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm multipath-tools-debugsource-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm multipath-tools-devel-0.11.3+184+suse.e1501732-160000.1.1.aarch64.rpm kpartx-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm kpartx-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm libdmmp-devel-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm libdmmp0_2_0-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm libdmmp0_2_0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm libmpath0-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm libmpath0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm multipath-tools-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm multipath-tools-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm multipath-tools-debugsource-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm multipath-tools-devel-0.11.3+184+suse.e1501732-160000.1.1.ppc64le.rpm kpartx-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm kpartx-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm libdmmp-devel-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm libdmmp0_2_0-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm libdmmp0_2_0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm libmpath0-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm libmpath0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm multipath-tools-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm multipath-tools-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm multipath-tools-debugsource-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm multipath-tools-devel-0.11.3+184+suse.e1501732-160000.1.1.s390x.rpm kpartx-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm kpartx-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm libdmmp-devel-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm libdmmp0_2_0-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm libdmmp0_2_0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm libmpath0-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm libmpath0-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm multipath-tools-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm multipath-tools-debuginfo-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm multipath-tools-debugsource-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm multipath-tools-devel-0.11.3+184+suse.e1501732-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-55 Recommended update for osinfo-db moderate SUSE SLFO 1.2 This update for osinfo-db fixes the following issues: - Fix: virt-manager does not detect Leap 16.0 offline ISO (bsc#1252429) - Fix: the definition of Leap 16.0 to match the current names of the Leap 16.0 ISOs and the Volume IDs contained within those ISOs (bsc#1236401) osinfo-db-20250606-160000.3.1.noarch.rpm osinfo-db-20250606-160000.3.1.src.rpm openSUSE-Leap-16.0-56 Security update for mysql-connector-java important SUSE SLFO 1.2 This update for mysql-connector-java fixes the following issues: - Upgrade to Version 9.3.0 - CVE-2025-30706: Fixed Connector/J vulnerability (bsc#1241693) - Updatable ResultSet fails with 'Parameter index out of range'. - Fixed Resultset UPDATE methods not checking validity of ResultSet. - DatabaseMetaData clean up. - Fixed implement missing methods in DatabaseMetaDataUsingInfoSchema. - Fixed procedure execution failing when the parameter name contains escape character. - Fixed allow only Krb5LoginModule in Kerberos authentication. - Fixed EXECUTE on CallableStatement resulting in ArrayIndexOutOfBoundsException. - Mysql connector use an uneffective way to match numericValue. - Fixed parameter index validation not proper in CallableStatement mysql-connector-java-9.3.0-160000.1.1.noarch.rpm mysql-connector-java-9.3.0-160000.1.1.src.rpm openSUSE-Leap-16.0-57 Security update for curl important SUSE SLFO 1.2 This update for curl fixes the following issues: - CVE-2025-9086: Fixed Out of bounds read for cookie path (bsc#1249191) - CVE-2025-11563: Fixed wcurl path traversal with percent-encoded slashes (bsc#1253757) - CVE-2025-10148: Fixed predictable WebSocket mask (bsc#1249348) Other fixes: - tool_operate: fix return code when --retry is used but not triggered (bsc#1249367) curl-8.14.1-160000.3.1.aarch64.rpm curl-8.14.1-160000.3.1.src.rpm curl-debuginfo-8.14.1-160000.3.1.aarch64.rpm curl-debugsource-8.14.1-160000.3.1.aarch64.rpm curl-fish-completion-8.14.1-160000.3.1.noarch.rpm curl-zsh-completion-8.14.1-160000.3.1.noarch.rpm libcurl-devel-8.14.1-160000.3.1.aarch64.rpm libcurl-devel-doc-8.14.1-160000.3.1.noarch.rpm libcurl4-8.14.1-160000.3.1.aarch64.rpm libcurl4-debuginfo-8.14.1-160000.3.1.aarch64.rpm curl-8.14.1-160000.3.1.ppc64le.rpm curl-debuginfo-8.14.1-160000.3.1.ppc64le.rpm curl-debugsource-8.14.1-160000.3.1.ppc64le.rpm libcurl-devel-8.14.1-160000.3.1.ppc64le.rpm libcurl4-8.14.1-160000.3.1.ppc64le.rpm libcurl4-debuginfo-8.14.1-160000.3.1.ppc64le.rpm curl-8.14.1-160000.3.1.s390x.rpm curl-debuginfo-8.14.1-160000.3.1.s390x.rpm curl-debugsource-8.14.1-160000.3.1.s390x.rpm libcurl-devel-8.14.1-160000.3.1.s390x.rpm libcurl4-8.14.1-160000.3.1.s390x.rpm libcurl4-debuginfo-8.14.1-160000.3.1.s390x.rpm curl-8.14.1-160000.3.1.x86_64.rpm curl-debuginfo-8.14.1-160000.3.1.x86_64.rpm curl-debugsource-8.14.1-160000.3.1.x86_64.rpm libcurl-devel-8.14.1-160000.3.1.x86_64.rpm libcurl4-8.14.1-160000.3.1.x86_64.rpm libcurl4-debuginfo-8.14.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-58 Security update for the Linux Kernel important SUSE SLFO 1.2 The SUSE Linux Enterprise 16.0 kernel was updated to fix various security issues The following security issues were fixed: - CVE-2025-21816: hrtimers: Force migrate away hrtimers queued after (bsc#1238472). - CVE-2025-38653: proc: use the same treatment to check proc_lseek as ones for proc_read_iter et.al (bsc#1248630). - CVE-2025-38718: sctp: linearize cloned gso packets in sctp_rcv (bsc#1249161). - CVE-2025-39676: scsi: qla4xxx: Prevent a potential error pointer dereference (bsc#1249302). - CVE-2025-39702: ipv6: sr: Fix MAC comparison to be constant-time (bsc#1249317). - CVE-2025-39756: fs: Prevent file descriptor table allocations exceeding INT_MAX (bsc#1249512). - CVE-2025-39779: btrfs: subpage: keep TOWRITE tag until folio is cleaned (bsc#1249495). - CVE-2025-39812: sctp: initialize more fields in sctp_v6_from_sk() (bsc#1250202). - CVE-2025-39866: fs: writeback: fix use-after-free in __mark_inode_dirty() (bsc#1250455). - CVE-2025-39876: net: fec: Fix possible NPD in fec_enet_phy_reset_after_clk_enable() (bsc#1250400). - CVE-2025-39881: kernfs: Fix UAF in polling when open file is released (bsc#1250379). - CVE-2025-39895: sched: Fix sched_numa_find_nth_cpu() if mask offline (bsc#1250721). - CVE-2025-39903: of_numa: fix uninitialized memory nodes causing kernel panic (bsc#1250749). - CVE-2025-39911: i40e: fix IRQ freeing in i40e_vsi_request_irq_msix error path (bsc#1250704). - CVE-2025-39947: net/mlx5e: Harden uplink netdev access against device unbind (bsc#1251232). - CVE-2025-39948: ice: fix Rx page leak on multi-buffer frames (bsc#1251233). - CVE-2025-39949: qed: Don't collect too many protection override GRC elements (bsc#1251177). - CVE-2025-39950: net/tcp: Fix a NULL pointer dereference when using TCP-AO with TCP_REPAIR (bsc#1251176). - CVE-2025-39955: tcp: Clear tcp_sk(sk)->fastopen_rsk in tcp_disconnect() (bsc#1251804). - CVE-2025-39956: igc: don't fail igc_probe() on LED setup error (bsc#1251809). - CVE-2025-39963: io_uring: fix incorrect io_kiocb reference in io_link_skb (bsc#1251819). - CVE-2025-39968: i40e: add max boundary check for VF filters (bsc#1252047). - CVE-2025-39969: i40e: fix validation of VF state in get resources (bsc#1252044). - CVE-2025-39970: i40e: fix input validation logic for action_meta (bsc#1252051). - CVE-2025-39971: i40e: fix idx validation in config queues msg (bsc#1252052). - CVE-2025-39972: i40e: fix idx validation in i40e_validate_queue_map (bsc#1252039). - CVE-2025-39973: i40e: add validation for ring_len param (bsc#1252035). - CVE-2025-39978: octeontx2-pf: Fix potential use after free in otx2_tc_add_flow() (bsc#1252069). - CVE-2025-39979: net/mlx5: fs, add API for sharing HWS action by refcount (bsc#1252067). - CVE-2025-39984: net: tun: Update napi->skb after XDP process (bsc#1252081). - CVE-2025-39992: mm: swap: check for stable address space before operating on the VMA (bsc#1252076). - CVE-2025-40000: wifi: rtw89: fix use-after-free in rtw89_core_tx_kick_off_and_wait() (bsc#1252062). - CVE-2025-40005: spi: cadence-quadspi: Implement refcount to handle unbind during busy (bsc#1252349). - CVE-2025-40012: net/smc: fix warning in smc_rx_splice() when calling get_page() (bsc#1252330). - CVE-2025-40018: ipvs: Defer ip_vs_ftp unregister during netns cleanup (bsc#1252688). - CVE-2025-40040: mm/ksm: fix flag-dropping behavior in ksm_madvise (bsc#1252780). - CVE-2025-40051: vhost: vringh: Modify the return value check (bsc#1252858). - CVE-2025-40056: vhost: vringh: Fix copy_to_iter return value check (bsc#1252826). - CVE-2025-40060: coresight: trbe: Return NULL pointer for allocation failures (bsc#1252848). - CVE-2025-40078: bpf: Explicitly check accesses to bpf_sock_addr (bsc#1252789). - CVE-2025-40080: nbd: restrict sockets to TCP and UDP (bsc#1252774). - CVE-2025-40100: btrfs: do not assert we found block group item when creating free space tree (bsc#1252918). The following non security issues were fixed: - add bug reference to existing hv_netvsc change (bsc#1252265) - amd-pstate-ut: Reset amd-pstate driver mode after running selftests (bsc#1249226). - cgroup/cpuset: Remove remote_partition_check() & make update_cpumasks_hier() handle remote partition (bsc#1241166). - cpuset: Use new excpus for nocpu error check when enabling root partition (bsc#1241166). - cpuset: fix failure to enable isolated partition when containing isolcpus (bsc#1241166). - doc/README.SUSE: Correct the character used for TAINT_NO_SUPPORT The character was previously 'N', but upstream used it for TAINT_TEST, which prompted the change of TAINT_NO_SUPPORT to 'n'. - dpll: zl3073x: Add firmware loading functionality (bsc#1252253). - dpll: zl3073x: Add functions to access hardware registers (bsc#1252253). - dpll: zl3073x: Add low-level flash functions (bsc#1252253). - dpll: zl3073x: Add support to get fractional frequency offset (bsc#1252253). - dpll: zl3073x: Add support to get phase offset on connected input pin (bsc#1252253). - dpll: zl3073x: Add support to get/set esync on pins (bsc#1252253). - dpll: zl3073x: Fix double free in zl3073x_devlink_flash_update() (bsc#1252253). - dpll: zl3073x: Handle missing or corrupted flash configuration (bsc#1252253). - dpll: zl3073x: Implement devlink flash callback (bsc#1252253). - dpll: zl3073x: Increase maximum size of flash utility (bsc#1252253). - dpll: zl3073x: Refactor DPLL initialization (bsc#1252253). - drm/amd/pm: fix smu table id bound check issue in smu_cmn_update_table() (git-fixes). - drm/xe/guc: Prepare GuC register list and update ADS size for error capture (stable-fixes). - ixgbe: handle IXGBE_VF_FEATURES_NEGOTIATE mbox cmd (bsc#1247222). - ixgbe: handle IXGBE_VF_GET_PF_LINK_STATE mailbox operation (bsc#1247222). - ixgbevf: fix getting link speed data for E610 devices (bsc#1247222). - ixgbevf: fix mailbox API compatibility by negotiating supported features (bsc#1247222). - kbuild/modfinal: Link livepatches with module-common.o (bsc#1218644, bsc#1252270). - kdb: Replace deprecated strcpy() with memmove() in vkdb_printf() (bsc#1252939). - kernel-subpackage-spec: Do not doubly-sign modules (bsc#1251930). - nvme-auth: update sc_c in host response (git-fixes bsc#1249397). - perf hwmon_pmu: Fix uninitialized variable warning (perf-sle16-v6.13-userspace-update, git-fixes). - phy: cadence: cdns-dphy: Update calibration wait time for startup state machine (git-fixes). - powerpc/fadump: skip parameter area allocation when fadump is disabled (jsc#PED-9891 git-fixes). - proc: fix missing pde_set_flags() for net proc files (bsc#1248630) - proc: fix type confusion in pde_set_flags() (bsc#1248630) - rpm/check-for-config-changes: ignore CONFIG_SCHED_PROXY_EXEC, too (bsc#1250946) - scsi: storvsc: Prefer returning channel with the same CPU as on the I/O issuing CPU (bsc#1252267). - x86/microcode/AMD: Limit Entrysign signature checking to known generations (bsc#1252725). - x86/resctrl: Fix miscount of bandwidth event when reactivating previously unavailable RMID (bsc#1252734). - x86/resctrl: Refactor resctrl_arch_rmid_read() (bsc#1252734). - x86/virt/tdx: Mark memory cache state incoherent when making SEAMCALL (jsc#PED-348). kernel-devel-6.12.0-160000.7.1.noarch.rpm True kernel-macros-6.12.0-160000.7.1.noarch.rpm True kernel-source-6.12.0-160000.7.1.noarch.rpm True kernel-source-6.12.0-160000.7.1.src.rpm True kernel-source-vanilla-6.12.0-160000.7.1.noarch.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.aarch64.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.src.rpm True dtb-aarch64-6.12.0-160000.7.1.nosrc.rpm True dtb-allwinner-6.12.0-160000.7.1.aarch64.rpm True dtb-altera-6.12.0-160000.7.1.aarch64.rpm True dtb-amazon-6.12.0-160000.7.1.aarch64.rpm True dtb-amd-6.12.0-160000.7.1.aarch64.rpm True dtb-amlogic-6.12.0-160000.7.1.aarch64.rpm True dtb-apm-6.12.0-160000.7.1.aarch64.rpm True dtb-apple-6.12.0-160000.7.1.aarch64.rpm True dtb-arm-6.12.0-160000.7.1.aarch64.rpm True dtb-broadcom-6.12.0-160000.7.1.aarch64.rpm True dtb-cavium-6.12.0-160000.7.1.aarch64.rpm True dtb-exynos-6.12.0-160000.7.1.aarch64.rpm True dtb-freescale-6.12.0-160000.7.1.aarch64.rpm True dtb-hisilicon-6.12.0-160000.7.1.aarch64.rpm True dtb-lg-6.12.0-160000.7.1.aarch64.rpm True dtb-marvell-6.12.0-160000.7.1.aarch64.rpm True dtb-mediatek-6.12.0-160000.7.1.aarch64.rpm True dtb-nvidia-6.12.0-160000.7.1.aarch64.rpm True dtb-qcom-6.12.0-160000.7.1.aarch64.rpm True dtb-renesas-6.12.0-160000.7.1.aarch64.rpm True dtb-rockchip-6.12.0-160000.7.1.aarch64.rpm True dtb-socionext-6.12.0-160000.7.1.aarch64.rpm True dtb-sprd-6.12.0-160000.7.1.aarch64.rpm True dtb-xilinx-6.12.0-160000.7.1.aarch64.rpm True cluster-md-kmp-64kb-6.12.0-160000.7.1.aarch64.rpm True cluster-md-kmp-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-64kb-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-64kb-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-6.12.0-160000.7.1.nosrc.rpm True kernel-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-debugsource-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-devel-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-extra-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-extra-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-optional-6.12.0-160000.7.1.aarch64.rpm True kernel-64kb-optional-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-64kb-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-64kb-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-64kb-debuginfo-6.12.0-160000.7.1.aarch64.rpm True cluster-md-kmp-default-6.12.0-160000.7.1.aarch64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-default-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-default-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-default-6.12.0-160000.7.1.aarch64.rpm True kernel-default-6.12.0-160000.7.1.nosrc.rpm True kernel-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-default-debugsource-6.12.0-160000.7.1.aarch64.rpm True kernel-default-devel-6.12.0-160000.7.1.aarch64.rpm True kernel-default-extra-6.12.0-160000.7.1.aarch64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-default-optional-6.12.0-160000.7.1.aarch64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-default-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-default-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-docs-6.12.0-160000.7.1.noarch.rpm True kernel-docs-6.12.0-160000.7.1.nosrc.rpm True kernel-docs-html-6.12.0-160000.7.1.noarch.rpm True kernel-kvmsmall-6.12.0-160000.7.1.aarch64.rpm True kernel-kvmsmall-6.12.0-160000.7.1.nosrc.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.7.1.aarch64.rpm True kernel-kvmsmall-devel-6.12.0-160000.7.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.7.1.aarch64.rpm True kernel-obs-build-6.12.0-160000.7.1.src.rpm True kernel-obs-build-debugsource-6.12.0-160000.7.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.7.1.aarch64.rpm True kernel-obs-qa-6.12.0-160000.7.1.src.rpm True cluster-md-kmp-rt-6.12.0-160000.7.1.aarch64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-rt-6.12.0-160000.7.1.aarch64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-rt-6.12.0-160000.7.1.aarch64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-6.12.0-160000.7.1.nosrc.rpm True kernel-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-debugsource-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-devel-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-extra-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-optional-6.12.0-160000.7.1.aarch64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-rt-6.12.0-160000.7.1.aarch64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-rt-6.12.0-160000.7.1.aarch64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.7.1.aarch64.rpm True kernel-syms-6.12.0-160000.7.1.aarch64.rpm True kernel-syms-6.12.0-160000.7.1.src.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.7.1.ppc64le.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True dlm-kmp-default-6.12.0-160000.7.1.ppc64le.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True gfs2-kmp-default-6.12.0-160000.7.1.ppc64le.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-debugsource-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-devel-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-extra-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-extra-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-optional-6.12.0-160000.7.1.ppc64le.rpm True kernel-default-optional-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kselftests-kmp-default-6.12.0-160000.7.1.ppc64le.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True ocfs2-kmp-default-6.12.0-160000.7.1.ppc64le.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kernel-kvmsmall-6.12.0-160000.7.1.ppc64le.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.7.1.ppc64le.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.7.1.ppc64le.rpm True kernel-kvmsmall-devel-6.12.0-160000.7.1.ppc64le.rpm True kernel-obs-build-6.12.0-160000.7.1.ppc64le.rpm True kernel-obs-build-debugsource-6.12.0-160000.7.1.ppc64le.rpm True kernel-obs-qa-6.12.0-160000.7.1.ppc64le.rpm True kernel-syms-6.12.0-160000.7.1.ppc64le.rpm True cluster-md-kmp-default-6.12.0-160000.7.1.s390x.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True dlm-kmp-default-6.12.0-160000.7.1.s390x.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True gfs2-kmp-default-6.12.0-160000.7.1.s390x.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True kernel-default-6.12.0-160000.7.1.s390x.rpm True kernel-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True kernel-default-debugsource-6.12.0-160000.7.1.s390x.rpm True kernel-default-devel-6.12.0-160000.7.1.s390x.rpm True kernel-default-extra-6.12.0-160000.7.1.s390x.rpm True kernel-default-extra-debuginfo-6.12.0-160000.7.1.s390x.rpm True kernel-default-optional-6.12.0-160000.7.1.s390x.rpm True kernel-default-optional-debuginfo-6.12.0-160000.7.1.s390x.rpm True kselftests-kmp-default-6.12.0-160000.7.1.s390x.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True ocfs2-kmp-default-6.12.0-160000.7.1.s390x.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.7.1.s390x.rpm True kernel-obs-build-6.12.0-160000.7.1.s390x.rpm True kernel-obs-build-debugsource-6.12.0-160000.7.1.s390x.rpm True kernel-obs-qa-6.12.0-160000.7.1.s390x.rpm True kernel-syms-6.12.0-160000.7.1.s390x.rpm True kernel-zfcpdump-6.12.0-160000.7.1.nosrc.rpm True kernel-zfcpdump-6.12.0-160000.7.1.s390x.rpm True kernel-zfcpdump-debuginfo-6.12.0-160000.7.1.s390x.rpm True kernel-zfcpdump-debugsource-6.12.0-160000.7.1.s390x.rpm True kernel-default-base-6.12.0-160000.6.1.160000.2.4.x86_64.rpm True cluster-md-kmp-default-6.12.0-160000.7.1.x86_64.rpm True cluster-md-kmp-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True dlm-kmp-default-6.12.0-160000.7.1.x86_64.rpm True dlm-kmp-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True gfs2-kmp-default-6.12.0-160000.7.1.x86_64.rpm True gfs2-kmp-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-default-6.12.0-160000.7.1.x86_64.rpm True kernel-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-default-debugsource-6.12.0-160000.7.1.x86_64.rpm True kernel-default-devel-6.12.0-160000.7.1.x86_64.rpm True kernel-default-devel-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-default-extra-6.12.0-160000.7.1.x86_64.rpm True kernel-default-extra-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-default-optional-6.12.0-160000.7.1.x86_64.rpm True kernel-default-optional-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-default-vdso-6.12.0-160000.7.1.x86_64.rpm True kernel-default-vdso-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kselftests-kmp-default-6.12.0-160000.7.1.x86_64.rpm True kselftests-kmp-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True ocfs2-kmp-default-6.12.0-160000.7.1.x86_64.rpm True ocfs2-kmp-default-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-debugsource-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-devel-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-devel-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-vdso-6.12.0-160000.7.1.x86_64.rpm True kernel-kvmsmall-vdso-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-obs-build-6.12.0-160000.7.1.x86_64.rpm True kernel-obs-build-debugsource-6.12.0-160000.7.1.x86_64.rpm True kernel-obs-qa-6.12.0-160000.7.1.x86_64.rpm True cluster-md-kmp-rt-6.12.0-160000.7.1.x86_64.rpm True cluster-md-kmp-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True dlm-kmp-rt-6.12.0-160000.7.1.x86_64.rpm True dlm-kmp-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True gfs2-kmp-rt-6.12.0-160000.7.1.x86_64.rpm True gfs2-kmp-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-debugsource-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-devel-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-devel-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-extra-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-extra-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-optional-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-optional-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-vdso-6.12.0-160000.7.1.x86_64.rpm True kernel-rt-vdso-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kselftests-kmp-rt-6.12.0-160000.7.1.x86_64.rpm True kselftests-kmp-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True ocfs2-kmp-rt-6.12.0-160000.7.1.x86_64.rpm True ocfs2-kmp-rt-debuginfo-6.12.0-160000.7.1.x86_64.rpm True kernel-syms-6.12.0-160000.7.1.x86_64.rpm True openSUSE-Leap-16.0-59 Recommended update for the initial kernel livepatch important SUSE SLFO 1.2 This update contains initial livepatches for the SUSE Linux Enterprise Server 16.0 and SUSE Linux Micro 6.2 kernel update. kernel-livepatch-6_12_0-160000_7-default-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_7-default-debuginfo-1-160000.1.1.ppc64le.rpm True kernel-livepatch-SLE16_Update_2-1-160000.1.1.src.rpm True kernel-livepatch-SLE16_Update_2-debugsource-1-160000.1.1.ppc64le.rpm True kernel-livepatch-6_12_0-160000_7-default-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_7-default-debuginfo-1-160000.1.1.s390x.rpm True kernel-livepatch-SLE16_Update_2-debugsource-1-160000.1.1.s390x.rpm True kernel-livepatch-6_12_0-160000_7-default-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_7-default-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16_Update_2-debugsource-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_7-rt-1-160000.1.1.x86_64.rpm True kernel-livepatch-6_12_0-160000_7-rt-debuginfo-1-160000.1.1.x86_64.rpm True kernel-livepatch-SLE16-RT_Update_2-1-160000.1.1.src.rpm True kernel-livepatch-SLE16-RT_Update_2-debugsource-1-160000.1.1.x86_64.rpm True openSUSE-Leap-16.0-60 Recommended update for cyrus-sasl moderate SUSE SLFO 1.2 This update for cyrus-sasl fixes the following issues: - Fixed Python3 error log upon importing pycurl (bsc#1233529) cyrus-sasl-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-2.1.28-160000.3.1.src.rpm cyrus-sasl-crammd5-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-crammd5-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-debugsource-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-devel-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-digestmd5-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-digestmd5-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-gs2-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-gs2-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-gssapi-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-gssapi-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ntlm-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ntlm-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-otp-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-otp-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-plain-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-plain-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-scram-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-scram-debuginfo-2.1.28-160000.3.1.aarch64.rpm libsasl2-3-2.1.28-160000.3.1.aarch64.rpm libsasl2-3-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-2.1.28-160000.3.1.src.rpm cyrus-sasl-bdb-crammd5-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-crammd5-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-debugsource-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-devel-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-digestmd5-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-digestmd5-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-gs2-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-gs2-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-gssapi-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-gssapi-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-ntlm-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-ntlm-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-otp-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-otp-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-plain-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-plain-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-scram-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-bdb-scram-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ldap-auxprop-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ldap-auxprop-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-2.1.28-160000.3.1.src.rpm cyrus-sasl-saslauthd-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-debugsource-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-sqlauxprop-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-sqlauxprop-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ldap-auxprop-bdb-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-ldap-auxprop-bdb-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-bdb-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-bdb-2.1.28-160000.3.1.src.rpm cyrus-sasl-saslauthd-bdb-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-saslauthd-bdb-debugsource-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-sqlauxprop-bdb-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-sqlauxprop-bdb-debuginfo-2.1.28-160000.3.1.aarch64.rpm cyrus-sasl-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-crammd5-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-crammd5-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-debugsource-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-devel-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-digestmd5-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-digestmd5-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-gs2-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-gs2-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-gssapi-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-gssapi-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ntlm-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ntlm-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-otp-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-otp-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-plain-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-plain-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-scram-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-scram-debuginfo-2.1.28-160000.3.1.ppc64le.rpm libsasl2-3-2.1.28-160000.3.1.ppc64le.rpm libsasl2-3-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-crammd5-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-crammd5-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-debugsource-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-devel-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-digestmd5-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-digestmd5-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-gs2-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-gs2-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-gssapi-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-gssapi-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-ntlm-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-ntlm-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-otp-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-otp-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-plain-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-plain-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-scram-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-bdb-scram-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ldap-auxprop-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ldap-auxprop-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-debugsource-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-sqlauxprop-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-sqlauxprop-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ldap-auxprop-bdb-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-ldap-auxprop-bdb-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-bdb-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-bdb-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-saslauthd-bdb-debugsource-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-sqlauxprop-bdb-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-sqlauxprop-bdb-debuginfo-2.1.28-160000.3.1.ppc64le.rpm cyrus-sasl-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-crammd5-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-crammd5-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-debugsource-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-devel-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-digestmd5-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-digestmd5-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-gs2-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-gs2-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-gssapi-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-gssapi-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ntlm-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ntlm-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-otp-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-otp-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-plain-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-plain-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-scram-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-scram-debuginfo-2.1.28-160000.3.1.s390x.rpm libsasl2-3-2.1.28-160000.3.1.s390x.rpm libsasl2-3-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-crammd5-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-crammd5-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-debugsource-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-devel-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-digestmd5-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-digestmd5-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-gs2-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-gs2-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-gssapi-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-gssapi-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-ntlm-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-ntlm-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-otp-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-otp-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-plain-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-plain-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-scram-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-bdb-scram-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ldap-auxprop-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ldap-auxprop-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-debugsource-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-sqlauxprop-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-sqlauxprop-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ldap-auxprop-bdb-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-ldap-auxprop-bdb-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-bdb-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-bdb-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-saslauthd-bdb-debugsource-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-sqlauxprop-bdb-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-sqlauxprop-bdb-debuginfo-2.1.28-160000.3.1.s390x.rpm cyrus-sasl-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-crammd5-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-crammd5-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-debugsource-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-devel-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-digestmd5-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-digestmd5-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-gs2-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-gs2-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-gssapi-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-gssapi-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ntlm-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ntlm-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-otp-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-otp-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-plain-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-plain-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-scram-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-scram-debuginfo-2.1.28-160000.3.1.x86_64.rpm libsasl2-3-2.1.28-160000.3.1.x86_64.rpm libsasl2-3-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-crammd5-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-crammd5-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-debugsource-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-devel-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-digestmd5-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-digestmd5-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-gs2-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-gs2-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-gssapi-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-gssapi-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-ntlm-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-ntlm-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-otp-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-otp-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-plain-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-plain-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-scram-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-bdb-scram-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ldap-auxprop-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ldap-auxprop-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-debugsource-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-sqlauxprop-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-sqlauxprop-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ldap-auxprop-bdb-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-ldap-auxprop-bdb-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-bdb-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-bdb-debuginfo-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-saslauthd-bdb-debugsource-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-sqlauxprop-bdb-2.1.28-160000.3.1.x86_64.rpm cyrus-sasl-sqlauxprop-bdb-debuginfo-2.1.28-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-61 Recommended update for libHBAAPI2 important SUSE SLFO 1.2 This update for libHBAAPI2 fixes the following issues: - use %license tag for COPYING (bsc#1252158) libHBAAPI2-2.2.10-160000.3.1.aarch64.rpm libHBAAPI2-2.2.10-160000.3.1.src.rpm libHBAAPI2-debuginfo-2.2.10-160000.3.1.aarch64.rpm libHBAAPI2-debugsource-2.2.10-160000.3.1.aarch64.rpm libHBAAPI2-devel-2.2.10-160000.3.1.aarch64.rpm libHBAAPI2-2.2.10-160000.3.1.ppc64le.rpm libHBAAPI2-debuginfo-2.2.10-160000.3.1.ppc64le.rpm libHBAAPI2-debugsource-2.2.10-160000.3.1.ppc64le.rpm libHBAAPI2-devel-2.2.10-160000.3.1.ppc64le.rpm libHBAAPI2-2.2.10-160000.3.1.s390x.rpm libHBAAPI2-debuginfo-2.2.10-160000.3.1.s390x.rpm libHBAAPI2-debugsource-2.2.10-160000.3.1.s390x.rpm libHBAAPI2-devel-2.2.10-160000.3.1.s390x.rpm libHBAAPI2-2.2.10-160000.3.1.x86_64.rpm libHBAAPI2-debuginfo-2.2.10-160000.3.1.x86_64.rpm libHBAAPI2-debugsource-2.2.10-160000.3.1.x86_64.rpm libHBAAPI2-devel-2.2.10-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-62 Recommended update for the Linux Kernel RT (Live Patch 1 for SUSE Linux Enterprise 16) important SUSE SLFO 1.2 This update for the SUSE Linux Enterprise kernel 6.12.0-160000.6.1 fixes one issue The following non security issue was fixed: - Explicitly add module-common.c with vermagic and retpoline modinfo (bsc#1252270) kernel-livepatch-6_12_0-160000_6-rt-2-160000.1.1.x86_64.rpm kernel-livepatch-6_12_0-160000_6-rt-debuginfo-2-160000.1.1.x86_64.rpm kernel-livepatch-SLE16-RT_Update_1-2-160000.1.1.src.rpm kernel-livepatch-SLE16-RT_Update_1-debugsource-2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-63 Recommended update for python-PyQt6, python-PyQt6-sip, python-sip6 moderate SUSE SLFO 1.2 This update for python-PyQt6, python-PyQt6-sip, python-sip6 fixes the following issues: Changes in python-PyQt6: - Update to 6.9.1 * The licensing information now conforms to PEP 639. * Enums that have a base type smaller than int are now properly specified and handled. * Fixed a regression that broke building against versions of Qt older than v6.5. * Fixed pyuic6 to handle QIcons created from QIcon.ThemeIcon. Changes in python-PyQt6-sip: - Update to 13.10.2 * Match python3-sip6-devel 6.11.1 * Changes WRT PEP 639. See python-sip6 Changes in python-sip6: - Update to 6.12.0 - Convert to libalternatives on SLE-16-based and newer systems python-PyQt6-6.9.1-160000.1.1.src.rpm python-PyQt6-debuginfo-6.9.1-160000.1.1.aarch64.rpm python-PyQt6-debugsource-6.9.1-160000.1.1.aarch64.rpm python313-PyQt6-6.9.1-160000.1.1.aarch64.rpm python313-PyQt6-debuginfo-6.9.1-160000.1.1.aarch64.rpm python313-PyQt6-devel-6.9.1-160000.1.1.aarch64.rpm python313-PyQt6-devel-debuginfo-6.9.1-160000.1.1.aarch64.rpm python313-PyQt6-doc-6.9.1-160000.1.1.noarch.rpm python-PyQt6-sip-13.10.2-160000.1.1.src.rpm python-PyQt6-sip-debugsource-13.10.2-160000.1.1.aarch64.rpm python313-PyQt6-sip-13.10.2-160000.1.1.aarch64.rpm python313-PyQt6-sip-debuginfo-13.10.2-160000.1.1.aarch64.rpm python-sip6-6.12.0-160000.1.1.src.rpm python313-sip6-devel-6.12.0-160000.1.1.noarch.rpm python-PyQt6-debuginfo-6.9.1-160000.1.1.ppc64le.rpm python-PyQt6-debugsource-6.9.1-160000.1.1.ppc64le.rpm python313-PyQt6-6.9.1-160000.1.1.ppc64le.rpm python313-PyQt6-debuginfo-6.9.1-160000.1.1.ppc64le.rpm python313-PyQt6-devel-6.9.1-160000.1.1.ppc64le.rpm python313-PyQt6-devel-debuginfo-6.9.1-160000.1.1.ppc64le.rpm python-PyQt6-sip-debugsource-13.10.2-160000.1.1.ppc64le.rpm python313-PyQt6-sip-13.10.2-160000.1.1.ppc64le.rpm python313-PyQt6-sip-debuginfo-13.10.2-160000.1.1.ppc64le.rpm python-PyQt6-debuginfo-6.9.1-160000.1.1.s390x.rpm python-PyQt6-debugsource-6.9.1-160000.1.1.s390x.rpm python313-PyQt6-6.9.1-160000.1.1.s390x.rpm python313-PyQt6-debuginfo-6.9.1-160000.1.1.s390x.rpm python313-PyQt6-devel-6.9.1-160000.1.1.s390x.rpm python313-PyQt6-devel-debuginfo-6.9.1-160000.1.1.s390x.rpm python-PyQt6-sip-debugsource-13.10.2-160000.1.1.s390x.rpm python313-PyQt6-sip-13.10.2-160000.1.1.s390x.rpm python313-PyQt6-sip-debuginfo-13.10.2-160000.1.1.s390x.rpm python-PyQt6-debuginfo-6.9.1-160000.1.1.x86_64.rpm python-PyQt6-debugsource-6.9.1-160000.1.1.x86_64.rpm python313-PyQt6-6.9.1-160000.1.1.x86_64.rpm python313-PyQt6-debuginfo-6.9.1-160000.1.1.x86_64.rpm python313-PyQt6-devel-6.9.1-160000.1.1.x86_64.rpm python313-PyQt6-devel-debuginfo-6.9.1-160000.1.1.x86_64.rpm python-PyQt6-sip-debugsource-13.10.2-160000.1.1.x86_64.rpm python313-PyQt6-sip-13.10.2-160000.1.1.x86_64.rpm python313-PyQt6-sip-debuginfo-13.10.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-64 Recommended update for saptune moderate SUSE SLFO 1.2 This update for saptune fixes the following issues: - Version update 3.2.1 - Restoring CPU performance settings on AWS and Google Cloud - Parameters force_latency and governor set up correctly (bsc#1250217). saptune-3.2.1-160000.1.1.ppc64le.rpm saptune-3.2.1-160000.1.1.src.rpm saptune-debuginfo-3.2.1-160000.1.1.ppc64le.rpm saptune-3.2.1-160000.1.1.x86_64.rpm saptune-debuginfo-3.2.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-65 Security update for xwayland important SUSE SLFO 1.2 This update for xwayland fixes the following issues: - CVE-2025-62229: Fixed use-after-free in XPresentNotify structures creation (bsc#1251958). - CVE-2025-62230: Fixed use-after-free in Xkb client resource removal (bsc#1251959). - CVE-2025-62231: Fixed value overflow in Xkb extension XkbSetCompatMap() (bsc#1251960). xwayland-24.1.6-160000.3.1.aarch64.rpm xwayland-24.1.6-160000.3.1.src.rpm xwayland-debuginfo-24.1.6-160000.3.1.aarch64.rpm xwayland-debugsource-24.1.6-160000.3.1.aarch64.rpm xwayland-devel-24.1.6-160000.3.1.aarch64.rpm xwayland-24.1.6-160000.3.1.ppc64le.rpm xwayland-debuginfo-24.1.6-160000.3.1.ppc64le.rpm xwayland-debugsource-24.1.6-160000.3.1.ppc64le.rpm xwayland-devel-24.1.6-160000.3.1.ppc64le.rpm xwayland-24.1.6-160000.3.1.s390x.rpm xwayland-debuginfo-24.1.6-160000.3.1.s390x.rpm xwayland-debugsource-24.1.6-160000.3.1.s390x.rpm xwayland-devel-24.1.6-160000.3.1.s390x.rpm xwayland-24.1.6-160000.3.1.x86_64.rpm xwayland-debuginfo-24.1.6-160000.3.1.x86_64.rpm xwayland-debugsource-24.1.6-160000.3.1.x86_64.rpm xwayland-devel-24.1.6-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-66 Security update for libvirt moderate SUSE SLFO 1.2 This update for libvirt fixes the following issues: - CVE-2025-13193: Fixed Information disclosure via world-readable VM snapshots (bsc#1253703) - CVE-2025-12748: Fixed Denial of service in XML parsing (bsc#1253278) Other fixes: - spec: Adjust dbus dependency (bsc#1253642) - qemu: Add support for Intel TDX (jsc#PED-9265) libvirt-11.4.0-160000.3.1.aarch64.rpm libvirt-11.4.0-160000.3.1.src.rpm libvirt-client-11.4.0-160000.3.1.aarch64.rpm libvirt-client-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-client-qemu-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-common-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-common-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-config-network-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-config-nwfilter-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-network-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-network-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-nodedev-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-nodedev-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-nwfilter-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-nwfilter-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-qemu-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-qemu-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-secret-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-secret-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-core-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-core-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-disk-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-disk-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-iscsi-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-iscsi-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-iscsi-direct-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-iscsi-direct-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-logical-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-logical-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-mpath-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-mpath-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-scsi-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-driver-storage-scsi-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-hooks-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-lock-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-lock-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-log-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-log-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-plugin-lockd-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-plugin-lockd-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-proxy-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-proxy-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-daemon-qemu-11.4.0-160000.3.1.aarch64.rpm libvirt-debugsource-11.4.0-160000.3.1.aarch64.rpm libvirt-devel-11.4.0-160000.3.1.aarch64.rpm libvirt-doc-11.4.0-160000.3.1.noarch.rpm libvirt-libs-11.4.0-160000.3.1.aarch64.rpm libvirt-libs-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-nss-11.4.0-160000.3.1.aarch64.rpm libvirt-nss-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-ssh-proxy-11.4.0-160000.3.1.aarch64.rpm libvirt-ssh-proxy-debuginfo-11.4.0-160000.3.1.aarch64.rpm wireshark-plugin-libvirt-11.4.0-160000.3.1.aarch64.rpm wireshark-plugin-libvirt-debuginfo-11.4.0-160000.3.1.aarch64.rpm libvirt-11.4.0-160000.3.1.ppc64le.rpm libvirt-client-11.4.0-160000.3.1.ppc64le.rpm libvirt-client-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-client-qemu-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-common-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-common-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-config-network-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-config-nwfilter-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-network-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-network-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-nodedev-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-nodedev-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-nwfilter-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-nwfilter-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-qemu-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-qemu-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-secret-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-secret-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-core-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-core-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-disk-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-disk-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-iscsi-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-iscsi-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-iscsi-direct-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-iscsi-direct-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-logical-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-logical-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-mpath-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-mpath-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-scsi-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-driver-storage-scsi-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-hooks-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-lock-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-lock-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-log-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-log-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-plugin-lockd-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-plugin-lockd-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-proxy-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-proxy-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-daemon-qemu-11.4.0-160000.3.1.ppc64le.rpm libvirt-debugsource-11.4.0-160000.3.1.ppc64le.rpm libvirt-devel-11.4.0-160000.3.1.ppc64le.rpm libvirt-libs-11.4.0-160000.3.1.ppc64le.rpm libvirt-libs-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-nss-11.4.0-160000.3.1.ppc64le.rpm libvirt-nss-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-ssh-proxy-11.4.0-160000.3.1.ppc64le.rpm libvirt-ssh-proxy-debuginfo-11.4.0-160000.3.1.ppc64le.rpm wireshark-plugin-libvirt-11.4.0-160000.3.1.ppc64le.rpm wireshark-plugin-libvirt-debuginfo-11.4.0-160000.3.1.ppc64le.rpm libvirt-11.4.0-160000.3.1.s390x.rpm libvirt-client-11.4.0-160000.3.1.s390x.rpm libvirt-client-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-client-qemu-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-common-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-common-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-config-network-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-config-nwfilter-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-network-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-network-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-nodedev-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-nodedev-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-nwfilter-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-nwfilter-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-qemu-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-qemu-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-secret-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-secret-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-core-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-core-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-disk-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-disk-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-iscsi-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-iscsi-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-iscsi-direct-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-iscsi-direct-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-logical-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-logical-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-mpath-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-mpath-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-scsi-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-driver-storage-scsi-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-hooks-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-lock-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-lock-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-log-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-log-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-plugin-lockd-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-plugin-lockd-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-proxy-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-proxy-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-daemon-qemu-11.4.0-160000.3.1.s390x.rpm libvirt-debugsource-11.4.0-160000.3.1.s390x.rpm libvirt-devel-11.4.0-160000.3.1.s390x.rpm libvirt-libs-11.4.0-160000.3.1.s390x.rpm libvirt-libs-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-nss-11.4.0-160000.3.1.s390x.rpm libvirt-nss-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-ssh-proxy-11.4.0-160000.3.1.s390x.rpm libvirt-ssh-proxy-debuginfo-11.4.0-160000.3.1.s390x.rpm wireshark-plugin-libvirt-11.4.0-160000.3.1.s390x.rpm wireshark-plugin-libvirt-debuginfo-11.4.0-160000.3.1.s390x.rpm libvirt-11.4.0-160000.3.1.x86_64.rpm libvirt-client-11.4.0-160000.3.1.x86_64.rpm libvirt-client-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-client-qemu-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-common-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-common-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-config-network-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-config-nwfilter-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-network-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-network-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-nodedev-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-nodedev-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-nwfilter-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-nwfilter-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-qemu-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-qemu-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-secret-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-secret-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-core-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-core-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-disk-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-disk-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-iscsi-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-iscsi-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-iscsi-direct-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-iscsi-direct-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-logical-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-logical-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-mpath-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-mpath-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-scsi-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-driver-storage-scsi-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-hooks-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-lock-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-lock-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-log-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-log-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-plugin-lockd-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-plugin-lockd-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-proxy-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-proxy-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-daemon-qemu-11.4.0-160000.3.1.x86_64.rpm libvirt-debugsource-11.4.0-160000.3.1.x86_64.rpm libvirt-devel-11.4.0-160000.3.1.x86_64.rpm libvirt-libs-11.4.0-160000.3.1.x86_64.rpm libvirt-libs-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-nss-11.4.0-160000.3.1.x86_64.rpm libvirt-nss-debuginfo-11.4.0-160000.3.1.x86_64.rpm libvirt-ssh-proxy-11.4.0-160000.3.1.x86_64.rpm libvirt-ssh-proxy-debuginfo-11.4.0-160000.3.1.x86_64.rpm wireshark-plugin-libvirt-11.4.0-160000.3.1.x86_64.rpm wireshark-plugin-libvirt-debuginfo-11.4.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-67 Recommended update for read-only-root-fs moderate SUSE SLFO 1.2 This update for read-only-root-fs fixes the following issues: - Add additional check in %post to prevent generating the btrfs /etc subvolume during a KIWI run (bsc#1250133) read-only-root-fs-1.0+git20250708.3eed5de-160000.3.1.noarch.rpm read-only-root-fs-1.0+git20250708.3eed5de-160000.3.1.src.rpm read-only-root-fs-volatile-1.0+git20250708.3eed5de-160000.3.1.noarch.rpm openSUSE-Leap-16.0-68 Recommended update for numatop important SUSE SLFO 1.2 This update for numatop fixes the following issues: - Fix segmentation fault in the latency view (bsc#1248317) - Fix inability to start on processors with more than 256 CPUs per NUMA node (bsc#1247358) - Switch to ncursesw6 numatop-2.5.1-160000.1.1.ppc64le.rpm numatop-2.5.1-160000.1.1.src.rpm numatop-debuginfo-2.5.1-160000.1.1.ppc64le.rpm numatop-debugsource-2.5.1-160000.1.1.ppc64le.rpm numatop-2.5.1-160000.1.1.x86_64.rpm numatop-debuginfo-2.5.1-160000.1.1.x86_64.rpm numatop-debugsource-2.5.1-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-69 Recommended update for SAPHanaSR-angi important SUSE SLFO 1.2 This update for SAPHanaSR-angi fixes the following issues: - Version update: 1.2.12. - saphana_monitor send OCF_NOT_RUNNING for PROBES, when workload is down AND clone-flag is "DEMOTED". This allows crm_mon to show proper status (bsc#1245661). - SAPHanaSR-showAttr is now supporting hostnames containing dashes (bsc#1236893). - Enhance fencing behavior in case of FAST-STOP. Trigger fencing when running into timeouts or getting lss==0; in case of Scale-Out score the nameserver slave higher than a possible secondary takeover candidate to delay it until the current primary is completely down (bsc#1250160). - Basic tool improving for a better support of life and post mortem analysis. - Updated man pages SAPHanaSR-angi-1.2.12-160000.1.1.noarch.rpm SAPHanaSR-angi-1.2.12-160000.1.1.src.rpm openSUSE-Leap-16.0-7 Recommended update for busybox moderate SUSE SLFO 1.2 This update for busybox fixes the following issues: - Fix adduser inside containers on an SELinux host (boo#1247779): - Don't throw debug info away during build, let RPM separate it afterwards - fix mkdir path to point to /usr/bin instead of /bin busybox-1.37.0-160000.3.1.aarch64.rpm busybox-1.37.0-160000.3.1.src.rpm busybox-debuginfo-1.37.0-160000.3.1.aarch64.rpm busybox-debugsource-1.37.0-160000.3.1.aarch64.rpm busybox-static-1.37.0-160000.3.1.aarch64.rpm busybox-static-debuginfo-1.37.0-160000.3.1.aarch64.rpm busybox-warewulf3-1.37.0-160000.3.1.aarch64.rpm busybox-warewulf3-debuginfo-1.37.0-160000.3.1.aarch64.rpm busybox-1.37.0-160000.3.1.ppc64le.rpm busybox-debuginfo-1.37.0-160000.3.1.ppc64le.rpm busybox-debugsource-1.37.0-160000.3.1.ppc64le.rpm busybox-static-1.37.0-160000.3.1.ppc64le.rpm busybox-static-debuginfo-1.37.0-160000.3.1.ppc64le.rpm busybox-1.37.0-160000.3.1.s390x.rpm busybox-debuginfo-1.37.0-160000.3.1.s390x.rpm busybox-debugsource-1.37.0-160000.3.1.s390x.rpm busybox-static-1.37.0-160000.3.1.s390x.rpm busybox-static-debuginfo-1.37.0-160000.3.1.s390x.rpm busybox-1.37.0-160000.3.1.x86_64.rpm busybox-debuginfo-1.37.0-160000.3.1.x86_64.rpm busybox-debugsource-1.37.0-160000.3.1.x86_64.rpm busybox-static-1.37.0-160000.3.1.x86_64.rpm busybox-static-debuginfo-1.37.0-160000.3.1.x86_64.rpm busybox-warewulf3-1.37.0-160000.3.1.x86_64.rpm busybox-warewulf3-debuginfo-1.37.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-70 Recommended update for aws-cli-cmd moderate SUSE SLFO 1.2 This update for aws-cli-cmd fixes the following issues: Changes in aws-cli-cmd: - Update postun scriplet (bsc#1253743) - Do not run the postun scriptlet on upgrade as it will remove the just created command. aws-cli-cmd-1.36.2-160000.1.1.noarch.rpm aws-cli-cmd-1.36.2-160000.1.1.src.rpm openSUSE-Leap-16.0-71 Recommended update for qemu important SUSE SLFO 1.2 This update for qemu fixes the following issues: Changes in qemu: - Update to version 10.0.4 - Support for Intel TDX (jsc#PED-9266) - rpm/spec: qemu-vgabios is required on ppc (bsc#1230042) qemu-10.0.4-160000.1.1.aarch64.rpm qemu-10.0.4-160000.1.1.src.rpm qemu-SLOF-10.0.4-160000.1.1.noarch.rpm qemu-accel-qtest-10.0.4-160000.1.1.aarch64.rpm qemu-accel-qtest-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-arm-10.0.4-160000.1.1.aarch64.rpm qemu-arm-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-alsa-10.0.4-160000.1.1.aarch64.rpm qemu-audio-alsa-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-dbus-10.0.4-160000.1.1.aarch64.rpm qemu-audio-dbus-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-jack-10.0.4-160000.1.1.aarch64.rpm qemu-audio-jack-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-oss-10.0.4-160000.1.1.aarch64.rpm qemu-audio-oss-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-pa-10.0.4-160000.1.1.aarch64.rpm qemu-audio-pa-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-pipewire-10.0.4-160000.1.1.aarch64.rpm qemu-audio-pipewire-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-audio-spice-10.0.4-160000.1.1.aarch64.rpm qemu-audio-spice-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-curl-10.0.4-160000.1.1.aarch64.rpm qemu-block-curl-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-dmg-10.0.4-160000.1.1.aarch64.rpm qemu-block-dmg-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-gluster-10.0.4-160000.1.1.aarch64.rpm qemu-block-gluster-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-iscsi-10.0.4-160000.1.1.aarch64.rpm qemu-block-iscsi-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-nfs-10.0.4-160000.1.1.aarch64.rpm qemu-block-nfs-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-rbd-10.0.4-160000.1.1.aarch64.rpm qemu-block-rbd-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-block-ssh-10.0.4-160000.1.1.aarch64.rpm qemu-block-ssh-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-chardev-baum-10.0.4-160000.1.1.aarch64.rpm qemu-chardev-baum-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-chardev-spice-10.0.4-160000.1.1.aarch64.rpm qemu-chardev-spice-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-debugsource-10.0.4-160000.1.1.aarch64.rpm qemu-doc-10.0.4-160000.1.1.noarch.rpm qemu-extra-10.0.4-160000.1.1.aarch64.rpm qemu-extra-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-guest-agent-10.0.4-160000.1.1.aarch64.rpm qemu-guest-agent-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-headless-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-qxl-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-qxl-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-pci-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-vga-10.0.4-160000.1.1.aarch64.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.4-160000.1.1.aarch64.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-host-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-host-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-redirect-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-redirect-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-smartcard-10.0.4-160000.1.1.aarch64.rpm qemu-hw-usb-smartcard-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-img-10.0.4-160000.1.1.aarch64.rpm qemu-img-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ipxe-10.0.4-160000.1.1.noarch.rpm qemu-ivshmem-tools-10.0.4-160000.1.1.aarch64.rpm qemu-ivshmem-tools-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ksm-10.0.4-160000.1.1.aarch64.rpm qemu-lang-10.0.4-160000.1.1.noarch.rpm qemu-microvm-10.0.4-160000.1.1.noarch.rpm qemu-ppc-10.0.4-160000.1.1.aarch64.rpm qemu-ppc-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-pr-helper-10.0.4-160000.1.1.aarch64.rpm qemu-pr-helper-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-s390x-10.0.4-160000.1.1.aarch64.rpm qemu-s390x-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-seabios-10.0.41.16.3_3_g3d33c746-160000.1.1.noarch.rpm qemu-skiboot-10.0.4-160000.1.1.noarch.rpm qemu-spice-10.0.4-160000.1.1.aarch64.rpm qemu-tools-10.0.4-160000.1.1.aarch64.rpm qemu-tools-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-curses-10.0.4-160000.1.1.aarch64.rpm qemu-ui-curses-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-dbus-10.0.4-160000.1.1.aarch64.rpm qemu-ui-dbus-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-gtk-10.0.4-160000.1.1.aarch64.rpm qemu-ui-gtk-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-opengl-10.0.4-160000.1.1.aarch64.rpm qemu-ui-opengl-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-spice-app-10.0.4-160000.1.1.aarch64.rpm qemu-ui-spice-app-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-ui-spice-core-10.0.4-160000.1.1.aarch64.rpm qemu-ui-spice-core-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-vgabios-10.0.41.16.3_3_g3d33c746-160000.1.1.noarch.rpm qemu-vhost-user-gpu-10.0.4-160000.1.1.aarch64.rpm qemu-vhost-user-gpu-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-x86-10.0.4-160000.1.1.aarch64.rpm qemu-x86-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-linux-user-10.0.4-160000.1.1.aarch64.rpm qemu-linux-user-10.0.4-160000.1.1.src.rpm qemu-linux-user-debuginfo-10.0.4-160000.1.1.aarch64.rpm qemu-linux-user-debugsource-10.0.4-160000.1.1.aarch64.rpm qemu-10.0.4-160000.1.1.ppc64le.rpm qemu-accel-qtest-10.0.4-160000.1.1.ppc64le.rpm qemu-accel-qtest-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-arm-10.0.4-160000.1.1.ppc64le.rpm qemu-arm-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-alsa-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-alsa-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-dbus-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-dbus-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-jack-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-jack-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-oss-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-oss-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-pa-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-pa-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-pipewire-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-pipewire-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-spice-10.0.4-160000.1.1.ppc64le.rpm qemu-audio-spice-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-curl-10.0.4-160000.1.1.ppc64le.rpm qemu-block-curl-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-dmg-10.0.4-160000.1.1.ppc64le.rpm qemu-block-dmg-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-gluster-10.0.4-160000.1.1.ppc64le.rpm qemu-block-gluster-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-iscsi-10.0.4-160000.1.1.ppc64le.rpm qemu-block-iscsi-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-nfs-10.0.4-160000.1.1.ppc64le.rpm qemu-block-nfs-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-rbd-10.0.4-160000.1.1.ppc64le.rpm qemu-block-rbd-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-block-ssh-10.0.4-160000.1.1.ppc64le.rpm qemu-block-ssh-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-chardev-baum-10.0.4-160000.1.1.ppc64le.rpm qemu-chardev-baum-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-chardev-spice-10.0.4-160000.1.1.ppc64le.rpm qemu-chardev-spice-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-debugsource-10.0.4-160000.1.1.ppc64le.rpm qemu-extra-10.0.4-160000.1.1.ppc64le.rpm qemu-extra-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-guest-agent-10.0.4-160000.1.1.ppc64le.rpm qemu-guest-agent-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-headless-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-qxl-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-qxl-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-pci-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-vga-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-host-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-host-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-redirect-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-redirect-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-smartcard-10.0.4-160000.1.1.ppc64le.rpm qemu-hw-usb-smartcard-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-img-10.0.4-160000.1.1.ppc64le.rpm qemu-img-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ivshmem-tools-10.0.4-160000.1.1.ppc64le.rpm qemu-ivshmem-tools-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ksm-10.0.4-160000.1.1.ppc64le.rpm qemu-ppc-10.0.4-160000.1.1.ppc64le.rpm qemu-ppc-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-pr-helper-10.0.4-160000.1.1.ppc64le.rpm qemu-pr-helper-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-s390x-10.0.4-160000.1.1.ppc64le.rpm qemu-s390x-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-spice-10.0.4-160000.1.1.ppc64le.rpm qemu-tools-10.0.4-160000.1.1.ppc64le.rpm qemu-tools-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-curses-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-curses-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-dbus-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-dbus-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-gtk-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-gtk-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-opengl-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-opengl-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-spice-app-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-spice-app-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-spice-core-10.0.4-160000.1.1.ppc64le.rpm qemu-ui-spice-core-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-vhost-user-gpu-10.0.4-160000.1.1.ppc64le.rpm qemu-vhost-user-gpu-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-x86-10.0.4-160000.1.1.ppc64le.rpm qemu-x86-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-linux-user-10.0.4-160000.1.1.ppc64le.rpm qemu-linux-user-debuginfo-10.0.4-160000.1.1.ppc64le.rpm qemu-linux-user-debugsource-10.0.4-160000.1.1.ppc64le.rpm qemu-10.0.4-160000.1.1.s390x.rpm qemu-accel-qtest-10.0.4-160000.1.1.s390x.rpm qemu-accel-qtest-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-arm-10.0.4-160000.1.1.s390x.rpm qemu-arm-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-alsa-10.0.4-160000.1.1.s390x.rpm qemu-audio-alsa-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-dbus-10.0.4-160000.1.1.s390x.rpm qemu-audio-dbus-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-jack-10.0.4-160000.1.1.s390x.rpm qemu-audio-jack-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-oss-10.0.4-160000.1.1.s390x.rpm qemu-audio-oss-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-pa-10.0.4-160000.1.1.s390x.rpm qemu-audio-pa-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-pipewire-10.0.4-160000.1.1.s390x.rpm qemu-audio-pipewire-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-audio-spice-10.0.4-160000.1.1.s390x.rpm qemu-audio-spice-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-curl-10.0.4-160000.1.1.s390x.rpm qemu-block-curl-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-dmg-10.0.4-160000.1.1.s390x.rpm qemu-block-dmg-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-gluster-10.0.4-160000.1.1.s390x.rpm qemu-block-gluster-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-iscsi-10.0.4-160000.1.1.s390x.rpm qemu-block-iscsi-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-nfs-10.0.4-160000.1.1.s390x.rpm qemu-block-nfs-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-rbd-10.0.4-160000.1.1.s390x.rpm qemu-block-rbd-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-block-ssh-10.0.4-160000.1.1.s390x.rpm qemu-block-ssh-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-chardev-baum-10.0.4-160000.1.1.s390x.rpm qemu-chardev-baum-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-chardev-spice-10.0.4-160000.1.1.s390x.rpm qemu-chardev-spice-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-debugsource-10.0.4-160000.1.1.s390x.rpm qemu-extra-10.0.4-160000.1.1.s390x.rpm qemu-extra-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-guest-agent-10.0.4-160000.1.1.s390x.rpm qemu-guest-agent-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-headless-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-qxl-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-qxl-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-pci-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-vga-10.0.4-160000.1.1.s390x.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.4-160000.1.1.s390x.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-host-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-host-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-redirect-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-redirect-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-smartcard-10.0.4-160000.1.1.s390x.rpm qemu-hw-usb-smartcard-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-img-10.0.4-160000.1.1.s390x.rpm qemu-img-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ivshmem-tools-10.0.4-160000.1.1.s390x.rpm qemu-ivshmem-tools-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ksm-10.0.4-160000.1.1.s390x.rpm qemu-ppc-10.0.4-160000.1.1.s390x.rpm qemu-ppc-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-pr-helper-10.0.4-160000.1.1.s390x.rpm qemu-pr-helper-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-s390x-10.0.4-160000.1.1.s390x.rpm qemu-s390x-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-spice-10.0.4-160000.1.1.s390x.rpm qemu-tools-10.0.4-160000.1.1.s390x.rpm qemu-tools-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-curses-10.0.4-160000.1.1.s390x.rpm qemu-ui-curses-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-dbus-10.0.4-160000.1.1.s390x.rpm qemu-ui-dbus-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-gtk-10.0.4-160000.1.1.s390x.rpm qemu-ui-gtk-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-opengl-10.0.4-160000.1.1.s390x.rpm qemu-ui-opengl-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-spice-app-10.0.4-160000.1.1.s390x.rpm qemu-ui-spice-app-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-ui-spice-core-10.0.4-160000.1.1.s390x.rpm qemu-ui-spice-core-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-vhost-user-gpu-10.0.4-160000.1.1.s390x.rpm qemu-vhost-user-gpu-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-x86-10.0.4-160000.1.1.s390x.rpm qemu-x86-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-linux-user-10.0.4-160000.1.1.s390x.rpm qemu-linux-user-debuginfo-10.0.4-160000.1.1.s390x.rpm qemu-linux-user-debugsource-10.0.4-160000.1.1.s390x.rpm qemu-10.0.4-160000.1.1.x86_64.rpm qemu-accel-qtest-10.0.4-160000.1.1.x86_64.rpm qemu-accel-qtest-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-arm-10.0.4-160000.1.1.x86_64.rpm qemu-arm-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-alsa-10.0.4-160000.1.1.x86_64.rpm qemu-audio-alsa-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-dbus-10.0.4-160000.1.1.x86_64.rpm qemu-audio-dbus-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-jack-10.0.4-160000.1.1.x86_64.rpm qemu-audio-jack-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-oss-10.0.4-160000.1.1.x86_64.rpm qemu-audio-oss-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-pa-10.0.4-160000.1.1.x86_64.rpm qemu-audio-pa-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-pipewire-10.0.4-160000.1.1.x86_64.rpm qemu-audio-pipewire-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-audio-spice-10.0.4-160000.1.1.x86_64.rpm qemu-audio-spice-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-curl-10.0.4-160000.1.1.x86_64.rpm qemu-block-curl-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-dmg-10.0.4-160000.1.1.x86_64.rpm qemu-block-dmg-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-gluster-10.0.4-160000.1.1.x86_64.rpm qemu-block-gluster-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-iscsi-10.0.4-160000.1.1.x86_64.rpm qemu-block-iscsi-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-nfs-10.0.4-160000.1.1.x86_64.rpm qemu-block-nfs-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-rbd-10.0.4-160000.1.1.x86_64.rpm qemu-block-rbd-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-block-ssh-10.0.4-160000.1.1.x86_64.rpm qemu-block-ssh-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-chardev-baum-10.0.4-160000.1.1.x86_64.rpm qemu-chardev-baum-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-chardev-spice-10.0.4-160000.1.1.x86_64.rpm qemu-chardev-spice-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-debugsource-10.0.4-160000.1.1.x86_64.rpm qemu-extra-10.0.4-160000.1.1.x86_64.rpm qemu-extra-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-guest-agent-10.0.4-160000.1.1.x86_64.rpm qemu-guest-agent-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-headless-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-qxl-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-qxl-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-pci-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-gpu-pci-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-vga-10.0.4-160000.1.1.x86_64.rpm qemu-hw-display-virtio-vga-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-s390x-virtio-gpu-ccw-10.0.4-160000.1.1.x86_64.rpm qemu-hw-s390x-virtio-gpu-ccw-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-host-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-host-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-redirect-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-redirect-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-smartcard-10.0.4-160000.1.1.x86_64.rpm qemu-hw-usb-smartcard-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-img-10.0.4-160000.1.1.x86_64.rpm qemu-img-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ivshmem-tools-10.0.4-160000.1.1.x86_64.rpm qemu-ivshmem-tools-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ksm-10.0.4-160000.1.1.x86_64.rpm qemu-ppc-10.0.4-160000.1.1.x86_64.rpm qemu-ppc-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-pr-helper-10.0.4-160000.1.1.x86_64.rpm qemu-pr-helper-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-s390x-10.0.4-160000.1.1.x86_64.rpm qemu-s390x-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-spice-10.0.4-160000.1.1.x86_64.rpm qemu-tools-10.0.4-160000.1.1.x86_64.rpm qemu-tools-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-curses-10.0.4-160000.1.1.x86_64.rpm qemu-ui-curses-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-dbus-10.0.4-160000.1.1.x86_64.rpm qemu-ui-dbus-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-gtk-10.0.4-160000.1.1.x86_64.rpm qemu-ui-gtk-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-opengl-10.0.4-160000.1.1.x86_64.rpm qemu-ui-opengl-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-spice-app-10.0.4-160000.1.1.x86_64.rpm qemu-ui-spice-app-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-ui-spice-core-10.0.4-160000.1.1.x86_64.rpm qemu-ui-spice-core-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-vhost-user-gpu-10.0.4-160000.1.1.x86_64.rpm qemu-vhost-user-gpu-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-vmsr-helper-10.0.4-160000.1.1.x86_64.rpm qemu-vmsr-helper-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-x86-10.0.4-160000.1.1.x86_64.rpm qemu-x86-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-linux-user-10.0.4-160000.1.1.x86_64.rpm qemu-linux-user-debuginfo-10.0.4-160000.1.1.x86_64.rpm qemu-linux-user-debugsource-10.0.4-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-72 Security update for tomcat11 important SUSE SLFO 1.2 This update for tomcat11 fixes the following issues: Update to Tomcat 11.0.13: - CVE-2025-55752: Fixed directory traversal via rewrite with possible RCE if PUT is enabled (bsc#1252753). - CVE-2025-55754: Fixed Improper Neutralization of Escape, Meta, or Control Sequences vulnerability in Apache Tomcat (bsc#1252905). - CVE-2025-61795: Fixed temporary copies during the processing of multipart upload can lead to a denial of service (bsc#1252756). tomcat11-11.0.13-160000.1.1.noarch.rpm tomcat11-11.0.13-160000.1.1.src.rpm tomcat11-admin-webapps-11.0.13-160000.1.1.noarch.rpm tomcat11-doc-11.0.13-160000.1.1.noarch.rpm tomcat11-docs-webapp-11.0.13-160000.1.1.noarch.rpm tomcat11-el-6_0-api-11.0.13-160000.1.1.noarch.rpm tomcat11-embed-11.0.13-160000.1.1.noarch.rpm tomcat11-jsp-4_0-api-11.0.13-160000.1.1.noarch.rpm tomcat11-jsvc-11.0.13-160000.1.1.noarch.rpm tomcat11-lib-11.0.13-160000.1.1.noarch.rpm tomcat11-servlet-6_1-api-11.0.13-160000.1.1.noarch.rpm tomcat11-webapps-11.0.13-160000.1.1.noarch.rpm openSUSE-Leap-16.0-73 Recommended update for mdadm moderate SUSE SLFO 1.2 This update for mdadm fixes the following issues: - Version update 4.4+29.gf8bb524b. - Fix race condition between mdcheck_start.service and mdcheck_continue.service (bsc#1243443, bsc#1248097). - mdadm_env.sh ignoring MDADM_RAIDDEVICES if MDADM_SCAN is set (bsc#1229997). - Split off the Software RAID HOWTO into a -doc package. - Upstream bug fixes for mdadm (bsc#1253060). - _service: switch to tar_scm for better interoperabity with SLFO. - Fix systemd unit file handling in spec file (bnc#1207266). - Stop emitting %release into program binaries (bnc#1246806). - Add MAILFROM address to email envelope, avoid smtp auth errors (bsc#1241474). mdadm-4.4+29.gf8bb524b-160000.1.1.aarch64.rpm mdadm-4.4+29.gf8bb524b-160000.1.1.src.rpm mdadm-debuginfo-4.4+29.gf8bb524b-160000.1.1.aarch64.rpm mdadm-debugsource-4.4+29.gf8bb524b-160000.1.1.aarch64.rpm mdadm-doc-4.4+29.gf8bb524b-160000.1.1.aarch64.rpm mdadm-4.4+29.gf8bb524b-160000.1.1.ppc64le.rpm mdadm-debuginfo-4.4+29.gf8bb524b-160000.1.1.ppc64le.rpm mdadm-debugsource-4.4+29.gf8bb524b-160000.1.1.ppc64le.rpm mdadm-doc-4.4+29.gf8bb524b-160000.1.1.ppc64le.rpm mdadm-4.4+29.gf8bb524b-160000.1.1.s390x.rpm mdadm-debuginfo-4.4+29.gf8bb524b-160000.1.1.s390x.rpm mdadm-debugsource-4.4+29.gf8bb524b-160000.1.1.s390x.rpm mdadm-doc-4.4+29.gf8bb524b-160000.1.1.s390x.rpm mdadm-4.4+29.gf8bb524b-160000.1.1.x86_64.rpm mdadm-debuginfo-4.4+29.gf8bb524b-160000.1.1.x86_64.rpm mdadm-debugsource-4.4+29.gf8bb524b-160000.1.1.x86_64.rpm mdadm-doc-4.4+29.gf8bb524b-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-74 Recommended update for libnxz moderate SUSE SLFO 1.2 This update for libnxz fixes the following issues: Update to version 0.64+git4.2f1ae54: * lib/nx_crc : Fix compile error with gcc15 * Changed README.md instructions to substitute zlib libnxz-0.64+git4.2f1ae54-160000.1.1.src.rpm libnxz-debugsource-0.64+git4.2f1ae54-160000.1.1.ppc64le.rpm libnxz-devel-0.64+git4.2f1ae54-160000.1.1.ppc64le.rpm libnxz-devel-debuginfo-0.64+git4.2f1ae54-160000.1.1.ppc64le.rpm libnxz0-0.64+git4.2f1ae54-160000.1.1.ppc64le.rpm libnxz0-debuginfo-0.64+git4.2f1ae54-160000.1.1.ppc64le.rpm openSUSE-Leap-16.0-75 Optional update for java-25-openjdk moderate SUSE SLFO 1.2 This update for java-25-openjdk fixes the following issues: Adds the Java OpenJDK in version 25. java-25-openjdk-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-25.0.1.0-160000.1.1.src.rpm java-25-openjdk-debuginfo-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-demo-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-devel-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-devel-debuginfo-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-headless-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-headless-debuginfo-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-javadoc-25.0.1.0-160000.1.1.noarch.rpm java-25-openjdk-jmods-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-src-25.0.1.0-160000.1.1.aarch64.rpm java-25-openjdk-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-debuginfo-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-demo-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-devel-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-devel-debuginfo-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-headless-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-headless-debuginfo-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-jmods-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-src-25.0.1.0-160000.1.1.ppc64le.rpm java-25-openjdk-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-debuginfo-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-demo-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-devel-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-devel-debuginfo-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-headless-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-headless-debuginfo-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-jmods-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-src-25.0.1.0-160000.1.1.s390x.rpm java-25-openjdk-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-debuginfo-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-demo-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-devel-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-devel-debuginfo-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-headless-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-headless-debuginfo-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-jmods-25.0.1.0-160000.1.1.x86_64.rpm java-25-openjdk-src-25.0.1.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-76 Recommended update for urw-base35-fonts moderate SUSE SLFO 1.2 This update for urw-base35-fonts fixes the following issues: Changes in urw-base35-fonts: - Add provides for recently obsoleted packages ghostscript-fonts-std-converted and xorg-x11-fonts-converted urw-base35-fonts-20200910-160000.3.1.noarch.rpm urw-base35-fonts-20200910-160000.3.1.src.rpm urw-base35-fonts-C059-20200910-160000.3.1.noarch.rpm urw-base35-fonts-D050000L-20200910-160000.3.1.noarch.rpm urw-base35-fonts-NimbusMonoPS-20200910-160000.3.1.noarch.rpm urw-base35-fonts-NimbusRoman-20200910-160000.3.1.noarch.rpm urw-base35-fonts-NimbusSans-20200910-160000.3.1.noarch.rpm urw-base35-fonts-P052-20200910-160000.3.1.noarch.rpm urw-base35-fonts-StandardSymbolsPS-20200910-160000.3.1.noarch.rpm urw-base35-fonts-URWBookman-20200910-160000.3.1.noarch.rpm urw-base35-fonts-URWGothic-20200910-160000.3.1.noarch.rpm urw-base35-fonts-Z003-20200910-160000.3.1.noarch.rpm openSUSE-Leap-16.0-77 Recommended update for gpgme important SUSE SLFO 1.2 This update for gpgme fixes the following issues: - Treat empty DISPLAY variable as unset (bsc#1252425, bsc#1231055) * To avoid gpgme constructing an invalid gpg command line when the DISPLAY variable is empty it can be treated as unset. * Reported upstream: dev.gnupg.org/T7919 gpgme-1.24.3-160000.3.1.aarch64.rpm gpgme-1.24.3-160000.3.1.src.rpm gpgme-debuginfo-1.24.3-160000.3.1.aarch64.rpm gpgme-debugsource-1.24.3-160000.3.1.aarch64.rpm libgpgme-devel-1.24.3-160000.3.1.aarch64.rpm libgpgme11-1.24.3-160000.3.1.aarch64.rpm libgpgme11-debuginfo-1.24.3-160000.3.1.aarch64.rpm libgpgmepp-devel-1.24.3-160000.3.1.aarch64.rpm libgpgmepp6-1.24.3-160000.3.1.aarch64.rpm libgpgmepp6-debuginfo-1.24.3-160000.3.1.aarch64.rpm python313-gpg-1.24.3-160000.3.1.aarch64.rpm python313-gpg-debuginfo-1.24.3-160000.3.1.aarch64.rpm gpgmeqt6-1.24.3-160000.3.1.src.rpm gpgmeqt6-debugsource-1.24.3-160000.3.1.aarch64.rpm libqgpgmeqt6-15-1.24.3-160000.3.1.aarch64.rpm libqgpgmeqt6-15-debuginfo-1.24.3-160000.3.1.aarch64.rpm libqgpgmeqt6-devel-1.24.3-160000.3.1.aarch64.rpm gpgme-1.24.3-160000.3.1.ppc64le.rpm gpgme-debuginfo-1.24.3-160000.3.1.ppc64le.rpm gpgme-debugsource-1.24.3-160000.3.1.ppc64le.rpm libgpgme-devel-1.24.3-160000.3.1.ppc64le.rpm libgpgme11-1.24.3-160000.3.1.ppc64le.rpm libgpgme11-debuginfo-1.24.3-160000.3.1.ppc64le.rpm libgpgmepp-devel-1.24.3-160000.3.1.ppc64le.rpm libgpgmepp6-1.24.3-160000.3.1.ppc64le.rpm libgpgmepp6-debuginfo-1.24.3-160000.3.1.ppc64le.rpm python313-gpg-1.24.3-160000.3.1.ppc64le.rpm python313-gpg-debuginfo-1.24.3-160000.3.1.ppc64le.rpm gpgmeqt6-debugsource-1.24.3-160000.3.1.ppc64le.rpm libqgpgmeqt6-15-1.24.3-160000.3.1.ppc64le.rpm libqgpgmeqt6-15-debuginfo-1.24.3-160000.3.1.ppc64le.rpm libqgpgmeqt6-devel-1.24.3-160000.3.1.ppc64le.rpm gpgme-1.24.3-160000.3.1.s390x.rpm gpgme-debuginfo-1.24.3-160000.3.1.s390x.rpm gpgme-debugsource-1.24.3-160000.3.1.s390x.rpm libgpgme-devel-1.24.3-160000.3.1.s390x.rpm libgpgme11-1.24.3-160000.3.1.s390x.rpm libgpgme11-debuginfo-1.24.3-160000.3.1.s390x.rpm libgpgmepp-devel-1.24.3-160000.3.1.s390x.rpm libgpgmepp6-1.24.3-160000.3.1.s390x.rpm libgpgmepp6-debuginfo-1.24.3-160000.3.1.s390x.rpm python313-gpg-1.24.3-160000.3.1.s390x.rpm python313-gpg-debuginfo-1.24.3-160000.3.1.s390x.rpm gpgmeqt6-debugsource-1.24.3-160000.3.1.s390x.rpm libqgpgmeqt6-15-1.24.3-160000.3.1.s390x.rpm libqgpgmeqt6-15-debuginfo-1.24.3-160000.3.1.s390x.rpm libqgpgmeqt6-devel-1.24.3-160000.3.1.s390x.rpm gpgme-1.24.3-160000.3.1.x86_64.rpm gpgme-debuginfo-1.24.3-160000.3.1.x86_64.rpm gpgme-debugsource-1.24.3-160000.3.1.x86_64.rpm libgpgme-devel-1.24.3-160000.3.1.x86_64.rpm libgpgme11-1.24.3-160000.3.1.x86_64.rpm libgpgme11-debuginfo-1.24.3-160000.3.1.x86_64.rpm libgpgmepp-devel-1.24.3-160000.3.1.x86_64.rpm libgpgmepp6-1.24.3-160000.3.1.x86_64.rpm libgpgmepp6-debuginfo-1.24.3-160000.3.1.x86_64.rpm python313-gpg-1.24.3-160000.3.1.x86_64.rpm python313-gpg-debuginfo-1.24.3-160000.3.1.x86_64.rpm gpgmeqt6-debugsource-1.24.3-160000.3.1.x86_64.rpm libqgpgmeqt6-15-1.24.3-160000.3.1.x86_64.rpm libqgpgmeqt6-15-debuginfo-1.24.3-160000.3.1.x86_64.rpm libqgpgmeqt6-devel-1.24.3-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-78 Recommended update for libnbd moderate SUSE SLFO 1.2 This update for libnbd fixes the following issues: - Fix libnbd: Unsanitized hostnames in nbd+ssh URIs allow remote execution (bsc#1253059) libnbd-1.22.2-160000.3.1.aarch64.rpm libnbd-1.22.2-160000.3.1.src.rpm libnbd-bash-completion-1.22.2-160000.3.1.noarch.rpm libnbd-debuginfo-1.22.2-160000.3.1.aarch64.rpm libnbd-debugsource-1.22.2-160000.3.1.aarch64.rpm libnbd-devel-1.22.2-160000.3.1.aarch64.rpm libnbd-devel-debuginfo-1.22.2-160000.3.1.aarch64.rpm libnbd0-1.22.2-160000.3.1.aarch64.rpm libnbd0-debuginfo-1.22.2-160000.3.1.aarch64.rpm nbdfuse-1.22.2-160000.3.1.aarch64.rpm nbdfuse-debuginfo-1.22.2-160000.3.1.aarch64.rpm python3-libnbd-1.22.2-160000.3.1.aarch64.rpm python3-libnbd-debuginfo-1.22.2-160000.3.1.aarch64.rpm libnbd-1.22.2-160000.3.1.ppc64le.rpm libnbd-debuginfo-1.22.2-160000.3.1.ppc64le.rpm libnbd-debugsource-1.22.2-160000.3.1.ppc64le.rpm libnbd-devel-1.22.2-160000.3.1.ppc64le.rpm libnbd-devel-debuginfo-1.22.2-160000.3.1.ppc64le.rpm libnbd0-1.22.2-160000.3.1.ppc64le.rpm libnbd0-debuginfo-1.22.2-160000.3.1.ppc64le.rpm nbdfuse-1.22.2-160000.3.1.ppc64le.rpm nbdfuse-debuginfo-1.22.2-160000.3.1.ppc64le.rpm python3-libnbd-1.22.2-160000.3.1.ppc64le.rpm python3-libnbd-debuginfo-1.22.2-160000.3.1.ppc64le.rpm libnbd-1.22.2-160000.3.1.s390x.rpm libnbd-debuginfo-1.22.2-160000.3.1.s390x.rpm libnbd-debugsource-1.22.2-160000.3.1.s390x.rpm libnbd-devel-1.22.2-160000.3.1.s390x.rpm libnbd-devel-debuginfo-1.22.2-160000.3.1.s390x.rpm libnbd0-1.22.2-160000.3.1.s390x.rpm libnbd0-debuginfo-1.22.2-160000.3.1.s390x.rpm nbdfuse-1.22.2-160000.3.1.s390x.rpm nbdfuse-debuginfo-1.22.2-160000.3.1.s390x.rpm python3-libnbd-1.22.2-160000.3.1.s390x.rpm python3-libnbd-debuginfo-1.22.2-160000.3.1.s390x.rpm libnbd-1.22.2-160000.3.1.x86_64.rpm libnbd-debuginfo-1.22.2-160000.3.1.x86_64.rpm libnbd-debugsource-1.22.2-160000.3.1.x86_64.rpm libnbd-devel-1.22.2-160000.3.1.x86_64.rpm libnbd-devel-debuginfo-1.22.2-160000.3.1.x86_64.rpm libnbd0-1.22.2-160000.3.1.x86_64.rpm libnbd0-debuginfo-1.22.2-160000.3.1.x86_64.rpm nbdfuse-1.22.2-160000.3.1.x86_64.rpm nbdfuse-debuginfo-1.22.2-160000.3.1.x86_64.rpm python3-libnbd-1.22.2-160000.3.1.x86_64.rpm python3-libnbd-debuginfo-1.22.2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-79 Security update for dovecot24 moderate SUSE SLFO 1.2 This update for dovecot24 fixes the following issues: - Update dovecot to 2.4.2: - CVE-2025-30189: Fixed users cached with same cache key when auth cache was enabled (bsc#1252839) - Changes - auth: Remove proxy_always field. - config: Change settings history parsing to use python3. - doveadm: Print table formatter - Print empty values as "-". - imapc: Propagate remote error codes properly. - lda: Default mail_home=$HOME environment if not using userdb lookup - lib-dcrypt: Salt for new version 2 keys has been increased to 16 bytes. - lib-dregex: Add libpcre2 based regular expression support to Dovecot, if the library is missing, disable all regular expressions. This adds libpcre2-32 as build dependency. - lib-oauth2: jwt - Allow nbf and iat to point 1 second into future. - lib: Replace libicu with our own unicode library. Removes libicu as build dependency. - login-common: If proxying fails due to remote having invalid SSL cert, don't reconnect. - New features - auth: Add ssl_client_cert_fp and ssl_client_cert_pubkey_fp fields - config: Add support for $SET:filter/path/setting. - config: Improve @group includes to work with overwriting their settings. - doveadm kick: Add support for kicking multiple usernames - doveadm mailbox status: Add support for deleted status item. - imap, imap-client: Add experimental partial IMAP4rev2 support. - imap: Implement support for UTF8=ACCEPT for APPEND - lib-oauth2, oauth2: Add oauth2_token_expire_grace setting. - lmtp: lmtp-client - Support command pipelining. - login-common: Support local/remote blocks better. - master: accept() unix/inet connections before creating child process to handle it. This reduces timeouts when child processes are slow to spawn themselves. - Bug fixes - SMTPUTF8 was accepted even when it wasn't enabled. - auth, *-login: Direct logging with -L parameter was not working. - auth: Crash occured when OAUTH token validation failed with oauth2_use_worker_with_mech=yes. - auth: Invalid field handling crashes were fixed. - auth: ldap - Potential crash could happen at deinit. - auth: mech-gssapi - Server sending empty initial response would cause errors. - auth: mech-winbind - GSS-SPNEGO mechanism was erroneously marked as - not accepting NUL. - config: Multiple issues with $SET handling has been fixed. - configure: Building without LDAP didn't work. - doveadm: If source user didn't exist, a crash would occur. - imap, pop3, submission, imap-urlauth: USER environment usage was broken when running standalone. - imap-hibernate: Statistics would get truncated on unhibernation. - imap: "SEARCH MIMEPART FILENAME ENDS" command could have accessed memory outside allocated buffer, resulting in a crash. - imapc: Fetching partial headers would cause other cached headers to be cached empty, breaking e.g. imap envelope responses when caching to disk. - imapc: Shared namespace's INBOX mailbox was not always uppercased. - imapc: imapc_features=guid-forced GUID generation was not working correctly. - lda: USER environment was not accepted if -d hasn't been specified. - lib-http: http-url - Significant path percent encoding through parse and create was not preserved. This is mainly important for Dovecot's Lua bindings for lib-http. - lib-settings: Crash would occur when using %variables in SET_FILE type settings. - lib-storage: Attachment flags were attempted to be added for readonly mailboxes with mail_attachment_flags=add-flags. - lib-storage: Root directory for unusable shared namespaces was unnecessarily attempted to be created. - lib: Crash would occur when config was reloaded and logging to syslog. - login-common: Crash might have occured when login proxy was destroyed. - sqlite: The sqlite_journal_mode=wal setting didn't actually do anything. - Many other bugs have been fixed. - Update pigeonhole to 2.4.2 - Changes - lib-sieve: Use new regular expression library in core. - managesieve: Add default service_extra_groups=$SET:default_internal_group. - New features - lib-sieve: Add support for "extlists" extension. - lib-sieve: regex - Allow unicode comparator. - Bug fixes - lib-sieve-tool: sieve-tool - All sieve_script settings were overriden. - lib-sieve: storage: dict: sieve_script_dict filter was missing from settings. - sieve-ldap-storage: Fix compile without LDAP. dovecot24-2.4.2-160000.1.1.aarch64.rpm dovecot24-2.4.2-160000.1.1.src.rpm dovecot24-backend-mysql-2.4.2-160000.1.1.aarch64.rpm dovecot24-backend-mysql-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-backend-pgsql-2.4.2-160000.1.1.aarch64.rpm dovecot24-backend-pgsql-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-backend-sqlite-2.4.2-160000.1.1.aarch64.rpm dovecot24-backend-sqlite-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-debugsource-2.4.2-160000.1.1.aarch64.rpm dovecot24-devel-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-flatcurve-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-flatcurve-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-solr-2.4.2-160000.1.1.aarch64.rpm dovecot24-fts-solr-debuginfo-2.4.2-160000.1.1.aarch64.rpm dovecot24-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-mysql-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-mysql-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-pgsql-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-pgsql-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-sqlite-2.4.2-160000.1.1.ppc64le.rpm dovecot24-backend-sqlite-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-debugsource-2.4.2-160000.1.1.ppc64le.rpm dovecot24-devel-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-flatcurve-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-flatcurve-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-solr-2.4.2-160000.1.1.ppc64le.rpm dovecot24-fts-solr-debuginfo-2.4.2-160000.1.1.ppc64le.rpm dovecot24-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-mysql-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-mysql-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-pgsql-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-pgsql-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-sqlite-2.4.2-160000.1.1.s390x.rpm dovecot24-backend-sqlite-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-debugsource-2.4.2-160000.1.1.s390x.rpm dovecot24-devel-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-flatcurve-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-flatcurve-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-solr-2.4.2-160000.1.1.s390x.rpm dovecot24-fts-solr-debuginfo-2.4.2-160000.1.1.s390x.rpm dovecot24-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-mysql-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-mysql-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-pgsql-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-pgsql-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-sqlite-2.4.2-160000.1.1.x86_64.rpm dovecot24-backend-sqlite-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-debugsource-2.4.2-160000.1.1.x86_64.rpm dovecot24-devel-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-flatcurve-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-flatcurve-debuginfo-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-solr-2.4.2-160000.1.1.x86_64.rpm dovecot24-fts-solr-debuginfo-2.4.2-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-8 Recommended update for autofs critical SUSE SLFO 1.2 This update for autofs contains the following fixes: - Link against ldap.so instead of ldap_r.so; the former now provides thread-safety and the latter is a symlink which may not exist. (bsc#1249966) * drop previous patch now unnecessary. - Fix xmlStructuredErrorFunc callback parameter patch (bsc#1246612) to account for: * d2feac6784b6 autofs-5.1.6 - make autofs.a a shared library * bcd8e1b642e9 autofs-5.0.7 - use LIBS for link libraries autofs-5.1.9-160000.3.1.aarch64.rpm autofs-5.1.9-160000.3.1.src.rpm autofs-debuginfo-5.1.9-160000.3.1.aarch64.rpm autofs-debugsource-5.1.9-160000.3.1.aarch64.rpm autofs-5.1.9-160000.3.1.ppc64le.rpm autofs-debuginfo-5.1.9-160000.3.1.ppc64le.rpm autofs-debugsource-5.1.9-160000.3.1.ppc64le.rpm autofs-5.1.9-160000.3.1.s390x.rpm autofs-debuginfo-5.1.9-160000.3.1.s390x.rpm autofs-debugsource-5.1.9-160000.3.1.s390x.rpm autofs-5.1.9-160000.3.1.x86_64.rpm autofs-debuginfo-5.1.9-160000.3.1.x86_64.rpm autofs-debugsource-5.1.9-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-80 Security update for himmelblau important SUSE SLFO 1.2 This update for himmelblau fixes the following issues: - Update to version 0.9.23+git.0.9776141: * CVE-2025-59044: Fixed GID collision of same-name groups allowing privilege escalation (bsc#1250687) * deps(rust): bump the all-cargo-updates group * CVE-2025-58160: tracing-subscriber: Fixed log pollution (bsc#1249013) himmelblau-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm himmelblau-0.9.23+git.0.9776141-160000.1.1.src.rpm himmelblau-debuginfo-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm himmelblau-qr-greeter-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm himmelblau-sshd-config-0.9.23+git.0.9776141-160000.1.1.noarch.rpm himmelblau-sso-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm himmelblau-sso-debuginfo-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm libnss_himmelblau2-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm pam-himmelblau-0.9.23+git.0.9776141-160000.1.1.aarch64.rpm himmelblau-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm himmelblau-debuginfo-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm himmelblau-qr-greeter-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm himmelblau-sso-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm himmelblau-sso-debuginfo-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm libnss_himmelblau2-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm pam-himmelblau-0.9.23+git.0.9776141-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-81 Security update for openssh moderate SUSE SLFO 1.2 This update for openssh fixes the following issues: - CVE-2025-61984: code execution via control characters in usernames when a ProxyCommand is used (bsc#1251198). - CVE-2025-61985: code execution via '\0' character in ssh:// URI when a ProxyCommand is used (bsc#1251199). openssh-10.0p2-160000.3.1.aarch64.rpm openssh-10.0p2-160000.3.1.src.rpm openssh-cavs-10.0p2-160000.3.1.aarch64.rpm openssh-cavs-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-clients-10.0p2-160000.3.1.aarch64.rpm openssh-clients-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-common-10.0p2-160000.3.1.aarch64.rpm openssh-common-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-debugsource-10.0p2-160000.3.1.aarch64.rpm openssh-helpers-10.0p2-160000.3.1.aarch64.rpm openssh-helpers-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-server-10.0p2-160000.3.1.aarch64.rpm openssh-server-config-rootlogin-10.0p2-160000.3.1.aarch64.rpm openssh-server-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-askpass-gnome-10.0p2-160000.3.1.aarch64.rpm openssh-askpass-gnome-10.0p2-160000.3.1.src.rpm openssh-askpass-gnome-debuginfo-10.0p2-160000.3.1.aarch64.rpm openssh-askpass-gnome-debugsource-10.0p2-160000.3.1.aarch64.rpm openssh-10.0p2-160000.3.1.ppc64le.rpm openssh-cavs-10.0p2-160000.3.1.ppc64le.rpm openssh-cavs-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-clients-10.0p2-160000.3.1.ppc64le.rpm openssh-clients-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-common-10.0p2-160000.3.1.ppc64le.rpm openssh-common-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-debugsource-10.0p2-160000.3.1.ppc64le.rpm openssh-helpers-10.0p2-160000.3.1.ppc64le.rpm openssh-helpers-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-server-10.0p2-160000.3.1.ppc64le.rpm openssh-server-config-rootlogin-10.0p2-160000.3.1.ppc64le.rpm openssh-server-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-askpass-gnome-10.0p2-160000.3.1.ppc64le.rpm openssh-askpass-gnome-debuginfo-10.0p2-160000.3.1.ppc64le.rpm openssh-askpass-gnome-debugsource-10.0p2-160000.3.1.ppc64le.rpm openssh-10.0p2-160000.3.1.s390x.rpm openssh-cavs-10.0p2-160000.3.1.s390x.rpm openssh-cavs-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-clients-10.0p2-160000.3.1.s390x.rpm openssh-clients-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-common-10.0p2-160000.3.1.s390x.rpm openssh-common-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-debugsource-10.0p2-160000.3.1.s390x.rpm openssh-helpers-10.0p2-160000.3.1.s390x.rpm openssh-helpers-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-server-10.0p2-160000.3.1.s390x.rpm openssh-server-config-rootlogin-10.0p2-160000.3.1.s390x.rpm openssh-server-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-askpass-gnome-10.0p2-160000.3.1.s390x.rpm openssh-askpass-gnome-debuginfo-10.0p2-160000.3.1.s390x.rpm openssh-askpass-gnome-debugsource-10.0p2-160000.3.1.s390x.rpm openssh-10.0p2-160000.3.1.x86_64.rpm openssh-cavs-10.0p2-160000.3.1.x86_64.rpm openssh-cavs-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-clients-10.0p2-160000.3.1.x86_64.rpm openssh-clients-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-common-10.0p2-160000.3.1.x86_64.rpm openssh-common-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-debugsource-10.0p2-160000.3.1.x86_64.rpm openssh-helpers-10.0p2-160000.3.1.x86_64.rpm openssh-helpers-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-server-10.0p2-160000.3.1.x86_64.rpm openssh-server-config-rootlogin-10.0p2-160000.3.1.x86_64.rpm openssh-server-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-askpass-gnome-10.0p2-160000.3.1.x86_64.rpm openssh-askpass-gnome-debuginfo-10.0p2-160000.3.1.x86_64.rpm openssh-askpass-gnome-debugsource-10.0p2-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-82 Security update for java-21-openjdk important SUSE SLFO 1.2 This update for java-21-openjdk fixes the following issues: Update to upstream tag jdk-21.0.9+10 (October 2025 CPU): - CVE-2025-53066: Fixed enhance path factories (bsc#1252417). - CVE-2025-61748: Fixed enhance string handling (bsc#1252418). - CVE-2025-53057: Fixed enhance certificate handling (bsc#1252414). Other bug fixes: - Do not embed rebuild counter (bsc#1246806) java-21-openjdk-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-21.0.9.0-160000.1.1.src.rpm java-21-openjdk-debuginfo-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-demo-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-devel-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-devel-debuginfo-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-headless-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-headless-debuginfo-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-javadoc-21.0.9.0-160000.1.1.noarch.rpm java-21-openjdk-jmods-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-src-21.0.9.0-160000.1.1.aarch64.rpm java-21-openjdk-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-debuginfo-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-demo-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-devel-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-devel-debuginfo-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-headless-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-headless-debuginfo-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-jmods-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-src-21.0.9.0-160000.1.1.ppc64le.rpm java-21-openjdk-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-debuginfo-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-demo-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-devel-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-devel-debuginfo-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-headless-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-headless-debuginfo-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-jmods-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-src-21.0.9.0-160000.1.1.s390x.rpm java-21-openjdk-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-debuginfo-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-demo-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-devel-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-devel-debuginfo-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-headless-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-headless-debuginfo-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-jmods-21.0.9.0-160000.1.1.x86_64.rpm java-21-openjdk-src-21.0.9.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-83 Recommended update for python-azure-agent important SUSE SLFO 1.2 This update for python-azure-agent fixes the following issues: - Fix dependencies for SLE 16 (bsc#1254129) * procps instead of sysvinit-tools - Update to version 2.14.0.1 (bsc#1253001) * FIPS 140-3 support * Block extensions disallowed by policy * Report ext policy errors in heartbeat * Implement signature validation helper functions * Prevent ssh public key override * Use proper filesystem creation flag for btrfs * Enable resource monitoring in cgroup v2 machines * Update agent cgroup cleanup * Add cgroupv2 distros to supported list * Clean old agent cgroup setup * Redact sas tokens in telemetry events and agent log * Add conf option to use hardcoded wireserver ip instead of dhcp request to discover wireserver ip * Support for python 3.12 * Update telemetry message for agent updates and send new telemetry for ext resource governance * Disable rsm downgrade * Add community support for Chainguard OS * Swap out legacycrypt for crypt-r for Python 3.13+ * Pin setuptools version * Set the agent config file path for FreeBSD * Handle errors importing crypt module - From 2.13.1.1 * Setup: Fix install_requires list syntax * Pickup latest goal state on tenant certificate rotation + Avoid infinite loop when the tenant certificate is missing * Fix unsupported syntax in py2.6 * Cgroup rewrite: uses systemctl for expressing desired configuration instead drop-in files * Remove usages of tempfile.mktemp * Use random time for attempting new Agent update * Enable logcollector in v2 machines * Clean history files * Missing firewall rules reason * Add support for nftables (+ refactoring of firewall code) * Create walinuxagent nftable atomically python-azure-agent-2.14.0.1-160000.1.1.noarch.rpm python-azure-agent-2.14.0.1-160000.1.1.src.rpm python-azure-agent-config-default-2.14.0.1-160000.1.1.noarch.rpm python-azure-agent-config-hpc-2.14.0.1-160000.1.1.noarch.rpm python-azure-agent-config-micro-2.14.0.1-160000.1.1.noarch.rpm python-azure-agent-config-server-2.14.0.1-160000.1.1.noarch.rpm python-azure-agent-test-2.14.0.1-160000.1.1.noarch.rpm openSUSE-Leap-16.0-84 Security update for java-17-openjdk important SUSE SLFO 1.2 This update for java-17-openjdk fixes the following issues: Upgrade to upstream tag jdk-17.0.17+10 (October 2025 CPU): - CVE-2025-53066: Fixed enhance path factories (bsc#1252417). - CVE-2025-53057: Fixed enhance certificate handling (bsc#1252414). Other bug fixes: - Do not embed rebuild counter (bsc#1246806). java-17-openjdk-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-17.0.17.0-160000.1.1.src.rpm java-17-openjdk-debuginfo-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-demo-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-devel-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-devel-debuginfo-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-headless-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-headless-debuginfo-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-javadoc-17.0.17.0-160000.1.1.noarch.rpm java-17-openjdk-jmods-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-src-17.0.17.0-160000.1.1.aarch64.rpm java-17-openjdk-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-debuginfo-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-demo-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-devel-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-devel-debuginfo-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-headless-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-headless-debuginfo-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-jmods-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-src-17.0.17.0-160000.1.1.ppc64le.rpm java-17-openjdk-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-debuginfo-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-demo-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-devel-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-devel-debuginfo-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-headless-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-headless-debuginfo-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-jmods-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-src-17.0.17.0-160000.1.1.s390x.rpm java-17-openjdk-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-debuginfo-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-demo-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-devel-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-devel-debuginfo-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-headless-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-headless-debuginfo-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-jmods-17.0.17.0-160000.1.1.x86_64.rpm java-17-openjdk-src-17.0.17.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-85 Recommended update for drbd-utils moderate SUSE SLFO 1.2 This update for drbd-utils fixes the following issues: - [SELinux] nfs_drbd: * Fix: "fence-peer helper broken, returned 0" and nfs WRITE hang when power off the secondary node (bsc#1252991) - Allow domtrans from kernel_t to drbd_t (bsc#1252991) - Fix drbd_passive didn't start due to drbd.rules returning error (bsc#1247534) drbd-selinux-9.29.0-160000.3.1.aarch64.rpm drbd-utils-9.29.0-160000.3.1.aarch64.rpm drbd-utils-9.29.0-160000.3.1.src.rpm drbd-utils-debuginfo-9.29.0-160000.3.1.aarch64.rpm drbd-utils-debugsource-9.29.0-160000.3.1.aarch64.rpm drbd-selinux-9.29.0-160000.3.1.ppc64le.rpm drbd-utils-9.29.0-160000.3.1.ppc64le.rpm drbd-utils-debuginfo-9.29.0-160000.3.1.ppc64le.rpm drbd-utils-debugsource-9.29.0-160000.3.1.ppc64le.rpm drbd-selinux-9.29.0-160000.3.1.s390x.rpm drbd-utils-9.29.0-160000.3.1.s390x.rpm drbd-utils-debuginfo-9.29.0-160000.3.1.s390x.rpm drbd-utils-debugsource-9.29.0-160000.3.1.s390x.rpm drbd-selinux-9.29.0-160000.3.1.x86_64.rpm drbd-utils-9.29.0-160000.3.1.x86_64.rpm drbd-utils-debuginfo-9.29.0-160000.3.1.x86_64.rpm drbd-utils-debugsource-9.29.0-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-86 Recommended update for suse-fonts moderate SUSE SLFO 1.2 This update for suse-fonts fixes the following issues: - Version update 2.001 - Added Black weight to SUSE family, with matching italics. - Introduced SUSE Mono variant (Thin → ExtraBold) with matching italics. - Added full Vietnamese coverage. - Implemented coding ligatures in SUSE Mono, optimized for terminal and coding environments. - Added PUA and emoji-trigger options for chameleon logo in Mono styles. - Updated vertical metrics, naming tables, and weight classes for consistency. - Refreshed Google Fonts specimen images to reflect expanded family. suse-fonts-2.001-160000.1.1.noarch.rpm suse-fonts-2.001-160000.1.1.src.rpm openSUSE-Leap-16.0-89 Recommended update for ibus moderate SUSE SLFO 1.2 This update for ibus fixes the following issues: - Add an initial setup feature for Plasma Wayland * enables IBus as the active virtual keyboard on the first login, allowing users to input text using IBus without manual configuration * fix: Plasma + Wayland: input method does not start (bsc#1084804) * fix: IBus/Fcitx5 does not start automatically under Plasma Wayland out of the box (bsc#1246423) ibus-1.5.32-160000.3.1.aarch64.rpm ibus-1.5.32-160000.3.1.src.rpm ibus-debuginfo-1.5.32-160000.3.1.aarch64.rpm ibus-debugsource-1.5.32-160000.3.1.aarch64.rpm ibus-devel-1.5.32-160000.3.1.aarch64.rpm ibus-dict-emoji-1.5.32-160000.3.1.noarch.rpm ibus-gtk-1.5.32-160000.3.1.aarch64.rpm ibus-gtk-debuginfo-1.5.32-160000.3.1.aarch64.rpm ibus-gtk3-1.5.32-160000.3.1.aarch64.rpm ibus-gtk3-debuginfo-1.5.32-160000.3.1.aarch64.rpm ibus-lang-1.5.32-160000.3.1.noarch.rpm libibus-1_0-5-1.5.32-160000.3.1.aarch64.rpm libibus-1_0-5-debuginfo-1.5.32-160000.3.1.aarch64.rpm typelib-1_0-IBus-1_0-1.5.32-160000.3.1.aarch64.rpm ibus-gtk4-1.5.32-160000.3.1.aarch64.rpm ibus-gtk4-debuginfo-1.5.32-160000.3.1.aarch64.rpm ibus_gtk4-1.5.32-160000.3.1.src.rpm ibus_gtk4-debugsource-1.5.32-160000.3.1.aarch64.rpm ibus-1.5.32-160000.3.1.ppc64le.rpm ibus-debuginfo-1.5.32-160000.3.1.ppc64le.rpm ibus-debugsource-1.5.32-160000.3.1.ppc64le.rpm ibus-devel-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk-debuginfo-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk3-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk3-debuginfo-1.5.32-160000.3.1.ppc64le.rpm libibus-1_0-5-1.5.32-160000.3.1.ppc64le.rpm libibus-1_0-5-debuginfo-1.5.32-160000.3.1.ppc64le.rpm typelib-1_0-IBus-1_0-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk4-1.5.32-160000.3.1.ppc64le.rpm ibus-gtk4-debuginfo-1.5.32-160000.3.1.ppc64le.rpm ibus_gtk4-debugsource-1.5.32-160000.3.1.ppc64le.rpm ibus-1.5.32-160000.3.1.s390x.rpm ibus-debuginfo-1.5.32-160000.3.1.s390x.rpm ibus-debugsource-1.5.32-160000.3.1.s390x.rpm ibus-devel-1.5.32-160000.3.1.s390x.rpm ibus-gtk-1.5.32-160000.3.1.s390x.rpm ibus-gtk-debuginfo-1.5.32-160000.3.1.s390x.rpm ibus-gtk3-1.5.32-160000.3.1.s390x.rpm ibus-gtk3-debuginfo-1.5.32-160000.3.1.s390x.rpm libibus-1_0-5-1.5.32-160000.3.1.s390x.rpm libibus-1_0-5-debuginfo-1.5.32-160000.3.1.s390x.rpm typelib-1_0-IBus-1_0-1.5.32-160000.3.1.s390x.rpm ibus-gtk4-1.5.32-160000.3.1.s390x.rpm ibus-gtk4-debuginfo-1.5.32-160000.3.1.s390x.rpm ibus_gtk4-debugsource-1.5.32-160000.3.1.s390x.rpm ibus-1.5.32-160000.3.1.x86_64.rpm ibus-debuginfo-1.5.32-160000.3.1.x86_64.rpm ibus-debugsource-1.5.32-160000.3.1.x86_64.rpm ibus-devel-1.5.32-160000.3.1.x86_64.rpm ibus-gtk-1.5.32-160000.3.1.x86_64.rpm ibus-gtk-debuginfo-1.5.32-160000.3.1.x86_64.rpm ibus-gtk3-1.5.32-160000.3.1.x86_64.rpm ibus-gtk3-debuginfo-1.5.32-160000.3.1.x86_64.rpm libibus-1_0-5-1.5.32-160000.3.1.x86_64.rpm libibus-1_0-5-debuginfo-1.5.32-160000.3.1.x86_64.rpm typelib-1_0-IBus-1_0-1.5.32-160000.3.1.x86_64.rpm ibus-gtk4-1.5.32-160000.3.1.x86_64.rpm ibus-gtk4-debuginfo-1.5.32-160000.3.1.x86_64.rpm ibus_gtk4-debugsource-1.5.32-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-9 Optional update for mcphost moderate SUSE SLFO 1.2 This update for mcphost fixes the following issues: This adds mcphost in release 0.31.1. mcphost-0.31.1-160000.4.1.aarch64.rpm mcphost-0.31.1-160000.4.1.src.rpm mcphost-debuginfo-0.31.1-160000.4.1.aarch64.rpm mcphost-0.31.1-160000.4.1.ppc64le.rpm mcphost-debuginfo-0.31.1-160000.4.1.ppc64le.rpm mcphost-0.31.1-160000.4.1.s390x.rpm mcphost-debuginfo-0.31.1-160000.4.1.s390x.rpm mcphost-0.31.1-160000.4.1.x86_64.rpm mcphost-debuginfo-0.31.1-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-90 Security update for strongswan important SUSE SLFO 1.2 This update for strongswan fixes the following issues: - CVE-2025-62291: Fixed buffer overflow when handling EAP-MSCHAPv2 failure requests (bsc#1251941). strongswan-6.0.1-160000.3.1.aarch64.rpm strongswan-6.0.1-160000.3.1.src.rpm strongswan-debuginfo-6.0.1-160000.3.1.aarch64.rpm strongswan-debugsource-6.0.1-160000.3.1.aarch64.rpm strongswan-doc-6.0.1-160000.3.1.noarch.rpm strongswan-fips-6.0.1-160000.3.1.aarch64.rpm strongswan-ipsec-6.0.1-160000.3.1.aarch64.rpm strongswan-ipsec-debuginfo-6.0.1-160000.3.1.aarch64.rpm strongswan-mysql-6.0.1-160000.3.1.aarch64.rpm strongswan-mysql-debuginfo-6.0.1-160000.3.1.aarch64.rpm strongswan-nm-6.0.1-160000.3.1.aarch64.rpm strongswan-nm-debuginfo-6.0.1-160000.3.1.aarch64.rpm strongswan-sqlite-6.0.1-160000.3.1.aarch64.rpm strongswan-sqlite-debuginfo-6.0.1-160000.3.1.aarch64.rpm strongswan-6.0.1-160000.3.1.ppc64le.rpm strongswan-debuginfo-6.0.1-160000.3.1.ppc64le.rpm strongswan-debugsource-6.0.1-160000.3.1.ppc64le.rpm strongswan-fips-6.0.1-160000.3.1.ppc64le.rpm strongswan-ipsec-6.0.1-160000.3.1.ppc64le.rpm strongswan-ipsec-debuginfo-6.0.1-160000.3.1.ppc64le.rpm strongswan-mysql-6.0.1-160000.3.1.ppc64le.rpm strongswan-mysql-debuginfo-6.0.1-160000.3.1.ppc64le.rpm strongswan-nm-6.0.1-160000.3.1.ppc64le.rpm strongswan-nm-debuginfo-6.0.1-160000.3.1.ppc64le.rpm strongswan-sqlite-6.0.1-160000.3.1.ppc64le.rpm strongswan-sqlite-debuginfo-6.0.1-160000.3.1.ppc64le.rpm strongswan-6.0.1-160000.3.1.s390x.rpm strongswan-debuginfo-6.0.1-160000.3.1.s390x.rpm strongswan-debugsource-6.0.1-160000.3.1.s390x.rpm strongswan-fips-6.0.1-160000.3.1.s390x.rpm strongswan-ipsec-6.0.1-160000.3.1.s390x.rpm strongswan-ipsec-debuginfo-6.0.1-160000.3.1.s390x.rpm strongswan-mysql-6.0.1-160000.3.1.s390x.rpm strongswan-mysql-debuginfo-6.0.1-160000.3.1.s390x.rpm strongswan-nm-6.0.1-160000.3.1.s390x.rpm strongswan-nm-debuginfo-6.0.1-160000.3.1.s390x.rpm strongswan-sqlite-6.0.1-160000.3.1.s390x.rpm strongswan-sqlite-debuginfo-6.0.1-160000.3.1.s390x.rpm strongswan-6.0.1-160000.3.1.x86_64.rpm strongswan-debuginfo-6.0.1-160000.3.1.x86_64.rpm strongswan-debugsource-6.0.1-160000.3.1.x86_64.rpm strongswan-fips-6.0.1-160000.3.1.x86_64.rpm strongswan-ipsec-6.0.1-160000.3.1.x86_64.rpm strongswan-ipsec-debuginfo-6.0.1-160000.3.1.x86_64.rpm strongswan-mysql-6.0.1-160000.3.1.x86_64.rpm strongswan-mysql-debuginfo-6.0.1-160000.3.1.x86_64.rpm strongswan-nm-6.0.1-160000.3.1.x86_64.rpm strongswan-nm-debuginfo-6.0.1-160000.3.1.x86_64.rpm strongswan-sqlite-6.0.1-160000.3.1.x86_64.rpm strongswan-sqlite-debuginfo-6.0.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-91 Security update for python-cbor2 important SUSE SLFO 1.2 This update for python-cbor2 fixes the following issues: - CVE-2025-64076: Fixed bug in decode_definite_long_string() that causes incorrect chunk length calculation (bsc#1253746). Already fixed in release 5.6.3: - CVE-2024-26134: Fixed potential crash when hashing a CBORTag (bsc#1220096). python-cbor2-5.6.5-160000.3.1.src.rpm python-cbor2-debugsource-5.6.5-160000.3.1.aarch64.rpm python313-cbor2-5.6.5-160000.3.1.aarch64.rpm python313-cbor2-debuginfo-5.6.5-160000.3.1.aarch64.rpm python-cbor2-debugsource-5.6.5-160000.3.1.ppc64le.rpm python313-cbor2-5.6.5-160000.3.1.ppc64le.rpm python313-cbor2-debuginfo-5.6.5-160000.3.1.ppc64le.rpm python-cbor2-debugsource-5.6.5-160000.3.1.s390x.rpm python313-cbor2-5.6.5-160000.3.1.s390x.rpm python313-cbor2-debuginfo-5.6.5-160000.3.1.s390x.rpm python-cbor2-debugsource-5.6.5-160000.3.1.x86_64.rpm python313-cbor2-5.6.5-160000.3.1.x86_64.rpm python313-cbor2-debuginfo-5.6.5-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-92 Recommended update for afterburn important SUSE SLFO 1.2 This update for afterburn fixes the following issues: - Update to version 5.9.0.git21.a73f509: * docs/release-notes: update for release 5.10.0 * cargo: update dependencies * microsoft/azure: Add XML attribute alias for serde-xml-rs Fedora compat * docs/release-notes: Add entry for Azure SharedConfig XML parsing fix * microsoft/azure: Fix SharedConfig parsing of XML attributes * microsoft/azure: Mock goalstate.SharedConfig output in tests * providers/azure: switch SSH key retrieval from certs endpoint to IMDS as azure stopped providing keys in the old one (bsc#1250471) * build(deps): bump the build group with 8 updates * build(deps): bump slab from 0.4.10 to 0.4.11 * build(deps): bump actions/checkout from 4 to 5 * upcloud: implement UpCloud provider * build(deps): bump the build group with 4 updates - Update to version 5.9.0: * cargo: Afterburn release 5.9.0 * docs/release-notes: update for release 5.9.0 * cargo: update dependencies * Add TMT test structure and basic smoke test * build(deps): bump openssl from 0.10.72 to 0.10.73 * build(deps): bump reqwest from 0.12.15 to 0.12.18 * docs/release-notes: Update changelog entry * dracut: Return 255 in module-setup * oraclecloud: add release note and move base URL to constant * oraclecloud: implement oraclecloud provider * build(deps): bump nix from 0.29.0 to 0.30.1 * build(deps): bump zbus from 5.7.0 to 5.7.1 * build(deps): bump serde-xml-rs from 0.6.0 to 0.8.1 * build(deps): bump ipnetwork from 0.20.0 to 0.21.1 * build(deps): bump clap from 4.5.38 to 4.5.39 afterburn-5.9.0.git21.a73f509-160000.1.1.aarch64.rpm afterburn-5.9.0.git21.a73f509-160000.1.1.src.rpm afterburn-debuginfo-5.9.0.git21.a73f509-160000.1.1.aarch64.rpm afterburn-debugsource-5.9.0.git21.a73f509-160000.1.1.aarch64.rpm afterburn-dracut-5.9.0.git21.a73f509-160000.1.1.noarch.rpm afterburn-5.9.0.git21.a73f509-160000.1.1.ppc64le.rpm afterburn-debuginfo-5.9.0.git21.a73f509-160000.1.1.ppc64le.rpm afterburn-debugsource-5.9.0.git21.a73f509-160000.1.1.ppc64le.rpm afterburn-5.9.0.git21.a73f509-160000.1.1.s390x.rpm afterburn-debuginfo-5.9.0.git21.a73f509-160000.1.1.s390x.rpm afterburn-debugsource-5.9.0.git21.a73f509-160000.1.1.s390x.rpm afterburn-5.9.0.git21.a73f509-160000.1.1.x86_64.rpm afterburn-debuginfo-5.9.0.git21.a73f509-160000.1.1.x86_64.rpm afterburn-debugsource-5.9.0.git21.a73f509-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-93 Security update for mozjs128 important SUSE SLFO 1.2 This update for mozjs128 fixes the following issues: - Update to version 128.14.0 (bsc#1248162): + CVE-2025-9179: Sandbox escape due to invalid pointer in the Audio/Video: GMP component + CVE-2025-9180: Same-origin policy bypass in the Graphics: Canvas2D component + CVE-2025-9181: Uninitialized memory in the JavaScript Engine component + CVE-2025-9185: Memory safety bugs fixed in Firefox ESR 115.27, Firefox ESR 128.14, Thunderbird ESR 128.14, Firefox ESR 140.2, Thunderbird ESR 140.2, Firefox 142 and Thunderbird 142 - Update to version 128.13.0: + CVE-2025-8027: JavaScript engine only wrote partial return value to stack + CVE-2025-8028: Large branch table could lead to truncated instruction + CVE-2025-8029: javascript: URLs executed on object and embed tags + CVE-2025-8030: Potential user-assisted code execution in “Copy as cURL” command + CVE-2025-8031: Incorrect URL stripping in CSP reports + CVE-2025-8032: XSLT documents could bypass CSP + CVE-2025-8033: Incorrect JavaScript state machine for generators + CVE-2025-8034: Memory safety bugs fixed in Firefox ESR 115.26, Firefox ESR 128.13, Thunderbird ESR 128.13, Firefox ESR 140.1, Thunderbird ESR 140.1, Firefox 141 and Thunderbird 141 + CVE-2025-8035: Memory safety bugs fixed in Firefox ESR 128.13, Thunderbird ESR 128.13, Firefox ESR 140.1, Thunderbird ESR 140.1, Firefox 141 and Thunderbird 141 - Update to version 128.12.0: + CVE-2025-6424: Use-after-free in FontFaceSet + CVE-2025-6425: The WebCompat WebExtension shipped with Firefox exposed a persistent UUID + CVE-2025-6426: No warning when opening executable terminal files on macOS + CVE-2025-6429: Incorrect parsing of URLs could have allowed embedding of youtube.com + CVE-2025-6430: Content-Disposition header ignored when a file is included in an embed or object tag - Update to version 128.11.0: + CVE-2025-5283: Double-free in libvpx encoder + CVE-2025-5263: Error handling for script execution was incorrectly isolated from web content + CVE-2025-5264: Potential local code execution in “Copy as cURL” command + CVE-2025-5265: Potential local code execution in “Copy as cURL” command + CVE-2025-5266: Script element events leaked cross-origin resource status + CVE-2025-5267: Clickjacking vulnerability could have led to leaking saved payment card details + CVE-2025-5268: Memory safety bugs fixed in Firefox 139, Thunderbird 139, Firefox ESR 128.11, and Thunderbird 128.11 + CVE-2025-5269: Memory safety bug fixed in Firefox ESR 128.11 and Thunderbird 128.11 libmozjs-128-0-128.14.0-160000.1.1.aarch64.rpm libmozjs-128-0-debuginfo-128.14.0-160000.1.1.aarch64.rpm mozjs128-128.14.0-160000.1.1.aarch64.rpm mozjs128-128.14.0-160000.1.1.src.rpm mozjs128-debuginfo-128.14.0-160000.1.1.aarch64.rpm mozjs128-debugsource-128.14.0-160000.1.1.aarch64.rpm mozjs128-devel-128.14.0-160000.1.1.aarch64.rpm libmozjs-128-0-128.14.0-160000.1.1.ppc64le.rpm libmozjs-128-0-debuginfo-128.14.0-160000.1.1.ppc64le.rpm mozjs128-128.14.0-160000.1.1.ppc64le.rpm mozjs128-debuginfo-128.14.0-160000.1.1.ppc64le.rpm mozjs128-debugsource-128.14.0-160000.1.1.ppc64le.rpm mozjs128-devel-128.14.0-160000.1.1.ppc64le.rpm libmozjs-128-0-128.14.0-160000.1.1.s390x.rpm libmozjs-128-0-debuginfo-128.14.0-160000.1.1.s390x.rpm mozjs128-128.14.0-160000.1.1.s390x.rpm mozjs128-debuginfo-128.14.0-160000.1.1.s390x.rpm mozjs128-debugsource-128.14.0-160000.1.1.s390x.rpm mozjs128-devel-128.14.0-160000.1.1.s390x.rpm libmozjs-128-0-128.14.0-160000.1.1.x86_64.rpm libmozjs-128-0-debuginfo-128.14.0-160000.1.1.x86_64.rpm mozjs128-128.14.0-160000.1.1.x86_64.rpm mozjs128-debuginfo-128.14.0-160000.1.1.x86_64.rpm mozjs128-debugsource-128.14.0-160000.1.1.x86_64.rpm mozjs128-devel-128.14.0-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-94 Recommended update for samba moderate SUSE SLFO 1.2 This update for samba fixes the following issues: - Update [printers] location to /var/samba/spool (bsc#1249179). - Update to version 4.22.6: * macOS Finder client DFS broken on 4.22.0; * Samba 4.22 breaks Time Machine; * Spotlight search restriction for shares incomplete and default search searches in too many attributes; * rpcd_mdssvc may crash because name mangling is not initialized; * Only increment lease epoch if a lease was granted; * samba-4.21 fails to join AD when multiple DCs are returned; * 'net ads group' failed to list domain groups; * vfs_ceph_new should not use ceph_ll_nonblocking_readv_writev for fsync_send; * CTDB_SOCKET can be used even when CTDB_TEST_MODE is not set; ctdb-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ctdb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ctdb-pcp-pmda-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ldb-tools-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ldb-tools-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm libldb-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm libldb2-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm libldb2-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm python3-ldb-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm python3-ldb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-4.22.6+git.435.014e5eceb5d-160000.1.1.src.rpm samba-ad-dc-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ad-dc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ad-dc-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ceph-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ceph-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-client-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-client-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-client-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-client-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-dcerpc-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-dcerpc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-debugsource-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-doc-4.22.6+git.435.014e5eceb5d-160000.1.1.noarch.rpm samba-dsdb-modules-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-dsdb-modules-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-gpupdate-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ldb-ldap-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-ldb-ldap-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-libs-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-libs-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-test-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-test-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-tool-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-winbind-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-winbind-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-winbind-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm samba-winbind-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.aarch64.rpm ctdb-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ctdb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ldb-tools-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ldb-tools-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm libldb-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm libldb2-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm libldb2-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm python3-ldb-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm python3-ldb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ad-dc-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ad-dc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ad-dc-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-client-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-client-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-client-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-client-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-dcerpc-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-dcerpc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-debugsource-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-dsdb-modules-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-dsdb-modules-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-gpupdate-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ldb-ldap-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-ldb-ldap-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-libs-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-libs-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-test-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-test-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-tool-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-winbind-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-winbind-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-winbind-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm samba-winbind-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.ppc64le.rpm ctdb-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ctdb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ctdb-pcp-pmda-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ldb-tools-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ldb-tools-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm libldb-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm libldb2-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm libldb2-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm python3-ldb-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm python3-ldb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ad-dc-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ad-dc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ad-dc-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-client-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-client-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-client-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-client-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-dcerpc-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-dcerpc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-debugsource-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-dsdb-modules-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-dsdb-modules-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-gpupdate-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ldb-ldap-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-ldb-ldap-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-libs-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-libs-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-test-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-test-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-tool-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-winbind-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-winbind-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-winbind-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm samba-winbind-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.s390x.rpm ctdb-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm ctdb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm ctdb-pcp-pmda-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm ctdb-pcp-pmda-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm ldb-tools-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm ldb-tools-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm libldb-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm libldb2-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm libldb2-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm python3-ldb-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm python3-ldb-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ad-dc-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ad-dc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ad-dc-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ad-dc-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ceph-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ceph-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-client-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-client-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-client-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-client-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-dcerpc-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-dcerpc-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-debugsource-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-devel-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-dsdb-modules-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-dsdb-modules-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-gpupdate-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ldb-ldap-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-ldb-ldap-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-libs-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-libs-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-python3-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-python3-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-test-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-test-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-tool-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-winbind-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-winbind-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-winbind-libs-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm samba-winbind-libs-debuginfo-4.22.6+git.435.014e5eceb5d-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-95 Recommended update for libpulp important SUSE SLFO 1.2 This update for libpulp fixes the following issues: - Fix dlopen and dlmopen search paths (bsc#1250436). - Fix ld.so.conf being modified in SLE-16. - Fix `ldconfig` constructing ld.so.cache in the new snapshot (bsc#1249417). - Improve `ulp <command> --help` (bsc#1243787). - Add support to glibc 2.42. libpulp-0.3.17-160000.1.1.src.rpm libpulp-debuginfo-0.3.17-160000.1.1.ppc64le.rpm libpulp-debugsource-0.3.17-160000.1.1.ppc64le.rpm libpulp-tools-0.3.17-160000.1.1.ppc64le.rpm libpulp-tools-debuginfo-0.3.17-160000.1.1.ppc64le.rpm libpulp0-0.3.17-160000.1.1.ppc64le.rpm libpulp0-debuginfo-0.3.17-160000.1.1.ppc64le.rpm libpulp-debuginfo-0.3.17-160000.1.1.x86_64.rpm libpulp-debugsource-0.3.17-160000.1.1.x86_64.rpm libpulp-tools-0.3.17-160000.1.1.x86_64.rpm libpulp-tools-debuginfo-0.3.17-160000.1.1.x86_64.rpm libpulp0-0.3.17-160000.1.1.x86_64.rpm libpulp0-debuginfo-0.3.17-160000.1.1.x86_64.rpm openSUSE-Leap-16.0-96 Security update for openexr important SUSE SLFO 1.2 This update for openexr fixes the following issues: Changes in openexr: - CVE-2025-12495: Fixed a file parsing Heap-based Buffer Overflow Remote Code Execution Vulnerability [bsc#1253714] - CVE-2025-12839: Fixed a file parsing Heap-based Buffer Overflow Remote Code Execution Vulnerability [bsc#1253715] - CVE-2025-12840: Fixed a file parsing Heap-based Buffer Overflow Remote Code Execution Vulnerability [bsc#1253713] libIex-3_2-31-3.2.2-160000.4.1.aarch64.rpm libIex-3_2-31-debuginfo-3.2.2-160000.4.1.aarch64.rpm libIlmThread-3_2-31-3.2.2-160000.4.1.aarch64.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.4.1.aarch64.rpm libOpenEXR-3_2-31-3.2.2-160000.4.1.aarch64.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.4.1.aarch64.rpm libOpenEXRCore-3_2-31-3.2.2-160000.4.1.aarch64.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.4.1.aarch64.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.4.1.aarch64.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.4.1.aarch64.rpm openexr-3.2.2-160000.4.1.aarch64.rpm openexr-3.2.2-160000.4.1.src.rpm openexr-debuginfo-3.2.2-160000.4.1.aarch64.rpm openexr-debugsource-3.2.2-160000.4.1.aarch64.rpm openexr-devel-3.2.2-160000.4.1.aarch64.rpm openexr-doc-3.2.2-160000.4.1.noarch.rpm libIex-3_2-31-3.2.2-160000.4.1.ppc64le.rpm libIex-3_2-31-debuginfo-3.2.2-160000.4.1.ppc64le.rpm libIlmThread-3_2-31-3.2.2-160000.4.1.ppc64le.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.4.1.ppc64le.rpm libOpenEXR-3_2-31-3.2.2-160000.4.1.ppc64le.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.4.1.ppc64le.rpm libOpenEXRCore-3_2-31-3.2.2-160000.4.1.ppc64le.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.4.1.ppc64le.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.4.1.ppc64le.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.4.1.ppc64le.rpm openexr-3.2.2-160000.4.1.ppc64le.rpm openexr-debuginfo-3.2.2-160000.4.1.ppc64le.rpm openexr-debugsource-3.2.2-160000.4.1.ppc64le.rpm openexr-devel-3.2.2-160000.4.1.ppc64le.rpm libIex-3_2-31-3.2.2-160000.4.1.s390x.rpm libIex-3_2-31-debuginfo-3.2.2-160000.4.1.s390x.rpm libIlmThread-3_2-31-3.2.2-160000.4.1.s390x.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.4.1.s390x.rpm libOpenEXR-3_2-31-3.2.2-160000.4.1.s390x.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.4.1.s390x.rpm libOpenEXRCore-3_2-31-3.2.2-160000.4.1.s390x.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.4.1.s390x.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.4.1.s390x.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.4.1.s390x.rpm openexr-3.2.2-160000.4.1.s390x.rpm openexr-debuginfo-3.2.2-160000.4.1.s390x.rpm openexr-debugsource-3.2.2-160000.4.1.s390x.rpm openexr-devel-3.2.2-160000.4.1.s390x.rpm libIex-3_2-31-3.2.2-160000.4.1.x86_64.rpm libIex-3_2-31-debuginfo-3.2.2-160000.4.1.x86_64.rpm libIex-3_2-31-x86-64-v3-3.2.2-160000.4.1.x86_64.rpm libIex-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.4.1.x86_64.rpm libIlmThread-3_2-31-3.2.2-160000.4.1.x86_64.rpm libIlmThread-3_2-31-debuginfo-3.2.2-160000.4.1.x86_64.rpm libIlmThread-3_2-31-x86-64-v3-3.2.2-160000.4.1.x86_64.rpm libIlmThread-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXR-3_2-31-3.2.2-160000.4.1.x86_64.rpm libOpenEXR-3_2-31-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXR-3_2-31-x86-64-v3-3.2.2-160000.4.1.x86_64.rpm libOpenEXR-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXRCore-3_2-31-3.2.2-160000.4.1.x86_64.rpm libOpenEXRCore-3_2-31-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXRCore-3_2-31-x86-64-v3-3.2.2-160000.4.1.x86_64.rpm libOpenEXRCore-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXRUtil-3_2-31-3.2.2-160000.4.1.x86_64.rpm libOpenEXRUtil-3_2-31-debuginfo-3.2.2-160000.4.1.x86_64.rpm libOpenEXRUtil-3_2-31-x86-64-v3-3.2.2-160000.4.1.x86_64.rpm libOpenEXRUtil-3_2-31-x86-64-v3-debuginfo-3.2.2-160000.4.1.x86_64.rpm openexr-3.2.2-160000.4.1.x86_64.rpm openexr-debuginfo-3.2.2-160000.4.1.x86_64.rpm openexr-debugsource-3.2.2-160000.4.1.x86_64.rpm openexr-devel-3.2.2-160000.4.1.x86_64.rpm openSUSE-Leap-16.0-97 Recommended update for libX11 important SUSE SLFO 1.2 This update for libX11 fixes the following issues: - Fix: Barcode scanner input gets jumbled when ibus is running and an application written in certain frameworks has focus (bsc#1252250) libX11-1.8.10-160000.3.1.src.rpm libX11-6-1.8.10-160000.3.1.aarch64.rpm libX11-6-debuginfo-1.8.10-160000.3.1.aarch64.rpm libX11-data-1.8.10-160000.3.1.noarch.rpm libX11-debugsource-1.8.10-160000.3.1.aarch64.rpm libX11-devel-1.8.10-160000.3.1.aarch64.rpm libX11-devel-doc-1.8.10-160000.3.1.noarch.rpm libX11-xcb1-1.8.10-160000.3.1.aarch64.rpm libX11-xcb1-debuginfo-1.8.10-160000.3.1.aarch64.rpm libX11-6-1.8.10-160000.3.1.ppc64le.rpm libX11-6-debuginfo-1.8.10-160000.3.1.ppc64le.rpm libX11-debugsource-1.8.10-160000.3.1.ppc64le.rpm libX11-devel-1.8.10-160000.3.1.ppc64le.rpm libX11-xcb1-1.8.10-160000.3.1.ppc64le.rpm libX11-xcb1-debuginfo-1.8.10-160000.3.1.ppc64le.rpm libX11-6-1.8.10-160000.3.1.s390x.rpm libX11-6-debuginfo-1.8.10-160000.3.1.s390x.rpm libX11-debugsource-1.8.10-160000.3.1.s390x.rpm libX11-devel-1.8.10-160000.3.1.s390x.rpm libX11-xcb1-1.8.10-160000.3.1.s390x.rpm libX11-xcb1-debuginfo-1.8.10-160000.3.1.s390x.rpm libX11-6-1.8.10-160000.3.1.x86_64.rpm libX11-6-debuginfo-1.8.10-160000.3.1.x86_64.rpm libX11-debugsource-1.8.10-160000.3.1.x86_64.rpm libX11-devel-1.8.10-160000.3.1.x86_64.rpm libX11-xcb1-1.8.10-160000.3.1.x86_64.rpm libX11-xcb1-debuginfo-1.8.10-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-98 Security update for binutils important SUSE SLFO 1.2 This update for binutils fixes the following issues: Changes in binutils: - Update to current 2.45 branch at 94cb1c075 to include fix for PR33584 (a problem related to LTO vs fortran COMMON blocks). - Do not enable '-z gcs=implicit' on aarch64 for old codestreams. Update to version 2.45: * New versioned release of libsframe.so.2 * s390: tools now support SFrame format 2; recognize "z17" as CPU name [bsc#1247105, jsc#IBM-1485] * sframe sections are now of ELF section type SHT_GNU_SFRAME. * sframe secions generated by the assembler have SFRAME_F_FDE_FUNC_START_PCREL set. * riscv: Support more extensions: standard: Zicfiss v1.0, Zicfilp v1.0, Zcmp v1.0, Zcmt v1.0, Smrnmi v1.0, S[sm]dbltrp v1.0, S[sm]ctr v1.0, ssqosid v1.0, ssnpm v1.0, smnpm v1.0, smmpm v1.0, sspm v1.0, supm v1.0, sha v1.0, zce v1.0, smcdeleg v1.0, ssccfg v1.0, svvptc v1.0, zilsd v1.0, zclsd v1.0, smrnmi v1.0; vendor: CORE-V, xcvbitmanip v1.0 and xcvsimd v1.0; SiFive, xsfvqmaccdod v1.0, xsfvqmaccqoqv1.0 and xsfvfnrclipxfqf v1.0; T-Head: xtheadvdot v1.0; MIPS: xmipscbop v1.0, xmipscmov v1.0, xmipsexectl v1.0, xmipslsp v1.0. * Support RISC-V privileged version 1.13, profiles 20/22/23, and .bfloat16 directive. * x86: Add support for these ISAs: Intel Diamond Rapids AMX, MOVRS, AVX10.2 (including SM4), MSR_IMM; Zhaoxin PadLock PHE2, RNG2, GMI, XMODX. Drop support for AVX10.2 256 bit rounding. * arm: Add support for most of Armv9.6, enabled by -march=armv9.6-a and extensions '+cmpbr', '+f8f16mm', '+f8f32mm', '+fprcvt', '+lsfe', '+lsui', '+occmo', '+pops', '+sme2p2', '+ssve-aes', '+sve-aes', '+sve-aes2', '+sve-bfscale', '+sve-f16f32mm' and '+sve2p2'. * Predefined symbols "GAS(version)" and, on non-release builds, "GAS(date)" are now being made available. * Add .errif and .warnif directives. * linker: - Add --image-base=<ADDR> option to the ELF linker to behave the same as -Ttext-segment for compatibility with LLD. - Add support for mixed LTO and non-LTO codes in relocatable output. - s390: linker generates .eh_frame and/or .sframe for linker generated .plt sections by default (can be disabled by --no-ld-generated-unwind-info). - riscv: add new PLT formats, and GNU property merge rules for zicfiss and zicfilp extensions. - gold is no longer included - Contains fixes for these non-CVEs (not security bugs per upstreams SECURITY.md): * bsc#1236632 aka CVE-2025-0840 aka PR32560 * bsc#1236977 aka CVE-2025-1149 aka PR32576 * bsc#1236978 aka CVE-2025-1148 aka PR32576 * bsc#1236999 aka CVE-2025-1176 aka PR32636 * bsc#1237000 aka CVE-2025-1153 aka PR32603 * bsc#1237001 aka CVE-2025-1152 aka PR32576 * bsc#1237003 aka CVE-2025-1151 aka PR32576 * bsc#1237005 aka CVE-2025-1150 aka PR32576 * bsc#1237018 aka CVE-2025-1178 aka PR32638 * bsc#1237019 aka CVE-2025-1181 aka PR32643 * bsc#1237020 aka CVE-2025-1180 aka PR32642 * bsc#1237021 aka CVE-2025-1179 aka PR32640 * bsc#1237042 aka CVE-2025-1182 aka PR32644 * bsc#1240870 aka CVE-2025-3198 aka PR32716 * bsc#1243756 aka CVE-2025-5244 aka PR32858 * bsc#1243760 aka CVE-2025-5245 aka PR32829 * bsc#1246481 aka CVE-2025-7545 aka PR33049 * bsc#1246486 aka CVE-2025-7546 aka PR33050 * bsc#1247114 aka CVE-2025-8224 aka PR32109 * bsc#1247117 aka CVE-2025-8225 no PR * bsc#1236976 aka CVE-2025-1147 aka PR32556 * bsc#1250632 aka CVE-2025-11083 aka PR33457 * bsc#1251275 aka CVE-2025-11412 aka PR33452 * bsc#1251276 aka CVE-2025-11413 aka PR33456 * bsc#1251277 aka CVE-2025-11414 aka PR33450 * bsc#1251794 aka CVE-2025-11494 aka PR33499 * bsc#1251795 aka CVE-2025-11495 aka PR33502 binutils-2.43-branch.diff.gz binutils-2.45-160000.1.1.aarch64.rpm binutils-2.45-160000.1.1.src.rpm binutils-debuginfo-2.45-160000.1.1.aarch64.rpm binutils-debugsource-2.45-160000.1.1.aarch64.rpm binutils-devel-2.45-160000.1.1.aarch64.rpm gprofng-2.45-160000.1.1.aarch64.rpm gprofng-debuginfo-2.45-160000.1.1.aarch64.rpm libctf-nobfd0-2.45-160000.1.1.aarch64.rpm libctf-nobfd0-debuginfo-2.45-160000.1.1.aarch64.rpm libctf0-2.45-160000.1.1.aarch64.rpm libctf0-debuginfo-2.45-160000.1.1.aarch64.rpm cross-hppa-binutils-2.45-160000.1.1.aarch64.rpm cross-hppa-binutils-2.45-160000.1.1.src.rpm cross-hppa-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-hppa-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-hppa64-binutils-2.45-160000.1.1.aarch64.rpm cross-hppa64-binutils-2.45-160000.1.1.src.rpm cross-hppa64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-hppa64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-arm-binutils-2.45-160000.1.1.aarch64.rpm cross-arm-binutils-2.45-160000.1.1.src.rpm cross-arm-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-arm-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-i386-binutils-2.45-160000.1.1.aarch64.rpm cross-i386-binutils-2.45-160000.1.1.src.rpm cross-i386-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-i386-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-x86_64-binutils-2.45-160000.1.1.aarch64.rpm cross-x86_64-binutils-2.45-160000.1.1.src.rpm cross-x86_64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-x86_64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-s390-binutils-2.45-160000.1.1.aarch64.rpm cross-s390-binutils-2.45-160000.1.1.src.rpm cross-s390-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-s390-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-s390x-binutils-2.45-160000.1.1.aarch64.rpm cross-s390x-binutils-2.45-160000.1.1.src.rpm cross-s390x-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-s390x-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-ppc-binutils-2.45-160000.1.1.aarch64.rpm cross-ppc-binutils-2.45-160000.1.1.src.rpm cross-ppc-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-ppc-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-ppc64-binutils-2.45-160000.1.1.aarch64.rpm cross-ppc64-binutils-2.45-160000.1.1.src.rpm cross-ppc64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-ppc64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-ppc64le-binutils-2.45-160000.1.1.aarch64.rpm cross-ppc64le-binutils-2.45-160000.1.1.src.rpm cross-ppc64le-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-ppc64le-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-ia64-binutils-2.45-160000.1.1.aarch64.rpm cross-ia64-binutils-2.45-160000.1.1.src.rpm cross-ia64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-ia64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-sparc-binutils-2.45-160000.1.1.aarch64.rpm cross-sparc-binutils-2.45-160000.1.1.src.rpm cross-sparc-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-sparc-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-sparc64-binutils-2.45-160000.1.1.aarch64.rpm cross-sparc64-binutils-2.45-160000.1.1.src.rpm cross-sparc64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-sparc64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-spu-binutils-2.45-160000.1.1.aarch64.rpm cross-spu-binutils-2.45-160000.1.1.src.rpm cross-spu-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-spu-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-avr-binutils-2.45-160000.1.1.aarch64.rpm cross-avr-binutils-2.45-160000.1.1.src.rpm cross-avr-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-avr-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-pru-binutils-2.45-160000.1.1.aarch64.rpm cross-pru-binutils-2.45-160000.1.1.src.rpm cross-pru-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-pru-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-loongarch64-binutils-2.45-160000.1.1.aarch64.rpm cross-loongarch64-binutils-2.45-160000.1.1.src.rpm cross-loongarch64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-loongarch64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-mips-binutils-2.45-160000.1.1.aarch64.rpm cross-mips-binutils-2.45-160000.1.1.src.rpm cross-mips-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-mips-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-m68k-binutils-2.45-160000.1.1.aarch64.rpm cross-m68k-binutils-2.45-160000.1.1.src.rpm cross-m68k-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-m68k-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-epiphany-binutils-2.45-160000.1.1.aarch64.rpm cross-epiphany-binutils-2.45-160000.1.1.src.rpm cross-epiphany-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-epiphany-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-rx-binutils-2.45-160000.1.1.aarch64.rpm cross-rx-binutils-2.45-160000.1.1.src.rpm cross-rx-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-rx-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-riscv64-binutils-2.45-160000.1.1.aarch64.rpm cross-riscv64-binutils-2.45-160000.1.1.src.rpm cross-riscv64-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-riscv64-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-xtensa-binutils-2.45-160000.1.1.aarch64.rpm cross-xtensa-binutils-2.45-160000.1.1.src.rpm cross-xtensa-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-xtensa-binutils-debugsource-2.45-160000.1.1.aarch64.rpm cross-bpf-binutils-2.45-160000.1.1.aarch64.rpm cross-bpf-binutils-2.45-160000.1.1.src.rpm cross-bpf-binutils-debuginfo-2.45-160000.1.1.aarch64.rpm cross-bpf-binutils-debugsource-2.45-160000.1.1.aarch64.rpm bpftool-7.5.0-160000.2.3.aarch64.rpm bpftool-7.5.0-160000.2.3.src.rpm bpftool-bash-completion-7.5.0-160000.2.3.aarch64.rpm bpftool-debuginfo-7.5.0-160000.2.3.aarch64.rpm bpftool-debugsource-7.5.0-160000.2.3.aarch64.rpm binutils-2.45-160000.1.1.ppc64le.rpm binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm binutils-debugsource-2.45-160000.1.1.ppc64le.rpm binutils-devel-2.45-160000.1.1.ppc64le.rpm libctf-nobfd0-2.45-160000.1.1.ppc64le.rpm libctf-nobfd0-debuginfo-2.45-160000.1.1.ppc64le.rpm libctf0-2.45-160000.1.1.ppc64le.rpm libctf0-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-aarch64-binutils-2.45-160000.1.1.ppc64le.rpm cross-aarch64-binutils-2.45-160000.1.1.src.rpm cross-aarch64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-aarch64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-hppa-binutils-2.45-160000.1.1.ppc64le.rpm cross-hppa-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-hppa-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-hppa64-binutils-2.45-160000.1.1.ppc64le.rpm cross-hppa64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-hppa64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-arm-binutils-2.45-160000.1.1.ppc64le.rpm cross-arm-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-arm-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-i386-binutils-2.45-160000.1.1.ppc64le.rpm cross-i386-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-i386-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-x86_64-binutils-2.45-160000.1.1.ppc64le.rpm cross-x86_64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-x86_64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-s390-binutils-2.45-160000.1.1.ppc64le.rpm cross-s390-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-s390-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-s390x-binutils-2.45-160000.1.1.ppc64le.rpm cross-s390x-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-s390x-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-ppc-binutils-2.45-160000.1.1.ppc64le.rpm cross-ppc-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-ppc-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-ppc64-binutils-2.45-160000.1.1.ppc64le.rpm cross-ppc64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-ppc64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-ia64-binutils-2.45-160000.1.1.ppc64le.rpm cross-ia64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-ia64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-sparc-binutils-2.45-160000.1.1.ppc64le.rpm cross-sparc-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-sparc-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-sparc64-binutils-2.45-160000.1.1.ppc64le.rpm cross-sparc64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-sparc64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-spu-binutils-2.45-160000.1.1.ppc64le.rpm cross-spu-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-spu-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-avr-binutils-2.45-160000.1.1.ppc64le.rpm cross-avr-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-avr-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-pru-binutils-2.45-160000.1.1.ppc64le.rpm cross-pru-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-pru-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-loongarch64-binutils-2.45-160000.1.1.ppc64le.rpm cross-loongarch64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-loongarch64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-mips-binutils-2.45-160000.1.1.ppc64le.rpm cross-mips-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-mips-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-m68k-binutils-2.45-160000.1.1.ppc64le.rpm cross-m68k-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-m68k-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-epiphany-binutils-2.45-160000.1.1.ppc64le.rpm cross-epiphany-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-epiphany-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-rx-binutils-2.45-160000.1.1.ppc64le.rpm cross-rx-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-rx-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-riscv64-binutils-2.45-160000.1.1.ppc64le.rpm cross-riscv64-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-riscv64-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-xtensa-binutils-2.45-160000.1.1.ppc64le.rpm cross-xtensa-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-xtensa-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm cross-bpf-binutils-2.45-160000.1.1.ppc64le.rpm cross-bpf-binutils-debuginfo-2.45-160000.1.1.ppc64le.rpm cross-bpf-binutils-debugsource-2.45-160000.1.1.ppc64le.rpm bpftool-7.5.0-160000.2.3.ppc64le.rpm bpftool-bash-completion-7.5.0-160000.2.3.ppc64le.rpm bpftool-debuginfo-7.5.0-160000.2.3.ppc64le.rpm bpftool-debugsource-7.5.0-160000.2.3.ppc64le.rpm binutils-2.45-160000.1.1.s390x.rpm binutils-debuginfo-2.45-160000.1.1.s390x.rpm binutils-debugsource-2.45-160000.1.1.s390x.rpm binutils-devel-2.45-160000.1.1.s390x.rpm libctf-nobfd0-2.45-160000.1.1.s390x.rpm libctf-nobfd0-debuginfo-2.45-160000.1.1.s390x.rpm libctf0-2.45-160000.1.1.s390x.rpm libctf0-debuginfo-2.45-160000.1.1.s390x.rpm cross-aarch64-binutils-2.45-160000.1.1.s390x.rpm cross-aarch64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-aarch64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-hppa-binutils-2.45-160000.1.1.s390x.rpm cross-hppa-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-hppa-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-hppa64-binutils-2.45-160000.1.1.s390x.rpm cross-hppa64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-hppa64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-arm-binutils-2.45-160000.1.1.s390x.rpm cross-arm-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-arm-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-i386-binutils-2.45-160000.1.1.s390x.rpm cross-i386-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-i386-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-x86_64-binutils-2.45-160000.1.1.s390x.rpm cross-x86_64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-x86_64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-s390-binutils-2.45-160000.1.1.s390x.rpm cross-s390-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-s390-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-ppc-binutils-2.45-160000.1.1.s390x.rpm cross-ppc-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-ppc-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-ppc64-binutils-2.45-160000.1.1.s390x.rpm cross-ppc64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-ppc64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-ppc64le-binutils-2.45-160000.1.1.s390x.rpm cross-ppc64le-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-ppc64le-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-ia64-binutils-2.45-160000.1.1.s390x.rpm cross-ia64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-ia64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-sparc-binutils-2.45-160000.1.1.s390x.rpm cross-sparc-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-sparc-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-sparc64-binutils-2.45-160000.1.1.s390x.rpm cross-sparc64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-sparc64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-spu-binutils-2.45-160000.1.1.s390x.rpm cross-spu-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-spu-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-avr-binutils-2.45-160000.1.1.s390x.rpm cross-avr-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-avr-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-pru-binutils-2.45-160000.1.1.s390x.rpm cross-pru-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-pru-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-loongarch64-binutils-2.45-160000.1.1.s390x.rpm cross-loongarch64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-loongarch64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-mips-binutils-2.45-160000.1.1.s390x.rpm cross-mips-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-mips-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-m68k-binutils-2.45-160000.1.1.s390x.rpm cross-m68k-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-m68k-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-epiphany-binutils-2.45-160000.1.1.s390x.rpm cross-epiphany-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-epiphany-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-rx-binutils-2.45-160000.1.1.s390x.rpm cross-rx-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-rx-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-riscv64-binutils-2.45-160000.1.1.s390x.rpm cross-riscv64-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-riscv64-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-xtensa-binutils-2.45-160000.1.1.s390x.rpm cross-xtensa-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-xtensa-binutils-debugsource-2.45-160000.1.1.s390x.rpm cross-bpf-binutils-2.45-160000.1.1.s390x.rpm cross-bpf-binutils-debuginfo-2.45-160000.1.1.s390x.rpm cross-bpf-binutils-debugsource-2.45-160000.1.1.s390x.rpm bpftool-7.5.0-160000.2.3.s390x.rpm bpftool-bash-completion-7.5.0-160000.2.3.s390x.rpm bpftool-debuginfo-7.5.0-160000.2.3.s390x.rpm bpftool-debugsource-7.5.0-160000.2.3.s390x.rpm binutils-2.45-160000.1.1.x86_64.rpm binutils-debuginfo-2.45-160000.1.1.x86_64.rpm binutils-debugsource-2.45-160000.1.1.x86_64.rpm binutils-devel-2.45-160000.1.1.x86_64.rpm gprofng-2.45-160000.1.1.x86_64.rpm gprofng-debuginfo-2.45-160000.1.1.x86_64.rpm libctf-nobfd0-2.45-160000.1.1.x86_64.rpm libctf-nobfd0-debuginfo-2.45-160000.1.1.x86_64.rpm libctf0-2.45-160000.1.1.x86_64.rpm libctf0-debuginfo-2.45-160000.1.1.x86_64.rpm cross-aarch64-binutils-2.45-160000.1.1.x86_64.rpm cross-aarch64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-aarch64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-hppa-binutils-2.45-160000.1.1.x86_64.rpm cross-hppa-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-hppa-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-hppa64-binutils-2.45-160000.1.1.x86_64.rpm cross-hppa64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-hppa64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-arm-binutils-2.45-160000.1.1.x86_64.rpm cross-arm-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-arm-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-i386-binutils-2.45-160000.1.1.x86_64.rpm cross-i386-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-i386-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-s390-binutils-2.45-160000.1.1.x86_64.rpm cross-s390-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-s390-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-s390x-binutils-2.45-160000.1.1.x86_64.rpm cross-s390x-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-s390x-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-ppc-binutils-2.45-160000.1.1.x86_64.rpm cross-ppc-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-ppc-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-ppc64-binutils-2.45-160000.1.1.x86_64.rpm cross-ppc64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-ppc64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-ppc64le-binutils-2.45-160000.1.1.x86_64.rpm cross-ppc64le-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-ppc64le-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-ia64-binutils-2.45-160000.1.1.x86_64.rpm cross-ia64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-ia64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-sparc-binutils-2.45-160000.1.1.x86_64.rpm cross-sparc-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-sparc-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-sparc64-binutils-2.45-160000.1.1.x86_64.rpm cross-sparc64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-sparc64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-spu-binutils-2.45-160000.1.1.x86_64.rpm cross-spu-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-spu-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-avr-binutils-2.45-160000.1.1.x86_64.rpm cross-avr-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-avr-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-pru-binutils-2.45-160000.1.1.x86_64.rpm cross-pru-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-pru-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-loongarch64-binutils-2.45-160000.1.1.x86_64.rpm cross-loongarch64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-loongarch64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-mips-binutils-2.45-160000.1.1.x86_64.rpm cross-mips-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-mips-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-m68k-binutils-2.45-160000.1.1.x86_64.rpm cross-m68k-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-m68k-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-epiphany-binutils-2.45-160000.1.1.x86_64.rpm cross-epiphany-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-epiphany-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-rx-binutils-2.45-160000.1.1.x86_64.rpm cross-rx-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-rx-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-riscv64-binutils-2.45-160000.1.1.x86_64.rpm cross-riscv64-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-riscv64-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-xtensa-binutils-2.45-160000.1.1.x86_64.rpm cross-xtensa-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-xtensa-binutils-debugsource-2.45-160000.1.1.x86_64.rpm cross-bpf-binutils-2.45-160000.1.1.x86_64.rpm cross-bpf-binutils-debuginfo-2.45-160000.1.1.x86_64.rpm cross-bpf-binutils-debugsource-2.45-160000.1.1.x86_64.rpm bpftool-7.5.0-160000.2.3.x86_64.rpm bpftool-bash-completion-7.5.0-160000.2.3.x86_64.rpm bpftool-debuginfo-7.5.0-160000.2.3.x86_64.rpm bpftool-debugsource-7.5.0-160000.2.3.x86_64.rpm openSUSE-Leap-16.0-99 Recommended update for re2c important SUSE SLFO 1.2 This update for re2c fixes the following issues: - Fix the %licence tag for re2c (bsc#1252224) re2c-4.1-160000.3.1.aarch64.rpm re2c-4.1-160000.3.1.src.rpm re2c-debuginfo-4.1-160000.3.1.aarch64.rpm re2c-debugsource-4.1-160000.3.1.aarch64.rpm re2c-4.1-160000.3.1.ppc64le.rpm re2c-debuginfo-4.1-160000.3.1.ppc64le.rpm re2c-debugsource-4.1-160000.3.1.ppc64le.rpm re2c-4.1-160000.3.1.s390x.rpm re2c-debuginfo-4.1-160000.3.1.s390x.rpm re2c-debugsource-4.1-160000.3.1.s390x.rpm re2c-4.1-160000.3.1.x86_64.rpm re2c-debuginfo-4.1-160000.3.1.x86_64.rpm re2c-debugsource-4.1-160000.3.1.x86_64.rpm openSUSE-Leap-16.0-leap-2 Recommended update for opensuse-migration-tool moderate openSUSE Leap 16.0 This update for opensuse-migration-tool fixes the following issues: Changes in opensuse-migration-tool: - Drop accidentally created submodule * Add opensuse-migration-tool to .gitignore - Update to version 20251029.ed0d12d: * Update opensuse-migration-tool - Update to version 20251017.e28f94c: * fix: remove the check for x86-64-v3 flag xsave from the v2 check - Update to version 20251001.d4b9783: * Be consistently not using abbreviations in zypper * Refactor upgrade for not just Tumbleweed * Update migration matrix * Add support from MicroOS-Slowroll -> MicroOS * Enable MicroOS-Slowroll migration target * fix: remove the check for x86-64-v3 flag `movbe` from the v2 check * Update README to remove duplicate warning * Revise experimental usage warning in README * Update screenshot * Keep only Experimental in the title - Update to version 20250815.344dba5: * Keep only Experimental in the title * Install custom dialogrc with a green theme - Update to version 20250731.8b95d00: * Do not enable migration scripts by default - Update to version 20250731.2b96308: * Add 10_keepapparmor.sh 10_keepselinux.sh 20_ia32.sh migration services * Fancy README.md opensuse-migration-tool-20251029.ed0d12d-lp160.1.1.noarch.rpm opensuse-migration-tool-20251029.ed0d12d-lp160.1.1.src.rpm openSUSE-Leap-16.0-leap-3 Recommended update for mcomix moderate openSUSE Leap 16.0 This update for mcomix fixes the following issues: Update to 3.1.1: * Fix "context has already been set" error - replace Requires: /usr/bin/chardetect with %{pythons}-chardet * let chardetect use the same python version as mcomix - for Leap 16.0 requires python3 instead of python311 mcomix-3.1.1-lp160.1.1.noarch.rpm mcomix-3.1.1-lp160.1.1.src.rpm openSUSE-Leap-16.0-leap-4 Recommended update for terminology moderate openSUSE Leap 16.0 This update for terminology fixes the following issues: Update to 1.14.0: * New translations: Hungarian, Slovak * Report or Set Selection through escape codes * Handle Alternate Escape (7728) * Handle Application Escape Code * Add configuration whether emojis should be considered as double width. Default is double width. * Colorshemes: add GruvBox Material Dark * Translation updates for Chinese (Simplified), Catalan, Croatian, Dutch, Finnish, French, Indonesian, Japanese, Lithuanian, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish, Turkish * Unify format of responses to OSC 10, 11 and 12 * Fix translucent background on startup * Fix wheel events emitted even if wheel has not moved * Do not use spaces when returning terminal name * Colorschemes: ensure metadata.name and file name are the same * Fix issue when exiting on *BSD * Do not interpret “CSI = 5 u” as DECRC * Handle empty CSI SRG 38/48 * Do not consider Key Resources as color * Build with Meson 0.59 or later * Cleanup the code base about misuse of calloc() * Testing on OSC 52 terminology-1.14.0-lp160.1.1.src.rpm terminology-1.14.0-lp160.1.1.x86_64.rpm terminology-debuginfo-1.14.0-lp160.1.1.x86_64.rpm terminology-debugsource-1.14.0-lp160.1.1.x86_64.rpm terminology-lang-1.14.0-lp160.1.1.noarch.rpm terminology-theme-Flat-1.14.0-lp160.1.1.x86_64.rpm terminology-theme-misc-1.14.0-lp160.1.1.x86_64.rpm terminology-theme-upstream-1.14.0-lp160.1.1.x86_64.rpm terminology-1.14.0-lp160.1.1.s390x.rpm terminology-debuginfo-1.14.0-lp160.1.1.s390x.rpm terminology-debugsource-1.14.0-lp160.1.1.s390x.rpm terminology-theme-Flat-1.14.0-lp160.1.1.s390x.rpm terminology-theme-misc-1.14.0-lp160.1.1.s390x.rpm terminology-theme-upstream-1.14.0-lp160.1.1.s390x.rpm terminology-1.14.0-lp160.1.1.ppc64le.rpm terminology-debuginfo-1.14.0-lp160.1.1.ppc64le.rpm terminology-debugsource-1.14.0-lp160.1.1.ppc64le.rpm terminology-theme-Flat-1.14.0-lp160.1.1.ppc64le.rpm terminology-theme-misc-1.14.0-lp160.1.1.ppc64le.rpm terminology-theme-upstream-1.14.0-lp160.1.1.ppc64le.rpm terminology-1.14.0-lp160.1.1.aarch64.rpm terminology-debuginfo-1.14.0-lp160.1.1.aarch64.rpm terminology-debugsource-1.14.0-lp160.1.1.aarch64.rpm terminology-theme-Flat-1.14.0-lp160.1.1.aarch64.rpm terminology-theme-misc-1.14.0-lp160.1.1.aarch64.rpm terminology-theme-upstream-1.14.0-lp160.1.1.aarch64.rpm openSUSE-Leap-16.0-leap-5 Recommended update for glib2-branding moderate openSUSE Leap 16.0 This update for glib2-branding fixes the following issues: Update branding for glib2. gio-branding-openSUSE-42.1-lp160.3.2.noarch.rpm glib2-branding-openSUSE-42.1-lp160.3.2.src.rpm openSUSE-Leap-16.0-leap-6 Recommended update for opensuse-migration-tool moderate openSUSE Leap 16.0 This update for opensuse-migration-tool fixes the following issues: - Add dependency on update-bootloader to fix boo#1255897 - Update to version 20260106.d2cfd39: * Update scripts/20_pulse2pipewire.sh * Update scripts/20_ia32.sh * Update scripts/20_pulse2pipewire.sh * Consistent no-use of sudo in migration scripts * Update scripts/10_keepapparmor.sh * Update scripts/10_keepselinux.sh * Update scripts/10_keepapparmor.sh * Update scripts/10_keepapparmor.sh * Update opensuse-migration-tool * Update scripts/10_keepselinux.sh * Improve DRYRUN option to work well even from scripts * Enable migration to SElinux with proper dryrun * Update 10_keepselinux.sh * Update 10_keepapparmor.sh * Update 10_keepapparmor.sh opensuse-migration-tool-20260106.d2cfd39-lp160.1.1.noarch.rpm opensuse-migration-tool-20260106.d2cfd39-lp160.1.1.src.rpm openSUSE-Leap-16.0-leap-7 Recommended update for opensuse-migration-tool moderate openSUSE Leap 16.0 This update for opensuse-migration-tool fixes the following issues: Changes in opensuse-migration-tool: - Update to version 20260204.2cf77a3: * Drop requires on update-bootloader as it's not available on 15.6. Install it in post-script on target of migration instead. boo#1255897 * Refine post-scripts * Ensure update bootloader is installed in post scripts * don't install selinux-policy-targeted-gaming by default opensuse-migration-tool-20260204.2cf77a3-lp160.1.1.noarch.rpm opensuse-migration-tool-20260204.2cf77a3-lp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-1 Security update for chromium critical openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Chromium 141.0.7390.76: * Do not send URLs as AIM input. This is to resolve a privacy concern, around passing urls to AI Mode. Chromium 141.0.7390.65 (boo#1251334): * CVE-2025-11458: Heap buffer overflow in Sync * CVE-2025-11460: Use after free in Storage * CVE-2025-11211: Out of bounds read in WebCodecs Chromium 141.0.7390.54 (stable released 2025-09-30) (boo#1250780) * CVE-2025-11205: Heap buffer overflow in WebGPU * CVE-2025-11206: Heap buffer overflow in Video * CVE-2025-11207: Side-channel information leakage in Storage * CVE-2025-11208: Inappropriate implementation in Media * CVE-2025-11209: Inappropriate implementation in Omnibox * CVE-2025-11210: Side-channel information leakage in Tab * CVE-2025-11211: Out of bounds read in Media * CVE-2025-11212: Inappropriate implementation in Media * CVE-2025-11213: Inappropriate implementation in Omnibox * CVE-2025-11215: Off by one error in V8 * CVE-2025-11216: Inappropriate implementation in Storage * CVE-2025-11219: Use after free in V8 * Various fixes from internal audits, fuzzing and other initiatives Chromium 141.0.7390.37 (beta released 2025-09-24) Chromium 140.0.7339.207 (boo#1250472) * CVE-2025-10890: Side-channel information leakage in V8 * CVE-2025-10891: Integer overflow in V8 * CVE-2025-10892: Integer overflow in V8 chromedriver-141.0.7390.76-bp160.1.1.aarch64.rpm chromium-141.0.7390.76-bp160.1.1.aarch64.rpm chromium-141.0.7390.76-bp160.1.1.nosrc.rpm chromedriver-141.0.7390.76-bp160.1.1.ppc64le.rpm chromium-141.0.7390.76-bp160.1.1.ppc64le.rpm chromedriver-141.0.7390.76-bp160.1.1.x86_64.rpm chromium-141.0.7390.76-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-10 Security update for MozillaThunderbird important openSUSE Backports SLE-16.0 This update for MozillaThunderbird fixes the following issues: Changes in MozillaThunderbird: Mozilla Thunderbird 140.3.0 ESR: * Right-clicking 'List-ID' -> 'Unsubscribe' created double encoded draft subject * Thunderbird could crash on startup * Thunderbird could crash when importing mail * Opening Website header link in RSS feed incorrectly re-encoded URL parameters MFSA 2025-78 (bsc#1249391) * CVE-2025-10527 Sandbox escape due to use-after-free in the Graphics: Canvas2D component * CVE-2025-10528 Sandbox escape due to undefined behavior, invalid pointer in the Graphics: Canvas2D component * CVE-2025-10529 Same-origin policy bypass in the Layout component * CVE-2025-10532 Incorrect boundary conditions in the JavaScript: GC component * CVE-2025-10533 Integer overflow in the SVG component * CVE-2025-10536 Information disclosure in the Networking: Cache component * CVE-2025-10537 Memory safety bugs fixed in Firefox ESR 140.3, Thunderbird ESR 140.3, Firefox 143 and Thunderbird 143 MozillaThunderbird-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-140.3.0-bp160.1.1.src.rpm MozillaThunderbird-debuginfo-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debugsource-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-common-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-other-140.3.0-bp160.1.1.aarch64.rpm MozillaThunderbird-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debuginfo-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debugsource-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-common-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-other-140.3.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debuginfo-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debugsource-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-common-140.3.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-other-140.3.0-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-100 Recommended update for perl-Perl-Tidy moderate openSUSE Backports SLE-16.0 This update for perl-Perl-Tidy fixes the following issues: Changes in perl-Perl-Tidy: - updated to 20260109.0.0 (20260109) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2026 01 09 - A new parameter --break-at-old-trailing-loops, or -botl, keeps existing line breaks at these trailing loop control keywords: 'for', 'foreach', 'while', 'until'. This is the default. For example, given the following two input lines: FindExt::scan_ext("../$_") foreach qw(cpan dist ext); The new default keeps two lines. The previous version flattened the statement, since it fits on a single line: FindExt::scan_ext("../$_") foreach qw(cpan dist ext); Use -nbotl to deactivate this new option. - A related new parameter --break-at-old-trailing-conditionals, or -botc keeps existing line breaks at trailing conditional control keywords: 'if', 'unless'. This is the default. The capability was previously handled by parameter --break-at-old-logical-breakpoints, or -bol, which was also true by default, but which also also controls logical breakpoints, such as '&&'. This change simplifies the input. Use -nbotc to deactivate this option. - A new switch --blanks-before-opening-comments, -bboc, has been added for issue git #192. This is on by default and allows perltidy to insert a blank line before full-line comments which start at a new indentation level. Use the negated form to prevent such blank lines, -nbboc or --noblanks-before-opening-comments - A new parameter --dump-keyword-usage, or -dku, can be used to dump a list of the the perl builtin keywords used in a file. A companion flag --dump-keyword-usage-list=s can be used to give a specific list of keywords or user functions to be included in the list. - When the -html option is used with the default --pod2html setting, perltidy will look for a pod-to-html formatter in this order: Pod::Simple::XHTML, Pod::Simple::HTML, and Pod::Html. A preferred formatter can be selected with --use-pod-formatter=s. Previously the only option was Pod::Html, and it can still be selected with --use-pod-formatter="Pod::Html". The reason for this update is that this older formatter has limitations, and requires the creation of a temporary file for data transfer. This update also allows formatting of pod text containing non-ascii characters. - When perltidy is run with the -html option, and pod is rendered to html with Pod::Html, the pod2html option 'backlink' could not be set in in previous versions due to a programming error. This has been fixed. This setting can now be made by giving perltidy the flag '--podbacklink'. - The default for --timeout-in-seconds is reduced from 10 to 5 seconds. A default value of 10 seemed excessive. It can be changed with -tos=n. - The option --delete-weld-interfering-commas, or -dwic, has been made much more accurate. It now makes fewer unnecessary comma deletions. - This version does more extensive checking of all string input parameters and will exit early on an error. The intention is to catch input errors as early as possible. - Fixed issue with --dump-mixed-call-parens. A trailing statement modifier such as the following 'if' was incorrectly being counted as having parens: return $class if ($old_quote - $new_quote) == 0; - updated to 20250912.0.0 (20250912) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 09 12 - Fix git #191, where a new check to escape whitespace in a qw() quote in perl-5.43.2 caused Perl::Tidy to emit unwanted warning messages. - A new output field for the --dump-block-summary command gives the number of lines of comments and pod in a block. For subs and anonymous subs, the existence of header comments is also indicated. - Added --dump-nested-ternaries, --warn-nested-ternaries, and --nested-ternary-maximum-depth=n. These can be used to locate nested ternary statements in a script. - For the --line-up-parentheses option, a line length tolerance was adjusted by 1 character to help keep table formatting unchanged when adding and deleting trailing commas. This can occasionally change formatting of some small lists when formatted with -lp. - In hash key lists which have side comments after sub blocks, long lines which were previously broken before a comma may now be broken after a previous '=>'. This change was made to fix a very rare stability problem. For example: OLD: '+' => sub { $turtle->turn( $changes->{"dtheta"} ); } , # Turn clockwise NEW: '+' => sub { $turtle->turn( $changes->{"dtheta"} ); }, # Turn clockwise - Fixed undefined variable reference when --dump-block-summary was run with --dump-block-types='package'. The dump was okay, but an error message like the following was emitted: Use of uninitialized value $seqno in hash element ... - The parameter --integer-range-check no longer accepts a 0 value, which allowed integer range checks to be skipped. This option was included temporarily when new range-checking code was added to provide a workaround in case problems arose with the new logic. No problems have been encountered, so this has been removed. - updated to 20250711.0.0 (20250711) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 07 11 - Update for issue git #187: add vertical alignment of colons used as attribute separators. These colons have token type 'A', and this vertical alignment will be on by default (since all vertical alignments occur by default). For example: # old default field $tile_size : param; field $bar : reader : writer; # new default with alignment of token type 'A' field $tile_size : param; field $bar : reader : writer; This alignment can be turned off to recover the previous formatting with --valign-exclusion-list='A', or -vxl='A'. - Update for issue git #186: if a closing format skipping comment '#>>>' is encountered before any '#<<<' is seen, then format skipping is assumed to start with the first line of the file. Use --nodetect-format-skipping-from-start or -ndfsfs to prevent this check. - Added option --code-skipping-from-start, or -csfs. This causes code-skipping to begin from the start of a file even though there is no starting marker comment, '#<<V'. - Fixed a bug involving the --format-skipping option. If a line in the skipped code had trailing blanks, then the newline at the end of that line was lost. - Added a check to insure that format skipping begin and end markers strictly alternate along the lines of a file. If these markers do not alternate, a warning occurs and formatting is skipped. This is intended to help catch errors. - For lists which contain here docs and which are formatted with the --line-up-parentheses option, the formatting may in some cases change to more closely follow the -lp style. - updated to 20250616.0.0 (20250616) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 06 16 - Added support for the assigning logical xor ^^= operator - For input parameters which allow a paren type to be selected, the selection 'f' (function call) now includes functions called with a direct arrow before the paren, '->('. This was an oversight which has been corrected. - A new parameter --break-at-old-comma-types=s, or -boct=s, allows the parameter --break-at-old-comma-breakpoints (-boc) to be limited to selected container types. For example, -boc -boct='f(' means break at old commas but only if they are function call lists. - A new parameter --cuddled-paren-brace-weld, or -cpbw, has been added to handle issue git #184. This modifies --cuddled-paren-brace by preventing a paren and following brace from getting separated in certain situations. The difference is illustrated here: # perltidy -cpb alone has no effect for this short snippet: if ( $Kouter_opening == $Kfirst && $has_tight_paren{$type_prev} ) { $Kref = $Kprev; } # perltidy -cpb -cpbw keeps the closing paren next to the opening brace: if ( $Kouter_opening == $Kfirst && $has_tight_paren{$type_prev} ) { $Kref = $Kprev; } - The parameter --maximum-fields-per-table, or -mft, now accepts a string input which can limit its application to certain containers. For example, -mft='f(1' means that function call lists should be formatted with just 1 item per line. It has no effect on other tables. The manual has further information. - Add option --break-open-compact-parens=s, discussed in git #78. This changes the default formatting for lists which would normally be displayed compactly on two lines. It causes them to be formatted in the same way as long lists, with line breaks at the opening and closing parentheses. - Add option --skip-formatting-except-id=NAME, or -sfei=NAME, discussed in git #183. This allows formatting to apply only to lines tagged with #<<< id=NAME, where NAME is a user-defined tag. The special variation -sfei='-' can be used to run perltidy with full checking but without any formatting changes. - A relatively rare problem with the formatting combination -xci and -lp or -xlp has been fixed. Some lines had more leading spaces that intended. - New option -m added to --dump-mismatched-returns and --warn-mismatched-returns. This checks for multiple array return sizes. A warning occurs when a sub has multiple returns of finite lists with different counts greater than 1, and not all of them are matched with calls. - Improved support for Object::Pad, see git #182. - A limitation on the treatment of lexical subs has been fixed. Previously, a lexical sub with the same name as a quote operator would produce a warning, and might cause a tokenization error. - Here targets in quotes are now located and handled correctly. - updated to 20250311.0.0 (20250311) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 03 11 - The options --want-call-parens and --nowant-call-parens were accidentally being skipped in version 20250214. This has been fixed. - Fixed git #32, a tokenization error with message "hit EOF seeking end of quote/pattern" for a function call without paren or arg before a ternary operator. - A new option --dump-similar-keys will dump hash keys which are similar but slightly different to standard output and then exit. A related option --warn-similar-keys will report keys with are similar to the error output while formatting. Both of these can be controlled by parameters which are described in the input manual. - A new option --dump-hash-keys will dump all hash keys found by perltidy to standard output. - The output table for --dump-block-summary has an additional field. It is an alternate McCabe complexity count which is the same as the previous count except for subs. For subs, the complexity number is reduced by the values for any contained anonymous subs. - Fix git #181, remove continuation indentation from closing brace of an anonymous sub which terminates an input stream. - updated to 20250214.0.0 (20250214) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 02 14 - A new option --keep-old-blank-lines-exceptions=s, or --kblx=s, allows selected blank lines to be ignored when an input stream is read. The parameter s is used to select the blank lines to be ignored. This option provides an inverse to other blank line parameters. The manual has details. See discussion git #180. - A new option --warn-unused-keys, or -wuk, has been added which will produce warnings for unused hash keys during formatting. This is similar to --dump-unused-keys, which just exits and does not continue formatting. A related new parameter --warn-unused-keys-cutoff=N provides control over a filter which prevents warnings for keys which appear to be members of large hashes used to communicate with external packages. The manual has details. See git #177. - A new option --pack-opening-types='->' has been added to provide more control over breaks of method call chains. It tells perltidy not to break at every method call when a chain of calls spans multiple lines. This was the behavior in versions prior to 20250105. The default starting with 20250105 is to break at each call of a method call chain which spans multiple lines. See git #171. - updated to 20250105.0.0 (20250105) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2025 01 05 - If a file consists only of comments, then the starting indentation will be guessed from the indentation of the first comment. Previously it would be guessed to be zero. Parameter --starting-indentation-level=n can be used to specify an indentation and avoid a guess. This issue can arise when formatting a block of comments from within an editor. - Added missing 'use File::Temp' for -html option. This was causing the message: "Undefined subroutine &File::Temp::tempfile called at ..." See git #176. - A new parameter --dump-unique-keys, or -duk, dumps a list of hash keys which appear to be used just once, and do not appear among the quoted strings in a file. For example: perltidy -duk File.pm >output.txt This can help locate misspelled hash keys. - Line breaks at long chains of method calls now break at all calls with args in parens, as in this example from git #171 # Old default sub bla_p( $value = 42 ) { return Mojo::Promise->resolve($value)->then( sub { shift() / 2 } ) ->then( sub { shift() + 6 } )->then( sub { shift() / 2 } ) ->catch( sub { warn shift } ); } # New default sub bla_p( $value = 42 ) { return Mojo::Promise->resolve($value) ->then( sub { shift() / 2 } ) ->then( sub { shift() + 6 } ) ->then( sub { shift() / 2 } ) ->catch( sub { warn shift } ); } - Parameter --break-at-old-method-breakpoints, or -bom, has been updated to insure that it only applies to lines beginning with method calls, as intended. Line breaks for all lines beginning with '->', even non-method calls, can be retained by using --keep-old-breakpoints_before='->'. - Added parameter --multiple-token-tightness=s, or -mutt=s. The default value --paren-tightness=1 adds space within the parens if, and only if, the container holds multiple tokens. Some perltidy tokens may be rather long, and it can be preferable to also space some of them as if they were multiple tokens. This can be done with this parameter, and it applies to parens as well as square brackets and curly braces. For example, the default below has no space within the square brackets: # perltidy my $rlist = [qw( alpha beta gamma )]; Spaces can be obtained with: # perltidy -mutt='q*' my $rlist = [ qw( alpha beta gamma ) ]; The parameter -mutt='q*' means treat qw and similar quote operators as multiple tokens. The manual has details; git #120 has another example. - Added parameter --indent-leading-semicolon, -ils; see git #171. When this is negated, a line with a leading semicolon does not get the extra leading continuation indentation spaces (defined with -ci=n). - Space around here doc delimiters follow spacing controls better. For example, a space is now added before the closing paren here: OLD: (without the here doc): push( @script, <<'EOT'); NEW: push( @script, <<'EOT' ); Also, any spaces between the '<<' and here target are removed (git #174): OLD: push( @script, << 'EOT'); NEW: push( @script, <<'EOT' ); - Added parameter --break-at-trailing-comma-types=s, or -btct=s, where s is a string which selects trailing commas. For example, -btct='f(b' places a line break after all bare trailing commas in function calls. The manual has details. - Fix git #165, strings beginning with v before => gave an incorrect error message. - The parameter --add-lone-trailing-commas, -altc, is now on by default. This will simplify input for trailing comma operations. Use --noadd-lone-trailing-commas, or -naltc to turn it off. - More edge cases for adding and deleting trailing commas are now handled (git #156). - A problem has been fixed in which the addition or deletion of trailing commas with the -atc or -dtc flags did not occur due to early convergence when the -conv flag was set (git #143). - Added parameter --qw-as-function, or -qwaf, discussed in git #164. When this parameter is set, a qw list which begins with 'qw(' is formatted as if it were a function call with call args being a list of comma-separated quoted items. For example, given this input: @fields = qw( $st_dev $st_ino $st_mode $st_nlink $st_uid $st_gid $st_rdev $st_size $st_atime $st_mtime $st_ctime $st_blksize $st_blocks); # perltidy -qwaf @fields = qw( $st_dev $st_ino $st_mode $st_nlink $st_uid $st_gid $st_rdev $st_size $st_atime $st_mtime $st_ctime $st_blksize $st_blocks ); - updated to 20240903.0.0 (20240903) see /usr/share/doc/packages/perl-Perl-Tidy/CHANGES.md ## 2024 09 03 - Add partial support for Syntax::Operator::In and Syntax::Keyword::Match (see git #162). - Add --timeout-in-seconds=n, or -tos=n. When the standard input supplies the input stream, and the input has not been received within n seconds, perltidy will end with a timeout message. The intention is to catch a situation where perltidy is accidentally invoked without a file to process and therefore waits for input from the system standard input (stdin), which never arrives. The default is n=10. This check can be turned off with -tos=0. - Add parameter --closing-side-comment-exclusion-list=string, or -cscxl=string, where string is a list of block types to exclude for closing side comment operations. Also, closing side comments now work for anonymous subs if a --closing-side-comment-list (-cscl) is not specified, and when 'asub' is requested with -cscl=asub. Use -cscxl=asub to prevent this. - Include check for unused constants in --dump-unusual-variables and --warn-variable-types (new issue type 'c'). Also expand checks to cover variables introduced with 'use vars'. - Include signature variables in --dump-unusual-variables and --warn-variable-types; see git #158. - Add logical xor operator ^^ available in perl version 5.40, as noted in git #157. - Keyword 'state' now has default space before a paren, like 'my'. Previously there was no space and no control. So the default is now "state ($x)". This space can be removed with -nsak='state'. - Add options --add-lone-trailing-commas, -altc and --delete-lone-trailing-commas, -dltc, to provide control over adding and deleting the only comma in a list. See discussion in git #143 and the updated manual. - Add options --dump-mismatched-returns (or -dmr) and --warn-mismatched-returns (or -wmr). These options report function calls where the number of values requested may disagree with sub return statements. The -dump version writes the results for a single file to standard output and exits: perltidy -dmr somefile.pl >results.txt The -warn version formats as normal but reports any issues as warnings in the error file: perltidy -wmr somefile.pl The -warn version may be customized with the following additional parameters if necessary to avoid needless warnings: --warn-mismatched-return-types=s (or -wmrt=s), --warn-mismatched-return-exclusion-list=s (or -wmrxl=s) where 's' is a control string. These are explained in the manual. - Updates for issue git #151: (1) --warn-variable-types=u is now okay if a named file is processed. (2) --warn-variable-exclusion-list=s now allows leading and/or trailing * on variable names to allow a wildcard match. For example -wvxl='*_unused' is okay and would match $var1_unused and $var2_unused. (3) --dump-unusual-variables now outputs the filename. - A option was added to filter unimplemented parameters from perltidy configuration files, suggested in git #146. It works like this: if a line in the config file begins with three dashes followed by a parameter name (rather than two dashes), then the line will be removed if the parameter is unknown. Otherwise, a dash will be removed to make the line valid. - Parameters --dump-mismatched-args (or -dma) and --warn-mismatched-args (or -wma) have been updated to catch more arg count issues. - Fixed issue git #143, extend -add-trailing-commas to apply to a list with just a fat comma. - The minimum perl version is 5.8.1. Previously it was 5.8.0, which was not correct because of the use of utf8::is_utf8. - Fixed issue git #142, test failure installing on perl versions before version 5.10. The error caused the new parameter -interbracket-arrow-style=s not to work. Except for this limitation, Version 20240511 will work on older perl versions. perl-Perl-Tidy-20260109.0.0-bp160.1.1.noarch.rpm perl-Perl-Tidy-20260109.0.0-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-101 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: - Chromium 144.0.7559.109 (boo#1257404) * CVE-2026-1504: Inappropriate implementation in Background Fetch API chromedriver-144.0.7559.109-bp160.1.1.x86_64.rpm chromium-144.0.7559.109-bp160.1.1.nosrc.rpm chromium-144.0.7559.109-bp160.1.1.x86_64.rpm chromedriver-144.0.7559.109-bp160.1.1.ppc64le.rpm chromium-144.0.7559.109-bp160.1.1.ppc64le.rpm chromedriver-144.0.7559.109-bp160.1.1.aarch64.rpm chromium-144.0.7559.109-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-102 Recommended update for php-APCu moderate openSUSE Backports SLE-16.0 This update for php-APCu fixes the following issues: Introduce php-APCu. php8-APCu-5.1.28-bp160.1.1.src.rpm php8-APCu-5.1.28-bp160.1.1.x86_64.rpm php8-APCu-debuginfo-5.1.28-bp160.1.1.x86_64.rpm php8-APCu-debugsource-5.1.28-bp160.1.1.x86_64.rpm php8-APCu-5.1.28-bp160.1.1.s390x.rpm php8-APCu-debuginfo-5.1.28-bp160.1.1.s390x.rpm php8-APCu-debugsource-5.1.28-bp160.1.1.s390x.rpm php8-APCu-5.1.28-bp160.1.1.ppc64le.rpm php8-APCu-debuginfo-5.1.28-bp160.1.1.ppc64le.rpm php8-APCu-debugsource-5.1.28-bp160.1.1.ppc64le.rpm php8-APCu-5.1.28-bp160.1.1.aarch64.rpm php8-APCu-debuginfo-5.1.28-bp160.1.1.aarch64.rpm php8-APCu-debugsource-5.1.28-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-103 Recommended update for myrlyn moderate openSUSE Backports SLE-16.0 This update for myrlyn fixes the following issues: Changes in myrlyn: - Update to version 1.0.0: * Version bump to 1.0.0 * Document zypp history filters * Wider columns in zypp history * zypp history filters are working * New classes for zypp history filters * Use [OK] as the default dialog button * Suppress Qt bullshit messages that keep flooding the log * Add zypp history filter dialog * Add infrastructure for zypp history filters * Extend zypp history browser time line to today if the last activity date was just 10 or less days ago * Zypp history error handling * Fix (+/-) count conditions * Show (+/-) count in zypp history only for nontrivial transactions * Reasonable column widths in zypp history browser * Initial selection in zypp history browser * Added new zypp history browser to features in README.md * Show (+/-) count for commands in zypp history * Show --zypp-history in usage message as normal, not debugging option * Use standard columns in zypp history only for packages and patches * Fixed column spanning for parent items * Working zypp history browser navigation * Populated history events tree * First populated timeline (navigation) tree for the zypp history * First rough parsing tests ok * Add Ctrl+Shift+H shortcut to show zypp history * First new (still empty) ZyppHistoryBrowser, drop old YQPkgHistoryDialog * Code reorg + consistency * Handle incomplete zypp history files * New designer form for the zypp history browser * More zypp history test data * Add zypp history test data * Factor out ZyppHistoryEvents * Use a namespace for better organization * Lots of boring zypp history parser code * Parse zypp history command events * Filling ZyppHistoryParser with life * Filling ZyppHistoryParser with life * New class ZyppHistoryParser * New class ZyppHistory * Handle command line options with additional argument * Make sure at least one "search in" check box is checked when searching * Support searching in RPM recommends, too * Added tooltip for auto search default mode button * Right-align auto search default mode button * Enable switching the default auto search mode between "Starts With" and "Contains" * New icons * Allow no parent * Unneeded includes * Fixed script she-bang * Class rename MyrlynTranslator -> Translator * Generalize MyrlynTranslator * Re-imported latest QDirStat logger * Show special resolver modes (up/dup) in status line * Silenced left-over debug output * Support using ~/.config/openSUSE/myrlyn-sudo.conf * Fixed typo in .desktop file * Added Video LAN community repo (also serves libdvdcss) * Log the Qt environment * More HiDPI hints in .desktop files * Ensure the popup is centered * Commented out unavailable/redundant community repos on 16.x * No progress bar during post-transaction scripts * Actually use myrlyn-run0 in myrlyn-run0.desktop * Added systemd run0 support (#122 by @zeusgoose) * Updated docs: Stability and maturity * Added myrlyn-stable for Leap 15.6 from OBS home:shundhammer to downloads - Update to version 0.9.9: * Version bump to 0.9.9 * Default to not using RPM groups on openSUSE / SLE distros * Added the freshly published community repos for Leap 16.0 / SLES-16.0 * Hint about HiDPI scaling in .desktop files * Keep QT_SCALE_FACTOR in myrlyn-sudo environment * Don't show service filter view by default - Update to version 0.9.8: * Version bump to 0.9.8 * Don't write a default for useRpmGroups for now (Closes #112) * Make the default for "useRpmGroups" compile-time configurable * Make "useRpmGroups" configurable in config file * Use textdomain "rpm-groups" for RPM groups * Removed redundant initial selection * Class rename for consistency * Lazy RPM tree init for startup performance * Filter correcty for empty RPM groups * Removed ancient fallback RPM groups * Consistent terminology * Open only the first two levels of the RPM groups tree * Suppress Qt logging spam * First hacky version of RPM groups (#112) * Translate RPM groups and suppress 'Unspecified' * Show RPM group in technical details view (#112) * Use non-breaking hyphen in read‑only * Don't consider ignored missing RPM signature as failed task (Closes #110) * GitHub config * Added Leap 16.x community repos myrlyn-1.0.0-bp160.1.1.src.rpm myrlyn-1.0.0-bp160.1.1.x86_64.rpm myrlyn-debuginfo-1.0.0-bp160.1.1.x86_64.rpm myrlyn-debugsource-1.0.0-bp160.1.1.x86_64.rpm myrlyn-1.0.0-bp160.1.1.s390x.rpm myrlyn-debuginfo-1.0.0-bp160.1.1.s390x.rpm myrlyn-debugsource-1.0.0-bp160.1.1.s390x.rpm myrlyn-1.0.0-bp160.1.1.ppc64le.rpm myrlyn-debuginfo-1.0.0-bp160.1.1.ppc64le.rpm myrlyn-debugsource-1.0.0-bp160.1.1.ppc64le.rpm myrlyn-1.0.0-bp160.1.1.aarch64.rpm myrlyn-debuginfo-1.0.0-bp160.1.1.aarch64.rpm myrlyn-debugsource-1.0.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-104 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: - Update to version 5.1769550212.662a4f95: * refactor(investigation): Use TEST_GIT_URL and NEEDLES_GIT_URL * refactor(investigation): Rename gitrepodir function * Restart: handle subclassed AMQP plugin * Revert "Update CircleCI image to Leap 16.0" * fix: Fix invalid HTML in test creation form * feat: Make test creation discoverable to all users * refactor: Simplify/extend flash message templates * feat: Avoid confusing/wrong "Administrator level required" error * Update CircleCI image to Leap 16.0 * feat: Support `async=1` flag via `openqa-cli schedule --monitor` * fix: Avoid serializing `null` click point after e19aee4 and da7cce6b * test: Fix failing style checks due to test file with invalid YAML * test: Cover redirection to Git platform via CASEDIR and TEST_GIT_HASH * fix: Fix error handling when redirecting to Git platform * test: Distinguish different cases for showing settings files * test: Cover case of invalid scenario definitions when creating test * test: Consider `Step.pm` fully covered * test: Cover case of showing unsupported results * fix: Improve condition for checking valid step result * test: Cover case of showing candidate needle with no tags * refactor: Simplify `calc_matches` * refactor: Write uncoverable error handler in one line * refactor: Simplify `_new_screenshot` * refactor: Rewrite code for screenshot name in a more compact way * test: Cover options to take images/areas from existing needles * Use body parameters in POST request * feat: Add symlink for aeon in openqa-bootstrap script * chore(deps): bump lodash from 4.17.21 to 4.17.23 * test: Add test for displaying audio results * test: Cover remaining lines of `File.pm` * feat: Improve log message about invalid config in df-based cleanup * feat: Add dry run to df-based cleanup of job results * Fix grammatic mistakes on the snapshots documentation * Describe how snapshots work internally * doc: Improve wording in documentation about space-aware cleanup * doc: Clarify settings for space-aware cleanup * doc: Use "file system" consistently in comments in config files * doc: Wrap comments in `openqa.ini` at 80 characters * doc: Use "file system" consistently in users documentation * doc: Mention also `…_cleanup_max_free_percentage` * doc: Move documentation about space-aware cleanup into its own section * doc: Use "filesystem" instead of "partition" in config comments * fix: Account deletion of screenshots of archived jobs correctly * doc: Mention variables for df-based job result cleanup * feat: Consider archive as well in df-based cleanup of job results Changes in os-autoinst: - Update to version 5.1769602729.9728790: * fix: Improve wrong comment about enablement of modern Perl features * Replace remaining functions with subroutine signatures in 18-qemu.t * Fix snapshot overlay mechanism to avoid duplication * fix(dist): provide proper copyright headers in all spec-files * fix(dist): try to fix os-autoinst-obs-auto-submit reverting content * Remove deprecated BIOS and UEFI_PFLASH variables Changes in openQA-devel-container: - Update to version 5.1769550212.662a4f950: * Update to latest openQA version openQA-5.1769550212.662a4f95-bp160.1.1.src.rpm openQA-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-auto-update-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-client-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-common-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-devel-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-doc-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-local-db-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-mcp-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-munin-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-single-instance-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm openQA-worker-5.1769550212.662a4f95-bp160.1.1.x86_64.rpm os-autoinst-5.1769602729.9728790-bp160.1.1.src.rpm os-autoinst-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1769602729.9728790-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1769602729.9728790-bp160.1.1.x86_64.rpm openQA-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-auto-update-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-bootstrap-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-client-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-common-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-continuous-update-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-devel-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-doc-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-local-db-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-mcp-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-munin-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-python-scripts-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-single-instance-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1769550212.662a4f95-bp160.1.1.s390x.rpm openQA-worker-5.1769550212.662a4f95-bp160.1.1.s390x.rpm os-autoinst-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-devel-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1769602729.9728790-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1769602729.9728790-bp160.1.1.s390x.rpm openQA-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-client-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-common-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-devel-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-doc-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-local-db-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-mcp-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-munin-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm openQA-worker-5.1769550212.662a4f95-bp160.1.1.ppc64le.rpm os-autoinst-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1769602729.9728790-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1769602729.9728790-bp160.1.1.ppc64le.rpm openQA-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-auto-update-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-client-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-common-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-devel-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-doc-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-local-db-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-mcp-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-munin-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-single-instance-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm openQA-worker-5.1769550212.662a4f95-bp160.1.1.aarch64.rpm os-autoinst-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1769602729.9728790-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1769602729.9728790-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-105 Security update for xrdp important openSUSE Backports SLE-16.0 This update for xrdp fixes the following issues: Changes in xrdp: - CVE-2025-68670: Fixed a potential overflow (bsc#1257362). libpainter0-0.9.26-bp160.2.1.x86_64.rpm libpainter0-debuginfo-0.9.26-bp160.2.1.x86_64.rpm librfxencode0-0.9.26-bp160.2.1.x86_64.rpm librfxencode0-debuginfo-0.9.26-bp160.2.1.x86_64.rpm xrdp-0.9.26-bp160.2.1.src.rpm xrdp-0.9.26-bp160.2.1.x86_64.rpm xrdp-debuginfo-0.9.26-bp160.2.1.x86_64.rpm xrdp-debugsource-0.9.26-bp160.2.1.x86_64.rpm xrdp-devel-0.9.26-bp160.2.1.x86_64.rpm libpainter0-0.9.26-bp160.2.1.s390x.rpm libpainter0-debuginfo-0.9.26-bp160.2.1.s390x.rpm librfxencode0-0.9.26-bp160.2.1.s390x.rpm librfxencode0-debuginfo-0.9.26-bp160.2.1.s390x.rpm xrdp-0.9.26-bp160.2.1.s390x.rpm xrdp-debuginfo-0.9.26-bp160.2.1.s390x.rpm xrdp-debugsource-0.9.26-bp160.2.1.s390x.rpm xrdp-devel-0.9.26-bp160.2.1.s390x.rpm libpainter0-0.9.26-bp160.2.1.ppc64le.rpm libpainter0-debuginfo-0.9.26-bp160.2.1.ppc64le.rpm librfxencode0-0.9.26-bp160.2.1.ppc64le.rpm librfxencode0-debuginfo-0.9.26-bp160.2.1.ppc64le.rpm xrdp-0.9.26-bp160.2.1.ppc64le.rpm xrdp-debuginfo-0.9.26-bp160.2.1.ppc64le.rpm xrdp-debugsource-0.9.26-bp160.2.1.ppc64le.rpm xrdp-devel-0.9.26-bp160.2.1.ppc64le.rpm libpainter0-0.9.26-bp160.2.1.aarch64.rpm libpainter0-debuginfo-0.9.26-bp160.2.1.aarch64.rpm librfxencode0-0.9.26-bp160.2.1.aarch64.rpm librfxencode0-debuginfo-0.9.26-bp160.2.1.aarch64.rpm xrdp-0.9.26-bp160.2.1.aarch64.rpm xrdp-debuginfo-0.9.26-bp160.2.1.aarch64.rpm xrdp-debugsource-0.9.26-bp160.2.1.aarch64.rpm xrdp-devel-0.9.26-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-106 Recommended update for gimp moderate openSUSE Backports SLE-16.0 This update for gimp fixes the following issues: Changes in gimp: - Update to 3.0.8 - Font Loading Performance - Improvements in start-up time for users with a large number of fonts was backported from our 3.2 RC2 release. As a result, we now wait to load images until fonts are initialized - this prevents some occasional odd displays and other issues when an XCF file tried to access a partially loaded font. - Assorted updates and fixes - Daniel Plakhotich helped us identify an issue when exporting a lossless WEBP image could be affected by lossy settings (such as Quality being less than 100%). We’ve updated our WEBP plug-in to prevent this from happening. - Thanks to Jehan‘s efforts, the standard gimp-3.0 executable can now be run with a --no-interface flag instead of requiring users to call gimp-console-3.0 even on devices with no display. The --show-debug-menu flag is now visible as well. - programmer_ceds improved our flatpak by adding safe guards to show the correct configuration directory regardless of whether XDG_CONFIG_HOME is defined on the user’s system. This should make it much easier for flatpak users to install and use third party plug-ins. - We fixed a rare but possible crash when using the Equalize filter on images with NaN values. Images that contain these are usually created from scientific or mapping data, so you’re unlikely to come across them in standard editing. - Jeremy Bicha fixed an internal issue where the wrong version number could be used when installing minor releases (such as the 3.2 release candidates and upcoming 3.2 stable release). - As noted in our 3.2RC2 news post, we have updated our SVG import code to improve the rendered path. - Further improvements have been made to our non-destructive filter code to improve stability, especially when copying and pasting layers and images with filters attached to them. Some issues related to applying NDE filters on Quick Masks have also been corrected. - An unintended Search pop-up that appeared when typing while the Channels dockable was selected has been turned off. - When saving XCFs for GIMP 2.10 compatibility, we unintentionally saved Grid color using the new color format. This caused errors when reopening the XCF in 2.10. This problem has now been fixed! If you encounter any other XCF incompatibility, please let us know. - Themes and UX - The Navigation and Selection Editor dockables no longer show a large bright texture when no image is actively selected. This was especially noticeable on dark themes. - When a layer has no active filters, the Fx column had the same “checkbox” outline when hovered over as the lock column. This led to confusion about clicking it to add filters. We have removed the outline on hover as a small step to help address this. - Ondřej Míchal fixed alignment and cut-off issues with the buttons on our Transform tool overlays. All buttons should now be properly centered and visible. - The options for filling layers with colors when resizing the canvas will be turned off when not relevant (such as when you set layers to not be resized). - More GUI elements such as dialog header icons will now respond to your icon size preferences. - Ondřej Míchal has continued his work to update our UI with the more usable Spin Scale widget. He has also updated the widget itself to improve how it works for users and developers alike. - Security fixes - Jacob Boerema and Gabriele Barbero continued to patch potential security issues related to some of our file format plug-ins. In addition to existing fixes mentioned in the release candidate news posts, the following exploits are now prevented: ZDI-CAN-28232 ZDI-CAN-28265 ZDI-CAN-28530 ZDI-CAN-28591 ZDI-CAN-28599 - Another potential issue related to ICO files with incorrect metadata was reported by Dhiraj. It does not have a CVE number yet, but it has been fixed for GIMP 3.0.8. Jacob Boerema also fixed a potential issue with loading Creator blocks in Paintshop Pro PSP images. - API - For plug-in and script developers, a few new public APIs were backported to GIMP 3.0.8. gimp_cairo_surface_get_buffer () allows you to retrieve a GEGL buffer from a Cairo surface (such as a text layer). Note that this deprecates gimp_cairo_surface_create_buffer (). - gimp_config_set_xcf_version () and gimp_config_get_xcf_version () can be used to specify a particular XCF version for a configuration. This will allow you to have that data serialized/deserialized for certain versions of GIMP if there were differences (such as the Grid colors mentioned above). - Fixes were made for retrieving image metadata via scripting. GimpMetadata is now a visible child of GExiv2Metadata, so you can use standard gexiv2 functions to retrieve information from it. - Original thumbnail metadata is also now removed on export to prevent potential issues when exporting into a new format. gimp-3.0.8-bp160.1.1.src.rpm gimp-3.0.8-bp160.1.1.x86_64.rpm gimp-debuginfo-3.0.8-bp160.1.1.x86_64.rpm gimp-debugsource-3.0.8-bp160.1.1.x86_64.rpm gimp-devel-3.0.8-bp160.1.1.x86_64.rpm gimp-devel-debuginfo-3.0.8-bp160.1.1.x86_64.rpm gimp-extension-goat-excercises-3.0.8-bp160.1.1.x86_64.rpm gimp-extension-goat-excercises-debuginfo-3.0.8-bp160.1.1.x86_64.rpm gimp-lang-3.0.8-bp160.1.1.noarch.rpm gimp-plugin-aa-3.0.8-bp160.1.1.x86_64.rpm gimp-plugin-aa-debuginfo-3.0.8-bp160.1.1.x86_64.rpm gimp-plugin-python3-3.0.8-bp160.1.1.x86_64.rpm gimp-vala-3.0.8-bp160.1.1.x86_64.rpm libgimp-3_0-0-3.0.8-bp160.1.1.x86_64.rpm libgimp-3_0-0-debuginfo-3.0.8-bp160.1.1.x86_64.rpm libgimpui-3_0-0-3.0.8-bp160.1.1.x86_64.rpm libgimpui-3_0-0-debuginfo-3.0.8-bp160.1.1.x86_64.rpm gimp-3.0.8-bp160.1.1.ppc64le.rpm gimp-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm gimp-debugsource-3.0.8-bp160.1.1.ppc64le.rpm gimp-devel-3.0.8-bp160.1.1.ppc64le.rpm gimp-devel-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm gimp-extension-goat-excercises-3.0.8-bp160.1.1.ppc64le.rpm gimp-extension-goat-excercises-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm gimp-plugin-aa-3.0.8-bp160.1.1.ppc64le.rpm gimp-plugin-aa-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm gimp-plugin-python3-3.0.8-bp160.1.1.ppc64le.rpm gimp-vala-3.0.8-bp160.1.1.ppc64le.rpm libgimp-3_0-0-3.0.8-bp160.1.1.ppc64le.rpm libgimp-3_0-0-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm libgimpui-3_0-0-3.0.8-bp160.1.1.ppc64le.rpm libgimpui-3_0-0-debuginfo-3.0.8-bp160.1.1.ppc64le.rpm gimp-3.0.8-bp160.1.1.aarch64.rpm gimp-debuginfo-3.0.8-bp160.1.1.aarch64.rpm gimp-debugsource-3.0.8-bp160.1.1.aarch64.rpm gimp-devel-3.0.8-bp160.1.1.aarch64.rpm gimp-devel-debuginfo-3.0.8-bp160.1.1.aarch64.rpm gimp-extension-goat-excercises-3.0.8-bp160.1.1.aarch64.rpm gimp-extension-goat-excercises-debuginfo-3.0.8-bp160.1.1.aarch64.rpm gimp-plugin-aa-3.0.8-bp160.1.1.aarch64.rpm gimp-plugin-aa-debuginfo-3.0.8-bp160.1.1.aarch64.rpm gimp-plugin-python3-3.0.8-bp160.1.1.aarch64.rpm gimp-vala-3.0.8-bp160.1.1.aarch64.rpm libgimp-3_0-0-3.0.8-bp160.1.1.aarch64.rpm libgimp-3_0-0-debuginfo-3.0.8-bp160.1.1.aarch64.rpm libgimpui-3_0-0-3.0.8-bp160.1.1.aarch64.rpm libgimpui-3_0-0-debuginfo-3.0.8-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-107 Recommended update for perl-TAP-Harness-JUnit moderate openSUSE Backports SLE-16.0 This update for perl-TAP-Harness-JUnit fixes the following issues: Introduce perl-TAP-Harness-JUnit. perl-TAP-Harness-JUnit-0.42-bp160.1.1.noarch.rpm perl-TAP-Harness-JUnit-0.42-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-108 Recommended update for perl-Date-Manip moderate openSUSE Backports SLE-16.0 This update for perl-Date-Manip fixes the following issues: Introduce perl-Date-Manip. perl-Date-Manip-6.980.0-bp160.1.1.src.rpm perl-Date-Manip-6.980.0-bp160.1.1.x86_64.rpm perl-Date-Manip-6.980.0-bp160.1.1.s390x.rpm perl-Date-Manip-6.980.0-bp160.1.1.ppc64le.rpm perl-Date-Manip-6.980.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-109 Recommended update for OpenBoard moderate openSUSE Backports SLE-16.0 This update for OpenBoard fixes the following issues: Changes in OpenBoard: - add AppData in metainfo.xml - update to release version 1.7.5 OpenBoard-1.7.5-bp160.1.1.src.rpm OpenBoard-1.7.5-bp160.1.1.x86_64.rpm OpenBoard-debuginfo-1.7.5-bp160.1.1.x86_64.rpm OpenBoard-debugsource-1.7.5-bp160.1.1.x86_64.rpm OpenBoard-1.7.5-bp160.1.1.aarch64.rpm OpenBoard-debuginfo-1.7.5-bp160.1.1.aarch64.rpm OpenBoard-debugsource-1.7.5-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-11 Security update for python-Django important openSUSE Backports SLE-16.0 This update for python-Django fixes the following issues: - CVE-2025-59681: Fixed a potential SQL injection in QuerySet.annotate(), alias(), aggregate(), and extra() on MySQL and MariaDB (boo#1250485) - CVE-2025-59682: Fixed a potential partial directory-traversal via archive.extract() (boo#1250487) python-Django-5.2.4-bp160.3.1.src.rpm python313-Django-5.2.4-bp160.3.1.noarch.rpm openSUSE-Leap-16.0-packagehub-110 Recommended update for evolution moderate openSUSE Backports SLE-16.0 This update for evolution fixes the following issues: Changes in evolution: - Fix incorrect week numbers in calendar year view (bsc#1256465). evolution-3.56.2-bp160.3.1.src.rpm evolution-3.56.2-bp160.3.1.x86_64.rpm evolution-debuginfo-3.56.2-bp160.3.1.x86_64.rpm evolution-debugsource-3.56.2-bp160.3.1.x86_64.rpm evolution-devel-3.56.2-bp160.3.1.x86_64.rpm evolution-lang-3.56.2-bp160.3.1.noarch.rpm evolution-plugin-bogofilter-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-pst-import-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-spamassassin-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-text-highlight-3.56.2-bp160.3.1.x86_64.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.3.1.x86_64.rpm evolution-3.56.2-bp160.3.1.s390x.rpm evolution-debuginfo-3.56.2-bp160.3.1.s390x.rpm evolution-debugsource-3.56.2-bp160.3.1.s390x.rpm evolution-devel-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-bogofilter-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-pst-import-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-spamassassin-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-text-highlight-3.56.2-bp160.3.1.s390x.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.3.1.s390x.rpm evolution-3.56.2-bp160.3.1.ppc64le.rpm evolution-debuginfo-3.56.2-bp160.3.1.ppc64le.rpm evolution-debugsource-3.56.2-bp160.3.1.ppc64le.rpm evolution-devel-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-bogofilter-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-pst-import-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-spamassassin-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-text-highlight-3.56.2-bp160.3.1.ppc64le.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.3.1.ppc64le.rpm evolution-3.56.2-bp160.3.1.aarch64.rpm evolution-debuginfo-3.56.2-bp160.3.1.aarch64.rpm evolution-debugsource-3.56.2-bp160.3.1.aarch64.rpm evolution-devel-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-bogofilter-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-pst-import-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-spamassassin-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-text-highlight-3.56.2-bp160.3.1.aarch64.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.3.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-111 Recommended update for perl-Mojolicious-Plugin-OpenAPI moderate openSUSE Backports SLE-16.0 This update for perl-Mojolicious-Plugin-OpenAPI fixes the following issues: Introduce perl-Mojolicious-Plugin-OpenAPI. perl-Mojolicious-Plugin-OpenAPI-5.110.0-bp160.1.1.noarch.rpm perl-Mojolicious-Plugin-OpenAPI-5.110.0-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-13 Recommended update for openQA, os-autoinst moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst fixes the following issues: Changes in openQA: - Update to version 5.1761296552.ae7c17aa: * Add tests for file_security_policy * Pass parameter $is_userfile to log_url * Remove redirect and serve files as attachments if necessary * Serve files uploaded by tests via asset domain * Use direct link to subdomain for the test assets * Revert "Don't redirect to asset domain via /needles/ID/(image|json) route" * Revert "Don't redirect screenshots, thumbs and needles to files_domain" - Update to version 5.1761228068.a3a7f84d: * Dependency cron 2025-10-23 - Update to version 5.1761037330.ad78558e: * Avoid needless check for number of clones * Avoid creation of `git_clone` tasks for jobs with empty `DISTRI` - Update to version 5.1760515610.a802d1dd: * Lower the prio of archiving jobs to avoid piling up finalize jobs * Add signatures in Schema::Result::ApiKeys - Update to version 5.1760245411.e3aeaaec: * Dependency cron 2025-10-12 - Update to version 5.1760108577.fd2f2a48: * Log unavailability due to high load only as warning * Filter job stats of scheduled products also by arch and build * Document how to disable image optimizations * Make image optimization errors stop the job producing an incomplete job * Improve wording in description about job stats API * Run `optipng` for real and handle errors if it fails - Update to version 5.1759912962.689b31ed: * Avoid failing `obs_rsync_run` jobs when restarting `openqa-gru.service` - Update to version 5.1759834744.06a7028a: * parser: ktap: Return earlier if subtest result is SKIP * parser: ktap: Fallback to subtest index if name is not available - Update to version 5.1759440640.bb989cab: * Don't redirect to asset domain via /needles/ID/(image|json) route - Update to version 5.1759402042.49e912c3: * Introduce array job settings * Retry `obs_rsync_update_*` tasks if Gru service terminates - Update to version 5.1759329378.3b8e8685: * Reduce the number of required checks for Mergify again * Ensure a failing cache service is seen as such by the worker/scheduler - Update to version 5.1759248257.70b23b32: * Increase number of successful checks in Mergify config again * Disable Helm Chart CI checks temporarily * Consider all jobs for cleanup, not just jobs that were executed * Verify job deletion when dependent job present - Update to version 5.1759149505.49c40b0b: * Use always the latest PostgreSQL image in Compose and documentation * Update the PostgreSQL version in the contributing documentation * Update PostgreSQL data path in Docker Compose file after updating to v18 * Specify PostgreSQL version in Docker Compose configuration explicitly * mergify: Allow more time for dependabot update reaction * Remove version property from docker-compose * README: Fix openQA badge after switch to UEFI * build(deps-dev): bump eslint from 9.35.0 to 9.36.0 - Update to version 5.1758910696.7549bb98: * Replace argument assignment with signatures on ObsRsync/Task * Enable automatic dependabot updates again after improvements * docs: Add instructions for a continuous dashboard setup * Replace argument assignment with signatures Folders package * Fully cover WebAPI::Plugin::ObsRsync::Controller::Folders * script: Also use OPENQA_WEBUI_MODE for related services - Update to version 5.1758814503.03d923a4: * Use Mojo::File in Worker for is_qemu_running * Use Mojo::File in Worker for meminfo * Document archiving of important jobs - Update to version 5.1758729450.b88c0b40: * Reject jobs if worker is broken when receiving a new job - Update to version 5.1758711845.e5c02221: * script: Allow to configure openQA mode * t: run at least once Memorylimit register with max_rss_limit > 0 * Replace argument assignation with signatures on MemoryLimit Changes in os-autoinst: - Update to version 5.1761036042.c43e4ab: * Update perltidy * Allow redirects in needle NeedleDownloader * Don't overwrite firewall xml * Add UEFI support for ipxe kernel boot * os-autoinst-setup-multi-machine: Simplify determine_ethernet_interface - Update to version 5.1759328765.e7438f7: * Allow redirects in needle NeedleDownloader * Don't overwrite firewall xml * Add UEFI support for ipxe kernel boot * t: Use consistent Mojo::File in 08-autotest as well * os-autoinst-setup-multi-machine: Simplify determine_ethernet_interface - Update to version 5.1759134946.e08d7c7: * Add UEFI support for ipxe kernel boot * t: Use consistent Mojo::File in 08-autotest as well * os-autoinst-setup-multi-machine: Simplify determine_ethernet_interface * os-autoinst-setup-multi-machine: Only call zypper when necessary * os-autoinst-setup-multi-machine: Improve network interface check openQA-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-5.1761296552.ae7c17aa-bp160.1.1.src.rpm openQA-auto-update-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-client-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-common-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-devel-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-doc-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-local-db-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-mcp-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-munin-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-single-instance-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm openQA-worker-5.1761296552.ae7c17aa-bp160.1.1.aarch64.rpm os-autoinst-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-5.1761036042.c43e4ab-bp160.1.1.src.rpm os-autoinst-debuginfo-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1761036042.c43e4ab-bp160.1.1.aarch64.rpm openQA-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-client-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-common-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-devel-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-doc-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-local-db-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-mcp-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-munin-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm openQA-worker-5.1761296552.ae7c17aa-bp160.1.1.ppc64le.rpm os-autoinst-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1761036042.c43e4ab-bp160.1.1.ppc64le.rpm openQA-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-auto-update-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-bootstrap-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-client-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-common-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-continuous-update-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-devel-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-doc-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-local-db-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-mcp-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-munin-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-python-scripts-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-single-instance-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm openQA-worker-5.1761296552.ae7c17aa-bp160.1.1.s390x.rpm os-autoinst-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-devel-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1761036042.c43e4ab-bp160.1.1.s390x.rpm openQA-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-auto-update-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-client-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-common-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-devel-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-doc-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-local-db-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-mcp-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-munin-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-single-instance-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm openQA-worker-5.1761296552.ae7c17aa-bp160.1.1.x86_64.rpm os-autoinst-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1761036042.c43e4ab-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-14 Recommended update for product-composer moderate openSUSE Backports SLE-16.0 This update for product-composer fixes the following issues: Update to version 0.6.16: - merge updateinfo's with same id into one - error out on updateinfo with same id, but non-mergable content Update to version 0.6.15: * Support updateinfo handling in arch specific meta data Update to version 0.6.14: * option to disable joliet extensions on media * no joliet extensions on source and debug media anymore product-composer-0.6.16-bp160.1.1.noarch.rpm product-composer-0.6.16-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-15 Security update for MozillaThunderbird moderate openSUSE Backports SLE-16.0 This update for MozillaThunderbird fixes the following issues: Mozilla Thunderbird 140.4: * changed: Account Hub is now disabled by default for second email account * changed: Flatpak runtime has been updated to Freedesktop SDK 24.08 * fixed: Users could not read mail signed with OpenPGP v6 and PQC keys * fixed: Image preview in Insert Image dialog failed with CSP error for web resources * fixed: Emptying trash on exit did not work with some providers * fixed: Thunderbird could crash when applying filters * fixed: Users were unable to override expired mail server certificate * fixed: Opening Website header link in RSS feed incorrectly re-encoded URL parameters * fixed: Security fixes MFSA 2025-85 (bsc#1251263): * CVE-2025-11708 Use-after-free in MediaTrackGraphImpl::GetInstance() * CVE-2025-11709 Out of bounds read/write in a privileged process triggered by WebGL textures * CVE-2025-11710 Cross-process information leaked due to malicious IPC messages * CVE-2025-11711 Some non-writable Object properties could be modified * CVE-2025-11712 An OBJECT tag type attribute overrode browser behavior on web resources without a content-type * CVE-2025-11713 Potential user-assisted code execution in “Copy as cURL” command * CVE-2025-11714 Memory safety bugs fixed in Firefox ESR 115.29, Firefox ESR 140.4, Thunderbird ESR 140.4, Firefox 144 and Thunderbird 144 * CVE-2025-11715 Memory safety bugs fixed in Firefox ESR 140.4, Thunderbird ESR 140.4, Firefox 144 and Thunderbird 144 MozillaThunderbird-140.4.0-bp160.1.1.src.rpm MozillaThunderbird-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debuginfo-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debugsource-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-common-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-other-140.4.0-bp160.1.1.x86_64.rpm MozillaThunderbird-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-debuginfo-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-debugsource-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-common-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-other-140.4.0-bp160.1.1.s390x.rpm MozillaThunderbird-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debuginfo-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debugsource-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-common-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-other-140.4.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debuginfo-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debugsource-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-common-140.4.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-other-140.4.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-16 Recommended update for knot moderate openSUSE Backports SLE-16.0 This update for knot fixes the following issues: Changes in knot: - disable quic in stable releases due to the missing libraries update to version 3.5.1, see https://www.knot-dns.cz/2025-10-16-version-351.html update to version 3.5.0, see https://www.knot-dns.cz/2025-09-18-version-350.html update to version 3.4.8, see https://www.knot-dns.cz/2025-07-29-version-348.html Use the libngtcp2_crypto_gnutls-devel instead of libngtcp2-devel to account for the openssl and gnutls devel files split in ngtcp2. update to version 3.4.7, see https://www.knot-dns.cz/2025-06-04-version-347.html knot-3.5.1-bp160.1.1.src.rpm knot-3.5.1-bp160.1.1.x86_64.rpm knot-debuginfo-3.5.1-bp160.1.1.x86_64.rpm knot-debugsource-3.5.1-bp160.1.1.x86_64.rpm knot-devel-3.5.1-bp160.1.1.x86_64.rpm knot-utils-3.5.1-bp160.1.1.x86_64.rpm knot-utils-debuginfo-3.5.1-bp160.1.1.x86_64.rpm libdnssec10-3.5.1-bp160.1.1.x86_64.rpm libdnssec10-debuginfo-3.5.1-bp160.1.1.x86_64.rpm libknot16-3.5.1-bp160.1.1.x86_64.rpm libknot16-debuginfo-3.5.1-bp160.1.1.x86_64.rpm libzscanner5-3.5.1-bp160.1.1.x86_64.rpm libzscanner5-debuginfo-3.5.1-bp160.1.1.x86_64.rpm knot-3.5.1-bp160.1.1.s390x.rpm knot-debuginfo-3.5.1-bp160.1.1.s390x.rpm knot-debugsource-3.5.1-bp160.1.1.s390x.rpm knot-devel-3.5.1-bp160.1.1.s390x.rpm knot-utils-3.5.1-bp160.1.1.s390x.rpm knot-utils-debuginfo-3.5.1-bp160.1.1.s390x.rpm libdnssec10-3.5.1-bp160.1.1.s390x.rpm libdnssec10-debuginfo-3.5.1-bp160.1.1.s390x.rpm libknot16-3.5.1-bp160.1.1.s390x.rpm libknot16-debuginfo-3.5.1-bp160.1.1.s390x.rpm libzscanner5-3.5.1-bp160.1.1.s390x.rpm libzscanner5-debuginfo-3.5.1-bp160.1.1.s390x.rpm knot-3.5.1-bp160.1.1.ppc64le.rpm knot-debuginfo-3.5.1-bp160.1.1.ppc64le.rpm knot-debugsource-3.5.1-bp160.1.1.ppc64le.rpm knot-devel-3.5.1-bp160.1.1.ppc64le.rpm knot-utils-3.5.1-bp160.1.1.ppc64le.rpm knot-utils-debuginfo-3.5.1-bp160.1.1.ppc64le.rpm libdnssec10-3.5.1-bp160.1.1.ppc64le.rpm libdnssec10-debuginfo-3.5.1-bp160.1.1.ppc64le.rpm libknot16-3.5.1-bp160.1.1.ppc64le.rpm libknot16-debuginfo-3.5.1-bp160.1.1.ppc64le.rpm libzscanner5-3.5.1-bp160.1.1.ppc64le.rpm libzscanner5-debuginfo-3.5.1-bp160.1.1.ppc64le.rpm knot-3.5.1-bp160.1.1.aarch64.rpm knot-debuginfo-3.5.1-bp160.1.1.aarch64.rpm knot-debugsource-3.5.1-bp160.1.1.aarch64.rpm knot-devel-3.5.1-bp160.1.1.aarch64.rpm knot-utils-3.5.1-bp160.1.1.aarch64.rpm knot-utils-debuginfo-3.5.1-bp160.1.1.aarch64.rpm libdnssec10-3.5.1-bp160.1.1.aarch64.rpm libdnssec10-debuginfo-3.5.1-bp160.1.1.aarch64.rpm libknot16-3.5.1-bp160.1.1.aarch64.rpm libknot16-debuginfo-3.5.1-bp160.1.1.aarch64.rpm libzscanner5-3.5.1-bp160.1.1.aarch64.rpm libzscanner5-debuginfo-3.5.1-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-17 Security update for micropython moderate openSUSE Backports SLE-16.0 This update for micropython fixes the following issues: Changes in micropython: - Build with mbedtls-3.6.5 instead of bundled 3.6.2 to fix CVE-2025-59438 Version 1.26.0: * Added machine.I2CTarget for creating I2C target devices on multiple ports. * New MCU support: STM32N6xx (800 MHz, ML accel) & ESP32-C2 (WiFi + BLE). * Major float accuracy boost (~28% → ~98%), constant folding in compiler. * Optimized native/Viper emitters; reduced heap use for slices. * Time functions standardized (1970–2099); new boards across ESP32, SAMD, STM32, Zephyr. * ESP32: ESP-IDF 5.4.2, flash auto-detect, PCNT class, LAN8670 PHY. * RP2: compressed errors, better lightsleep, hard IRQ timers. * Zephyr v4.0.0: PWM, SoftI2C/SPI, BLE runtime services, boot.py/main.py support. * mpremote adds fs tree, improved df, portable config paths. * Updated lwIP, LittleFS, libhydrogen, stm32lib; expanded hardware/CI tests. micropython-1.26.0-bp160.1.1.src.rpm micropython-1.26.0-bp160.1.1.x86_64.rpm micropython-debuginfo-1.26.0-bp160.1.1.x86_64.rpm micropython-debugsource-1.26.0-bp160.1.1.x86_64.rpm mpremote-1.26.0-bp160.1.1.noarch.rpm mpy-tools-1.26.0-bp160.1.1.x86_64.rpm micropython-1.26.0-bp160.1.1.aarch64.rpm micropython-debuginfo-1.26.0-bp160.1.1.aarch64.rpm micropython-debugsource-1.26.0-bp160.1.1.aarch64.rpm mpy-tools-1.26.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-18 Recommended update for amarok moderate openSUSE Backports SLE-16.0 This update for amarok fixes the following issues: Changes in amarok: - Update to version 3.3.1 * Enable saving and loading script console items, autocompletion in script console, and re-enable some more scripting functionality * Convert the remaining main UI toolbuttons to use icons from theme * Clear out remnants of the now-discontinued MusicDNS service * Fix example permission grant command in database settings (kde#386004) * Fix equalizer gains not updating when selecting some presets (kde#463908) * Fix continuing playback after timecoded tracks (cue files etc, (kde#270003) * Fix MusicBrainz search * Properly start CD playback if Amarok is not already running (kde#503310) * Also transmit embedded cover art through MPRIS (kde#357620) * Don't show transcoding dialog after canceling download (kde#275840) * Load network information earlier to avoid crashes on startup (kde#507497) * Try to export as-compatible-as-possible playlist files (kde#507329) * Fix some random crashes during playback amarok-3.3.1-bp160.1.1.src.rpm amarok-3.3.1-bp160.1.1.x86_64.rpm amarok-debuginfo-3.3.1-bp160.1.1.x86_64.rpm amarok-debugsource-3.3.1-bp160.1.1.x86_64.rpm amarok-doc-3.3.1-bp160.1.1.x86_64.rpm amarok-lang-3.3.1-bp160.1.1.noarch.rpm amarok-3.3.1-bp160.1.1.s390x.rpm amarok-debuginfo-3.3.1-bp160.1.1.s390x.rpm amarok-debugsource-3.3.1-bp160.1.1.s390x.rpm amarok-doc-3.3.1-bp160.1.1.s390x.rpm amarok-3.3.1-bp160.1.1.ppc64le.rpm amarok-debuginfo-3.3.1-bp160.1.1.ppc64le.rpm amarok-debugsource-3.3.1-bp160.1.1.ppc64le.rpm amarok-doc-3.3.1-bp160.1.1.ppc64le.rpm amarok-3.3.1-bp160.1.1.aarch64.rpm amarok-debuginfo-3.3.1-bp160.1.1.aarch64.rpm amarok-debugsource-3.3.1-bp160.1.1.aarch64.rpm amarok-doc-3.3.1-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-19 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Chromium 142.0.7444.134 (boo#1253089): * CVE-2025-12725: Out of bounds write in WebGPU * CVE-2025-12726: Inappropriate implementation in Views * CVE-2025-12727: Inappropriate implementation in V8 * CVE-2025-12728: Inappropriate implementation in Omnibox * CVE-2025-12729: Inappropriate implementation in Omnibox chromedriver-142.0.7444.59-bp160.1.1.x86_64.rpm chromium-142.0.7444.59-bp160.1.1.nosrc.rpm chromium-142.0.7444.59-bp160.1.1.x86_64.rpm chromedriver-142.0.7444.59-bp160.1.1.ppc64le.rpm chromium-142.0.7444.59-bp160.1.1.ppc64le.rpm chromedriver-142.0.7444.59-bp160.1.1.aarch64.rpm chromium-142.0.7444.59-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-20 Recommended update for product-composer moderate openSUSE Backports SLE-16.0 This update for product-composer fixes the following issues: Update to version 0.6.17: - fix multiarch media handling of updateinfo id's product-composer-0.6.17-bp160.1.1.noarch.rpm product-composer-0.6.17-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-22 Security update for certbot important openSUSE Backports SLE-16.0 This update for certbot fixes the following issues: This update adds the certbot stack. (python modules: ConfigArgParse, acme, certbot, certbot-nginx, josepy, pyRFC3339). python-ConfigArgParse-1.7-bp160.1.1.src.rpm python313-ConfigArgParse-1.7-bp160.1.1.noarch.rpm python-acme-5.1.0-bp160.1.1.src.rpm python313-acme-5.1.0-bp160.1.1.noarch.rpm python-certbot-5.1.0-bp160.1.1.src.rpm python313-certbot-5.1.0-bp160.1.1.noarch.rpm python-certbot-nginx-5.1.0-bp160.1.1.src.rpm python313-certbot-nginx-5.1.0-bp160.1.1.noarch.rpm python-josepy-2.2.0-bp160.1.1.src.rpm python313-josepy-2.2.0-bp160.1.1.noarch.rpm python-pyRFC3339-2.0.1-bp160.1.1.src.rpm python313-pyRFC3339-2.0.1-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-23 Recommended update for quilt important openSUSE Backports SLE-16.0 This update for quilt fixes the following issues: Changes in quilt: Update to version 0.69: * Fix escaping of % and backslash in patch names * new: Stop claiming support of option -p ab * patches: Several performance optimizations * series: Simplify the code - Make it possible to run "quilt setup" on a spec file which excludes the local architecture (boo#1238516). - Fix building noarch packages with rpm >= 4.20 (boo#1236907). - Make it possible to preprocess spec files which do not comply with the standard. Most notably multibuild OBS spec files need to be preprocessed. Use option "--spec-filter=obs" for these (boo#1236907). - Detect the change of build root path hierarchy introduced by rpm 4.20 (boo#1236907). - Install the bash completion file to the right directory (reported by rpmlint). quilt-0.69-bp160.1.1.noarch.rpm quilt-0.69-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-24 Security update for chromium important openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Changes in chromium: Chromium 142.0.7444.175 (boo#1253698): * CVE-2025-13223: Type Confusion in V8 * CVE-2025-13224: Type Confusion in V8 chromedriver-142.0.7444.162-bp160.1.1.x86_64.rpm chromium-142.0.7444.162-bp160.1.1.nosrc.rpm chromium-142.0.7444.162-bp160.1.1.x86_64.rpm chromedriver-142.0.7444.162-bp160.1.1.ppc64le.rpm chromium-142.0.7444.162-bp160.1.1.ppc64le.rpm chromedriver-142.0.7444.162-bp160.1.1.aarch64.rpm chromium-142.0.7444.162-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-25 Recommended update for nmon moderate openSUSE Backports SLE-16.0 This update for nmon fixes the following issues: Changes in nmon: - Increase CPU MAX to 2048 (bsc#1247368) update to 16q: * bugfixes * POWER pool_capacity now correctly divided by 100. * Online view POWER Welcome panel on POWER reports the top MHz Small changes only: * Boottime shown online in the Kernel "k" panel * Utilisation stats: /proc/stat now reports 10 Utilisation stats * Bug caused Seg Faults core dumps fixed while collecting to a * Fix: Improved memory handling for extreme numbers of processes (1000's) or rapid exec of processes (100's in a millisecond) for large Linux servers. We have examples on Intel of 80 CPU * Online Dot "." command no longer also changes what is displayed as users said it was confusing. * Minor online start-up flash screen text changes to include C concise CPU stats and U for full Utilisation stats (all 10 of them) instead of a file. * Copyright and GPL v3 notice in the code plus online "h" and * Source code re-indented. * Fixes for Welcome screen on Mainframe * Fixed for Curses handling when collecting data to file - big bug for main frame and x86. * Fixes for Welcome screen on Mainframe * Fixed for Curses handling when collecting data to file - big bug for main frame and x86. + You need a S822LC With NVIDIA GPU(s) and Nvidia Library installed libnvidia-ml.so * CPU Wide View - online view for up to 192 CPUs * CPU MHz per Core ratings for machine that allow cores with different MHz - online & saved to file * lscpu stats capture - online & to file * Z experiment mode showing CPU interrupts - Renamed U stats in version 16b - online only * Online colourising stats to aid usability - online only * Massive improvement in help information: nmon -? and nmon -h * Code change to alphabetic order for getopt() and key input * New nmon logo on flash screen - online only * Extra kernel stats - online only nmon-16q-bp160.1.1.aarch64.rpm nmon-16q-bp160.1.1.src.rpm nmon-debuginfo-16q-bp160.1.1.aarch64.rpm nmon-debugsource-16q-bp160.1.1.aarch64.rpm nmon-16q-bp160.1.1.ppc64le.rpm nmon-debuginfo-16q-bp160.1.1.ppc64le.rpm nmon-debugsource-16q-bp160.1.1.ppc64le.rpm nmon-16q-bp160.1.1.s390x.rpm nmon-debuginfo-16q-bp160.1.1.s390x.rpm nmon-debugsource-16q-bp160.1.1.s390x.rpm nmon-16q-bp160.1.1.x86_64.rpm nmon-debuginfo-16q-bp160.1.1.x86_64.rpm nmon-debugsource-16q-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-26 Recommended update for synce4l moderate openSUSE Backports SLE-16.0 This update for synce4l fixes the following issues: synce4l was updated to 1.1.1: * fix possible resource leak * fix requested thread stack size * fix scorecard.yml * initialize pin ID to -1 * fix crash in dpll_rt_recv() * create scorecard.yml * unlink smc_socket_path before binding * check smc_socket_path length * change default smc_socket_path to /run/synce4l_socket * fix more compiler warnings - Initial packaging of version 1.0.0. synce4l-1.1.1-bp160.1.1.aarch64.rpm synce4l-1.1.1-bp160.1.1.src.rpm synce4l-debuginfo-1.1.1-bp160.1.1.aarch64.rpm synce4l-debugsource-1.1.1-bp160.1.1.aarch64.rpm synce4l-1.1.1-bp160.1.1.ppc64le.rpm synce4l-debuginfo-1.1.1-bp160.1.1.ppc64le.rpm synce4l-debugsource-1.1.1-bp160.1.1.ppc64le.rpm synce4l-1.1.1-bp160.1.1.s390x.rpm synce4l-debuginfo-1.1.1-bp160.1.1.s390x.rpm synce4l-debugsource-1.1.1-bp160.1.1.s390x.rpm synce4l-1.1.1-bp160.1.1.x86_64.rpm synce4l-debuginfo-1.1.1-bp160.1.1.x86_64.rpm synce4l-debugsource-1.1.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-27 Security update for MozillaThunderbird important openSUSE Backports SLE-16.0 This update for MozillaThunderbird fixes the following issues: Changes in MozillaThunderbird: Mozilla Thunderbird 140.5.0 ESR MFSA 2025-91 (bsc#1253188): * CVE-2025-13012 Race condition in the Graphics component * CVE-2025-13016 Incorrect boundary conditions in the JavaScript: WebAssembly component * CVE-2025-13017 Same-origin policy bypass in the DOM: Notifications component * CVE-2025-13018 Mitigation bypass in the DOM: Security component * CVE-2025-13019 Same-origin policy bypass in the DOM: Workers component * CVE-2025-13013 Mitigation bypass in the DOM: Core & HTML component * CVE-2025-13020 Use-after-free in the WebRTC: Audio/Video component * CVE-2025-13014 Use-after-free in the Audio/Video component * CVE-2025-13015 Spoofing issue in Thunderbird * fixed: Could not drag and drop ICS file to Today Pane * fixed: With Thunderbird closed, clicking a 'mailto:' link to send signed message failed * fixed: Upgrade from 128.x->140.x broke authentication for @att.net using Yahoo backend Mozilla Thunderbird 140.4.0 ESR * Account Hub is now disabled by default for second email account * Users could not read mail signed with OpenPGP v6 and PQC keys * Image preview in Insert Image dialog failed with CSP error for web resources * Emptying trash on exit did not work with some providers * Thunderbird could crash when applying filters * Users were unable to override expired mail server certificate * Opening Website header link in RSS feed incorrectly re-encoded URL parameters Mozilla Thunderbird 140.3.1 ESR: * several bugfixes listed here https://www.thunderbird.net/en-US/thunderbird/140.3.1esr/releasenotes ------------------------------------------------------------------- MozillaThunderbird-140.5.0-bp160.1.1.src.rpm MozillaThunderbird-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debuginfo-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debugsource-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-common-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-other-140.5.0-bp160.1.1.x86_64.rpm MozillaThunderbird-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-debuginfo-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-debugsource-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-common-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-other-140.5.0-bp160.1.1.s390x.rpm MozillaThunderbird-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debuginfo-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debugsource-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-common-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-other-140.5.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debuginfo-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debugsource-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-common-140.5.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-other-140.5.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-28 Recommended update for product-composer moderate openSUSE Backports SLE-16.0 This update for product-composer fixes the following issues: Changes in product-composer: Update to version 0.6.18: - Fix filtering of not used rpms in updateinfo product-composer-0.6.18-bp160.1.1.noarch.rpm product-composer-0.6.18-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-29 Recommended update for gramps moderate openSUSE Backports SLE-16.0 This update for gramps fixes the following issues: Changes in gramps: Update to version 6.0.3: * Revert “Pass an object rather than a handle to the note editor callback”. Fixes #13884. * Update translations. Update to version 6.0.2; * Fix date modifiers for lt. * Update translation template for new release. * Add optimization to HasIdOf rules. * Connect the Help button in the repository reference editor. Fixes #13352. * Pass an object rather than a handle to the note editor callback. Fixes #13702. * Fix broken compound dates with bce year in XML import. Fixes #13631. * Avoid multiple copies of Rules after Plugin manager reload. Fixes #13844. * Fix bad surname list after upgrade from bsddb. Fixes #13807. * Fix narrated web when two places have same name but a different type. Fixes #13841. * Fix crash in citation view due to wrong filter_info. Fixes #13796. * Don’t attempt to call set_orientation if self.pui is None. Fixes #13820. * Don’t crash in search_changed if self.search_list has no active item. Fixes #13793. * Fix incorrect addons project after upgrade from Gramps 5.2. Fixes #13789. * Respect user choice of CSS files for existing narrated web site. Fixes #13792. * Ensure that the spell checker gets removed with the editor. Fixes #13795. * Fix Optimizer class when combining sub-filters. Fixes #13799. * Remove check for Gtk translations in Snap packages. * Update translations. Update to version 6.0.1: * Update translations: ar, br, ca, cs, de, de_AT, el, en_GB, es, fi, fr, ga, he, it, ja, ko, nb, nl, pl, pt_PT, ro, sk, sv, tr, uk, zh_CN. * Update translation template for new release. * Extend SearchBar so that it supports text search and filters. Fixes #13720. * Fix patronymic in name display. Fixes #13764. * Update links in the README to v6.0. * Update the INSTALL file. Issue #13717. + Change install from setup.py to pip. + Update typical installation locations. + Remove the --resourcepath option which no longer exists. * Fix wiki help link in the Addon Manager. Fixes #13735. * Remove the outer progress meter from the filter prepare phase. Fixes #13725. * Fix error when importing a GEDCOM file into an existing tree. Fixes #13726. * Avoid empty metadata fields. Fixes #13721. * Update Italian date modifiers. Update to version 6.0.0: * Full changelog available at https://gramps-project.org/blog/2025/03/gramps-6-0-0-released/ * Reports + The narrative web report has four main improvements: - New indexes for big databases. - Add heatmap. - Improve language and hamburger menus. - Show other roles for an event. + Other report changes: - Add gender symbol option to the detailed descendant, detailed ancestral and descendant report. - Add Gramps ID option to Kinship Report. - Tree reports convert images to thumbnails for embedding. This allows cropped rectangles selected in the media references to be displayed. - Report options are now memorised on a per family tree (database) level. * Gramplets + Improvements to the backlinks (References) gramplets: + Allow an object to be made active from within the backlinks gramplet. + Add a context menu to make “Edit” and “Make Active” more discoverable. + Allow objects in the backlinks gramplets to be dragged to the clipboard. + Add edit capability to the notes gramplets. + Enhanced version of the Filter gramplet. * Selector dialogs + A standard search bar has been added to the person selector dialog. It may default to selecting men or women by default, but selecting on other columns is possible. + It is now possible to select multiple media objects in the media selector and gallery tabs. + The media selector has a new path column. * Other changes + Improvements to the Probably Alive code. + New rules: “Has Event”, “Has Source” and “Having Note of Type”. + New Gedcom 7.0 event roles: “Father”, Mother”, “Parent”, “Child”, “Multiple”, Friend”, “Neighbour” and “Officiator”. + Allow web-accessible file references in media objects. + Add a preference option for the selection of the toolbar style. + Enhancements to the help display. This is ongoing though. + Enable Web Connection menu in all list views. Update to version 5.2.4: * Fix Citations gramplet to recognize event reference citations. Fixes #13555. * Fix exception when finding relationship to home person. Fixes #13495. * Fix mouse scroll direction in pedigree view. * Fix incorrect usage of exec. As of PEP558, locals() is not populated by exec(). This change means that this call is broken on Python 3.13. * Remove some usage of globals(). * Remove unnecessary use of exec. * Test current_date being an empty date in probably alive function. Fixes #13431. * Improve warning message in date_test.py when 3 tests are skipped. * Correctly assign sortval = 0 when a date is EMPTY. Fixes #13415, #13423. * Fix unicode conversion bug when upgrading from schema 16 to 17. * Correct the documentation for the match() method of the Date class. Also added more detail to documentation in 3 other cases. Fixes #13428. * Gramps version output now reports OS rather than Platform. Fixes #12285. * Downgrade upgrade messages from warning to informational level. Fixes #13464. * Fix list size option in the top surnames gramplet. Allow users to specify how many surnames appear in the list from 10 to 1000. Fixes #13448. * Correct misleading description of GUI element placement. * Use the preferred calendar for new dates only in the date editor. Fixes #13403. * Fix docs typo in INSTALL file. * Fix printing of Books. Fixes #12804. * Render reports with styled notes containing subscript and strikethrough. Fixes #13417. * Remove broken link to svn2cl package in the About dialog. Fixes #13152. * Improve media performance in the narrative web report. Fixes #13370. * Updated translations. gramps-6.0.3-bp160.1.1.noarch.rpm gramps-6.0.3-bp160.1.1.src.rpm gramps-lang-6.0.3-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-3 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Chromium 141.0.7390.107: * CVE-2025-11756: Use after free in Safe Browsing (boo#1252013) chromedriver-141.0.7390.107-bp160.1.1.aarch64.rpm chromium-141.0.7390.107-bp160.1.1.aarch64.rpm chromium-141.0.7390.107-bp160.1.1.nosrc.rpm chromedriver-141.0.7390.107-bp160.1.1.ppc64le.rpm chromium-141.0.7390.107-bp160.1.1.ppc64le.rpm chromedriver-141.0.7390.107-bp160.1.1.x86_64.rpm chromium-141.0.7390.107-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-30 Security update for helmfile important openSUSE Backports SLE-16.0 This update for helmfile fixes the following issues: Changes in helmfile: Update to version 1.1.9: * feat: update strategy for reinstall by @simbou2000 in #2019 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.7 to 1.89.0 by @dependabot[bot] in #2239 * Fix: Handle empty helmBinary in base files with environment values by @Copilot in #2237 Update to version 1.1.8: * build(deps): bump github.com/hashicorp/go-getter from 1.8.0 to 1.8.1 by @dependabot[bot] in #2194 * fix typos in both comment and error message by @d-fal in #2199 * cleanup disk in release ci by @yxxhero in #2203 * Migrate AWS SDK from v1 to v2 to resolve deprecation warnings by @Copilot in #2202 * build(deps): bump github.com/helmfile/vals from 0.42.1 to 0.42.2 by @dependabot[bot] in #2200 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.2 to 1.88.3 by @dependabot[bot] in #2206 * Bump Alpine to 3.22 in Dockerfile by @orishamir in #2205 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.10 to 1.31.12 by @dependabot[bot] in #2207 * Add yq to Dockerfile by @orishamir in #2208 * fix: skip chartify for build command jsonPatches by @sstarcher in #2212 * build(deps): bump github.com/hashicorp/go-getter from 1.8.1 to 1.8.2 by @dependabot[bot] in #2210 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.3 to 1.88.4 by @dependabot[bot] in #2213 * build(deps): bump golang.org/x/term from 0.35.0 to 0.36.0 by @dependabot[bot] in #2214 * Avoid fetching same chart/version multiple times by @Copilot in #2197 * build(deps): bump github.com/helmfile/vals from 0.42.2 to 0.42.4 by @dependabot[bot] in #2217 * docs: add zread badge to README by @yxxhero in #2219 * Bump helm-diff to v3.13.1 by @Copilot in #2223 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.4 to 1.88.5 by @dependabot[bot] in #2226 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.12 to 1.31.13 by @dependabot[bot] in #2225 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.5 to 1.88.6 by @dependabot[bot] in #2230 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.6 to 1.88.7 by @dependabot[bot] in #2232 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.13 to 1.31.15 by @dependabot[bot] in #2233 * Fix helmBinary and kustomizeBinary being ignored when using bases by @Copilot in #2228 Update to version 1.1.7: What's Changed * fix pflag error by @zhaque44 in #2164 * build(deps): bump actions/setup-go from 5 to 6 by @dependabot[bot] in #2166 * build(deps): bump github.com/hashicorp/go-getter from 1.7.9 to 1.7.10 by @dependabot[bot] in #2165 * build(deps): bump github.com/spf13/pflag from 1.0.9 to 1.0.10 by @dependabot[bot] in #2163 * Add helm diff installation to README by @nwneisen in #2170 * build(deps): bump github.com/hashicorp/go-getter from 1.7.10 to 1.8.0 by @dependabot[bot] in #2175 * build(deps): bump golang.org/x/term from 0.34.0 to 0.35.0 by @dependabot[bot] in #2174 * build(deps): bump github.com/zclconf/go-cty from 1.16.4 to 1.17.0 by @dependabot[bot] in #2173 * Fix panic when helm isn't installed by @nwneisen in #2169 * build(deps): bump golang.org/x/sync from 0.16.0 to 0.17.0 by @dependabot[bot] in #2172 * ci: update minikube and kubernetes versions by @yxxhero in #2181 * build(deps): bump k8s.io/apimachinery from 0.34.0 to 0.34.1 by @dependabot[bot] in #2180 * Remove deprecated --wait-retries flag support to fix Helm compatibility error by @Copilot in #2179 * build(deps): bump go.yaml.in/yaml/v2 from 2.4.2 to 2.4.3 by @dependabot[bot] in #2183 * build: update Helm to v3.19.0 across all components by @yxxhero in #2187 * build: update helm-diff plugin to v3.13.0 by @yxxhero in #2189 * feat: Implement caching for pulling OCI charts by @mustdiechik in #2171 * build(deps): bump github.com/helmfile/chartify from 0.24.7 to 0.25.0 by @dependabot[bot] in #2190 - Update to version 1.1.6: What's Changed * build(deps): bump github.com/hashicorp/go-getter from 1.7.8 to 1.7.9 by @dependabot[bot] in #2139 * build(deps): bump github.com/zclconf/go-cty from 1.16.3 to 1.16.4 by @dependabot[bot] in #2145 * build: update helm to v3.18.6 by @yxxhero in #2144 * build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 by @dependabot[bot] in #2150 * Add missing --timeout flag to helmfile sync command with documentation by @Copilot in #2148 * Fix enableDNS flag missing in diff command and refactor duplicate logic by @Copilot in #2147 * build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 by @dependabot[bot] in #2151 * build(deps): bump github.com/ulikunitz/xz from 0.5.10 to 0.5.14 by @dependabot[bot] in #2154 * Bump github.com/ulikunitz/xz from v0.5.14 to v0.5.15 by @Copilot in #2159 * build(deps): bump github.com/helmfile/vals from 0.42.0 to 0.42.1 by @dependabot[bot] in #2161 * build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.9 by @dependabot[bot] in #2160 * build(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 by @dependabot[bot] in #2162 * Fix error propagation in helmfile diff when Kubernetes is unreachable by @Copilot in #2149 - Update to version 1.1.5: What's Changed * build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in #2128 * Update recommended Helm versions in init.go and run.sh by @yxxhero in #2129 * Add comprehensive .github/copilot-instructions.md for coding agents by @Copilot in #2131 * refactor(state): extract getMissingFileHandler method for clarity by @yxxhero in #2133 * Fix parseHelmVersion to handle helm versions without 'v' prefix by @Copilot in #2132 * build(deps): bump k8s.io/apimachinery from 0.33.3 to 0.33.4 by @dependabot[bot] in #2136 * build(deps): bump github.com/helmfile/chartify from 0.24.6 to 0.24.7 by @dependabot[bot] in #2135 - Update to version 1.1.4: What's Changed * build(deps): bump github.com/helmfile/vals from 0.41.2 to 0.41.3 by @dependabot[bot] in #2100 * build(deps): bump k8s.io/apimachinery from 0.33.2 to 0.33.3 by @dependabot[bot] in #2101 * fix: update Helm version to v3.17.4 in CI and init.go by @yxxhero in #2102 * build(deps): bump github.com/spf13/pflag from 1.0.6 to 1.0.7 by @dependabot[bot] in #2104 * feat(state): add missingFileHandlerConfig and related logic by @yxxhero in #2105 * refactor(filesystem): add CopyDir method and optimize Fetch function by @yxxhero in #2111 * Allow caching of remote files to be disabled by @jess-sol in #2112 * refactor(yaml): switch yaml library import paths from gopkg.in to go.yaml.in by @yxxhero in #2114 * build(deps): bump actions/download-artifact from 4 to 5 by @dependabot[bot] in #2121 * build(deps): bump golang.org/x/term from 0.33.0 to 0.34.0 by @dependabot[bot] in #2123 - Update to version 1.1.3: What's Changed * build: update Helm to v3.18.3 and related dependencies by @yxxhero in #2082 * Expose release version as .Release.ChartVersion for templating by @Simske in #2080 * build(deps): bump github.com/helmfile/chartify from 0.24.3 to 0.24.4 by @dependabot[bot] in #2083 * build(deps): bump k8s.io/apimachinery from 0.33.1 to 0.33.2 by @dependabot[bot] in #2086 * build(deps): bump github.com/helmfile/chartify from 0.24.4 to 0.24.5 by @dependabot[bot] in #2087 * build(deps): bump github.com/Masterminds/semver/v3 from 3.3.1 to 3.4.0 by @dependabot[bot] in #2089 * build(deps): bump github.com/hashicorp/hcl/v2 from 2.23.0 to 2.24.0 by @dependabot[bot] in #2092 * build: update Helm and plugin versions to v3.18.4 and v3.12.3 by @yxxhero in #2093 * docs: update status section with May 2025 release information by @yxxhero in #2096 * build(deps): bump golang.org/x/sync from 0.15.0 to 0.16.0 by @dependabot[bot] in #2099 * build(deps): bump golang.org/x/term from 0.32.0 to 0.33.0 by @dependabot[bot] in #2098 - Update to version 1.1.2: What's Changed * build(deps): bump github.com/helmfile/chartify from 0.24.2 to 0.24.3 by @dependabot in #2065 * build: update Helm to v3.18.2 and adjust related configurations by @yxxhero in #2064 * build(deps): bump github.com/helmfile/vals from 0.41.1 to 0.41.2 by @dependabot in #2067 * build(deps): bump golang.org/x/sync from 0.14.0 to 0.15.0 by @dependabot in #2068 * fix-insecure-flag by @anontrex in #2072 * build(deps): bump github.com/cloudflare/circl from 1.4.0 to 1.6.1 by @dependabot in #2074 * fix: update helm-diff to version 3.12.2 in CI and Dockerfiles by @yxxhero in #2073 * fix: TestToYaml not working with 32-bit architectures by @ProbstDJakob in #2075 - Update to version 1.1.1: What's Changed * Update README.md by @mumoshu in #2046 * build(deps): bump github.com/helmfile/vals from 0.41.0 to 0.41.1 by @dependabot in #2048 * build(helm) update to v3.18.0 by @yxxhero in #2044 * build(deps): bump github.com/helmfile/chartify from 0.23.0 to 0.24.1 by @dependabot in #2049 * build: update Helm and plugin versions in CI and Dockerfiles by @yxxhero in #2059 - Update to version 1.1.0: What's Changed * chore: fix typo in create_test.go by @sadikkuzu in #2025 * build(deps): bump golangci/golangci-lint-action from 7 to 8 by @dependabot in #2029 * build(deps): bump golang.org/x/sync from 0.13.0 to 0.14.0 by @dependabot in #2028 * build(deps): bump github.com/helmfile/chartify from 0.22.0 to 0.23.0 by @dependabot in #2027 * chore: remove test data files by @yxxhero in #2026 * build(deps): bump golang.org/x/term from 0.31.0 to 0.32.0 by @dependabot in #2033 * build(deps): bump github.com/helmfile/vals from 0.40.1 to 0.41.0 by @dependabot in #2032 * build(deps): bump dario.cat/mergo from 1.0.1 to 1.0.2 by @dependabot in #2035 * feat(tmpl): enhance ToYaml test with multiple scenarios by @yxxhero in #2031 * [sops, age] update to have SSH key support with sops by @itscaro in #2036 * feat(yaml): add JSON style encoding option to NewEncoder by @yxxhero in #2038 * refactor(yaml): upgrade from gopkg.in/yaml.v2 to v3 by @yxxhero in #2039 * Update readme & documentation with 2025 status of helmfile project by @zhaque44 in #2040 * build(deps): bump k8s.io/apimachinery from 0.33.0 to 0.33.1 by @dependabot in #2041 * build(deps): bump github.com/zclconf/go-cty from 1.16.2 to 1.16.3 by @dependabot in #2043 - Update to version 1.0.0: PLEASE READ https://github.com/helmfile/helmfile/blob/main/docs/proposals/towards-1.0.md What's Changed: * build(deps): bump github.com/helmfile/vals from 0.39.0 to 0.39.1 by @dependabot in #1926 * Bump kubectl to current version (1.32.1) by @DerDaku in #1924 * build(deps): bump github.com/goccy/go-yaml from 1.15.21 to 1.15.22 by @dependabot in #1925 * build: update Helm to v3.17.1 and related dependencies by @yxxhero in #1928 * build(deps): bump k8s.io/apimachinery from 0.32.1 to 0.32.2 by @dependabot in #1931 * feat: inject cli state values (--state-values-set) into environment templating context by @Vince-Chenal in #1917 * docs: add skipSchemaValidation to index.md and update related structs by @yxxhero in #1935 * refactor(state): optimize HelmState flags handling by @yxxhero in #1937 * Update vals package to v0.39.2 by @aditmeno in #1938 * build(deps): bump github.com/spf13/cobra from 1.8.1 to 1.9.1 by @dependabot in #1940 * build(deps): bump github.com/goccy/go-yaml from 1.15.22 to 1.15.23 by @dependabot in #1941 * build(deps): bump github.com/helmfile/chartify from 0.20.8 to 0.20.9 by @dependabot in #1942 * feat: colorized DELETED by @yurrriq in #1944 * feat(docs): add proposal to remove charts and delete subcommands by @yxxhero in #1936 * build(deps): bump github.com/google/go-cmp from 0.6.0 to 0.7.0 by @dependabot in #1945 * build(deps): bump github.com/go-jose/go-jose/v4 from 4.0.4 to 4.0.5 by @dependabot in #1946 * build: update golang version to 1.24 and golangci-lint to v1.64.5 by @yxxhero in #1949 * build(deps): bump github.com/helmfile/vals from 0.39.2 to 0.39.3 by @dependabot in #1951 * build(deps): bump github.com/helmfile/chartify from 0.20.9 to 0.21.0 by @dependabot in #1950 * build(deps): bump golang.org/x/sync from 0.11.0 to 0.12.0 by @dependabot in #1955 * build(deps): bump jinja2 from 3.1.5 to 3.1.6 in /docs by @dependabot in #1956 * Don't warn if this and the needed release set installed: false by @jayme-github in #1958 * build(deps): bump golang.org/x/term from 0.29.0 to 0.30.0 by @dependabot in #1959 * Remove all v0.x references by @yxxhero in #1919 * build(deps): bump k8s.io/apimachinery from 0.32.2 to 0.32.3 by @dependabot in #1960 * build(deps): bump golang.org/x/net from 0.35.0 to 0.36.0 by @dependabot in #1961 * build(deps): bump github.com/helmfile/vals from 0.39.3 to 0.39.4 by @dependabot in #1962 * build: update Helm to v3.17.2 and related dependencies by @yxxhero in #1965 * build: update yaml.v3 dependency and remove colega/go-yaml-yaml by @yxxhero in #1929 * build(deps): bump github.com/containerd/containerd from 1.7.24 to 1.7.27 by @dependabot in #1966 * build(deps): bump github.com/goccy/go-yaml from 1.15.23 to 1.16.0 by @dependabot in #1967 * build(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 by @dependabot in #1969 * build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2 by @dependabot in #1970 * build(deps): bump golangci/golangci-lint-action from 6 to 7 by @dependabot in #1975 * build(deps): bump github.com/helmfile/vals from 0.39.4 to 0.40.0 by @dependabot in #1978 * build(deps): bump github.com/helmfile/chartify from 0.21.0 to 0.21.1 by @dependabot in #1979 * docs(fix): correct typo in 'tier=fronted' to 'tier=frontend' by @yxxhero in #1980 * feat: add labels for helm release by @yxxhero in #1046 * build(deps): bump github.com/helmfile/vals from 0.40.0 to 0.40.1 by @dependabot in #1981 * build(deps): bump github.com/goccy/go-yaml from 1.16.0 to 1.17.1 by @dependabot in #1982 * fix: Check needs with context and namespace by @aarnq in #1986 * build(deps): bump golang.org/x/sync from 0.12.0 to 0.13.0 by @dependabot in #1991 * build(deps): bump golang.org/x/term from 0.30.0 to 0.31.0 by @dependabot in #1990 * fix(state): enhance error message for missing .gotmpl extension in helmfile v1 by @yxxhero in #1989 * build(deps): bump github.com/helmfile/chartify from 0.21.1 to 0.22.0 by @dependabot in #1996 * build: update Helm plugin versions in CI and Dockerfiles by @yxxhero in #1995 * build: update Helm to v3.17.3 and update related Dockerfiles by @yxxhero in #1993 * build(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 by @dependabot in #2010 * feat: add helmfile archive configuration in goreleaser by @yxxhero in #2000 * docs: add more complex examples section in README by @yxxhero in #2013 * Feat: setting reuseValues flag in release by @blaskoa in #2004 * build(deps): bump k8s.io/apimachinery from 0.32.3 to 0.32.4 by @dependabot in #2016 * build(deps): bump github.com/aws/aws-sdk-go from 1.55.6 to 1.55.7 by @dependabot in #2015 * chore: support parsing any type with fromYaml by @ProbstDJakob in #2017 * build(deps): bump k8s.io/apimachinery from 0.32.4 to 0.33.0 by @dependabot in #2018 * feat: add --take-ownership flag to helm diff and related config by @yxxhero in #1992 - Update to version 0.171.0: * feat: execute templates against postRendererHooks by @allanger in #1839 * build(deps): bump github.com/spf13/pflag from 1.0.5 to 1.0.6 by @dependabot in #1897 * build(deps): bump github.com/goccy/go-yaml from 1.15.15 to 1.15.16 by @dependabot in #1901 * build(deps): bump github.com/goccy/go-yaml from 1.15.16 to 1.15.17 by @dependabot in #1905 * Use a regex to match --state-values-set-string arguments by @gllb in #1902 * build(deps): bump golang.org/x/sync from 0.10.0 to 0.11.0 by @dependabot in #1911 * Chartify v0.20.8 update by @scodeman in #1908 * cleanup: remove all about v0.x by @yxxhero in #1903 * build(deps): bump golang.org/x/term from 0.28.0 to 0.29.0 by @dependabot in #1913 * chore: update babel to resolve CVEs by @zhaque44 in #1916 * remove deprecated charts.yaml by @yxxhero in #1437 * Revert "cleanup: remove all about v0.x" by @yxxhero in #1918 * build(deps): bump github.com/goccy/go-yaml from 1.15.17 to 1.15.19 by @dependabot in #1920 * build(deps): bump github.com/goccy/go-yaml from 1.15.19 to 1.15.20 by @dependabot in #1921 * feat: Add support for --wait-retries flag. by @connyay in #1922 * build: update go-yaml to v1.15.21 by @yxxhero in #1923 - Update to version 0.170.1: * build(deps): bump github.com/goccy/go-yaml from 1.15.14 to 1.15.15 by @dependabot in #1882 * build(deps): bump github.com/hashicorp/go-slug from 0.15.0 to 0.16.3 by @dependabot in #1886 (CVE-2025-0377) * Ensure 'helm repo add' is also not pollute on helmfile template by @baurmatt in #1887 * build(deps): bump github.com/zclconf/go-cty from 1.16.1 to 1.16.2 by @dependabot in #1888 * fix: using correct option for takeOwnership flag by @blaskoa in #1892 * fix typo in docs by @adamab48 in #1889 - Update to version 0.170.0: * build(deps): bump github.com/goccy/go-yaml from 1.15.6 to 1.15.7 by @dependabot in #1818 * build(deps): bump golang.org/x/term from 0.26.0 to 0.27.0 by @dependabot in #1817 * chore(doc): fix the indent of the selector usage sample yaml by @Ladicle in #1819 * feat(state): add support for setString in ReleaseSpec and HelmState by @yxxhero in #1821 * build(deps): bump github.com/goccy/go-yaml from 1.15.7 to 1.15.8 by @dependabot in #1822 * test(state): add TestHelmState_setStringFlags for setStringFlags method by @yxxhero in #1823 * build(deps): bump k8s.io/apimachinery from 0.31.3 to 0.31.4 by @dependabot in #1826 * build(deps): bump golang.org/x/crypto from 0.29.0 to 0.31.0 by @dependabot in #1828 * build(deps): bump github.com/goccy/go-yaml from 1.15.8 to 1.15.9 by @dependabot in #1831 * build(deps): bump k8s.io/apimachinery from 0.31.4 to 0.32.0 by @dependabot in #1830 * feat: updating sops version to 3.9.2 by @zhaque44 in #1834 * build(deps): bump github.com/goccy/go-yaml from 1.15.9 to 1.15.10 by @dependabot in #1835 * build(deps): bump helm.sh/helm/v3 from 3.16.3 to 3.16.4 by @dependabot in #1836 * build: update Helm version to v3.16.4 in CI and Dockerfiles by @yxxhero in #1837 * build(deps): bump github.com/goccy/go-yaml from 1.15.10 to 1.15.11 by @dependabot in #1838 * build(deps): bump filippo.io/age from 1.2.0 to 1.2.1 by @dependabot in #1840 * build(deps): bump github.com/goccy/go-yaml from 1.15.11 to 1.15.12 by @dependabot in #1843 * build: update helm-diff to v3.9.13 in Dockerfiles and init.go by @yxxhero in #1841 * build(deps): bump github.com/helmfile/chartify from 0.20.4 to 0.20.5 by @dependabot in #1845 * build(deps): bump github.com/goccy/go-yaml from 1.15.12 to 1.15.13 by @dependabot in #1844 * build(deps): bump jinja2 from 3.1.4 to 3.1.5 in /docs by @dependabot in #1846 * CVE-2024-45338: updating golang.org/x/net: to version: v0.33.0 by @zhaque44 in #1849 * build(deps): bump github.com/zclconf/go-cty from 1.15.1 to 1.16.0 by @dependabot in #1851 * build(deps): bump golang.org/x/term from 0.27.0 to 0.28.0 by @dependabot in #1852 * update sops versions to 3.9.3 by @zhaque44 in #1861 * build(deps): bump github.com/hashicorp/go-getter from 1.7.6 to 1.7.7 by @dependabot in #1862 * feat: add --take-ownership flag to apply and sync commands by @yxxhero in #1863 * fix: ensure plain http is supported across all helmfile commands by @purpleclay in #1858 * fix: ensure development versions of charts can be used across helmfile commands by @purpleclay in #1865 * build(deps): bump github.com/helmfile/chartify from 0.20.5 to 0.20.6 by @dependabot in #1866 * update kubectl version (1.30) to stay up to date with new releases by @zhaque44 in #1867 * build(deps): bump github.com/zclconf/go-cty from 1.16.0 to 1.16.1 by @dependabot in #1870 * build(deps): bump github.com/hashicorp/go-getter from 1.7.7 to 1.7.8 by @dependabot in #1869 * feat: Add "--no-hooks" to helmfile template by @jwlai in #1813 * update helm and k8s versions in ci, dockerfiles, and go.mod by @yxxhero in #1872 * build(deps): bump github.com/helmfile/vals from 0.38.0 to 0.39.0 by @dependabot in #1876 * build(deps): bump k8s.io/apimachinery from 0.32.0 to 0.32.1 by @dependabot in #1873 * build(deps): bump github.com/goccy/go-yaml from 1.15.13 to 1.15.14 by @dependabot in #1874 * build: update helm-diff to v3.9.14 in Dockerfiles and init.go by @yxxhero in #1877 - Update to version 0.169.2: * build(deps): bump github.com/helmfile/vals from 0.37.6 to 0.37.7 by @dependabot in #1747 * build(deps): bump k8s.io/apimachinery from 0.31.1 to 0.31.2 by @dependabot in #1754 * Reset extra args before running 'dependency build' by @baurmatt in #1751 * Introducing Helmfile Guru on Gurubase.io by @kursataktas in #1748 * feat: add skip json schema validation during the install /upgrade of a Chart by @zhaque44 in #1737 * fix(maputil): prevent nil value overwrite by @ban11111 in #1755 * build(deps): bump github.com/goccy/go-yaml from 1.12.0 to 1.13.0 by @dependabot in #1759 * fix: this url doesn't work anymore by @zekena2 in #1760 * build(deps): bump github.com/goccy/go-yaml from 1.13.0 to 1.13.1 by @dependabot in #1762 * build(deps): bump github.com/goccy/go-yaml from 1.13.1 to 1.13.2 by @dependabot in #1763 * build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 by @dependabot in #1767 * build(deps): bump github.com/helmfile/vals from 0.37.7 to 0.37.8 by @dependabot in #1764 * build(deps): bump github.com/goccy/go-yaml from 1.13.2 to 1.13.4 by @dependabot in #1765 * fix(integration-tests): read correct minikube status (#1768) by @ceriath in #1769 * build(deps): bump github.com/goccy/go-yaml from 1.13.4 to 1.13.5 by @dependabot in #1770 * Add integration tests for #1749 by @baurmatt in #1766 * fix: update acme chart URL in input.yaml by @yxxhero in #1773 * build(deps): bump github.com/goccy/go-yaml from 1.13.5 to 1.13.6 by @dependabot in #1771 * build(deps): bump golang.org/x/sync from 0.8.0 to 0.9.0 by @dependabot in #1775 * build(deps): bump golang.org/x/term from 0.25.0 to 0.26.0 by @dependabot in #1774 * Revive dead badge links by @eggplants in #1776 * feat: refactor label creation in state.go by @yxxhero in #1758 * docs: Add Gurubase badge to README-zh_CN by @yxxhero in #1777 * build(deps): bump github.com/goccy/go-yaml from 1.13.6 to 1.13.9 by @dependabot in #1781 * build(deps): bump github.com/goccy/go-yaml from 1.13.9 to 1.14.0 by @dependabot in #1782 * build(deps): bump github.com/goccy/go-yaml from 1.14.0 to 1.14.3 by @dependabot in #1788 * build(deps): bump helm.sh/helm/v3 from 3.16.2 to 3.16.3 by @dependabot in #1786 * fix: update helm-diff to version 3.9.12 in CI and Dockerfiles by @yxxhero in #1792 * build: update Helm version to v3.16.3 in CI and Dockerfiles by @yxxhero in #1791 * feat: add HELMFILE_INTERACTIVE env var to enable interactive mode by @thevops in #1787 * build(deps): bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 by @dependabot in #1793 * build(deps): bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 by @dependabot in #1795 * chore: update with testify/assert assertion and table driven tests for fs.go by @zhaque44 in #1794 * build(deps): bump k8s.io/apimachinery from 0.31.2 to 0.31.3 by @dependabot in #1798 * build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by @dependabot in #1800 * build(deps): bump github.com/goccy/go-yaml from 1.14.3 to 1.15.0 by @dependabot in #1804 * build(deps): bump github.com/goccy/go-yaml from 1.15.0 to 1.15.1 by @dependabot in #1807 * build(deps): bump github.com/zclconf/go-cty from 1.15.0 to 1.15.1 by @dependabot in #1806 * update example chart URL in remote-secrets doc by @daveneeley in #1809 * build(deps): bump github.com/goccy/go-yaml from 1.15.1 to 1.15.3 by @dependabot in #1811 * build(deps): bump github.com/goccy/go-yaml from 1.15.3 to 1.15.6 by @dependabot in #1812 * fix: inject global values in Chartify by @xabufr in #1805 * build(deps): bump github.com/helmfile/vals from 0.37.8 to 0.38.0 by @dependabot in #1814 * build(deps): bump github.com/helmfile/chartify from 0.20.3 to 0.20.4 by @dependabot in #1815 * build(deps): bump golang.org/x/sync from 0.9.0 to 0.10.0 by @dependabot in #1816 - Update to version 0.169.1: * feat: update sops version to 3.9.1 by @zhaque44 in #1742 * chore: improve test assertions and descriptions for file download test by @zhaque44 in #1745 * feat: add 'hide-notes' flag to helm in sync and apply commands by @yxxhero in #1746 helmfile-1.1.9-bp160.1.1.src.rpm helmfile-1.1.9-bp160.1.1.x86_64.rpm helmfile-bash-completion-1.1.9-bp160.1.1.noarch.rpm helmfile-debuginfo-1.1.9-bp160.1.1.x86_64.rpm helmfile-fish-completion-1.1.9-bp160.1.1.noarch.rpm helmfile-zsh-completion-1.1.9-bp160.1.1.noarch.rpm helmfile-1.1.9-bp160.1.1.s390x.rpm helmfile-debuginfo-1.1.9-bp160.1.1.s390x.rpm helmfile-1.1.9-bp160.1.1.ppc64le.rpm helmfile-debuginfo-1.1.9-bp160.1.1.ppc64le.rpm helmfile-1.1.9-bp160.1.1.aarch64.rpm helmfile-debuginfo-1.1.9-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-31 Security update for pnpm moderate openSUSE Backports SLE-16.0 This update for pnpm fixes the following issues: Changes in pnpm: - update to 10.22.0: * Minor Changes - Added support for trustPolicyExclude #10164. You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example: trustPolicy: no-downgrade trustPolicyExclude: - chokidar@4.0.3 - webpack@4.47.0 || 5.102.1 - Allow to override the engines field on publish by the publishConfig.engines field. * Patch Changes - Don't crash when two processes of pnpm are hardlinking the contents of a directory to the same destination simultaneously #10179. - update to 10.21.0: * Minor Changes - Node.js Runtime Installation for Dependencies. Added support for automatic Node.js runtime installation for dependencies. pnpm will now install the Node.js version required by a dependency if that dependency declares a Node.js runtime in the "engines" field. For example: { "engines": { "runtime": { "name": "node", "version": "^24.11.0", "onFail": "download" } } } If the package with the Node.js runtime dependency is a CLI app, pnpm will bind the CLI app to the required Node.js version. This ensures that, regardless of the globally installed Node.js instance, the CLI will use the compatible version of Node.js. If the package has a postinstall script, that script will be executed using the specified Node.js version. Related PR: #10141 - Added a new setting: trustPolicy. When set to no-downgrade, pnpm will fail installation if a package’s trust level has decreased compared to previous releases — for example, if it was previously published by a trusted publisher but now only has provenance or no trust evidence. This helps prevent installing potentially compromised versions of a package. Related issue: #8889. - Added support for pnpm config get globalconfig to retrieve the global config file path #9977. * Patch Changes - When a user runs pnpm update on a dependency that is not directly listed in package.json, none of the direct dependencies should be updated #10155. - Don't crash when two processes of pnpm are hardlinking the contents of a directory to the same destination simultaneously #10160. - Setting gitBranchLockfile and related settings via pnpm-workspace.yaml should work #9651. - update to 10.20.0: * Minor Changes - Support --all option in pnpm --help to list all commands #8628. * Patch Changes - When the latest version doesn't satisfy the maturity requirement configured by minimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #10100. - create command should not verify patch info. - Set managePackageManagerVersions to false, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #10063. - update to 10.19.0: * Minor Changes - You can now allow specific versions of dependencies to run postinstall scripts. onlyBuiltDependencies now accepts package names with lists of trusted versions. For example: Related PR: #10104. onlyBuiltDependencies: - nx@21.6.4 || 21.6.5 - esbuild@0.25.1 - Added support for exact versions in minimumReleaseAgeExclude #9985. You can now list one or more specific versions that pnpm should allow to install, even if those versions don’t satisfy the maturity requirement set by minimumReleaseAge. For example: minimumReleaseAge: 1440 minimumReleaseAgeExclude: - nx@21.6.5 - webpack@4.47.0 || 5.102.1 - update to 10.18.3: * Patch Changes - Fix a bug where pnpm would infinitely recurse when using verifyDepsBeforeInstall: install and pre/post install scripts that called other pnpm scripts #10060. - Fixed scoped registry keys (e.g., @scope:registry) being parsed as property paths in pnpm config get when --location=project is used #9362. - Remove pnpm-specific CLI options before passing to npm publish to prevent "Unknown cli config" warnings #9646. - Fixed EISDIR error when bin field points to a directory #9441. - Preserve version and hasBin for variations packages #10022. - Fixed pnpm config set --location=project incorrectly handling keys with slashes (auth tokens, registry settings) #9884. - When both pnpm-workspace.yaml and .npmrc exist, pnpm config set --location=project now writes to pnpm-workspace.yaml (matching read priority) #10072. - Prevent a table width error in pnpm outdated --long #10040. - Sync bin links after injected dependencies are updated by build scripts. This ensures that binaries created during build processes are properly linked and accessible to consuming projects #10057. - update to 10.18.2: * Patch Changes - pnpm outdated --long should work #10040. - Replace ndjson with split2. Reduce the bundle size of pnpm CLI #10054. - pnpm dlx should request the full metadata of packages, when minimumReleaseAge is set #9963. - pnpm version switching should work when the pnpm home directory is in a symlinked directory #9715. - Fix EPIPE errors when piping output to other commands #10027. - update to 10.18.1: * Patch Changes - Don't print a warning, when --lockfile-only is used #8320. - pnpm setup creates a command shim to the pnpm executable. This is needed to be able to run pnpm self-update on Windows #5700. - When using pnpm catalogs and running a normal pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when using pnpm add --save-catalog as originally intended. - update to 10.18.0: * Minor Changes - Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads. Added configuration options for warning thresholds: fetchWarnTimeoutMs and fetchMinSpeedKiBps. Warning messages are displayed when requests exceed time thresholds or fall below speed minimums Related PR: #10025. * Patch Changes - Retry filesystem operations on EAGAIN errors #9959. - Outdated command respects minimumReleaseAge configuration #10030. - Correctly apply the cleanupUnusedCatalogs configuration when removing dependent packages. - Don't fail with a meaningless error when scriptShell is set to false #8748. - pnpm dlx should not fail when minimumReleaseAge is set #10037. - update to 10.17.1: * Patch Changes - When a version specifier cannot be resolved because the versions don't satisfy the minimumReleaseAge setting, print this information out in the error message #9974. - Fix state.json creation path when executing pnpm patch in a workspace project #9733. - When minimumReleaseAge is set and the latest tag is not mature enough, prefer a non-deprecated version as the new latest #9987. - update to 10.17: * Minor Changes - The minimumReleaseAgeExclude setting now supports patterns. For instance: minimumReleaseAge: 1440 minimumReleaseAgeExclude: - "@eslint/*" * Patch Changes - Don't ignore the minimumReleaseAge check, when the package is requested by exact version and the packument is loaded from cache #9978. - When minimumReleaseAge is set and the active version under a dist-tag is not mature enough, do not downgrade to a prerelease version in case the original version wasn't a prerelease one #9979. - update to 10.16.1: * Patch Changes - The full metadata cache should be stored not at the same location as the abbreviated metadata. This fixes a bug where pnpm was loading the abbreviated metadata from cache and couldn't find the "time" field as a result #9963. - Forcibly disable ANSI color codes when generating patch diff #9914. - update to 10.16: * Minor Changes - There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour. - The new setting is called minimumReleaseAge. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting minimumReleaseAge: 1440 ensures that only packages released at least one day ago can be installed. - If you set minimumReleaseAge but need to disable this restriction for certain dependencies, you can list them under the minimumReleaseAgeExclude setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time: minimumReleaseAgeExclude: - webpack - Added support for finders #9946. In the past, pnpm list and pnpm why could only search for dependencies by name (and optionally version). For example: pnpm why minimist prints the chain of dependencies to any installed instance of minimist: verdaccio 5.20.1 ├─┬ handlebars 4.7.7 │ └── minimist 1.2.8 └─┬ mv 2.1.1 └─┬ mkdirp 0.5.6 └── minimist 1.2.8 What if we want to search by other properties of a dependency, not just its name? For instance, find all packages that have react@17 in their peer dependencies? This is now possible with "finder functions". Finder functions can be declared in .pnpmfile.cjs and invoked with the --find-by=<function name> flag when running pnpm list or pnpm why. Let's say we want to find any dependencies that have React 17 in peer dependencies. We can add this finder to our .pnpmfile.cjs: module.exports = { finders: { react17: (ctx) => { return ctx.readManifest().peerDependencies?.react === "^17.0.0"; }, }, }; Now we can use this finder function by running: pnpm why --find-by=react17 pnpm will find all dependencies that have this React in peer dependencies and print their exact locations in the dependency graph. @apollo/client 4.0.4 ├── @graphql-typed-document-node/core 3.2.0 └── graphql-tag 2.12.6 It is also possible to print out some additional information in the output by returning a string from the finder. For example, with the following finder: module.exports = { finders: { react17: (ctx) => { const manifest = ctx.readManifest(); if (manifest.peerDependencies?.react === "^17.0.0") { return `license: ${manifest.license}`; } return false; }, }, }; Every matched package will also print out the license from its package.json: @apollo/client 4.0.4 ├── @graphql-typed-document-node/core 3.2.0 │ license: MIT └── graphql-tag 2.12.6 license: MIT * Patch Changes - Fix deprecation warning printed when executing pnpm with Node.js 24 #9529. - Throw an error if nodeVersion is not set to an exact semver version #9934. - pnpm publish should be able to publish a .tar.gz file #9927. - Canceling a running process with Ctrl-C should make pnpm run return a non-zero exit code #9626. - update to 10.15.1: * Patch Changes - Fix .pnp.cjs crash when importing subpath #9904. - When resolving peer dependencies, pnpm looks whether the peer dependency is present in the root workspace project's dependencies. This change makes it so that the peer dependency is correctly resolved even from aliased npm-hosted dependencies or other types of dependencies #9913. - update to 10.15.0: * Minor Changes - Added the cleanupUnusedCatalogs configuration. When set to true, pnpm will remove unused catalog entries during installation #9793. - Automatically load pnpmfiles from config dependencies that are named @*/pnpm-plugin-* #9780. - pnpm config get now prints an INI string for an object value #9797. - pnpm config get now accepts property paths (e.g. pnpm config get catalog.react, pnpm config get .catalog.react, pnpm config get 'packageExtensions["@babel/parser"].peerDependencies["@babel/types"]'), and pnpm config set now accepts dot-leading or subscripted keys (e.g. pnpm config set .ignoreScripts true). - pnpm config get --json now prints a JSON serialization of config value, and pnpm config set --json now parses the input value as JSON. * Patch Changes - Semi-breaking. When automatically installing missing peer dependencies, prefer versions that are already present in the direct dependencies of the root workspace package #9835. - When executing the pnpm create command, must verify whether the node version is supported even if a cache already exists #9775. - When making requests for the non-abbreviated packument, add */* to the Accept header to avoid getting a 406 error on AWS CodeArtifact #9862. - The standalone exe version of pnpm works with glibc 2.26 again #9734. - Fix a regression in which pnpm dlx pkg --help doesn't pass --help to pkg #9823. - update to 10.14.0: * Minor Changes - Added support for JavaScript runtime installation (Related PR: #9755.) Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically. Usage example: { "devEngines": { "runtime": { "name": "node", "version": "^24.4.0", "onFail": "download" // we only support the "download" value for now } } } How it works: - pnpm install resolves your specified range to the latest matching runtime version. - The exact version (and checksum) is saved in the lockfile. - Scripts use the local runtime, ensuring consistency across environments. Why this is better: - This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion) - Supports version ranges (not just a fixed version). - The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity. - It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes. - For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer. - Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #7510. * Patch Changes - Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc. - The integrities of the downloaded Node.js artifacts are verified #9750. - Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #9719. - pnpm install --prod should removing hoisted dev dependencies #9782. - Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install. - Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies. - update to 10.13.1: * Patch Changes - Run user defined pnpmfiles after pnpmfiles of plugins. - update to 10.13.0: * Minor Changes - Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #9702. - pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #9729. - The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml. * Patch Changes - When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #9694. - Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #9628. - Sort keys in pnpm-workspace.yaml with deep #9701. - The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #9338. - Replaced shell-quote with shlex for quoting command arguments #9381. - update to 10.12.4: * Patch Changes - Fix pnpm licenses command for local dependencies #9583. - Fix a bug in which pnpm ls --filter=not-exist --json prints nothing instead of an empty array #9672. - Fix a deadlock that sometimes happens during peer dependency resolution #9673. - Running pnpm install after pnpm fetch should hoist all dependencies that need to be hoisted. - Fixes a regression introduced in v10.12.2 by #9648; resolves #9689. - update to 10.12.3: * Patch Changes - Restore hoisting of optional peer dependencies when installing with an outdated lockfile. Regression introduced in v10.12.2 by #9648; resolves #9685. - update to 10.12.2: * Patch Changes - Fixed hoisting with enableGlobalVirtualStore set to true #9648. - Fix the --help and -h flags not working as expected for the pnpm create command. - The dependency package path output by the pnpm licenses list --json command is incorrect. - Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #9595. - update to 10.12.1 (10.2.0 was yanked): * Minor Changes - Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path). In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available. This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories. To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via: pnpm config -g set enable-global-virtual-store true NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI. Related PR: #8190 - The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml. - A new catalogMode setting is available for controlling if and how dependencies are added to the default catalog. It can be configured to several modes: - strict: Only allows dependency versions from the catalog. Adding a dependency outside the catalog's version range will cause an error. - prefer: Prefers catalog versions, but will fall back to direct dependencies if no compatible version is found. - manual (default): Does not automatically add dependencies to the catalog. - Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #9425. - Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #9605. - Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not. * Patch Changes - Sort versions printed by pnpm patch using semantic versioning rules. - Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #9598. - Revert #9574 to fix a regression #9596. - update to 10.11.1: * Patch Changes - Fix an issue in which pnpm deploy --legacy creates unexpected directories when the root package.json has a workspace package as a peer dependency #9550. - Dependencies specified via a URL that redirects will only be locked to the target if it is immutable, fixing a regression when installing from GitHub releases. (#9531) - Installation should not exit with an error if strictPeerDependencies is true but all issues are ignored by peerDependencyRules #9505. - Use pnpm_config_ env variables instead of npm_config_ #9571. - Fix a regression (in v10.9.0) causing the --lockfile-only flag on pnpm update to produce a different pnpm-lock.yaml than an update without the flag. - Let pnpm deploy work in repos with overrides when inject-workspace-packages=true #9283. - Fixed the problem of path loss caused by parsing URL address. Fixes a regression shipped in pnpm v10.11 via #9502. - pnpm -r --silent run should not print out section #9563. - update to 10.11.0: * Minor Changes - A new setting added for pnpm init to create a package.json with type=module, when init-type is module. Works as a flag for the init command too #9463. - Added support for Nushell to pnpm setup #6476. - Added two new flags to the pnpm audit command, --ignore and --ignore-unfixable #8474. Ignore all vulnerabilities that have no solution: > pnpm audit --ignore-unfixable Provide a list of CVE's to ignore those specifically, even if they have a resolution. > pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678 - Added support for recursively running pack in every project of a workspace #4351. Now you can run pnpm -r pack to pack all packages in the workspace. * Patch Changes - pnpm version management should work, when dangerouslyAllowAllBuilds is set to true #9472. - pnpm link should work from inside a workspace #9506. - Set the default workspaceConcurrency to Math.min(os.availableParallelism(), 4) #9493. - Installation should not exit with an error if strictPeerDependencies is true but all issues are ignored by peerDependencyRules #9505. - Read updateConfig from pnpm-workspace.yaml #9500. - Add support for recursive pack - Remove url.parse usage to fix warning on Node.js 24 #9492. - pnpm run should be able to run commands from the workspace root, if ignoreScripts is set tot true #4858. - update to 10.10.0: * Allow loading the preResolution, importPackage, and fetchers hooks from local pnpmfile. * Fix cd command, when shellEmulator is true #7838. * Sort keys in pnpm-workspace.yaml #9453. * Pass the npm_package_json environment variable to the executed scripts #9452. * Fixed a mistake in the description of the --reporter=silent option. - update to 10.9.0: * Minor Changes - Added support for installing JSR packages. You can now install JSR packages using the following syntax: add jsr:<pkg_name> or with a version range: pnpm add jsr:<pkg_name>@<range> For example, running: pnpm add jsr:@foo/bar will add the following entry to your package.json: { "dependencies": { "@foo/bar": "jsr:^0.1.2" } } When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions: { "dependencies": { "@foo/bar": "npm:@jsr/foo__bar@^0.1.2" } } Related issue: #8941. Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined. - Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml: neverBuiltDependencies: [] dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via: pnpm config set dangerouslyAllowAllBuilds true It can also be set when running a command: pnpm install --dangerously-allow-all-builds * Patch Changes - Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #9424. - Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning. - udate to 10.8.1: * Patch Changes - Removed bright white highlighting, which didn't look good on some light themes #9389. - If there is no pnpm related configuration in package.json, onlyBuiltDependencies will be written to pnpm-workspace.yaml file #9404. - The patch file path saved by the pnpm patch-commit and patch-remove commands should be a relative path #9403. - update to 10.8: * Minor Changes Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs. For example: module.exports = { hooks: { updateConfig: (config) => ({ ...config, nodeLinker: "hoisted", }), }, }; Now you can use the pnpm add command with the --config flag to install new configurational dependencies #9377. * Patch Changes - Do not hang indefinitely, when there is a glob that starts with !/ in pnpm-workspace.yaml. This fixes a regression introduced by #9169. - pnpm audit --fix should update the overrides in pnpm-workspace.yaml. - pnpm link should update overrides in pnpm-workspace.yaml, not in package.json #9365. - update to 10.7.1: * Patch Changes - pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #9355. - pnpm config get should read auth related settings via npm CLI #9345. - Replace leading ~/ in a path in .npmrc with the home directory #9217. - update to 10.7: * Minor Changes - pnpm config get and list also show settings set in pnpm-workspace.yaml files #9316. - It should be possible to use env variables in pnpm-workspace.yaml setting names and value. - Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored. For example: patchedDependencies: foo: patches/foo-1.patch foo@^2.0.0: patches/foo-2.patch foo@2.1.0: patches/foo-3.patch The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions. [!WARNING] The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example: # pnpm-workspace.yaml patchedDependencies: # the specialized sub range 'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch # the more general patch, excluding the sub range above 'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch In most cases, however, it's sufficient to just define an exact version to override the range. - pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #9316. - Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message. - Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures. - If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches. - If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply. - If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply. * Patch Changes - Remove dependency paths from audit output to prevent out-of-memory errors #9280. - update to 10.6.5: * Patch Changes - Remove warnings after having explicitly approved no builds #9296. - When installing different dependency packages, should retain the ignoredBuilds field in the .modules.yaml file #9240. - Fix usages of the catalog: protocol in injected local workspace packages. This previously errored with ERR_PNPM_SPEC_NOT_SUPPORTED_BY_ANY_RESOLVER. #8715 - Setting workspace-concurrency to less than or equal to 0 should work #9297. - update to 10.6.4: * Patch Changes - Fix pnpm dlx with --allow-build flag #9263. - Invalid Node.js version in use-node-version should not cause pnpm itself to break #9276. - The max amount of workers running for linking packages from the store has been reduced to 4 to achieve optimal results #9286. The workers are performing many file system operations, so increasing the number of CPUs doesn't help performance after some point. - update to 10.6.3: * Patch Changes - pnpm install --prod=false should not crash, when executed in a project with a pnpm-workspace.yaml file #9233. This fixes regression introduced via #9211. - Add the missing node-options config to recursive run #9180. - Removed a branching code path that only executed when dedupe-peer-dependents=false. We believe this internal refactor will not result in behavior changes, but we expect it to make future pnpm versions behave more consistently for projects that override dedupe-peer-dependents to false. There should be less unique bugs from turning off dedupe-peer-dependents. See details in #9259. - update to 10.6.2: * Patch Changes - pnpm self-update should always update the version in the packageManager field of package.json. - Fix running pnpm CLI from pnpm CLI on Windows when the CLI is bundled to an executable #8971. - pnpm patch-commit will now use the same filesystem as the store directory to compare and create patch files. - Don't show info output when --loglevel=error is used. - peerDependencyRules should be set in pnpm-workspace.yaml to take effect. - update to 10.6.1: * Patch Changes - The pnpm CLI process should not stay hanging, when --silent reporting is used. - When --loglevel is set to error, don't show installation summary, execution time, and big tarball download progress. - Don't ignore pnpm.patchedDependencies from package.json #9226. - When executing the approve-builds command, if package.json contains onlyBuiltDependencies or ignoredBuiltDependencies, the selected dependency package will continue to be written into package.json. - When a package version cannot be found in the package metadata, print the registry from which the package was fetched. - update to 10.6.0: * Minor Changes - pnpm-workspace.yaml can now hold all the settings that .npmrc accepts. The settings should use camelCase #9211. pnpm-workspace.yaml example: verifyDepsBeforeRun: install optimisticRepeatInstall: true publicHoistPattern: - "*types*" - "!@types/react" - Projects using a file: dependency on a local tarball file (i.e. .tgz, .tar.gz, .tar) will see a performance improvement during installation. Previously, using a file: dependency on a tarball caused the lockfile resolution step to always run. The lockfile will now be considered up-to-date if the tarball is unchanged. * Patch Changes - pnpm self-update should not leave a directory with a broken pnpm installation if the installation fails. - fast-glob replace with tinyglobby to reduce the size of the pnpm CLI dependencies #9169. - pnpm deploy should not remove fields from the deployed package's package.json file #9215. - pnpm self-update should not read the pnpm settings from the package.json file in the current working directory. - Fix pnpm deploy creating a package.json without the imports and license field #9193. - pnpm update -i should list only packages that have newer versions #9206. - Fix a bug causing entries in the catalogs section of the pnpm-lock.yaml file to be removed when dedupe-peer-dependents=false on a filtered install. #9112 - update to 10.5.2: * The pnpm config set command should change the global .npmrc file by default. This was a regression introduced by #9151 and shipped in pnpm v10.5.0. - update to 10.5.1: * Throw an error message if a pnpm-workspaces.yaml or pnpm-workspaces.yml file is found instead of a pnpm-workspace.yaml #9170. * Fix the update of pnpm-workspace.yaml by the pnpm approve-builds command #9168. * Normalize generated link paths in package.json #9163 * Specifying overrides in pnpm-workspace.yaml should work. * pnpm dlx should ignore settings from the package.json file in the current working directory #9178. - update to 10.5.0: * The pnpm.* settings from package.json can now be specified in the pnpm-workspace.yaml file instead #9121. * Added support for automatically syncing files of injected workspace packages after pnpm run #9081. Use the sync-injected -deps-after-scripts setting to specify which scripts build the workspace package. This tells pnpm when syncing is needed. The setting should be defined in a .npmrc file at the root of the workspace. * The packages field in pnpm-workspace.yaml became optional. * pnpm link with no parameters should work as if --global is specified #9151 * Allow scope registry CLI option without --config. prefix such as --@scope:registry=https://scope.example.com/npm #9089 * pnpm link <path> should calculate relative path from the root of the workspace directory #9132 * Fix a bug causing catalog snapshots to be removed from the pnpm-lock.yaml file when using --fix-lockfile and --filter. #8639 * Fix a bug causing catalog protocol dependencies to not re- resolve on a filtered install #8638 - update to 10.4.1: * Throws an error when the value provided by the --allow-build option overlaps with the pnpm.ignoredBuildDependencies list #9105. * Print pnpm's version after the execution time at the end of the console output. * Print warning about ignored builds of dependencies on repeat install #9106. * Setting init-package-manager should work. - includes 10.4.0: * pnpm approve-builds --global works now for allowing dependencies of globally installed packages to run postinstall scripts. * The pnpm add command now supports a new flag, --allow-build, which allows building the specified dependencies. * pnpm approve-builds should work after two consecutive pnpm install runs #9083. * Fix instruction for updating pnpm with corepack #9101. * The pnpm version specified by packageManager cannot start with v. - update to 10.3.0: * Added a new setting called strict-dep-builds. When enabled, the installation will exit with a non-zero exit code if any dependencies have unreviewed build scripts (aka postinstall scripts) #9071. * Fix a false negative of verify-deps-before-run after pnpm install --production|--no-optional #9019. * Print the warning about blocked installation scripts at the end of the installation output and make it more prominent. - update to 10.2.1: * Don't read a package from side-effects cache if it isn't allowed to be built #9042. * pnpm approve-builds should work, when executed from a subdirectory of a workspace #9042. * pnpm deploy --legacy should work without injected dependencies * Add information about how to deploy without "injected dependencies" to the "pnpm deploy" error message. - includes 10.2.0: * Packages executed via pnpm dlx and pnpm create are allowed to be built (run postinstall scripts) by default. * Quote args for scripts with shell-quote to support new lines (on POSIX only) #8980. * Fix a bug in which pnpm deploy fails to read the correct projectId when the deploy source is the same as the workspace directory #9001. * Proxy settings should be respected, when resolving Git-hosted dependencies #6530. * Prevent overrides from adding invalid version ranges to peerDependencies by keeping the peerDependencies and overriding them with prod dependencies #8978. * Sort the package names in the "pnpm.onlyBuiltDependencies" list saved by pnpm approve-builds. - update to 10.1.0: * Added a new command for printing the list of dependencies with ignored build scripts: pnpm ignored-builds #8963. * Added a new command for approving dependencies for running scripts during installation: pnpm approve-builds #8963. * Added a new setting called optimistic-repeat-install. When enabled, a fast check will be performed before proceeding to installation. This way a repeat install or an install on a project with everything up-to-date becomes a lot faster. But some edge cases might arise, so we keep it disabled by default for now #8977. * Added a new field "pnpm.ignoredBuiltDependencies" for explicitly listing packages that should not be built. When a package is in the list, pnpm will not print an info message about that package not being built #8935. * Verify that the package name is valid when executing the publish command. * When running pnpm install, the preprepare and postprepare scripts of the project should be executed #8989. * Allow workspace: and catalog: to be part of wider version range in peerDependencies. * pnpm deploy should inherit the pnpm object from the root package.json #8991. * Make sure that the deletion of a node_modules in a sub- project of a monorepo is detected as out-of-date #8959. * Fix infinite loop caused by lifecycle scripts using pnpm to execute other scripts during pnpm install with verify-deps-before-run=install #8954. * Replace strip-ansi with the built-in util. stripVTControlCharacters #9009. * Do not print patched dependencies as ignored dependencies that require a build #8952. - update to 10.0.0: * Lifecycle scripts of dependencies are not executed during installation by default! This is a breaking change aimed at increasing security. In order to allow lifecycle scripts of specific dependencies, they should be listed in the pnpm onlyBuiltDependencies field of package.json #8897 * The pnpm link command now adds overrides to the root package.json. #8653 * Secure hashing with SHA256 * Configuration updates * Changes to the global store * The # character is now escaped in directory names within node_modules/.pnpm. #8557 * Running pnpm add --global pnpm or pnpm add --global @pnpm/exe now fails with an error message, directing you to use pnpm self-update instead. #8728 * Dependencies added via a URL now record the final resolved URL in the lockfile, ensuring that any redirects are fully captured. #8833 * The pnpm deploy command now only works in workspaces that have inject-workspace-packages=true. This limitation is introduced to allow us to create a proper lockfile for the deployed project using the workspace lockfile. * Removed conversion from lockfile v6 to v9. If you need v6-to- v9 conversion, use pnpm CLI v9. * pnpm test now passes all parameters after the test keyword directly to the underlying script. This matches the behavior of pnpm run test. Previously you needed to use the -- prefix. #8619 * node-gyp updated to version 11. * pnpm deploy now tries creating a dedicated lockfile from a shared lockfile for deployment. It will fallback to deployment without a lockfile if there is no shared lockfile or force-legacy-deploy is set to true. * Added support for a new type of dependencies called "configurational dependencies". These dependencies are installed before all the other types of dependencies (befor "dependencies", "devDependencies", "optionalDependencies"). * New verify-deps-before-run setting. This setting controls how pnpm checks node_modules before running scripts #8836 * On repeated installs, pnpm performs a quick check to ensure node_modules is up to date. #8838 * pnpm add integrates with default workspace catalog: #8640 * pnpm dlx now resolves packages to their exact versions and uses these exact versions for cache keys. This ensures pnpm dlx always installs the latest requested packages #8811 * No node_modules validation on certain commands. Commands that should not modify node_modules (e.g., pnpm install --lockfile- only) no longer validate or purge node_modules. #8657 * for full changes, see https://github.com/pnpm/pnpm/releases/tag/v10.0.0 - update to 9.15.3: * Fixed the Regex used to find the package manifest during packing #8938. * pnpm update --filter <pattern> --latest <pkg> should only change the specified package for the specified workspace, when dedupe-peer-dependents is set to true #8877. * Exclude .DS_Store file at patch-commit #8922. * Fix a bug in which pnpm patch is unable to bring back old patch without specifying @version suffix #8919. - update to 9.15.2: * Fixed publish/pack error with workspace dependencies with relative paths #8904. It was broken in v9.4.0 (398472c). * Use double quotes in the command suggestion by pnpm patch on Windows #7546. * Do not fall back to SSH, when resolving a git-hosted package if git ls-remote works via HTTPS #8906. * Improve how packages with blocked lifecycle scripts are reported during installation. Always print the list of ignored scripts at the end of the output. Include a hint about how to allow the execution of those packages. - update to version 9.15.1: * pnpm remove should not link dependencies from the workspace, when link-workspace-packages is set to false #7674 * Installation with hoisted node_modules should not fail, when a dependency has itself in its own peer dependencies #8854 - update to version 9.15.0: * Metadata directory version bumped to force fresh cache after we shipped a fix to the metadata write function. This change is backward compatible as install doesn't require a metadata cache * pnpm update --global should not crash if there are no any global packages installed #7898 * Fix an exception when running pnpm update --interactive if catalogs are used. - update to version 9.14.4: * Don't ever save mutated metadata to the metadata cache - includes 9.14.3: * Some commands should ignore the packageManager field check of package.json #7959 - update to version 9.14.2: pnpm publish --json should work #8788 - includes 9.14.1: * Added support for pnpm pack --json to print packed tarball and contents in JSON format #8765 * pnpm exec should print a meaningful error message when no command is provided #8752 * pnpm setup should remove the CLI from the target location before moving the new binary #8173 * Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #7697 * Don't crash if the use-node-version setting is used and the system has no Node.js installed #8769 * Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #5075 * pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true * pnpm init should respect the --dir option #8768 - includes 9.14.0: * chore: use verify-deps-before-run * fix(init): --dir option should be respected (#8768) * feat: support json format output in pnpm pack (#8765) * fix: pnpm exec should specify command (#8774) * fix: proper types of settings in local .npmrc files (#8775) * fix: ERR_PNPM_TARBALL_EXTRACT when the URL's hash contains a slash * fix: the CLI should fail if a different package manager is required by the project * fix: ETXTBSY error on running setup (#8780) * feat: add linux-riscv64 build (#8779) * fix: remove link to X from update notifier (#8773) * docs: update sponsors * fix: upgrade cross-sapwn (#8782) * fix: don't crash when use-node-version is set and there is no node.js * docs: update changesets - update to version 9.13.2: * Detection of circular peer dependencies should not crash with aliased dependencies #8759. Fixes a regression introduced in the previous version. * Fix race condition of symlink creations caused by multiple parallel dlx processes. - update to version 9.13.1: * Fixed some edge cases where resolving circular peer dependencies caused a dead lock #8720 - update to version 9.13.0: * The self-update now accepts a version specifier to install a specific version of pnpm. * Fix Cannot read properties of undefined (reading 'name') that is printed while trying to render the missing peer dependencies warning message #8538 - update to version 9.12.3: * Don't purge node_modules, when typing "n" in the prompt that asks whether to remove node_modules before installation #8655 * Fix a bug causing pnpm to infinitely spawn itself when manage- package-manager-versions=true is set and the .tools directory is corrupt * Use crypto.hash, when available, for improved performance #8629 * Fixed a race condition in temporary file creation in the store by including worker thread ID in filename. Previously, multiple worker threads could attempt to use the same temporary file. Temporary files now include both process ID and thread ID for uniqueness #8703 * All commands should read settings from the package.json at the root of the workspace #8667 * When manage-package-manager-versions is set to true, errors spawning a self-managed version of pnpm will now be shown (instead of being silent) * Pass the find command to npm, it is an alias for npm search - includes 9.12.2: * When checking whether a file in the store has executable permissions, the new approach checks if at least one of the executable bits (owner, group, and others) is set to 1. Previously, a file was incorrectly considered executable only when all the executable bits were set to 1. This fix ensures that files with any executable permission, regardless of the user class, are now correctly identified as executable #8546 pnpm-10.22.0-bp160.1.1.noarch.rpm pnpm-10.22.0-bp160.1.1.src.rpm pnpm-bash-completion-10.22.0-bp160.1.1.noarch.rpm pnpm-fish-completion-10.22.0-bp160.1.1.noarch.rpm pnpm-zsh-completion-10.22.0-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-32 Security update for rnp moderate openSUSE Backports SLE-16.0 This update for rnp fixes the following issues: - update to 0.18.1: * CVE-2025-13470: PKESK (public-key encrypted) session keys were generated as all-zero, allowing trivial decryption of messages encrypted with public keys only (boo#1253957, CVE-2025-13402) librnp0-0.18.1-bp160.1.1.aarch64.rpm librnp0-debuginfo-0.18.1-bp160.1.1.aarch64.rpm rnp-0.18.1-bp160.1.1.aarch64.rpm rnp-0.18.1-bp160.1.1.src.rpm rnp-debuginfo-0.18.1-bp160.1.1.aarch64.rpm rnp-debugsource-0.18.1-bp160.1.1.aarch64.rpm rnp-devel-0.18.1-bp160.1.1.aarch64.rpm librnp0-0.18.1-bp160.1.1.ppc64le.rpm librnp0-debuginfo-0.18.1-bp160.1.1.ppc64le.rpm rnp-0.18.1-bp160.1.1.ppc64le.rpm rnp-debuginfo-0.18.1-bp160.1.1.ppc64le.rpm rnp-debugsource-0.18.1-bp160.1.1.ppc64le.rpm rnp-devel-0.18.1-bp160.1.1.ppc64le.rpm librnp0-0.18.1-bp160.1.1.s390x.rpm librnp0-debuginfo-0.18.1-bp160.1.1.s390x.rpm rnp-0.18.1-bp160.1.1.s390x.rpm rnp-debuginfo-0.18.1-bp160.1.1.s390x.rpm rnp-debugsource-0.18.1-bp160.1.1.s390x.rpm rnp-devel-0.18.1-bp160.1.1.s390x.rpm librnp0-0.18.1-bp160.1.1.x86_64.rpm librnp0-debuginfo-0.18.1-bp160.1.1.x86_64.rpm rnp-0.18.1-bp160.1.1.x86_64.rpm rnp-debuginfo-0.18.1-bp160.1.1.x86_64.rpm rnp-debugsource-0.18.1-bp160.1.1.x86_64.rpm rnp-devel-0.18.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-33 Security update for trivy important openSUSE Backports SLE-16.0 This update for trivy fixes the following issues: Changes in trivy: Update to version 0.67.2 (bsc#1250625, CVE-2025-11065, bsc#1248897, CVE-2025-58058): * fix: Use `fetch-level: 1` to check out trivy-repo in the release workflow [backport: release/v0.67] (#9638) * fix: restore compatibility for google.protobuf.Value [backport: release/v0.67] (#9631) * fix: using SrcVersion instead of Version for echo detector [backport: release/v0.67] (#9629) * fix: add `buildInfo` for `BlobInfo` in `rpc` package [backport: release/v0.67] (#9615) * fix(vex): don't use reused BOM [backport: release/v0.67] (#9612) * fix(vex): don't suppress vulns for packages with infinity loop (#9465) * fix(aws): use `BuildableClient` insead of `xhttp.Client` (#9436) * refactor(misconf): replace github.com/liamg/memoryfs with internal mapfs and testing/fstest (#9282) * docs: clarify inline ignore limitations for resource-less checks (#9537) * fix(k8s): disable parallel traversal with fs cache for k8s images (#9534) * fix(misconf): handle tofu files in module detection (#9486) * feat(seal): add seal support (#9370) * docs: fix modules path and update code example (#9539) * fix: close file descriptors and pipes on error paths (#9536) * feat: add documentation URL for database lock errors (#9531) * fix(db): Dowload database when missing but metadata still exists (#9393) * feat(cloudformation): support default values and list results in Fn::FindInMap (#9515) * fix(misconf): unmark cty values before access (#9495) * feat(cli): change --list-all-pkgs default to true (#9510) * fix(nodejs): parse workspaces as objects for package-lock.json files (#9518) * refactor(fs): use underlyingPath to determine virtual files more reliably (#9302) * refactor: remove google/wire dependency and implement manual DI (#9509) * chore(deps): bump the aws group with 6 updates (#9481) * chore(deps): bump the common group across 1 directory with 24 updates (#9507) * fix(misconf): wrap legacy ENV values in quotes to preserve spaces (#9497) * docs: move info about `detection priority` into coverage section (#9469) * feat(sbom): added support for CoreOS (#9448) * fix(misconf): strip build metadata suffixes from image history (#9498) * feat(cyclonedx): preserve SBOM structure when scanning SBOM files with vulnerability updates (#9439) * docs: Fix typo in terraform docs (#9492) * feat(redhat): add os-release detection for RHEL-based images (#9458) * ci(deps): add 3-day cooldown period for Dependabot updates (#9475) * refactor: migrate from go-json-experiment to encoding/json/v2 (#9422) * fix(vuln): compare `nuget` package names in lower case (#9456) * chore: Update release flow to include chocolatey (#9460) * docs: document eol supportability (#9434) * docs(report): add nuanses about secret/license scanner in summary table (#9442) * ci: use environment variables in GitHub Actions for improved security (#9433) * chore: bump Go to 1.24.7 (#9435) * fix(nodejs): use snapshot string as `Package.ID` for pnpm packages (#9330) * ci(helm): bump Trivy version to 0.66.0 for Trivy Helm Chart 0.18.0 (#9425) Update to version 0.66.0 (bsc#1248937, CVE-2025-58058): * chore(deps): bump the aws group with 7 updates (#9419) * refactor(secret): clarify secret scanner messages (#9409) * fix(cyclonedx): handle multiple license types (#9378) * fix(repo): sanitize git repo URL before inserting into report metadata (#9391) * test: add HTTP basic authentication to git test server (#9407) * fix(sbom): add support for `file` component type of `CycloneDX` (#9372) * fix(misconf): ensure module source is known (#9404) * ci: migrate GitHub Actions from version tags to SHA pinning (#9405) * fix: create temp file under composite fs dir (#9387) * chore(deps): bump github.com/ulikunitz/xz from 0.5.12 to 0.5.14 (#9403) * refactor: switch to stable azcontainerregistry SDK package (#9319) * chore(deps): bump the common group with 7 updates (#9382) * refactor(misconf): migrate from custom Azure JSON parser (#9222) * fix(repo): preserve RepoMetadata on FS cache hit (#9389) * refactor(misconf): use atomic.Int32 (#9385) * chore(deps): bump the aws group with 6 updates (#9383) * docs: Fix broken link to "Built-in Checks" (#9375) * fix(plugin): don't remove plugins when updating index.yaml file (#9358) * fix: persistent flag option typo (#9374) * chore(deps): bump the common group across 1 directory with 26 updates (#9347) * fix(image): use standardized HTTP client for ECR authentication (#9322) * refactor: export `systemFileFiltering` Post Handler (#9359) * docs: update links to Semaphore pages (#9352) * fix(conda): memory leak by adding closure method for `package.json` file (#9349) * feat: add timeout handling for cache database operations (#9307) * fix(misconf): use correct field log_bucket instead of target_bucket in gcp bucket (#9296) * fix(misconf): ensure ignore rules respect subdirectory chart paths (#9324) * chore(deps): bump alpine from 3.21.4 to 3.22.1 (#9301) * feat(terraform): use .terraform cache for remote modules in plan scanning (#9277) * chore: fix some function names in comment (#9314) * chore(deps): bump the aws group with 7 updates (#9311) * docs: add explanation for how to use non-system certificates (#9081) * chore(deps): bump the github-actions group across 1 directory with 2 updates (#8962) * fix(misconf): preserve original paths of remote submodules from .terraform (#9294) * refactor(terraform): make Scan method of Terraform plan scanner private (#9272) * fix: suppress debug log for context cancellation errors (#9298) * feat(secret): implement streaming secret scanner with byte offset tracking (#9264) * fix(python): impove package name normalization (#9290) * feat(misconf): added audit config attribute (#9249) * refactor(misconf): decouple input fs and track extracted files with fs references (#9281) * test(misconf): remove BenchmarkCalculate using outdated check metadata (#9291) * refactor: simplify Detect function signature (#9280) * ci(helm): bump Trivy version to 0.65.0 for Trivy Helm Chart 0.17.0 (#9288) * fix(fs): avoid shadowing errors in file.glob (#9286) * test(misconf): move terraform scan tests to integration tests (#9271) * test(misconf): drop gcp iam test covered by another case (#9285) * chore(deps): bump to alpine from `3.21.3` to `3.21.4` (#9283) Update to version 0.65.0: * fix(cli): ensure correct command is picked by telemetry (#9260) * feat(flag): add schema validation for `--server` flag (#9270) * chore(deps): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible (#9274) * ci: skip undefined labels in discussion triage action (#9175) * feat(repo): add git repository metadata to reports (#9252) * fix(license): handle WITH operator for `LaxSplitLicenses` (#9232) * chore: add modernize tool integration for code modernization (#9251) * fix(secret): add UTF-8 validation in secret scanner to prevent protobuf marshalling errors (#9253) * chore: implement process-safe temp file cleanup (#9241) * fix: prevent graceful shutdown message on normal exit (#9244) * fix(misconf): correctly parse empty port ranges in google_compute_firewall (#9237) * feat: add graceful shutdown with signal handling (#9242) * chore: update template URL for brew formula (#9221) * test: add end-to-end testing framework with image scan and proxy tests (#9231) * refactor(db): use `Getter` interface with `GetParams` for trivy-db sources (#9239) * ci: specify repository for `gh cache delete` in canary worklfow (#9240) * ci: remove invalid `--confirm` flag from `gh cache delete` command in canary builds (#9236) * fix(misconf): fix log bucket in schema (#9235) * chore(deps): bump the common group across 1 directory with 24 updates (#9228) * ci: move runner.os context from job-level env to step-level in canary workflow (#9233) * chore(deps): bump up Trivy-kubernetes to v0.9.1 (#9214) * feat(misconf): added logging and versioning to the gcp storage bucket (#9226) * fix(server): add HTTP transport setup to server mode (#9217) * chore: update the rpm download Update (#9202) * feat(alma): add AlmaLinux 10 support (#9207) * fix(nodejs): don't use prerelease logic for compare npm constraints (#9208) * fix(rootio): fix severity selection (#9181) * fix(sbom): merge in-graph and out-of-graph OS packages in scan results (#9194) * fix(cli): panic: attempt to get os.Args[1] when len(os.Args) < 2 (#9206) * fix(misconf): correctly adapt azure storage account (#9138) * feat(misconf): add private ip google access attribute to subnetwork (#9199) * feat(report): add CVSS vectors in sarif report (#9157) * fix(terraform): `for_each` on a map returns a resource for every key (#9156) * fix: supporting .egg-info/METADATA in python.Packaging analyzer (#9151) * chore: migrate protoc setup from Docker to buf CLI (#9184) * ci: delete cache after artifacts upload in canary workflow (#9177) * refactor: remove aws flag helper message (#9080) * ci: use gh pr view to get PR number for forked repositories in auto-ready workflow (#9183) * ci: add auto-ready-for-review workflow (#9179) * feat(image): add Docker context resolution (#9166) * ci: optimize golangci-lint performance with cache-based strategy (#9173) * feat: add HTTP request/response tracing support (#9125) * fix(aws): update amazon linux 2 EOL date (#9176) * chore: Update release workflow to trigger version updates (#9162) * chore(deps): bump helm.sh/helm/v3 from 3.18.3 to 3.18.4 (#9164) * fix: also check `filepath` when removing duplicate packages (#9142) * chore: add debug log to show image source location (#9163) * docs: add section on customizing default check data (#9114) * chore(deps): bump the common group across 1 directory with 9 updates (#9153) * docs: partners page content updates (#9149) * chore(license): add missed spdx exceptions: (#9147) * docs: trivy partners page updates (#9133) * fix: migrate from `*.list` to `*.md5sums` files for `dpkg` (#9131) * ci(helm): bump Trivy version to 0.64.1 for Trivy Helm Chart 0.16.1 (#9135) * feat(sbom): add SHA-512 hash support for CycloneDX SBOM (#9126) * fix(misconf): skip rewriting expr if attr is nil (#9113) * fix(license): add missed `GFDL-NIV-1.1` and `GFDL-NIV-1.2` into Trivy mapping (#9116) * fix(cli): Add more non-sensitive flags to telemetry (#9110) * fix(alma): parse epochs from rpmqa file (#9101) * fix(rootio): check full version to detect `root.io` packages (#9117) * chore: drop FreeBSD 32-bit support (#9102) * fix(sbom): use correct field for licenses in CycloneDX reports (#9057) * fix(secret): fix line numbers for multiple-line secrets (#9104) * feat(license): observe pkg types option in license scanner (#9091) * ci(helm): bump Trivy version to 0.64.0 for Trivy Helm Chart 0.16.0 (#9107) - (CVE-2025-53547, bsc#1246151) - Update to version 0.64.1 (bsc#1243633, CVE-2025-47291, (bsc#1246730, CVE-2025-46569): * fix(misconf): skip rewriting expr if attr is nil [backport: release/v0.64] (#9127) * fix(cli): Add more non-sensitive flags to telemetry [backport: release/v0.64] (#9124) * fix(rootio): check full version to detect `root.io` packages [backport: release/v0.64] (#9120) * fix(alma): parse epochs from rpmqa file [backport: release/v0.64] (#9119) * docs(python): fix type with METADATA file name (#9090) * feat: reject unsupported artifact types in remote image retrieval (#9052) * chore(deps): bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 (#9088) * refactor(misconf): rewrite Rego module filtering using functional filters (#9061) * feat(terraform): add partial evaluation for policy templates (#8967) * feat(vuln): add Root.io support for container image scanning (#9073) * feat(sbom): add manufacturer field to CycloneDX tools metadata (#9019) * fix(cli): add some values to the telemetry call (#9056) * feat(ubuntu): add end of life date for Ubuntu 25.04 (#9077) * refactor: centralize HTTP transport configuration (#9058) * test: include integration tests in linting and fix all issues (#9060) * chore(deps): bump the common group across 1 directory with 26 updates (#9063) * feat(java): dereference all maven settings.xml env placeholders (#9024) * fix(misconf): reduce log noise on incompatible check (#9029) * fix(misconf): .Config.User always takes precedence over USER in .History (#9050) * chore(deps): update Docker to v28.2.2 and fix compatibility issues (#9037) * docs(misconf): simplify misconfiguration docs (#9030) * fix(misconf): move disabled checks filtering after analyzer scan (#9002) * docs: add PR review policy for maintainers (#9032) * fix(sbom): remove unnecessary OS detection check in SBOM decoding (#9034) * test: improve and extend tests for iac/adapters/arm (#9028) * chore: bump up Go version to 1.24.4 (#9031) * feat(cli): add version constraints to annoucements (#9023) * fix(misconf): correct Azure value-to-time conversion in AsTimeValue (#9015) * feat(ubuntu): add eol date for 20.04-ESM (#8981) * fix(report): don't panic when report contains vulns, but doesn't contain packages for `table` format (#8549) * fix(nodejs): correctly parse `packages` array of `bun.lock` file (#8998) * refactor: use strings.SplitSeq instead of strings.Split in for-loop (#8983) * docs: change --disable-metrics to --disable-telemetry in example (#8999) (#9003) * feat(misconf): add OpenTofu file extension support (#8747) * refactor(misconf): set Trivy version by default in Rego scanner (#9001) * docs: fix assets with versioning (#8996) * docs: add partners page (#8988) * chore(alpine): add EOL date for Alpine 3.22 (#8992) * fix: don't show corrupted trivy-db warning for first run (#8991) * Update installation.md (#8979) * feat(misconf): normalize CreatedBy for buildah and legacy docker builder (#8953) * chore(k8s): update comments with deprecated command format (#8964) * chore: fix errors and typos in docs (#8963) * fix: Add missing version check flags (#8951) * feat(redhat): Add EOL date for RHEL 10. (#8910) * fix: Correctly check for semver versions for trivy version check (#8948) * refactor(server): change custom advisory and vulnerability data types fr… (#8923) * ci(helm): bump Trivy version to 0.63.0 for Trivy Helm Chart 0.15.0 (#8946) * fix(misconf): use argument value in WithIncludeDeprecatedChecks (#8942) * chore(deps): Bump trivy-checks (#8934) * fix(julia): add `Relationship` field support (#8939) * feat(minimos): Add support for MinimOS (#8792) * feat(alpine): add maintainer field extraction for APK packages (#8930) * feat(echo): Add Echo Support (#8833) * fix(redhat): Also try to find buildinfo in root layer (layer 0) (#8924) * fix(wolfi): support new APK database location (#8937) * feat(k8s): get components from namespaced resources (#8918) * refactor(cloudformation): remove unused ScanFile method from Scanner (#8927) * refactor(terraform): remove result sorting from scanner (#8928) * feat(misconf): Add support for `Minimum Trivy Version` (#8880) * docs: improve skipping files documentation (#8749) * feat(cli): Add available version checking (#8553) * feat(nodejs): add a bun.lock analyzer (#8897) * feat: terraform parser option to set current working directory (#8909) * perf(secret): only match secrets of meaningful length, allow example strings to not be matched (#8602) * feat(misconf): export raw Terraform data to Rego (#8741) * refactor(terraform): simplify AllReferences method signature in Attribute (#8906) * fix: check post-analyzers for StaticPaths (#8904) * feat: add Bottlerocket OS package analyzer (#8653) * feat(license): improve work text licenses with custom classification (#8888) * chore(deps): bump github.com/containerd/containerd/v2 from 2.1.0 to 2.1.1 (#8901) * chore(deps): bump the common group across 1 directory with 9 updates (#8887) * refactor(license): simplify compound license scanning (#8896) * feat(license): Support compound licenses (licenses using SPDX operators) (#8816) * fix(k8s): use in-memory cache backend during misconfig scanning (#8873) * feat(nodejs): add bun.lock parser (#8851) * feat(license): improve work with custom classification of licenses from config file (#8861) * fix(cli): disable `--skip-dir` and `--skip-files` flags for `sbom` command (#8886) * fix: julia parser panicing (#8883) * refactor(db): change logic to detect wrong DB (#8864) * fix(cli): don't use allow values for `--compliance` flag (#8881) * docs(misconf): Reorganize misconfiguration scan pages (#8206) * fix(server): add missed Relationship field for `rpc` (#8872) * feat: add JSONC support for comments and trailing commas (#8862) * fix(vex): use `lo.IsNil` to check `VEX` from OCI artifact (#8858) * feat(go): support license scanning in both GOPATH and vendor (#8843) * fix(redhat): save contentSets for OS packages in fs/vm modes (#8820) * fix: filter all files when processing files installed from package managers (#8842) * feat(misconf): add misconfiguration location to junit template (#8793) * docs(vuln): remove OSV for Python from data sources (#8841) * chore: add an issue template for maintainers (#8838) * chore: enable staticcheck (#8815) * ci(helm): bump Trivy version to 0.62.1 for Trivy Helm Chart 0.14.1 (#8836) * feat(license): scan vendor directory for license for go.mod files (#8689) * docs(java): Update info about dev deps in gradle lock (#8830) * chore(deps): bump golang.org/x/sync from 0.13.0 to 0.14.0 in the common group (#8822) * fix(java): exclude dev dependencies in gradle lockfile (#8803) * fix: octalLiteral from go-critic (#8811) * fix(redhat): trim invalid suffix from content_sets in manifest parsing (#8818) * chore(deps): bump the common group across 1 directory with 10 updates (#8817) * fix: use-any from revive (#8810) * fix: more revive rules (#8814) * docs: change in java.md: fix the Trity -to-> Trivy typo (#8813) * fix(misconf): check if for-each is known when expanding dyn block (#8808) * ci(helm): bump Trivy version to 0.62.0 for Trivy Helm Chart 0.14.0 (#8802) - Update to version 0.62.1 (bsc#1239225, CVE-2025-22868, bsc#1241724, CVE-2025-22872): * chore(deps): bump the common group across 1 directory with 10 updates [backport: release/v0.62] (#8831) * fix(misconf): check if for-each is known when expanding dyn block [backport: release/v0.62] (#8826) * fix(redhat): trim invalid suffix from content_sets in manifest parsing [backport: release/v0.62] (#8824) * feat(nodejs): add root and workspace for `yarn` packages (#8535) * fix: unused-parameter rule from revive (#8794) * chore(deps): Update trivy-checks (#8798) * fix: early-return, indent-error-flow and superfluous-else rules from revive (#8796) * fix(k8s): remove using `last-applied-configuration` (#8791) * refactor(misconf): remove unused methods from providers (#8781) * refactor(misconf): remove unused methods from iac types (#8782) * fix(misconf): filter null nodes when parsing json manifest (#8785) * fix: testifylint last issues (#8768) * fix(misconf): perform operations on attribute safely (#8774) * refactor(ubuntu): update time handling for fixing time (#8780) * chore(deps): bump golangci-lint to v2.1.2 (#8766) * feat(image): save layers metadata into report (#8394) * feat(misconf): convert AWS managed policy to document (#8757) * chore(deps): bump the docker group across 1 directory with 3 updates (#8762) * ci(helm): bump Trivy version to 0.61.1 for Trivy Helm Chart 0.13.1 (#8753) * ci(helm): create a helm branch for patches from main (#8673) * fix(terraform): hcl object expressions to return references (#8271) * chore(terraform): option to pass in instanced logger (#8738) * ci: use `Skitionek/notify-microsoft-teams` instead of `aquasecurity` fork (#8740) * chore(terraform): remove os.OpenPath call from terraform file functions (#8737) * chore(deps): bump the common group across 1 directory with 23 updates (#8733) * feat(rust): add root and workspace relationships/package for `cargo` lock files (#8676) * refactor(misconf): remove module outputs from parser.EvaluateAll (#8587) * fix(misconf): populate context correctly for module instances (#8656) * fix(misconf): check if metadata is not nil (#8647) * refactor(misconf): switch to x/json (#8719) * fix(report): clean buffer after flushing (#8725) * ci: improve PR title validation workflow (#8720) * refactor(flag): improve flag system architecture and extensibility (#8718) * fix(terraform): `evaluateStep` to correctly set `EvalContext` for multiple instances of blocks (#8555) * refactor: migrate from `github.com/aquasecurity/jfather` to `github.com/go-json-experiment/json` (#8591) * feat(misconf): support auto_provisioning_defaults in google_container_cluster (#8705) * ci: use `github.event.pull_request.user.login` for release PR check workflow (#8702) * refactor: add hook interface for extended functionality (#8585) * fix(misconf): add missing variable as unknown (#8683) * docs: Update maintainer docs (#8674) * ci(vuln): reduce github action script injection attack risk (#8610) * fix(secret): ignore .dist-info directories during secret scanning (#8646) * fix(server): fix redis key when trying to delete blob (#8649) * chore(deps): bump the testcontainers group with 2 updates (#8650) * test: use `aquasecurity` repository for test images (#8677) * chore(deps): bump the aws group across 1 directory with 5 updates (#8652) * fix(k8s): skip passed misconfigs for the summary report (#8684) * fix(k8s): correct compare artifact versions (#8682) * chore: update Docker lib (#8681) * refactor(misconf): remove unused terraform attribute methods (#8657) * feat(misconf): add option to pass Rego scanner to IaC scanner (#8369) * chore: typo fix to replace `rego` with `repo` on the RepoFlagGroup options error output (#8643) * docs: Add info about helm charts release (#8640) * ci(helm): bump Trivy version to 0.61.0 for Trivy Helm Chart 0.13.0 (#8638) Update to version 0.61.1 (bsc#1239385, CVE-2025-22869, bsc#1240466, CVE-2025-30204): * fix(k8s): skip passed misconfigs for the summary report [backport: release/v0.61] (#8748) * fix(k8s): correct compare artifact versions [backport: release/v0.61] (#8699) * test: use `aquasecurity` repository for test images [backport: release/v0.61] (#8698) * fix(misconf): Improve logging for unsupported checks (#8634) * feat(k8s): add support for controllers (#8614) * fix(debian): don't include empty licenses for `dpkgs` (#8623) * fix(misconf): Check values wholly prior to evalution (#8604) * chore(deps): Bump trivy-checks (#8619) * fix(k8s): show report for `--report all` (#8613) * chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.1 to 4.5.2 (#8597) * refactor: rename scanner to service (#8584) * fix(misconf): do not skip loading documents from subdirectories (#8526) * refactor(misconf): get a block or attribute without calling HasChild (#8586) * fix(misconf): identify the chart file exactly by name (#8590) * test: use table-driven tests in Helm scanner tests (#8592) * refactor(misconf): Simplify misconfig checks bundle parsing (#8533) * chore(deps): bump the common group across 1 directory with 10 updates (#8566) * fix(misconf): do not use cty.NilVal for non-nil values (#8567) * docs(cli): improve flag value display format (#8560) * fix(misconf): set default values for AWS::EKS::Cluster.ResourcesVpcConfig (#8548) * docs: remove slack (#8565) * fix: use `--file-patterns` flag for all post analyzers (#7365) * docs(python): Mention pip-compile (#8484) * feat(misconf): adapt aws_opensearch_domain (#8550) * feat(misconf): adapt AWS::EC2::VPC (#8534) * docs: fix a broken link (#8546) * fix(fs): check postAnalyzers for StaticPaths (#8543) * refactor(misconf): remove unused methods for ec2.Instance (#8536) * feat(misconf): adapt aws_default_security_group (#8538) * feat(fs): optimize scanning performance by direct file access for known paths (#8525) * feat(misconf): adapt AWS::DynamoDB::Table (#8529) * style: Fix MD syntax in self-hosting.md (#8523) * perf(misconf): retrieve check metadata from annotations once (#8478) * feat(misconf): Add support for aws_ami (#8499) * fix(misconf): skip Azure CreateUiDefinition (#8503) * refactor(misconf): use OPA v1 (#8518) * fix(misconf): add ephemeral block type to config schema (#8513) * perf(misconf): parse input for Rego once (#8483) * feat: replace TinyGo with standard Go for WebAssembly modules (#8496) * chore: replace deprecated tenv linter with usetesting (#8504) * fix(spdx): save text licenses into `otherLicenses` without normalize (#8502) * chore(deps): bump the common group across 1 directory with 13 updates (#8491) * chore: use go.mod for managing Go tools (#8493) * ci(helm): bump Trivy version to 0.60.0 for Trivy Helm Chart 0.12.0 (#8494) * fix(sbom): improve logic for binding direct dependency to parent component (#8489) * chore(deps): remove missed replace of `trivy-db` (#8492) * chore(deps): bump alpine from 3.21.0 to 3.21.3 in the docker group across 1 directory (#8490) * chore(deps): update Go to 1.24 and switch to go-version-file (#8388) * docs: add abbreviation list (#8453) * chore(terraform): assign *terraform.Module 'parent' field (#8444) * feat: add report summary table (#8177) * chore(deps): bump the github-actions group with 3 updates (#8473) * refactor(vex): improve SBOM reference handling with project standards (#8457) * ci: update GitHub Actions cache to v4 (#8475) * feat: add `--vuln-severity-source` flag (#8269) * fix(os): add mapping OS aliases (#8466) * chore(deps): bump the aws group across 1 directory with 7 updates (#8468) * chore(deps): Bump trivy-checks to v1.7.1 (#8467) * refactor(report): write tables after rendering all results (#8357) * docs: update VEX documentation index page (#8458) * fix(db): fix case when 2 trivy-db were copied at the same time (#8452) * feat(misconf): render causes for Terraform (#8360) * fix(misconf): fix incorrect k8s locations due to JSON to YAML conversion (#8073) * feat(cyclonedx): Add initial support for loading external VEX files from SBOM references (#8254) * chore(deps): update go-rustaudit location (#8450) * fix: update all documentation links (#8045) * chore(deps): bump github.com/go-jose/go-jose/v4 from 4.0.4 to 4.0.5 (#8443) * chore(deps): bump the common group with 6 updates (#8411) * fix(k8s): add missed option `PkgRelationships` (#8442) * fix(sbom): add SBOM file's filePath as Application FilePath if we can't detect its path (#8346) * feat(go): fix parsing main module version for go >= 1.24 (#8433) * refactor(misconf): make Rego scanner independent of config type (#7517) * fix(image): disable AVD-DS-0007 for history scanning (#8366) * fix(server): secrets inspectation for the config analyzer in client server mode (#8418) * chore: remove mockery (#8417) * test(server): replace mock driver with memory cache in server tests (#8416) * test: replace mock with memory cache and fix non-deterministic tests (#8410) * test: replace mock with memory cache in scanner tests (#8413) * test: use memory cache (#8403) * fix(spdx): init `pkgFilePaths` map for all formats (#8380) * chore(deps): bump the common group across 1 directory with 11 updates (#8381) * docs: correct Ruby documentation (#8402) * chore: bump `mockery` to update v2.52.2 version and rebuild mock files (#8390) * fix: don't use `scope` for `trivy registry login` command (#8393) * fix(go): merge nested flags into string for ldflags for Go binaries (#8368) * chore(terraform): export module path on terraform modules (#8374) * fix(terraform): apply parser options to submodule parsing (#8377) * docs: Fix typos in documentation (#8361) * docs: fix navigate links (#8336) * ci(helm): bump Trivy version to 0.59.1 for Trivy Helm Chart 0.11.1 (#8354) * ci(spdx): add `aqua-installer` step to fix `mage` error (#8353) * chore: remove debug prints (#8347) * fix(misconf): do not log scanners when misconfig scanning is disabled (#8345) * fix(report): remove html escaping for `shortDescription` and `fullDescription` fields for sarif reports (#8344) * chore(deps): bump Go to `v1.23.5` (#8341) * fix(python): add `poetry` v2 support (#8323) * chore(deps): bump the github-actions group across 1 directory with 4 updates (#8331) * fix(misconf): ecs include enhanced for container insights (#8326) * fix(sbom): preserve OS packages from multiple SBOMs (#8325) * ci(helm): bump Trivy version to 0.59.0 for Trivy Helm Chart 0.11.0 (#8311) * (bsc#1237618, CVE-2025-27144) Update to version 0.59.1: * fix(misconf): do not log scanners when misconfig scanning is disabled [backport: release/v0.59] (#8349) * chore(deps): bump Go to `v1.23.5` [backport: release/v0.59] (#8343) * fix(python): add `poetry` v2 support [backport: release/v0.59] (#8335) * fix(sbom): preserve OS packages from multiple SBOMs [backport: release/v0.59] (#8333) Update to version 0.59.0: * feat(image): return error early if total size of layers exceeds limit (#8294) * chore(deps): Bump trivy-checks (#8310) * chore(terraform): add accessors to underlying raw hcl values (#8306) * fix: improve conversion of image config to Dockerfile (#8308) * docs: replace short codes with Unicode emojis (#8296) * feat(k8s): improve artifact selections for specific namespaces (#8248) * chore: update code owners (#8303) * fix(misconf): handle heredocs in dockerfile instructions (#8284) * fix: de-duplicate same `dpkg` packages with different filePaths from different layers (#8298) * chore(deps): bump the aws group with 7 updates (#8299) * chore(deps): bump the common group with 12 updates (#8301) * chore: enable int-conversion from perfsprint (#8194) * feat(fs): use git commit hash as cache key for clean repositories (#8278) * fix(spdx): use the `hasExtractedLicensingInfos` field for licenses that are not listed in the SPDX (#8077) * chore: use require.ErrorContains when possible (#8291) * feat(image): prevent scanning oversized container images (#8178) * chore(deps): use aqua forks for `github.com/liamg/jfather` and `github.com/liamg/iamgo` (#8289) * fix(fs): fix cache key generation to use UUID (#8275) * fix(misconf): correctly handle all YAML tags in K8S templates (#8259) * feat: add support for registry mirrors (#8244) * chore(deps): bump the common group across 1 directory with 29 updates (#8261) * refactor(license): improve license expression normalization (#8257) * feat(misconf): support for ignoring by inline comments for Dockerfile (#8115) * feat: add a examples field to check metadata (#8068) * chore(deps): bump alpine from 3.20.0 to 3.21.0 in the docker group across 1 directory (#8196) * ci: add workflow to restrict direct PRs to release branches (#8240) * fix(suse): SUSE - update OSType constants and references for compatility (#8236) * ci: fix path to main dir for canary builds (#8231) * chore(secret): add reported issues related to secrets in junit template (#8193) * refactor: use trivy-checks/pkg/specs package (#8226) * ci(helm): bump Trivy version to 0.58.1 for Trivy Helm Chart 0.10.0 (#8170) * fix(misconf): allow null values only for tf variables (#8112) * feat(misconf): support for ignoring by inline comments for Helm (#8138) * fix(redhat): check `usr/share/buildinfo/` dir to detect content sets (#8222) * chore(alpine): add EOL date for Alpine 3.21 (#8221) * fix: CVE-2025-21613 and CVE-2025-21614 : go-git: argument injection via the URL field (#8207) * fix(misconf): disable git terminal prompt on tf module load (#8026) * chore: remove aws iam related scripts (#8179) * docs: Updated JSON schema version 2 in the trivy documentation (#8188) * refactor(python): use once + debug for `License acquired from METADATA...` logs (#8175) * refactor: use slices package instead of custom function (#8172) * chore(deps): bump the common group with 6 updates (#8162) * feat(python): add support for uv dev and optional dependencies (#8134) * feat(python): add support for poetry dev dependencies (#8152) * fix(sbom): attach nested packages to Application (#8144) * docs(vex): use debian minor version in examples (#8166) * refactor: add generic Set implementation (#8149) * chore(deps): bump the aws group across 1 directory with 6 updates (#8163) * fix(python): skip dev group's deps for poetry (#8106) * fix(sbom): use root package for `unknown` dependencies (if exists) (#8104) * chore(deps): bump `golang.org/x/net` from `v0.32.0` to `v0.33.0` (#8140) * chore(vex): suppress CVE-2024-45338 (#8137) * feat(python): add support for uv (#8080) * chore(deps): bump the docker group across 1 directory with 3 updates (#8127) * chore(deps): bump the common group across 1 directory with 14 updates (#8126) * chore: bump go to 1.23.4 (#8123) * test: set dummy value for NUGET_PACKAGES (#8107) * chore(deps): bump `github.com/CycloneDX/cyclonedx-go` from `v0.9.1` to `v0.9.2` (#8105) * chore(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 (#8103) * fix: wasm module test (#8099) * fix: CVE-2024-45337: Misuse of ServerConfig.PublicKeyCallback may cause authorization bypass (#8088) * chore(vex): suppress CVE-2024-45337 (#8101) * fix(license): always trim leading and trailing spaces for licenses (#8095) * fix(sbom): scan results of SBOMs generated from container images are missing layers (#7635) * fix(redhat): correct rewriting of recommendations for the same vulnerability (#8063) * fix: enable err-error and errorf rules from perfsprint linter (#7859) * chore(deps): bump the aws group across 1 directory with 6 updates (#8074) * perf: avoid heap allocation in applier findPackage (#7883) * fix: Updated twitter icon (#7772) * docs(k8s): add a note about multi-container pods (#7815) * feat: add `--distro` flag to manually specify OS distribution for vulnerability scanning (#8070) * fix(oracle): add architectures support for advisories (#4809) * fix: handle `BLOW_UNKNOWN` error to download DBs (#8060) * feat(misconf): generate placeholders for random provider resources (#8051) * fix(sbom): fix wrong overwriting of applications obtained from different sbom files but having same app type (#8052) * fix(flag): skip hidden flags for `--generate-default-config` command (#8046) * fix(java): correctly overwrite version from depManagement if dependency uses `project.*` props (#8050) * feat(nodejs): respect peer dependencies for dependency tree (#7989) * ci(helm): bump Trivy version to 0.58.0 for Trivy Helm Chart 0.10.0 (#8038) * fix: respect GITHUB_TOKEN to download artifacts from GHCR (#7580) * chore(deps): bump github.com/moby/buildkit from 0.17.2 to 0.18.0 in the docker group (#8029) * fix(misconf): use log instead of fmt for logging (#8033) * docs: add commercial content (#8030) - Update to version 0.58.2 ( bsc#1234512, CVE-2024-45337, bsc#1235265, CVE-2024-45338, bsc#1232948, CVE-2024-51744): * fix(misconf): allow null values only for tf variables [backport: release/v0.58] (#8238) * fix(suse): SUSE - update OSType constants and references for compatility [backport: release/v0.58] (#8237) * fix: CVE-2025-21613 and CVE-2025-21614 : go-git: argument injection via the URL field [backport: release/v0.58] (#8215) * fix(sbom): attach nested packages to Application [backport: release/v0.58] (#8168) * fix(python): skip dev group's deps for poetry [backport: release/v0.58] (#8158) * fix(sbom): use root package for `unknown` dependencies (if exists) [backport: release/v0.58] (#8156) * chore(deps): bump `golang.org/x/net` from `v0.32.0` to `v0.33.0` [backport: release/v0.58] (#8142) * chore(deps): bump `github.com/CycloneDX/cyclonedx-go` from `v0.9.1` to `v0.9.2` [backport: release/v0.58] (#8136) * fix(redhat): correct rewriting of recommendations for the same vulnerability [backport: release/v0.58] (#8135) * fix(oracle): add architectures support for advisories [backport: release/v0.58] (#8125) * fix(sbom): fix wrong overwriting of applications obtained from different sbom files but having same app type [backport: release/v0.58] (#8124) * chore(deps): bump golang.org/x/crypto from 0.30.0 to 0.31.0 [backport: release/v0.58] (#8122) * fix: handle `BLOW_UNKNOWN` error to download DBs [backport: release/v0.58] (#8121) * fix(java): correctly overwrite version from depManagement if dependency uses `project.*` props [backport: release/v0.58] (#8119) * fix(misconf): wrap AWS EnvVar to iac types (#7407) * chore(deps): Upgrade trivy-checks (#8018) * refactor(misconf): Remove unused options (#7896) * docs: add terminology page to explain Trivy concepts (#7996) * feat: add `workspaceRelationship` (#7889) * refactor(sbom): simplify relationship generation (#7985) * chore: remove Go checks (#7907) * docs: improve databases documentation (#7732) * refactor: remove support for custom Terraform checks (#7901) * docs: fix dead links (#7998) * docs: drop AWS account scanning (#7997) * fix(aws): change CPU and Memory type of ContainerDefinition to a string (#7995) * fix(cli): Handle empty ignore files more gracefully (#7962) * fix(misconf): load full Terraform module (#7925) * fix(misconf): properly resolve local Terraform cache (#7983) * refactor(k8s): add v prefix for Go packages (#7839) * test: replace Go checks with Rego (#7867) * feat(misconf): log causes of HCL file parsing errors (#7634) * chore(deps): bump the aws group across 1 directory with 7 updates (#7991) * chore(deps): bump github.com/moby/buildkit from 0.17.0 to 0.17.2 in the docker group across 1 directory (#7990) * chore(deps): update csaf module dependency from csaf-poc to gocsaf (#7992) * chore: downgrade the failed block expand message to debug (#7964) * fix(misconf): do not erase variable type for child modules (#7941) * feat(go): construct dependencies of `go.mod` main module in the parser (#7977) * feat(go): construct dependencies in the parser (#7973) * feat: add cvss v4 score and vector in scan response (#7968) * docs: add `overview` page for `others` (#7972) * fix(sbom): Fixes for Programming Language Vulnerabilities and SBOM Package Maintainer Details (#7871) * feat(suse): Align SUSE/OpenSUSE OS Identifiers (#7965) * chore(deps): bump the common group with 4 updates (#7949) * feat(oracle): add `flavors` support (#7858) * fix(misconf): Update trivy-checks default repo to `mirror.gcr.io` (#7953) * chore(deps): Bump up trivy-checks to v1.3.0 (#7959) * fix(k8s): check all results for vulnerabilities (#7946) * ci(helm): bump Trivy version to 0.57.1 for Trivy Helm Chart 0.9.0 (#7945) * feat(secret): Add built-in secrets rules for Private Packagist (#7826) * docs: Fix broken links (#7900) * docs: fix mistakes/typos (#7942) * feat: Update registry fallbacks (#7679) * fix(alpine): add `UID` for removed packages (#7887) * chore(deps): bump the aws group with 6 updates (#7902) * chore(deps): bump the common group with 6 updates (#7904) * fix(debian): infinite loop (#7928) * fix(redhat): don't return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files (#7912) * docs: add note about temporary podman socket (#7921) * docs: combine trivy.dev into trivy docs (#7884) * test: change branch in spdx schema link to check in integration tests (#7935) * docs: add Headlamp to the Trivy Ecosystem page (#7916) * fix(report): handle `git@github.com` schema for misconfigs in `sarif` report (#7898) * chore(k8s): enhance k8s scan log (#6997) * fix(terraform): set null value as fallback for missing variables (#7669) * fix(misconf): handle null properties in CloudFormation templates (#7813) * fix(fs): add missing defered Cleanup() call to post analyzer fs (#7882) * chore(deps): bump the common group across 1 directory with 20 updates (#7876) * chore: bump containerd to v2.0.0 (#7875) * fix: Improve version comparisons when build identifiers are present (#7873) * feat(k8s): add default commands for unknown platform (#7863) * chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#7868) * refactor(secret): optimize performance by moving ToLower operation outside loop (#7862) * test: save `containerd` image into archive and use in tests (#7816) * chore(deps): bump the github-actions group across 1 directory with 2 updates (#7854) * chore: bump golangci-lint to v1.61.0 (#7853) Update to version 0.57.1: * feat: Update registry fallbacks [backport: release/v0.57] (#7944) * fix(redhat): don't return error if `root/buildinfo/content_manifests/` contains files that are not `contentSets` files [backport: release/v0.57] (#7939) * test: change branch in spdx schema link to check in integration tests [backport: release/v0.57] (#7940) * release: v0.57.0 [main] (#7710) * chore: lint `errors.Join` (#7845) * feat(db): append errors (#7843) * docs(java): add info about supported scopes (#7842) * docs: add example of creating whitelist of checks (#7821) * chore(deps): Bump trivy-checks (#7819) * fix(go): Do not trim v prefix from versions in Go Mod Analyzer (#7733) * fix(k8s): skip resources without misconfigs (#7797) * fix(sbom): use `Annotation` instead of `AttributionTexts` for `SPDX` formats (#7811) * fix(cli): add config name to skip-policy-update alias (#7820) * fix(helm): properly handle multiple archived dependencies (#7782) * refactor(misconf): Deprecate `EXCEPTIONS` for misconfiguration scanning (#7776) * fix(k8s)!: support k8s multi container (#7444) * fix(k8s): support kubernetes v1.31 (#7810) * docs: add Windows install instructions (#7800) * ci(helm): auto public Helm chart after PR merged (#7526) * feat: add end of life date for Ubuntu 24.10 (#7787) * feat(report): update gitlab template to populate operating_system value (#7735) * feat(misconf): Show misconfig ID in output (#7762) * feat(misconf): export unresolvable field of IaC types to Rego (#7765) * refactor(k8s): scan config files as a folder (#7690) * fix(license): fix license normalization for Universal Permissive License (#7766) * fix: enable usestdlibvars linter (#7770) * fix(misconf): properly expand dynamic blocks (#7612) * feat(cyclonedx): add file checksums to `CycloneDX` reports (#7507) * fix(misconf): fix for Azure Storage Account network acls adaptation (#7602) * refactor(misconf): simplify k8s scanner (#7717) * feat(parser): ignore white space in pom.xml files (#7747) * test: use forked images (#7755) * fix(java): correctly inherit `version` and `scope` from upper/root `depManagement` and `dependencies` into parents (#7541) * fix(misconf): check if property is not nil before conversion (#7578) * fix(misconf): change default ACL of digitalocean_spaces_bucket to private (#7577) * feat(misconf): ssl_mode support for GCP SQL DB instance (#7564) * test: define constants for test images (#7739) * docs: add note about disabled DS016 check (#7724) * feat(misconf): public network support for Azure Storage Account (#7601) * feat(cli): rename `trivy auth` to `trivy registry` (#7727) * docs: apt-transport-https is a transitional package (#7678) * refactor(misconf): introduce generic scanner (#7515) * fix(cli): `clean --all` deletes only relevant dirs (#7704) * feat(cli): add `trivy auth` (#7664) * fix(sbom): add options for DBs in private registries (#7660) * docs(report): fix reporting doc format (#7671) * fix(repo): `git clone` output to Stderr (#7561) * fix(redhat): include arch in PURL qualifiers (#7654) * fix(report): Fix invalid URI in SARIF report (#7645) * docs(report): Improve SARIF reporting doc (#7655) * fix(db): fix javadb downloading error handling (#7642) * feat(cli): error out when ignore file cannot be found (#7624) Update to version 0.56.2: * fix(redhat): include arch in PURL qualifiers [backport: release/v0.56] (#7702) * fix(sbom): add options for DBs in private registries [backport: release/v0.56] (#7691) - Update to version 0.51.1 (bsc#1227010, CVE-2024-3817): trivy-0.66.0-bp160.1.1.src.rpm trivy-0.66.0-bp160.1.1.x86_64.rpm trivy-0.66.0-bp160.1.1.s390x.rpm trivy-0.66.0-bp160.1.1.ppc64le.rpm trivy-0.66.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-34 Security update for gitea-tea moderate openSUSE Backports SLE-16.0 This update for gitea-tea fixes the following issues: Changes in gitea-tea: - update to 0.11.1: * 61d4e57 Fix Pr Create crash (#823) * 4f33146 add test for matching logins (#820) * 08b8398 Update README.md (#819) - CVE-2025-58190: golang.org/x/net/html: excessive memory consumption by `html.ParseFragment` when processing specially crafted input (boo#1251663) - CVE-2025-47911: golang.org/x/net/html: various algorithms with quadratic complexity when parsing HTML documents (boo#1251471) - update to 0.11.0: * Fix yaml output single quote (#814) * generate man page (#811) * feat: add validation for object-format flag in repo create command (#741) * Fix release version (#815) * update gitea sdk to v0.22 (#813) * don't fallback login directly (#806) * Check duplicated login name in interact mode when creating new login (#803) * Fix bug when output json with special chars (#801) * add debug mode and update readme (#805) * update go.mod to retract the wrong tag v1.3.3 (#802) * revert completion scripts removal (#808) * Remove pagination from context (#807) * Continue auth when failed to open browser (#794) * Fix bug (#793) * Fix tea login add with ssh public key bug (#789) * Add temporary authentication via environment variables (#639) * Fix attachment size (#787) * deploy image when tagging (#792) * Add Zip URL for release list (#788) * Use bubbletea instead of survey for interacting with TUI (#786) * capitalize a few items * rm out of date comparison file * README: Document logging in to gitea (#790) * remove autocomplete command (#782) * chore(deps): update ghcr.io/devcontainers/features/git-lfs docker tag to v1.2.5 (#773) * replace arch package url (#783) * fix: Reenable -p and --limit switches (#778) - Update to 0.10.1+git.1757695903.cc20b52: - feat: add validation for object-format flag in repo create command (see gh#openSUSE/openSUSE-git#60) - Fix release version - update gitea sdk to v0.22 - don't fallback login directly - Check duplicated login name in interact mode when creating new login - Fix bug when output json with special chars - add debug mode and update readme - update go.mod to retract the wrong tag v1.3.3 - revert completion scripts removal - Remove pagination from context - Continue auth when failed to open browser - Fix bug - Fix tea login add with ssh public key bug - Add temporary authentication via environment variables - Fix attachment size - deploy image when tagging - Add Zip URL for release list - Use bubbletea instead of survey for interacting with TUI - capitalize a few items - rm out of date comparison file - README: Document logging in to gitea - remove autocomplete command - chore(deps): update ghcr.io/devcontainers/features/git-lfs docker tag to v1.2.5 - replace arch package url - fix: Reenable `-p` and `--limit` switches gitea-tea-0.11.1-bp160.1.1.aarch64.rpm gitea-tea-0.11.1-bp160.1.1.src.rpm gitea-tea-bash-completion-0.11.1-bp160.1.1.noarch.rpm gitea-tea-debuginfo-0.11.1-bp160.1.1.aarch64.rpm gitea-tea-zsh-completion-0.11.1-bp160.1.1.noarch.rpm gitea-tea-0.11.1-bp160.1.1.ppc64le.rpm gitea-tea-debuginfo-0.11.1-bp160.1.1.ppc64le.rpm gitea-tea-0.11.1-bp160.1.1.s390x.rpm gitea-tea-debuginfo-0.11.1-bp160.1.1.s390x.rpm gitea-tea-0.11.1-bp160.1.1.x86_64.rpm gitea-tea-debuginfo-0.11.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-35 Security update for tcpreplay important openSUSE Backports SLE-16.0 This update for tcpreplay fixes the following issues: - update to 4.5.2: * features added since 4.4.4 - fix/recalculate header checksum for ipv6-frag - IPv6 frag checksum support - AF_XDP socket support - tcpreplay -w (write into a pcap file) - tcpreplay --fixhdrlen - --include and --exclude options - SLL2 support - Haiku support * security fixes reported for 4.4.4 fixed in 4.5.2 - CVE-2023-4256 / bsc#1218249 - CVE-2023-43279 / bsc#1221324 - CVE-2024-3024 / bsc#1222131 (likely) - CVE-2024-22654 / bsc#1243845 - CVE-2025-9157 / bsc#1248322 - CVE-2025-9384 / bsc#1248595 - CVE-2025-9385 / bsc#1248596 - CVE-2025-9386 / bsc#1248597 - CVE-2025-9649 / bsc#1248964 - CVE-2025-51006 / bsc#1250356 tcpreplay-4.5.2-bp160.1.1.aarch64.rpm tcpreplay-4.5.2-bp160.1.1.src.rpm tcpreplay-debuginfo-4.5.2-bp160.1.1.aarch64.rpm tcpreplay-debugsource-4.5.2-bp160.1.1.aarch64.rpm tcpreplay-4.5.2-bp160.1.1.ppc64le.rpm tcpreplay-debuginfo-4.5.2-bp160.1.1.ppc64le.rpm tcpreplay-debugsource-4.5.2-bp160.1.1.ppc64le.rpm tcpreplay-4.5.2-bp160.1.1.s390x.rpm tcpreplay-debuginfo-4.5.2-bp160.1.1.s390x.rpm tcpreplay-debugsource-4.5.2-bp160.1.1.s390x.rpm tcpreplay-4.5.2-bp160.1.1.x86_64.rpm tcpreplay-debuginfo-4.5.2-bp160.1.1.x86_64.rpm tcpreplay-debugsource-4.5.2-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-36 Recommended update for evolution moderate openSUSE Backports SLE-16.0 This update for evolution fixes the following issues: Changes in evolution: - Fix JavaScript dictionary objects creation. Needed for WebKitGTK >= 2.50 (bsc#1252722 glgo#GNOME/evolution#3124). evolution-3.56.2-bp160.2.1.src.rpm evolution-3.56.2-bp160.2.1.x86_64.rpm evolution-debuginfo-3.56.2-bp160.2.1.x86_64.rpm evolution-debugsource-3.56.2-bp160.2.1.x86_64.rpm evolution-devel-3.56.2-bp160.2.1.x86_64.rpm evolution-lang-3.56.2-bp160.2.1.noarch.rpm evolution-plugin-bogofilter-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-pst-import-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-spamassassin-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-text-highlight-3.56.2-bp160.2.1.x86_64.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.2.1.x86_64.rpm evolution-3.56.2-bp160.2.1.s390x.rpm evolution-debuginfo-3.56.2-bp160.2.1.s390x.rpm evolution-debugsource-3.56.2-bp160.2.1.s390x.rpm evolution-devel-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-bogofilter-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-pst-import-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-spamassassin-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-text-highlight-3.56.2-bp160.2.1.s390x.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.2.1.s390x.rpm evolution-3.56.2-bp160.2.1.ppc64le.rpm evolution-debuginfo-3.56.2-bp160.2.1.ppc64le.rpm evolution-debugsource-3.56.2-bp160.2.1.ppc64le.rpm evolution-devel-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-bogofilter-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-pst-import-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-spamassassin-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-text-highlight-3.56.2-bp160.2.1.ppc64le.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.2.1.ppc64le.rpm evolution-3.56.2-bp160.2.1.aarch64.rpm evolution-debuginfo-3.56.2-bp160.2.1.aarch64.rpm evolution-debugsource-3.56.2-bp160.2.1.aarch64.rpm evolution-devel-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-bogofilter-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-bogofilter-debuginfo-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-pst-import-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-pst-import-debuginfo-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-spamassassin-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-spamassassin-debuginfo-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-text-highlight-3.56.2-bp160.2.1.aarch64.rpm evolution-plugin-text-highlight-debuginfo-3.56.2-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-37 Security update for redis critical openSUSE Backports SLE-16.0 This update for redis fixes the following issues: - Updated to 8.2.3 (boo#1252996 CVE-2025-62507) * https://github.com/redis/redis/releases/tag/8.2.3 - Security fixes - (CVE-2025-62507) Bug in `XACKDEL` may lead to stack overflow and potential RCE - Bug fixes - `HGETEX`: A missing `numfields` argument when `FIELDS` is used can lead to Redis crash - An overflow in `HyperLogLog` with 2GB+ entries may result in a Redis crash - Cuckoo filter - Division by zero in Cuckoo filter insertion - Cuckoo filter - Counter overflow - Bloom filter - Arbitrary memory read/write with invalid filter - Bloom filter - Out-of-bounds access with empty chain - Top-k - Out-of-bounds access - Bloom filter - Restore invalid filter [We thank AWS security for responsibly disclosing the security bug] - Updated to 8.2.2 (boo#1250995) * https://github.com/redis/redis/releases/tag/8.2.2 * Fixed Lua script may lead to remote code execution (CVE-2025-49844). * Fixed Lua script may lead to integer overflow (CVE-2025-46817). * Fixed Lua script can be executed in the context of another user (CVE-2025-46818). * Fixed LUA out-of-bound read (CVE-2025-46819). * Fixed potential crash on Lua script or streams and HFE defrag. * Fixed potential crash when using ACL rules. * Added VSIM: new EPSILON argument to specify maximum distance. * Added SVS-VAMANA: allow use of BUILD_INTEL_SVS_OPT flag. * Added RESP3 serialization performance. * Added INFO SEARCH: new SVS-VAMANA metrics. - Updated to 8.2.1 * https://github.com/redis/redis/releases/tag/8.2.1 - Bug fixes * #14240 INFO KEYSIZES - potential incorrect histogram updates on cluster mode with modules * #14274 Disable Active Defrag during flushing replica * #14276 XADD or XTRIM can crash the server after loading RDB * #Q6601 Potential crash when running FLUSHDB (MOD-10681) * Performance and resource utilization * Query Engine - LeanVec and LVQ proprietary Intel optimizations were removed from Redis Open Source * #Q6621 Fix regression in INFO (MOD-10779) redis-8.2.3-bp160.1.1.src.rpm redis-8.2.3-bp160.1.1.x86_64.rpm redis-debuginfo-8.2.3-bp160.1.1.x86_64.rpm redis-debugsource-8.2.3-bp160.1.1.x86_64.rpm redis-8.2.3-bp160.1.1.s390x.rpm redis-debuginfo-8.2.3-bp160.1.1.s390x.rpm redis-debugsource-8.2.3-bp160.1.1.s390x.rpm redis-8.2.3-bp160.1.1.ppc64le.rpm redis-debuginfo-8.2.3-bp160.1.1.ppc64le.rpm redis-debugsource-8.2.3-bp160.1.1.ppc64le.rpm redis-8.2.3-bp160.1.1.aarch64.rpm redis-debuginfo-8.2.3-bp160.1.1.aarch64.rpm redis-debugsource-8.2.3-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-38 Security update for shadowsocks-v2ray-plugin, v2ray-core important openSUSE Backports SLE-16.0 This update for shadowsocks-v2ray-plugin, v2ray-core fixes the following issues: Changes in shadowsocks-v2ray-plugin: - Update version to 5.25.0 * Update v2ray-core to v5.25.0 - Add update-vendor.patch, update v2ray-core to v5.33.0 (boo#1243954 and CVE-2025-297850) Changes in v2ray-core: - Fix CVE-2025-47911 and boo#1251404 * Add fix-CVE-2025-47911.patch * Update golang.org/x/net to 0.45.0 in vendor - Update version to 5.38.0 * TLSMirror Connection Enrollment System * Add TLSMirror Sequence Watermarking * LSMirror developer preview protocol is now a part of mainline V2Ray * proxy dns with NOTIMP error * Add TLSMirror looks like TLS censorship resistant transport protocol as a developer preview transport * proxy dns with NOTIMP error * fix false success from SOCKS server when Dispatch() fails * HTTP inbound: Directly forward plain HTTP 1xx response header * add a option to override domain used to query https record * Fix bugs * Update vendor - Update version to 5.33.0 * bump github.com/quic-go/quic-go from 0.51.0 to 0.52.0(boo#1243946 and CVE-2025-297850) * Update other vendor source - Update version to 5.31.0 * Add Dns Proxy Response TTL Control * Fix call newError Base with a nil value error * Update vendor (boo#1235164) - Update version to 5.29.3 * Enable restricted mode load for http protocol client * Correctly implement QUIC sniffer when handling multiple initial packets * Fix unreleased cache buffer in QUIC sniffing * A temporary testing fix for the buffer corruption issue * QUIC Sniffer Restructure - Update version to 5.22.0 * Add packetEncoding for Hysteria * Add ECH Client Support * Add support for parsing some shadowsocks links * Add Mekya Transport * Fix bugs golang-github-teddysun-v2ray-plugin-5.25.0-bp160.1.1.noarch.rpm shadowsocks-v2ray-plugin-5.25.0-bp160.1.1.src.rpm shadowsocks-v2ray-plugin-5.25.0-bp160.1.1.x86_64.rpm shadowsocks-v2ray-plugin-debuginfo-5.25.0-bp160.1.1.x86_64.rpm golang-github-v2fly-v2ray-core-5.40.0-bp160.1.1.noarch.rpm v2ray-core-5.40.0-bp160.1.1.src.rpm v2ray-core-5.40.0-bp160.1.1.x86_64.rpm v2ray-core-debuginfo-5.40.0-bp160.1.1.x86_64.rpm shadowsocks-v2ray-plugin-5.25.0-bp160.1.1.s390x.rpm shadowsocks-v2ray-plugin-debuginfo-5.25.0-bp160.1.1.s390x.rpm v2ray-core-5.40.0-bp160.1.1.s390x.rpm v2ray-core-debuginfo-5.40.0-bp160.1.1.s390x.rpm shadowsocks-v2ray-plugin-5.25.0-bp160.1.1.ppc64le.rpm shadowsocks-v2ray-plugin-debuginfo-5.25.0-bp160.1.1.ppc64le.rpm v2ray-core-5.40.0-bp160.1.1.ppc64le.rpm v2ray-core-debuginfo-5.40.0-bp160.1.1.ppc64le.rpm shadowsocks-v2ray-plugin-5.25.0-bp160.1.1.aarch64.rpm shadowsocks-v2ray-plugin-debuginfo-5.25.0-bp160.1.1.aarch64.rpm v2ray-core-5.40.0-bp160.1.1.aarch64.rpm v2ray-core-debuginfo-5.40.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-39 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: - Update to version 5.1763743683.1da97aa2: * Optimize Job Group dropdown database query * Split dependency handling out of create_from_settings * Give jobs with high MAX_JOB_TIME a priority malus * Make the number of builds per group on the front page configurable * docs: Feature auto-generated deepwiki less prominently * apparmor: Additional perms for tests in osado to run - Update to version 5.1763153079.b36ac754: * Skip a build if there are no jobs * Remove unused variable - Update to version 5.1762879267.52145e9a: * Avoid installing unwanted package versions * Fix check in git_clone for dirty git dir * Prevent `t/24-worker-webui-connection.t` from running into timeout * Be explicit about certain aspects of archiving in the documentation * Fix sporadic failures in `t/ui/10-tests_overview.t` * Adapt os-autoinst-scripts reference after rename * Properly conclude scheduling if there are no jobs - Update to version 5.1762193001.2f6e71ca: * Potentially improve stability of `t/ui/16-tests_job_next_previous.t` * Avoid failing check in `t/16-utils-runcmd.t` * README: Add deepwiki badge * Dependency cron 2025-10-27 * Retry image optimizations Changes in os-autoinst: - Update to version 5.1763561851.03e049d: * Avoid `Can't exec "ffmpeg"` if ffmpeg isn't present * Fix syntax errors in nft due to multiple interfaces in $ethernet * README: Feature auto-generated deepwiki less prominently * Install NetworkManager-ovs in os-autoinst-setup-multi-machine * Add disconnect_usb (qemu only, for now) - Update to version 5.1763048144.30f43a0: * Configure ftables in os-autoinst-setup-multi-machine * Makefile: Fix reruns on incomplete build dir generations * Propagate C++ exceptions to Perl in image write function * Add support NICPCIADDR variable to QEMU backend * Remove test which causes unhandled output * Improve includes in tinycv library * Handle OpenCV exceptions when writing an image * Avoid ignoring errors silently when writing images * Avoid saving test results referring to non-existent screenshots - Update to version 5.1762250353.5150272: * Makefile: Fix reruns on incomplete build dir generations * Propagate C++ exceptions to Perl in image write function * Add support NICPCIADDR variable to QEMU backend * Remove test which causes unhandled output * Allow array keys like `ISSUES[]` as introduced in openQA commit a53b19b * Improve includes in tinycv library - Update to version 5.1761723693.2b88807: * Propagate C++ exceptions to Perl in image write function * Add support NICPCIADDR variable to QEMU backend * Remove test which causes unhandled output * Allow array keys like `ISSUES[]` as introduced in openQA commit a53b19b * Improve includes in tinycv library * Handle OpenCV exceptions when writing an image * Avoid ignoring errors silently when writing images Changes in openQA-devel-container: - Update to version 5.1763743683.1da97aa28: * Update to latest openQA version openQA-5.1763743683.1da97aa2-bp160.1.1.src.rpm openQA-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-auto-update-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-client-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-common-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-devel-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-doc-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-local-db-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-mcp-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-munin-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-single-instance-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm openQA-worker-5.1763743683.1da97aa2-bp160.1.1.x86_64.rpm os-autoinst-5.1763561851.03e049d-bp160.1.1.src.rpm os-autoinst-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1763561851.03e049d-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1763561851.03e049d-bp160.1.1.x86_64.rpm openQA-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-auto-update-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-bootstrap-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-client-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-common-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-continuous-update-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-devel-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-doc-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-local-db-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-mcp-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-munin-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-python-scripts-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-single-instance-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm openQA-worker-5.1763743683.1da97aa2-bp160.1.1.s390x.rpm os-autoinst-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-devel-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1763561851.03e049d-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1763561851.03e049d-bp160.1.1.s390x.rpm openQA-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-client-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-common-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-devel-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-doc-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-local-db-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-mcp-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-munin-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm openQA-worker-5.1763743683.1da97aa2-bp160.1.1.ppc64le.rpm os-autoinst-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1763561851.03e049d-bp160.1.1.ppc64le.rpm openQA-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-auto-update-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-client-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-common-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-devel-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-doc-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-local-db-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-mcp-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-munin-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-single-instance-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm openQA-worker-5.1763743683.1da97aa2-bp160.1.1.aarch64.rpm os-autoinst-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1763561851.03e049d-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1763561851.03e049d-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-4 Recommended update for opi moderate openSUSE Backports SLE-16.0 This update for opi fixes the following issues: - Version 5.8.8 * Fix adding openh264 repo on leap 16.0 This update for opi fixes the following issues: - Version 5.8.7 * Fix ocenaudio url * Add LocalSend plugin * Run all tests in verbose mode * Print written repo files in verbose mode * Increase timeouts in test/06_install_non_interactive.py * Remove DNF references from README.md This update for opi fixes the following issues: - Version 5.8.5 * add librewolf plugin (#205) * Install .NET 9 * Add verbose mode * Change the order of the process in the github module * Add rustdesk plugin This update for opi fixes the following issues: - Version 5.8.4 * Use arm64 rpm for libation on aarch64 This update for opi fixes the following issues: - Version 5.8.3 * Install dependencies rpm-build and squashfs at runtime if needed * Drop DNF support This update for opi fixes the following issues: - Version 5.8.2 * Warn about adding staging repos * Gracefully handle zypper exit code 106 (repos without cache present) This update for opi fixes the following issues: - Version 5.8.1 * Fix SyntaxWarning: invalid escape sequence '\s' This update for opi fixes the following issues: - Version 5.8.0 * Add mullvad-brower This update for opi fixes the following issues: - Version 5.7.0 * Add leap-only plugin to install zellij from github release * Don't use subprocess.run user kwarg on 15.6 * Fix tests: Use helloworld-opi-tests instead of zfs * Perform search despite locked rpmdb * Simplify backend code This update for opi fixes the following issues: - Use no macros in url in .spec for packtrack This update for opi fixes the following issues: - Version 5.6.0 * Add plugin to install vagrant from hashicorp repo This update for opi fixes the following issues: - Version 5.5.0 * Update opi/plugins/collabora.py * add collabora office desktop * Omit unsupported cli args on leap in 99_install_opi.py * Switch to PEP517 install * Fix 09_install_with_multi_repos_in_single_file_non_interactive.py * Fix 07_install_multiple.py on tumbleweed * Fix test suite on tumbleweed * Update available apps in opi - README.md This update for opi fixes the following issues: - Version 5.4.0 * Show key ID when importing or deleting package signing keys * Add option to install google-chrome-canary This update for opi fixes the following issues: - Version 5.3.0 * Fix tests for new zypper version * fix doblue slash in packman repo url * Add Plugin to install Libation opi-5.8.8-bp160.1.1.noarch.rpm opi-5.8.8-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-40 Security update for bash-git-prompt moderate openSUSE Backports SLE-16.0 This update for bash-git-prompt fixes the following issues: - CVE-2025-61659: Fixed an issue where predictable files in /tmp were used for a copy of the git index (bsc#1247489) bash-git-prompt-2.7.1-bp160.2.1.noarch.rpm bash-git-prompt-2.7.1-bp160.2.1.src.rpm openSUSE-Leap-16.0-packagehub-41 Security update for act important openSUSE Backports SLE-16.0 This update for act fixes the following issues: - CVE-2025-47913: Prevent panic in embedded golang.org/x/crypto/ssh/agent client when receiving unexpected message types for key listing or signing requests (boo#1253608) act-0.2.64-bp160.2.1.aarch64.rpm act-0.2.64-bp160.2.1.src.rpm act-0.2.64-bp160.2.1.ppc64le.rpm act-0.2.64-bp160.2.1.s390x.rpm act-0.2.64-bp160.2.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-42 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: - Update to version 5.1764349525.ffb59486: * Also use TIMEOUT_SCALE for priority malus calculation * docs: Fix wrapping and typo * Document multi machine ovs flow setup and IPv6 usage * Avoid computing time constraint for scheduled product cleanup in Perl * rpm: Move `…-enqueue-needle-ref-cleanup` to other `…-enqueue-…` scripts * Add task to limit scheduled products similar to audit events * Extract generic parts from audit event cleanup task into generic task * parser: ktap: Show full output by default if no line was parsed * Ignore npm scripts also via `.npmrc` to make bare npm calls more secure * Avoid repeating `MAIN_SETTINGS` in various places * Fix possibly excessive memory use when computer test result overview * Fix typo in `_prepare_complex_query_search_args` * Fix indentation in `overview.html.ep` * Prevent logging AMQP credentials in debug output * Make restart_openqa_job emit proper event payload * Enable gru tasks to emit AMQP messages * Remove explicit loading AMQP plugin in Gru plugin * Emit restart events when job restarted automatically * Add debug message about priority malus * Fix ordering of job groups after 2ad929ceca43d Changes in os-autoinst: - Update to version 5.1764330105.c5cfd48: * Add port forwarding example for NICTYPE_USER_OPTIONS * Fix regression from abcaa66b by disabling virtio-keyboard by default * Add IPv6 support for multi machine tests * distribution: Add "disable_key_repeat" * Use 'virtio-keyboard' by default to allow fixing key repetition errors Changes in openQA-devel-container: - Update to version 5.1764349525.ffb594867: openQA-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-5.1764349525.ffb59486-bp160.1.1.src.rpm openQA-auto-update-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-client-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-common-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-devel-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-doc-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-local-db-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-mcp-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-munin-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-single-instance-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm openQA-worker-5.1764349525.ffb59486-bp160.1.1.aarch64.rpm os-autoinst-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-5.1764330105.c5cfd48-bp160.1.1.src.rpm os-autoinst-debuginfo-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1764330105.c5cfd48-bp160.1.1.aarch64.rpm openQA-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-client-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-common-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-devel-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-doc-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-local-db-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-mcp-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-munin-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm openQA-worker-5.1764349525.ffb59486-bp160.1.1.ppc64le.rpm os-autoinst-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1764330105.c5cfd48-bp160.1.1.ppc64le.rpm openQA-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-auto-update-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-bootstrap-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-client-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-common-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-continuous-update-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-devel-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-doc-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-local-db-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-mcp-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-munin-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-python-scripts-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-single-instance-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1764349525.ffb59486-bp160.1.1.s390x.rpm openQA-worker-5.1764349525.ffb59486-bp160.1.1.s390x.rpm os-autoinst-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-devel-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1764330105.c5cfd48-bp160.1.1.s390x.rpm openQA-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-auto-update-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-client-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-common-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-devel-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-doc-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-local-db-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-mcp-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-munin-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-single-instance-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm openQA-worker-5.1764349525.ffb59486-bp160.1.1.x86_64.rpm os-autoinst-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1764330105.c5cfd48-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-44 Recommended update for virtme moderate openSUSE Backports SLE-16.0 This update for virtme fixes the following issues: Changes in virtme: Update to 1.39: * The most noticeable change in this release is the new Model Context Protocol (MCP) server. This feature lets you connect with AI assistants such as Claude, Cursor, etc., and use natural human language to automate kernel development tasks. In this way, AI agents can automatically configure kernels, apply patches from lore.kernel.org, and run commands within recompiled kernels. You can even have the AI agent perform bug bisection for you and run specific commands/scripts inside each recompiled version to determine whether the kernel is good or bad. * An additional feature is vCPU pinning (using the --pin CPU_LIST option), which enables binding virtual CPUs to particular physical host CPUs. This ensures more consistent performance testing within the vng guest environment. * The release also adds support for memoryless NUMA nodes, enablingusers to specify size=0 with the --numa argument to create NUMA nodes without memory. This capability can be useful for simulating heterogeneous architectures, where devices like GPUs are represented as memoryless NUMA nodes to model their CPU locality relationships. * Last, but not least, there's a new --shell BINARY option which lets users choose a different shell to use within the vng session, rather than using their system's default shell and a new --empty-password option that creates empty passwords in the vng guest, instead of blocking login for other users, enabling easier debugging and SSH access during testing. * Updated Python versions in CI (dropped EOL 3.8 and 3.9) * Various bug fixes in virtme-init * Enhanced documentation and README updates * Improved error handling and validation virtme-1.39-bp160.1.1.noarch.rpm virtme-1.39-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-45 Recommended update for gitea-tea moderate openSUSE Backports SLE-16.0 This update for gitea-tea fixes the following issues: Changes in gitea-tea: - Do not make config file group-readable. gitea-tea-0.11.1-bp160.2.1.aarch64.rpm gitea-tea-0.11.1-bp160.2.1.src.rpm gitea-tea-bash-completion-0.11.1-bp160.2.1.noarch.rpm gitea-tea-debuginfo-0.11.1-bp160.2.1.aarch64.rpm gitea-tea-zsh-completion-0.11.1-bp160.2.1.noarch.rpm gitea-tea-0.11.1-bp160.2.1.ppc64le.rpm gitea-tea-debuginfo-0.11.1-bp160.2.1.ppc64le.rpm gitea-tea-0.11.1-bp160.2.1.s390x.rpm gitea-tea-debuginfo-0.11.1-bp160.2.1.s390x.rpm gitea-tea-0.11.1-bp160.2.1.x86_64.rpm gitea-tea-debuginfo-0.11.1-bp160.2.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-46 Security update for git-bug important openSUSE Backports SLE-16.0 This update for git-bug fixes the following issues: Changes in git-bug: - Revendor to include fixed version of depending libraries: - GO-2025-4116 (CVE-2025-47913, bsc#1253506) upgrade golang.org/x/crypto to v0.43.0 - GO-2025-3900 (GHSA-2464-8j7c-4cjm) upgrade github.com/go-viper/mapstructure/v2 to v2.4.0 - GO-2025-3787 (GHSA-fv92-fjc5-jj9h) included in the previous - GO-2025-3754 (GHSA-2x5j-vhc8-9cwm) upgrade github.com/cloudflare/circl to v1.6.1 - GO-2025-4134 (CVE-2025-58181, bsc#1253930) upgrade golang.org/x/crypto/ssh to v0.45.0 - GO-2025-4135 (CVE-2025-47914, bsc#1254084) upgrade golang.org/x/crypto/ssh/agent to v0.45.0 - Revendor to include golang.org/x/net/html v 0.45.0 to prevent possible DoS by various algorithms with quadratic complexity when parsing HTML documents (bsc#1251463, CVE-2025-47911 and bsc#1251664, CVE-2025-58190). Update to version 0.10.1: - cli: ignore missing sections when removing configuration (ddb22a2f) Update to version 0.10.0: - bridge: correct command used to create a new bridge (9942337b) - web: simplify header navigation (7e95b169) - webui: remark upgrade + gfm + syntax highlighting (6ee47b96) - BREAKING CHANGE: dev-infra: remove gokart (89b880bd) Update to version 0.10.0: - bridge: correct command used to create a new bridge (9942337b) - web: simplify header navigation (7e95b169) - web: remark upgrade + gfm + syntax highlighting (6ee47b96) Update to version 0.9.0: - completion: remove errata from string literal (aa102c91) - tui: improve readability of the help bar (23be684a) Update to version 0.8.1+git.1746484874.96c7a111: * docs: update install, contrib, and usage documentation (#1222) * fix: resolve the remote URI using url.*.insteadOf (#1394) * build(deps): bump the go_modules group across 1 directory with 3 updates (#1376) * chore: gofmt simplify gitlab/export_test.go (#1392) * fix: checkout repo before setting up go environment (#1390) * feat: bump to go v1.24.2 (#1389) * chore: update golang.org/x/net (#1379) * fix: use -0700 when formatting time (#1388) * fix: use correct url for gitlab PATs (#1384) * refactor: remove depdendency on pnpm for auto-label action (#1383) * feat: add action: auto-label (#1380) * feat: remove lifecycle/frozen (#1377) * build(deps): bump the npm_and_yarn group across 1 directory with 12 updates (#1378) * feat: support new exclusion label: lifecycle/pinned (#1375) * fix: refactor how gitlab title changes are detected (#1370) * revert: "Create Dependabot config file" (#1374) * refactor: rename //:git-bug.go to //:main.go (#1373) * build(deps): bump github.com/vektah/gqlparser/v2 from 2.5.16 to 2.5.25 (#1361) * fix: set GitLastTag to an empty string when git-describe errors (#1355) * chore: update go-git to v5@masterupdate_mods (#1284) * refactor: Directly swap two variables to optimize code (#1272) * Update README.md Matrix link to new room (#1275) - Update to version 0.8.0+git.1742269202.0ab94c9: * deps(crypto): bump golang.org/x/crypto from v0.26.0 to v0.31.0 (fix for CVE-2024-45337) (#1312) - Update golang.org/x/crypto/ssh to v0.35.0 (bsc#1239494, CVE-2025-22869). - Add missing Requires to completion subpackages. Update to version 0.8.0+git.1733745604.d499b6e: * fix typos in docs (#1266) * build(deps): bump github.com/go-git/go-billy/v5 from 5.5.0 to 5.6.0 (#1289) - bump golang.org/x/crypto from v0.26.0 to v0.31.0 (fix for CVE-2024-45337, bsc#1234565). git-bug-0.10.1-bp160.1.1.aarch64.rpm git-bug-0.10.1-bp160.1.1.src.rpm git-bug-bash-completion-0.10.1-bp160.1.1.noarch.rpm git-bug-debuginfo-0.10.1-bp160.1.1.aarch64.rpm git-bug-fish-completion-0.10.1-bp160.1.1.noarch.rpm git-bug-zsh-completion-0.10.1-bp160.1.1.noarch.rpm git-bug-0.10.1-bp160.1.1.ppc64le.rpm git-bug-debuginfo-0.10.1-bp160.1.1.ppc64le.rpm git-bug-0.10.1-bp160.1.1.s390x.rpm git-bug-debuginfo-0.10.1-bp160.1.1.s390x.rpm git-bug-0.10.1-bp160.1.1.x86_64.rpm git-bug-debuginfo-0.10.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-47 Recommended update for weechat moderate openSUSE Backports SLE-16.0 This update for weechat fixes the following issues: Changes in weechat: Update to 4.7.2: Fixed: * api: fix file descriptor leak in hook_url when a timeout occurs or if the hook is removed during the transfer (#2284) * irc: fix colors in messages 367 (ban mask), 728 (quiet mask) and MODE (#2286) * irc: fix reset of color when multiple modes are set with command /mode weechat-4.7.2-bp160.1.1.aarch64.rpm weechat-4.7.2-bp160.1.1.src.rpm weechat-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-debugsource-4.7.2-bp160.1.1.aarch64.rpm weechat-devel-4.7.2-bp160.1.1.aarch64.rpm weechat-lang-4.7.2-bp160.1.1.noarch.rpm weechat-lua-4.7.2-bp160.1.1.aarch64.rpm weechat-lua-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-perl-4.7.2-bp160.1.1.aarch64.rpm weechat-perl-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-python-4.7.2-bp160.1.1.aarch64.rpm weechat-python-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-ruby-4.7.2-bp160.1.1.aarch64.rpm weechat-ruby-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-spell-4.7.2-bp160.1.1.aarch64.rpm weechat-spell-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-tcl-4.7.2-bp160.1.1.aarch64.rpm weechat-tcl-debuginfo-4.7.2-bp160.1.1.aarch64.rpm weechat-4.7.2-bp160.1.1.ppc64le.rpm weechat-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-debugsource-4.7.2-bp160.1.1.ppc64le.rpm weechat-devel-4.7.2-bp160.1.1.ppc64le.rpm weechat-lua-4.7.2-bp160.1.1.ppc64le.rpm weechat-lua-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-perl-4.7.2-bp160.1.1.ppc64le.rpm weechat-perl-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-python-4.7.2-bp160.1.1.ppc64le.rpm weechat-python-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-ruby-4.7.2-bp160.1.1.ppc64le.rpm weechat-ruby-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-spell-4.7.2-bp160.1.1.ppc64le.rpm weechat-spell-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-tcl-4.7.2-bp160.1.1.ppc64le.rpm weechat-tcl-debuginfo-4.7.2-bp160.1.1.ppc64le.rpm weechat-4.7.2-bp160.1.1.s390x.rpm weechat-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-debugsource-4.7.2-bp160.1.1.s390x.rpm weechat-devel-4.7.2-bp160.1.1.s390x.rpm weechat-lua-4.7.2-bp160.1.1.s390x.rpm weechat-lua-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-perl-4.7.2-bp160.1.1.s390x.rpm weechat-perl-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-python-4.7.2-bp160.1.1.s390x.rpm weechat-python-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-ruby-4.7.2-bp160.1.1.s390x.rpm weechat-ruby-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-spell-4.7.2-bp160.1.1.s390x.rpm weechat-spell-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-tcl-4.7.2-bp160.1.1.s390x.rpm weechat-tcl-debuginfo-4.7.2-bp160.1.1.s390x.rpm weechat-4.7.2-bp160.1.1.x86_64.rpm weechat-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-debugsource-4.7.2-bp160.1.1.x86_64.rpm weechat-devel-4.7.2-bp160.1.1.x86_64.rpm weechat-lua-4.7.2-bp160.1.1.x86_64.rpm weechat-lua-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-perl-4.7.2-bp160.1.1.x86_64.rpm weechat-perl-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-python-4.7.2-bp160.1.1.x86_64.rpm weechat-python-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-ruby-4.7.2-bp160.1.1.x86_64.rpm weechat-ruby-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-spell-4.7.2-bp160.1.1.x86_64.rpm weechat-spell-debuginfo-4.7.2-bp160.1.1.x86_64.rpm weechat-tcl-4.7.2-bp160.1.1.x86_64.rpm weechat-tcl-debuginfo-4.7.2-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-48 Recommended update for gnome-browser-connector moderate openSUSE Backports SLE-16.0 This update for gnome-browser-connector fixes the following issues: Changes in gnome-browser-connector: - add unzip as a requires, otherwise the extensions can't get extracted gnome-browser-connector-42.1-bp160.2.1.aarch64.rpm gnome-browser-connector-42.1-bp160.2.1.src.rpm gnome-browser-connector-42.1-bp160.2.1.ppc64le.rpm gnome-browser-connector-42.1-bp160.2.1.s390x.rpm gnome-browser-connector-42.1-bp160.2.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-49 Recommended update for perl-Mojolicious-Plugin-Webpack moderate openSUSE Backports SLE-16.0 This update for perl-Mojolicious-Plugin-Webpack fixes the following issues: Changes in perl-Mojolicious-Plugin-Webpack: - See https://github.com/jhthorsen/mojolicious-plugin-webpack/pull/17 perl-Mojolicious-Plugin-Webpack-1.02-bp160.2.1.noarch.rpm perl-Mojolicious-Plugin-Webpack-1.02-bp160.2.1.src.rpm openSUSE-Leap-16.0-packagehub-5 Recommended update for virtme moderate openSUSE Backports SLE-16.0 This update for virtme fixes the following issues: - Update to 1.38: * Fix the infamous Stale file handle (ESTALE) errors with virtiofsd * Fix for systemctl daemon-reload when systemd support is enabled * Fix for a kernel symlink issue affecting openSUSE/SLE * README/docs improvements * Various coding style cleanups virtme-1.38-bp160.1.1.noarch.rpm virtme-1.38-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-50 Security update for python-Django important openSUSE Backports SLE-16.0 This update for python-Django fixes the following issues: - CVE-2025-64459: Fixed a potential SQL injection via `_connector` keyword argument in `QuerySet` and `Q` objects (bsc#1252926) - CVE-2025-13372,CVE-2025-64460: Fixed Denial of Service in 'django.core.serializers.xml_serializer.getInnerText()' (bsc#1254437) python-Django-5.2.4-bp160.4.1.src.rpm python313-Django-5.2.4-bp160.4.1.noarch.rpm openSUSE-Leap-16.0-packagehub-51 Recommended update for trivy moderate openSUSE Backports SLE-16.0 This update for trivy fixes the following issues: Changes in trivy: Update to version 0.68.1: * fix: update cosing settings for GoReleaser after bumping cosing to v3 (#9863) * chore(deps): bump the testcontainers group with 2 updates (#9506) * feat(aws): Add support for dualstack ECR endpoints (#9862) * fix(vex): use a separate `visited` set for each DFS path (#9760) * docs: catch some missed docs -> guide (#9850) * refactor(misconf): parse azure_policy_enabled to addonprofile.azurepolicy.enabled (#9851) * chore(cli): Remove Trivy Cloud (#9847) * fix(misconf): ensure value used as ignore marker is non-null and known (#9835) * fix(misconf): map healthcheck start period flag to --start-period instead of --startPeriod (#9837) * chore(deps): bump the docker group with 3 updates (#9776) * chore(deps): bump golang.org/x/crypto from 0.41.0 to 0.45.0 (#9827) * chore(deps): bump the common group across 1 directory with 20 updates (#9840) * feat(image): add Sigstore bundle SBOM support (#9516) * chore(deps): bump the aws group with 7 updates (#9691) * test(k8s): update k8s integrtion test (#9725) * chore(deps): bump github.com/containerd/containerd from 1.7.28 to 1.7.29 (#9764) * feat(sbom): add support for SPDX attestations (#9829) * docs(misconf): Remove duplicate sections (#9819) * feat(misconf): Update Azure network schema for new checks (#9791) * feat(misconf): Update AppService schema (#9792) * fix(misconf): ensure boolean metadata values are correctly interpreted (#9770) * feat(misconf): support https_traffic_only_enabled in Az storage account (#9784) * docs: restructure docs for new hosting (#9799) * docs(server): fix info about scanning licenses on the client side. (#9805) * ci: remove unused preinstalled software/images for build tests to free up disk space. (#9814) * feat(report): add fingerprint generation for vulnerabilities (#9794) * chore: trigger the trivy-www workflow (#9737) * fix: update all documentation links (#9777) * feat(suse): Add new openSUSE, Micro and SLES releases end of life dates (#9788) * test(go): set `GOPATH` for tests (#9785) * feat(flag): add `--cacert` flag (#9781) * fix(misconf): handle unsupported experimental flags in Dockerfile (#9769) * test(go): refactor mod_test.go to use txtar format (#9775) * docs: Fix typos and linguistic errors in documentation / hacktoberfest (#9586) * chore(deps): bump github.com/opencontainers/selinux from 1.12.0 to 1.13.0 (#9778) * chore(deps): bump github.com/containerd/containerd/v2 from 2.1.4 to 2.1.5 (#9763) * fix(java): use `true` as default value for Repository Release|Snapshot Enabled in pom.xml and settings.xml files (#9751) * docs: add info that `SSL_CERT_FILE` works on `Unix systems other than macOS` only (#9772) * docs: change SecObserve URLs in documentatio (#9771) * feat(db): enable concurrent access to vulnerability database (#9750) * feat(misconf): add agentpools to azure container schema (#9714) * feat(report): switch ReportID from UUIDv4 to UUIDv7 (#9749) * feat(misconf): Update Azure Compute schema (#9675) * feat(misconf): Update azure storage schema (#9728) * feat(misconf): Update SecurityCenter schema (#9674) * feat(image): pass global context to docker/podman image save func (#9733) * chore(deps): bump the github-actions group with 4 updates (#9739) * fix(flag): remove viper.SetDefault to fix IsSet() for config-only flags (#9732) * feat(license): use separate SPDX ids to ignore SPDX expressions (#9087) * feat(dotnet): add dependency graph support for .deps.json files (#9726) * feat(misconf): Add support for configurable Rego error limit (#9657) * feat(misconf): Add RoleAssignments attribute (#9396) * feat(report): add image reference to report metadata (#9729) * fix(os): Add photon 5.0 in supported OS (#9724) * fix(license): handle SPDX WITH exceptions as single license in category detection (#9380) * refactor: add case-insensitive string set implementation (#9720) * feat: include registry and repository in artifact ID calculation (#9689) * feat(java): add support remote repositories from settings.xml files (#9708) * fix(sbom): don’t panic on SBOM format if scanned CycloneDX file has empty metadata (#9562) * docs: update vulnerability reporting guidelines in SECURITY.md (#9395) * docs: add info about `java-db` subdir (#9706) * fix(report): correct field order in SARIF license results (#9712) * test: improve golden file management in integration tests (#9699) * ci: get base_sha using base.ref (#9704) * refactor(misconf): mark AVDID fields as deprecated and use ID internally (#9576) * fix(nodejs): fix npmjs parser.pkgNameFromPath() panic issue (#9688) * fix: close all opened resources if an error occurs (#9665) * refactor(misconf): type-safe parser results in generic scanner (#9685) * feat(image): add RepoTags support for Docker archives (#9690) * chore(deps): bump github.com/quic-go/quic-go from 0.52.0 to 0.54.1 (#9694) * feat(misconf): Update Azure Container Schema (#9673) * ci: use merge commit for apidiff to avoid false positives (#9622) * feat(misconf): include map key in manifest snippet for diagnostics (#9681) * refactor(misconf): add ManifestFromYAML for unified manifest parsing (#9680) * test: update golden files for TestRepository* integration tests (#9684) * refactor(cli): Update the cloud config command (#9676) * fix(sbom): add `buildInfo` info as properties (#9683) * feat: add ReportID field to scan reports (#9670) * docs: add vulnerability database contribution guide (#9667) * feat(cli): Add trivy cloud suppport (#9637) * feat: add ArtifactID field to uniquely identify scan targets (#9663) * fix(nodejs): use the default ID format to match licenses in pnpm packages. (#9661) * feat(sbom): use SPDX license IDs list to validate SPDX IDs (#9569) * fix: use context for analyzers (#9538) * chore(deps): bump the docker group with 3 updates (#9545) * chore(deps): bump the aws group with 6 updates (#9547) * ci(helm): bump Trivy version to 0.67.2 for Trivy Helm Chart 0.19.1 (#9641) * test(helm): bump up Yamale dependency for Helm chart-testing-action (#9653) * fix: Trim the end-of-range suffix (#9618) * test(k8s): use a specific bundle for k8s misconfig scan (#9633) * fix: Use `fetch-level: 1` to check out trivy-repo in the release workflow (#9636) * refactor: move the aws config (#9617) * fix(license): don't normalize `unlicensed` licenses into `unlicense` (#9611) * fix: using SrcVersion instead of Version for echo detector (#9552) * feat(fs): change artifact type to repository when git info is detected (#9613) * fix: add `buildInfo` for `BlobInfo` in `rpc` package (#9608) * fix(vex): don't use reused BOM (#9604) * ci: use pull_request_target for apidiff workflow to support fork PRs (#9605) * fix: restore compatibility for google.protobuf.Value (#9559) * ci: add API diff workflow (#9600) * chore(deps): update to module-compatible docker-credential-gcr/v2 (#9591) * docs: improve documentation for scanning raw IaC configurations (#9571) * feat: allow ignoring findings by type in Rego (#9578) * docs: bump pygments from 2.18.0 to 2.19.2 (#9596) * refactor(misconf): add ID to scan.Rule (#9573) * fix(java): update order for resolving package fields from multiple demManagement (#9575) * chore(deps): bump the github-actions group across 1 directory with 9 updates (#9563) * chore(deps): bump the common group across 1 directory with 7 updates (#9590) * chore(deps): Switch to go-viper/mapstructure (#9579) * chore: add context to the cache interface (#9565) * ci(helm): bump Trivy version to 0.67.0 for Trivy Helm Chart 0.19.0 (#9554) * fix: validate backport branch name (#9548) trivy-0.68.1-bp160.1.1.aarch64.rpm trivy-0.68.1-bp160.1.1.src.rpm trivy-0.68.1-bp160.1.1.ppc64le.rpm trivy-0.68.1-bp160.1.1.s390x.rpm trivy-0.68.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-52 Security update for exim moderate openSUSE Backports SLE-16.0 This update for exim fixes the following issues: - CVE-2025-53881: Fixed a potential security issue with logfile rotation (bsc#1246457) exim-4.98.2-bp160.2.1.src.rpm exim-4.98.2-bp160.2.1.x86_64.rpm exim-debuginfo-4.98.2-bp160.2.1.x86_64.rpm exim-debugsource-4.98.2-bp160.2.1.x86_64.rpm eximon-4.98.2-bp160.2.1.x86_64.rpm eximon-debuginfo-4.98.2-bp160.2.1.x86_64.rpm eximstats-html-4.98.2-bp160.2.1.x86_64.rpm exim-4.98.2-bp160.2.1.s390x.rpm exim-debuginfo-4.98.2-bp160.2.1.s390x.rpm exim-debugsource-4.98.2-bp160.2.1.s390x.rpm eximon-4.98.2-bp160.2.1.s390x.rpm eximon-debuginfo-4.98.2-bp160.2.1.s390x.rpm eximstats-html-4.98.2-bp160.2.1.s390x.rpm exim-4.98.2-bp160.2.1.ppc64le.rpm exim-debuginfo-4.98.2-bp160.2.1.ppc64le.rpm exim-debugsource-4.98.2-bp160.2.1.ppc64le.rpm eximon-4.98.2-bp160.2.1.ppc64le.rpm eximon-debuginfo-4.98.2-bp160.2.1.ppc64le.rpm eximstats-html-4.98.2-bp160.2.1.ppc64le.rpm exim-4.98.2-bp160.2.1.aarch64.rpm exim-debuginfo-4.98.2-bp160.2.1.aarch64.rpm exim-debugsource-4.98.2-bp160.2.1.aarch64.rpm eximon-4.98.2-bp160.2.1.aarch64.rpm eximon-debuginfo-4.98.2-bp160.2.1.aarch64.rpm eximstats-html-4.98.2-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-53 Recommended update for virtme moderate openSUSE Backports SLE-16.0 This update for virtme fixes the following issues: - Update to 1.40: * No significant change, this is just a very small hotfix release to solve a packaging problem introduced by a conflict with the new vng-mcp tool. * While at it, there're also some small improved hints in the MCP server, so that AI agents can better understand how to build the kernel using vng --build. virtme-1.40-bp160.1.1.noarch.rpm virtme-1.40-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-54 Security update for hauler important openSUSE Backports SLE-16.0 This update for hauler fixes the following issues: - Update to version 1.3.1 (bsc#1251516, CVE-2025-47911, bsc#1251891, CVE-2025-11579, bsc#1251651, CVE-2025-58190, bsc#1248937, CVE-2025-58058): * bump github.com/containerd/containerd (#474) * another fix to tests for new tests (#472) * fixed typo in testdata (#471) * fixed/cleaned new tests (#470) * trying a new way for hauler testing (#467) * update for cosign v3 verify (#469) * added digests view to info (#465) * bump github.com/nwaples/rardecode/v2 from 2.1.1 to 2.2.0 in the go_modules group across 1 directory (#457) * update oras-go to v1.2.7 for security patches (#464) * update cosign to v3.0.2+hauler.1 (#463) * fixed homebrew directory deprecation (#462) * add registry logout command (#460) - Update to version 1.3.0: * bump the go_modules group across 1 directory with 2 updates (#455) * upgraded versions/dependencies/deprecations (#454) * allow loading of docker tarballs (#452) * bump the go_modules group across 1 directory with 2 updates (#449) - update to 1.2.5 (bsc#1246722, CVE-2025-46569): * Bump github.com/open-policy-agent/opa from 1.1.0 to 1.4.0 in the go_modules group across 1 directory (CVE-2025-46569) * deprecate auth from hauler store copy * Bump github.com/cloudflare/circl from 1.3.7 to 1.6.1 in the go_modules group across 1 directory * Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 in the go_modules group across 1 directory * upgraded go and dependencies versions - Update to version 1.2.5: * upgraded go and dependencies versions (#444) * Bump github.com/go-viper/mapstructure/v2 (#442) * bump github.com/cloudflare/circl (#441) * deprecate auth from hauler store copy (#440) * Bump github.com/open-policy-agent/opa (#438) - update to 1.2.4 (CVE-2025-22872, bsc#1241804): * Bump golang.org/x/net from 0.37.0 to 0.38.0 in the go_modules group across 1 directory * minor tests updates - Update to version 1.2.3: * formatting and flag text updates * add keyless signature verification (#434) * bump helm.sh/helm/v3 in the go_modules group across 1 directory (#430) * add --only flag to hauler store copy (for images) (#429) * fix tlog verification error/warning output (#428) - Update to version 1.2.2 (bsc#1241184, CVE-2024-0406): * cleanup new tlog flag typos and add shorthand (#426) * default public transparency log verification to false to be airgap friendly but allow override (#425) * bump github.com/golang-jwt/jwt/v4 (#423) * bump the go_modules group across 1 directory with 2 updates (#422) * bump github.com/go-jose/go-jose/v3 (#417) * bump github.com/go-jose/go-jose/v4 (#415) * clear default manifest name if product flag used with sync (#412) * updates for v1.2.0 (#408) * fixed remote code (#407) * added remote file fetch to load (#406) * added remote and multiple file fetch to sync (#405) * updated save flag and related logs (#404) * updated load flag and related logs [breaking change] (#403) * updated sync flag and related logs [breaking change] (#402) * upgraded api update to v1/updated dependencies (#400) * fixed consts for oci declarations (#398) * fix for correctly grabbing platform post cosign 2.4 updates (#393) * use cosign v2.4.1+carbide.2 to address containerd annotation in index.json (#390) * Bump the go_modules group across 1 directory with 2 updates (#385) * replace mholt/archiver with mholt/archives (#384) * forked cosign bump to 2.4.1 and use as a library vs embedded binary (#383) * cleaned up registry and improved logging (#378) * Bump golang.org/x/crypto in the go_modules group across 1 directory (#377) - bump net/html dependencies (bsc#1235332, CVE-2024-45338) - Update to version 1.1.1: * fixed cli desc for store env var (#374) * updated versions for go/k8s/helm (#373) * updated version flag to internal/flags (#369) * renamed incorrectly named consts (#371) * added store env var (#370) * adding ignore errors and retries for continue on error/fail on error (#368) * updated/fixed hauler directory (#354) * standardize consts (#353) * removed cachedir code (#355) * removed k3s code (#352) * updated dependencies for go, helm, and k8s (#351) * [feature] build with boring crypto where available (#344) * updated workflow to goreleaser builds (#341) * added timeout to goreleaser workflow (#340) * trying new workflow build processes (#337) * improved workflow performance (#336) * have extract use proper ref (#335) * yet another workflow goreleaser fix (#334) * even more workflow fixes (#333) * added more fixes to github workflow (#332) * fixed typo in hauler store save (#331) * updates to fix build processes (#330) * added integration tests for non hauler tarballs (#325) * bump: golang >= 1.23.1 (#328) * add platform flag to store save (#329) * Update feature_request.md * updated/standardize command descriptions (#313) * use new annotation for 'store save' manifest.json (#324) * enable docker load for hauler tarballs (#320) * bump to cosign v2.2.3-carbide.3 for new annotation (#322) * continue on error when adding images to store (#317) * Update README.md (#318) * fixed completion commands (#312) * github.com/rancherfederal/hauler => hauler.dev/go/hauler (#311) * pages: enable go install hauler.dev/go/hauler (#310) * Create CNAME * pages: initial workflow (#309) * testing and linting updates (#305) * feat-273: TLS Flags (#303) * added list-repos flag (#298) * fixed hauler login typo (#299) * updated cobra function for shell completion (#304) * updated install.sh to remove github api (#293) * fix image ref keys getting squashed when containing sigs/atts (#291) * fix missing versin info in release build (#283) * bump github.com/docker/docker in the go_modules group across 1 directory (#281) * updated install script (`install.sh`) (#280) * fix digest images being lost on load of hauls (Signed). (#259) * feat: add readonly flag (#277) * fixed makefile for goreleaser v2 changes (#278) * updated goreleaser versioning defaults (#279) * update feature_request.md (#274) * updated old references * updated actions workflow user * added dockerhub to github actions workflow * removed helm chart * added debug container and workflow * updated products flag description * updated chart for release * fixed workflow errors/warnings * fixed permissions on testdata * updated chart versions (will need to update again) * last bit of fixes to workflow * updated unit test workflow * updated goreleaser deprecations * added helm chart release job * updated github template names * updated imports (and go fmt) * formatted gitignore to match dockerignore * formatted all code (go fmt) * updated chart tests for new features * Adding the timeout flag for fileserver command * Configure chart commands to use helm clients for OCI and private registry support * Added some documentation text to sync command * Bump golang.org/x/net from 0.17.0 to 0.23.0 * fix for dup digest smashing in cosign * removed vagrant scripts * last bit of updates and formatting of chart * updated hauler testdata * adding functionality and cleaning up * added initial helm chart * removed tag in release workflow * updated/fixed image ref in release workflow * updated/fixed platforms in release workflow * updated/cleaned github actions (#222) * Make Product Registry configurable (#194) * updated fileserver directory name (#219) * fix logging for files * add extra info for the tempdir override flag * tempdir override flag for load * deprecate the cache flag instead of remove * switch to using bci-golang as builder image * fix: ensure /tmp for hauler store load * added the copy back for now * remove copy at the image sync not needed with cosign update * removed misleading cache flag * better logging when adding to store * update to v2.2.3 of our cosign fork * add: dockerignore * add: Dockerfile * Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 * Bump github.com/docker/docker * updated and added new logos * updated github files hauler-1.3.1-bp160.1.1.aarch64.rpm hauler-1.3.1-bp160.1.1.src.rpm hauler-1.3.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-55 Security update for chromium important openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: - Chromium 143.0.7499.109 (boo#1254776): * CVE-2025-14372: Use after free in Password Manager * CVE-2025-14373: Inappropriate implementation in Toolbar * third issue with an exploit is known to exist in the wild chromedriver-143.0.7499.40-bp160.1.1.x86_64.rpm chromium-143.0.7499.40-bp160.1.1.nosrc.rpm chromium-143.0.7499.40-bp160.1.1.x86_64.rpm chromedriver-143.0.7499.40-bp160.1.1.ppc64le.rpm chromium-143.0.7499.40-bp160.1.1.ppc64le.rpm chromedriver-143.0.7499.40-bp160.1.1.aarch64.rpm chromium-143.0.7499.40-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-56 Recommended update for labwc moderate openSUSE Backports SLE-16.0 This update for labwc fixes the following issues: Changes in labwc: - Fixed layershell unmap segfault when no outputs left (boo#1254386) labwc-0.8.1-bp160.2.1.aarch64.rpm labwc-0.8.1-bp160.2.1.src.rpm labwc-debuginfo-0.8.1-bp160.2.1.aarch64.rpm labwc-debugsource-0.8.1-bp160.2.1.aarch64.rpm labwc-lang-0.8.1-bp160.2.1.noarch.rpm labwc-0.8.1-bp160.2.1.ppc64le.rpm labwc-debuginfo-0.8.1-bp160.2.1.ppc64le.rpm labwc-debugsource-0.8.1-bp160.2.1.ppc64le.rpm labwc-0.8.1-bp160.2.1.s390x.rpm labwc-debuginfo-0.8.1-bp160.2.1.s390x.rpm labwc-debugsource-0.8.1-bp160.2.1.s390x.rpm labwc-0.8.1-bp160.2.1.x86_64.rpm labwc-debuginfo-0.8.1-bp160.2.1.x86_64.rpm labwc-debugsource-0.8.1-bp160.2.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-57 Recommended update for cmake-extras moderate openSUSE Backports SLE-16.0 This update for cmake-extras fixes the following issues: - Support both qmlplugindump-qt5 and qmlplugindump-qt6 (boo#1254531) - Fix filename and path of qmlplugindump-qt5 for openSUSE - Update to 1.9 * add support for CMake 4.0 - Update to 1.8 * GMock: wire dependencies between GMock step and library files * QmlPlugins: Crude support for qt6 cmake-extras-1.9-bp160.1.1.noarch.rpm cmake-extras-1.9-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-58 Optional update for rawtherapee moderate openSUSE Backports SLE-16.0 This update for rawtherapee fixes the following issues: Ship rawtherapee image editor. rawtherapee-5.12-bp160.3.1.src.rpm rawtherapee-5.12-bp160.3.1.x86_64.rpm rawtherapee-debuginfo-5.12-bp160.3.1.x86_64.rpm rawtherapee-debugsource-5.12-bp160.3.1.x86_64.rpm rawtherapee-5.12-bp160.3.1.s390x.rpm rawtherapee-debuginfo-5.12-bp160.3.1.s390x.rpm rawtherapee-debugsource-5.12-bp160.3.1.s390x.rpm rawtherapee-5.12-bp160.3.1.ppc64le.rpm rawtherapee-debuginfo-5.12-bp160.3.1.ppc64le.rpm rawtherapee-debugsource-5.12-bp160.3.1.ppc64le.rpm rawtherapee-5.12-bp160.3.1.aarch64.rpm rawtherapee-debuginfo-5.12-bp160.3.1.aarch64.rpm rawtherapee-debugsource-5.12-bp160.3.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-59 Security update for cheat important openSUSE Backports SLE-16.0 This update for cheat fixes the following issues: - Security: * CVE-2025-47913: Fix client process termination (bsc#1253593) * CVE-2025-58181: Fix potential unbounded memory consumption (bsc#1253922) * CVE-2025-47914: Fix panic due to an out of bounds read (bsc#1254051) * Replace golang.org/x/crypto=golang.org/x/crypto@v0.45.0 * Replace golang.org/x/net=golang.org/x/net@v0.47.0 * Replace golang.org/x/sys=golang.org/x/sys@v0.38.0 - Packaging improvements: * Drop Requires: golang-packaging. The recommended Go toolchain dependency expression is BuildRequires: golang(API) >= 1.x or optionally the metapackage BuildRequires: go * Use BuildRequires: golang(API) >= 1.19 matching go.mod * Build PIE with pattern that may become recommended procedure: %%ifnarch ppc64 GOFLAGS="-buildmode=pie" %%endif go build A go toolchain buildmode default config would be preferable but none exist at this time. * Drop mod=vendor, go1.14+ will detect vendor dir and auto-enable * Remove go build -o output binary location and name. Default binary has the same name as package of func main() and is placed in the top level of the build directory. * Add basic %check to execute binary --help - Packaging improvements: * Service go_modules replace dependencies with CVEs * Replace github.com/cloudflare/circl=github.com/cloudflare/circl@v1.6.1 Fix GO-2025-3754 GHSA-2x5j-vhc8-9cwm * Replace golang.org/x/net=golang.org/x/net@v0.36.0 Fixes GO-2025-3503 CVE-2025-22870 * Replace golang.org/x/crypto=golang.org/x/crypto@v0.35.0 Fixes GO-2023-2402 CVE-2023-48795 GHSA-45x7-px36-x8w8 Fixes GO-2025-3487 CVE-2025-22869 * Replace github.com/go-git/go-git/v5=github.com/go-git/go-git/v5@v5.13.0 Fixes GO-2025-3367 CVE-2025-21614 GHSA-r9px-m959-cxf4 Fixes GO-2025-3368 CVE-2025-21613 GHSA-v725-9546-7q7m * Service tar_scm set mode manual from disabled * Service tar_scm create archive from git so we can exclude vendor directory upstream committed to git. Committed vendor directory contents have build issues even after go mod tidy. * Service tar_scm exclude dir vendor * Service set_version set mode manual from disabled * Service set_version remove param basename not needed cheat-4.4.2-bp160.2.1.aarch64.rpm cheat-4.4.2-bp160.2.1.src.rpm cheat-debuginfo-4.4.2-bp160.2.1.aarch64.rpm cheat-4.4.2-bp160.2.1.ppc64le.rpm cheat-debuginfo-4.4.2-bp160.2.1.ppc64le.rpm cheat-4.4.2-bp160.2.1.s390x.rpm cheat-debuginfo-4.4.2-bp160.2.1.s390x.rpm cheat-4.4.2-bp160.2.1.x86_64.rpm cheat-debuginfo-4.4.2-bp160.2.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-6 Recommended update for lutris moderate openSUSE Backports SLE-16.0 This update for lutris fixes the following issues: - Move selinux dependency - Fix gaming under selinux (bsc#1206292) - Fix wrong placement of lang_package macro in spec file - Update to 0.5.19: * Fix Proton integration bugs so Proton-fixes are applied * Do not offer DXVK, VKD3D, D3D Extras or DDXVK-NVAPI on Proton versions; Proton will handle these. * The "Enable Esync" and "Enable Fsync" settings are now passed on to Proton * DXVK's integrated D8VK will be enabled in Proton * Emulator BIOS file location (used by libretro) may be set in Preferences * Obtain the release year from GOG and Itch.io. * MAME Machine setting uses a searchable entry for its enourmous list * Support for importing Commodore 64 ROMs - Add BuildRequires apparmor-abstractions, apparmor-rpm-macros for Leap, fix for build error: directories not owned by a package: /etc/apparmor.d - update to 0.5.18: * Lutris downloads the latest GE-Proton build for Wine if any Wine version is installed * Use dark theme by default * Display cover-art rather than banners by default * Add 'Uncategorized' view to sidebar * Preference options that do not work on Wayland will be hidden when on Wayland * Game searches can now use fancy tags like 'installed:yes' or 'source:gog', with explanatory tool-tip * A new filter button on the search box can build many of these fancy tags for you * Runner searches can use 'installed:yes' as well, but no other fancy searches or anything * Updated the Flathub and Amazon source to new APIs, restoring integration * Itch.io source integration will load a collection named 'Lutris' if present * GOG and Itch.io sources can now offer Linux and Windows installers for the same game * Added support for the 'foot' terminal * Support for DirectX 8 in DXVK v2.4 * Support for Ayatana Application Indicators * Additional options for Ruffle runner * Updated download links for the Atari800 and MicroM8 runners * No longer re-download cached installation files even when some are missing * Lutris log is included in the 'System' tab of the Preferences window * Improved error reporting, with the Lutris log included in the error details * Add AppArmor profile for Ubuntu versions >= 23.10 * Add Duckstation runner lutris-0.5.19-bp160.1.1.noarch.rpm lutris-0.5.19-bp160.1.1.src.rpm lutris-apparmor-0.5.19-bp160.1.1.noarch.rpm lutris-lang-0.5.19-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-60 Security update for chromium important openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Changes in chromium: Chromium 143.0.7499.146 (boo#1255115): * CVE-2025-14765: Use after free in WebGPU * CVE-2025-14766: Out of bounds read and write in V8 * CVE-2025-14174: Out of bounds memory access in ANGLE chromedriver-143.0.7499.146-bp160.1.1.x86_64.rpm chromium-143.0.7499.146-bp160.1.1.nosrc.rpm chromium-143.0.7499.146-bp160.1.1.x86_64.rpm chromedriver-143.0.7499.146-bp160.1.1.ppc64le.rpm chromium-143.0.7499.146-bp160.1.1.ppc64le.rpm chromedriver-143.0.7499.146-bp160.1.1.aarch64.rpm chromium-143.0.7499.146-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-61 Recommended update for icinga-php-thirdparty, icinga-php-library, icingaweb2 moderate openSUSE Backports SLE-16.0 This update for icinga-php-thirdparty, icinga-php-library, icingaweb2 fixes the following issues: Changes in icinga-php-thirdparty: - Update to 0.13.1 - No changelog from upstream. - Update to 0.12.1 - No changelog from upstream. Changes in icinga-php-library: - Update to 1.17.0 - No changelog from upstream. Changes in icingaweb2: - Update to 2.12.6 - Search box shows many magnifying glasses for some community themes #5395 - Authentication hooks are not called with external backends #5415 - Improve Minimal layout #5386 - Update to 2.12.5 * PHP 8.4 Support We're again a little behind schedule, but now we support PHP 8.4! This means that installations on Ubuntu 25.04 and Fedora 42+ can now install Icinga Web without worrying about PHP related incompatibilities. Icinga packages will be available in the next few days. * Good Things Take Time There's only a single (notable) recent issue that is fixed with this release. All the others are a bit older. - External URLs set up as dashlets are not embedded the same as navigation items #5346 * But the team sat together a few weeks ago and fixed a bug here and there. And of course, also in Icinga Web! - Users who are not allowed to change the theme, cannot change the theme mode either #5385 - Improved compatibility with several SSO authentication providers #5000, #5227 - Filtering for older-than events with relative time does not work #5263 - Empty values are NULL in CSV exports #5350 * Breaking, Somewhat This is mainly for developers. With the support of PHP 8.4, we introduced a new environment variable, ICINGAWEB_ENVIRONMENT. Unless set to dev, Icinga Web will not show nor log deprecation notices anymore. icinga-php-thirdparty-0.13.1-bp160.1.1.noarch.rpm icinga-php-thirdparty-0.13.1-bp160.1.1.src.rpm icinga-php-library-0.17.0-bp160.1.1.noarch.rpm icinga-php-library-0.17.0-bp160.1.1.src.rpm icingacli-2.12.6-bp160.1.1.noarch.rpm icingaweb2-2.12.6-bp160.1.1.noarch.rpm icingaweb2-2.12.6-bp160.1.1.src.rpm icingaweb2-common-2.12.6-bp160.1.1.noarch.rpm icingaweb2-php-fpm-2.12.6-bp160.1.1.noarch.rpm php-icinga-2.12.6-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-62 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: Thu Dec 18 03:54:10 UTC 2025 - okurz@suse.com - Update to version 5.1766014013.377e64fe: * feat(Needle::Save): Adapt to new error handling * feat(OpenQA::Git): Make error handling more flexible with exceptions - Update to version 5.1765887110.8fc02990: * Avoid partial deletion of a screenshot if Minion job is aborted * Add `SignalBlocker` to delay signal handling during critical sections - Update to version 5.1765805960.2112d43d: * fix(codecov): Fix wrong casing for 'fully_covered' entries - Update to version 5.1765535865.b566a24c: * fix(codecov): Be strict about coverage thresholds * Show jobs that have been cloned when `t` parameter is used on overview - Update to version 5.1765469360.5c0525b5: * worker: Add coverage for OVS DBus checks * Fix overview when filtering by test and module result at the same time * Return signal as part of run_cmd result * Add scanner for untracked screenshots * KTAP: Properly hide details of a skipped subtest * docs: Restory logic of the sentence about NFT vs firewalld * docs: Clarify DHCP/RA availability on MM networks * feat: Allow to configure key+secret with env variables - Update to version 5.1765286149.3debb8ea: * KTAP: Don't increment parsed_lines_count in "SKIP" lines * KTAP: Define unparsed_lines and parsed_lines_count - Update to version 5.1765217707.d6e697fd: * Test commenting on overview page together with TODO filter * Fix job IDs that are considered for mass-commenting on overview page - Update to version 5.1765009312.be30f6e0: * README: Remove left-over empty badge reference Changes in os-autoinst: - Update to version 5.1767623406.688dd0e: * os-autoinst-generate-needle-preview: Embed PNG * Tweak curl call not to hang * Fix opencv dependency due to upstream changes * Restore package builds on older openSUSE versions * Remove `ShellCheck` from devel dependencies on s390x - Update to version 5.1766037062.44c7d2a: * Tweak curl call not to hang * Fix opencv dependency due to upstream changes * Restore package builds on older openSUSE versions * Remove `ShellCheck` from devel dependencies on s390x * Remove obsolete 'bin/' folder - Update to version 5.1765976654.0026f92: * Fix opencv dependency due to upstream changes * Restore package builds on older openSUSE versions * Remove `ShellCheck` from devel dependencies on s390x * Remove obsolete 'bin/' folder * Improve documentation strings for get/check_var - Update to version 5.1765808557.b89e9b4: * Restore package builds on older openSUSE versions * Remove `ShellCheck` from devel dependencies on s390x * Remove obsolete 'bin/' folder * Simplify the code to increment the counter * audio: Allow for multiple audio recordings per test - Update to version 5.1765804109.1e7c99a: * Remove `ShellCheck` from devel dependencies on s390x * Remove obsolete 'bin/' folder * Simplify the code to increment the counter * audio: Allow for multiple audio recordings per test * Improve documentation strings for get/check_var - Update to version 5.1765533145.a82864c: * Remove obsolete 'bin/' folder * Simplify the code to increment the counter * audio: Allow for multiple audio recordings per test * Improve documentation strings for get/check_var * Add port forwarding example for NICTYPE_USER_OPTIONS - Update to version 5.1765450253.f16e6ac: * Simplify the code to increment the counter * audio: Allow for multiple audio recordings per test * Improve documentation strings for get/check_var * Add port forwarding example for NICTYPE_USER_OPTIONS * Fix regression from abcaa66b by disabling virtio-keyboard by default * distribution: Add "disable_key_repeat" * Use 'virtio-keyboard' by default to allow fixing key repetition errors - Update to version 5.1765311639.7e3a762: * Simplify the code to increment the counter * audio: Allow for multiple audio recordings per test * Add port forwarding example for NICTYPE_USER_OPTIONS * Fix regression from abcaa66b by disabling virtio-keyboard by default * Add IPv6 support for multi machine tests Changes in openQA-devel-container: - Update to version 5.1766014013.377e64fe9: * Update to latest openQA version openQA-5.1766014013.377e64fe-bp160.1.1.src.rpm openQA-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-auto-update-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-client-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-common-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-devel-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-doc-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-local-db-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-mcp-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-munin-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-single-instance-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm openQA-worker-5.1766014013.377e64fe-bp160.1.1.x86_64.rpm os-autoinst-5.1767623406.688dd0e-bp160.1.1.src.rpm os-autoinst-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1767623406.688dd0e-bp160.1.1.x86_64.rpm openQA-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-auto-update-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-bootstrap-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-client-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-common-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-continuous-update-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-devel-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-doc-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-local-db-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-mcp-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-munin-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-python-scripts-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-single-instance-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1766014013.377e64fe-bp160.1.1.s390x.rpm openQA-worker-5.1766014013.377e64fe-bp160.1.1.s390x.rpm os-autoinst-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-devel-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1767623406.688dd0e-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1767623406.688dd0e-bp160.1.1.s390x.rpm openQA-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-client-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-common-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-devel-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-doc-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-local-db-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-mcp-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-munin-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm openQA-worker-5.1766014013.377e64fe-bp160.1.1.ppc64le.rpm os-autoinst-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1767623406.688dd0e-bp160.1.1.ppc64le.rpm openQA-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-auto-update-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-client-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-common-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-devel-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-doc-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-local-db-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-mcp-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-munin-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-single-instance-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm openQA-worker-5.1766014013.377e64fe-bp160.1.1.aarch64.rpm os-autoinst-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1767623406.688dd0e-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-63 Recommended update for trivy moderate openSUSE Backports SLE-16.0 This update for trivy fixes the following issues: - Update to version 0.68.2: * release: v0.68.2 [release/v0.68] (#9950) * fix(deps): bump alpine from `3.22.1` to `3.23.0` [backport: release/v0.68] (#9949) * ci: enable `check-latest` for `setup-go` [backport: release/v0.68] (#9946) trivy-0.68.2-bp160.1.1.src.rpm trivy-0.68.2-bp160.1.1.x86_64.rpm trivy-0.68.2-bp160.1.1.s390x.rpm trivy-0.68.2-bp160.1.1.ppc64le.rpm trivy-0.68.2-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-64 Security update for chromium important openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Changes in chromium: - Chromium 143.0.7499.192 (boo#1256067): * CVE-2026-0628: Insufficient policy enforcement in WebView tag - Chromium 143.0.7499.169 (stable released 2025-12-18) * no cve listed yet chromedriver-143.0.7499.192-bp160.1.1.x86_64.rpm chromium-143.0.7499.192-bp160.1.1.nosrc.rpm chromium-143.0.7499.192-bp160.1.1.x86_64.rpm chromedriver-143.0.7499.192-bp160.1.1.ppc64le.rpm chromium-143.0.7499.192-bp160.1.1.ppc64le.rpm chromedriver-143.0.7499.192-bp160.1.1.aarch64.rpm chromium-143.0.7499.192-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-65 Recommended update for ranger moderate openSUSE Backports SLE-16.0 This update for ranger fixes the following issues: - Update to version 1.9.4+git20250910.3f7a3546: * img_display: Avoid unicode escape sequences for Ueberzug input * man: fix documentation of which license ranger uses exactly * rifle: fixed+clarified usage string - Update to version 1.9.4+git20250604.7e38143: * fixed bug with command info staying * Revert "fixed open_with bugginess" * fixed open_with bugginess * commands: Reword comment for brevity and accuracy * GHActions: Pass config_files rather than boolean to flake8 * commands: Disable invalid-name and too-many-lines pylints * Pylint: Disable invalid-name and too-many-lines for commands.py * add :unnarrow to disable :narrow mode * rifle: Update version - Update to version 1.9.4+git20250305.7ad50fa: * 7-zip now has an official Linux version (7zz) * add: support for tilde in bookmarks * img_display: address PR feedback * docs: kitty image previews are supported in other terminals now * img_display: auto-detect support for kitty image previews * rifle(terminals): support auto-detecting ghostty terminal emulator * Modified order of expantions in peview_script * Add GNOME papers to document viewers * Added ability to use environmental variables in preview_script option * doc: Regenerate man pages to have the proper version * Makefile: Update version Grep since adding logo to README * ranger/__init__: Caught another unbumped version * mime.types: Add .nim extension for text/plain * Fixed mistooks of nim scripts as a video aNIMations in rifle.conf * GHActions: Pypy don't run old Flake8/Pylint * GHActions: Use Pypy 3.10 * actions: Use keywords for rifle.execute * runner: Allow action as positional argument * ui: Refresh window in initialize * ui: endwin already sets cursor to normal visibility * requirements: Add setuptools * img_display: Silence no-member false positive * core/main: Drop unused variable prefix_length * core,ext: Avoid return in finally shadowing return value * test_py2_compat: Prevent use of yield from * core,ext: Reduce positional arguments where possible * pager,history: Replace branch with min/max builtins * Pylint: Update custom checker for compatibility with 3.3.1 * GHActions: Bump action versions * README: Use forge-agnostic URL * README: Capitalize ranger * README: Bump version * README: Replace Travis with GHActions badge * README: Center header * make logo in readme wider * move the ranger logo to the very top * Add option confirm_on_trash * Fix typos * Add IINA to rifle.conf * browsercolumn: ANSI escape codes support * #1182: Fix signals for OS X - Update to version 1.9.3+git20240801.bd9b37f: * properly decode file:// urls given to ranger as argument (fixes #2900) * fix #2873 WM_NAME now shows "not accessible" in non-existent directories * Fixed inconsistency in ranger documentation where it was stated that commanding 'linemode humanreadablesizemtime' changed the linemode to display human readable modification time and file size, but the correct command for this is 'linemode sizehumanreadablemtime' * README: fix link formatting on github's markdown renderer * README: add liberapay badge * Mention viewmode key binding in man ranger-1.9.4+git20250910.3f7a3546-bp160.1.1.noarch.rpm ranger-1.9.4+git20250910.3f7a3546-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-66 Security update for matio important openSUSE Backports SLE-16.0 This update for matio fixes the following issues: - update to version 1.5.29: * Fix printing rank-1-variable in Mat_VarPrint * Fix array index out of bounds in Mat_VarPrint when printing UTF-8 character data (boo#1239678, CVE-2025-2337) * Fix heap-based buffer overflow in strdup_vprintf (boo#1239677, CVE-2025-2338) * Changed Mat_VarPrint to print all values of rank-2-variable * Several other fixes, for example for access violations in Mat_VarPrint - Update to version 1.5.28: * Fixed bug writing MAT_T_INT8/MAT_T_UINT8 encoded character array to compressed v5 MAT file (regression of v1.5.12). * Fixed bug reading all-zero sparse array of v4 MAT file (regression of v1.5.18). * Updated C99 snprintf.c. * CMake: Enabled testing. * Several other fixes, for example for access violations in Mat_VarPrint. libmatio-devel-1.5.29-bp160.1.1.x86_64.rpm libmatio13-1.5.29-bp160.1.1.x86_64.rpm libmatio13-debuginfo-1.5.29-bp160.1.1.x86_64.rpm matio-1.5.29-bp160.1.1.src.rpm matio-debuginfo-1.5.29-bp160.1.1.x86_64.rpm matio-debugsource-1.5.29-bp160.1.1.x86_64.rpm matio-tools-1.5.29-bp160.1.1.x86_64.rpm matio-tools-debuginfo-1.5.29-bp160.1.1.x86_64.rpm libmatio-devel-1.5.29-bp160.1.1.s390x.rpm libmatio13-1.5.29-bp160.1.1.s390x.rpm libmatio13-debuginfo-1.5.29-bp160.1.1.s390x.rpm matio-debuginfo-1.5.29-bp160.1.1.s390x.rpm matio-debugsource-1.5.29-bp160.1.1.s390x.rpm matio-tools-1.5.29-bp160.1.1.s390x.rpm matio-tools-debuginfo-1.5.29-bp160.1.1.s390x.rpm libmatio-devel-1.5.29-bp160.1.1.ppc64le.rpm libmatio13-1.5.29-bp160.1.1.ppc64le.rpm libmatio13-debuginfo-1.5.29-bp160.1.1.ppc64le.rpm matio-debuginfo-1.5.29-bp160.1.1.ppc64le.rpm matio-debugsource-1.5.29-bp160.1.1.ppc64le.rpm matio-tools-1.5.29-bp160.1.1.ppc64le.rpm matio-tools-debuginfo-1.5.29-bp160.1.1.ppc64le.rpm libmatio-devel-1.5.29-bp160.1.1.aarch64.rpm libmatio13-1.5.29-bp160.1.1.aarch64.rpm libmatio13-debuginfo-1.5.29-bp160.1.1.aarch64.rpm matio-debuginfo-1.5.29-bp160.1.1.aarch64.rpm matio-debugsource-1.5.29-bp160.1.1.aarch64.rpm matio-tools-1.5.29-bp160.1.1.aarch64.rpm matio-tools-debuginfo-1.5.29-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-67 Recommended update for grub2-compat-ia32 moderate openSUSE Backports SLE-16.0 This update for grub2-compat-ia32 fixes the following issues: - Drop update-bootloader --get as it returns 0 even if the variable is unset - Add update-bootloader also into post and postun Requires grub2-compat-ia32-1-bp160.2.1.noarch.rpm grub2-compat-ia32-1-bp160.2.1.src.rpm openSUSE-Leap-16.0-packagehub-68 Optional update for certbot moderate openSUSE Backports SLE-16.0 This update for certbot fixes the following issues: Various certbot packages and dependencies are being added. certbot-systemd-timer-0.0-bp160.1.1.noarch.rpm certbot-systemd-timer-0.0-bp160.1.1.src.rpm python-augeas-1.2.0-bp160.1.1.src.rpm python-augeas-debugsource-1.2.0-bp160.1.1.x86_64.rpm python313-augeas-1.2.0-bp160.1.1.x86_64.rpm python313-augeas-debuginfo-1.2.0-bp160.1.1.x86_64.rpm python-bson-0.5.10-bp160.1.1.src.rpm python313-bson-0.5.10-bp160.1.1.noarch.rpm python-certbot-apache-5.1.0-bp160.1.1.src.rpm python313-certbot-apache-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-cloudflare-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-cloudflare-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-digitalocean-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-digitalocean-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-dnsimple-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-dnsimple-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-dnsmadeeasy-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-dnsmadeeasy-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-linode-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-linode-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-luadns-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-luadns-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-nsone-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-nsone-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-ovh-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-ovh-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-rfc2136-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-rfc2136-5.1.0-bp160.1.1.noarch.rpm python-certbot-dns-route53-5.1.0-bp160.1.1.src.rpm python313-certbot-dns-route53-5.1.0-bp160.1.1.noarch.rpm python-cloudflare-2.20.0-bp160.1.1.src.rpm python313-cloudflare-2.20.0-bp160.1.1.noarch.rpm python-digitalocean-1.17.0-bp160.1.1.src.rpm python313-digitalocean-1.17.0-bp160.1.1.noarch.rpm python-dns-lexicon-3.23.2-bp160.1.1.src.rpm python313-dns-lexicon-3.23.2-bp160.1.1.noarch.rpm python-jsonlines-4.0.0-bp160.1.1.src.rpm python313-jsonlines-4.0.0-bp160.1.1.noarch.rpm python-jsonpickle-4.1.1-bp160.1.1.src.rpm python313-jsonpickle-4.1.1-bp160.1.1.noarch.rpm python-localzone-0.9.8-bp160.1.1.src.rpm python313-localzone-0.9.8-bp160.1.1.noarch.rpm python-pytest-httpx-0.35.0-bp160.1.1.src.rpm python313-pytest-httpx-0.35.0-bp160.1.1.noarch.rpm python-requests-file-2.1.0-bp160.1.1.src.rpm python313-requests-file-2.1.0-bp160.1.1.noarch.rpm python-softlayer-6.2.7-bp160.1.1.src.rpm python313-softlayer-6.2.7-bp160.1.1.noarch.rpm python-softlayer-zeep-5.0.0-bp160.1.1.src.rpm python313-softlayer-zeep-5.0.0-bp160.1.1.noarch.rpm python-tldextract-5.3.0-bp160.1.1.src.rpm python313-tldextract-5.3.0-bp160.1.1.noarch.rpm python-augeas-debugsource-1.2.0-bp160.1.1.s390x.rpm python313-augeas-1.2.0-bp160.1.1.s390x.rpm python313-augeas-debuginfo-1.2.0-bp160.1.1.s390x.rpm python-augeas-debugsource-1.2.0-bp160.1.1.ppc64le.rpm python313-augeas-1.2.0-bp160.1.1.ppc64le.rpm python313-augeas-debuginfo-1.2.0-bp160.1.1.ppc64le.rpm python-augeas-debugsource-1.2.0-bp160.1.1.aarch64.rpm python313-augeas-1.2.0-bp160.1.1.aarch64.rpm python313-augeas-debuginfo-1.2.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-69 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: Thu Jan 08 10:09:35 UTC 2026 - okurz@suse.com - Update to version 5.1767864265.63cd20df: * Skip caching for KERNEL and INITRD variables - Update to version 5.1766150951.2799046e: * Coverage of openQA: add folder Client/ in codecov.yaml * Improve openQA coverage of _download_handler in Archive.pm - Update to version 5.1766053374.57cdeee3: * fix(docs): Fix indentation in job template examples Changes in os-autoinst: - Update to version 5.1767893100.fd5003c: * Add documentation of APPEND variable * Add undocumented KERNEL/INITRD to the supported variables * os-autoinst-generate-needle-preview: Embed PNG * Tweak curl call not to hang * Fix opencv dependency due to upstream changes Changes in openQA-devel-container: - Update to version 5.1767864265.63cd20dfc: * Update to latest openQA version openQA-5.1767864265.63cd20df-bp160.1.1.src.rpm openQA-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-auto-update-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-client-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-common-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-devel-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-doc-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-local-db-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-mcp-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-munin-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-single-instance-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm openQA-worker-5.1767864265.63cd20df-bp160.1.1.x86_64.rpm os-autoinst-5.1767893100.fd5003c-bp160.1.1.src.rpm os-autoinst-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1767893100.fd5003c-bp160.1.1.x86_64.rpm openQA-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-auto-update-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-bootstrap-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-client-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-common-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-continuous-update-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-devel-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-doc-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-local-db-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-mcp-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-munin-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-python-scripts-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-single-instance-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1767864265.63cd20df-bp160.1.1.s390x.rpm openQA-worker-5.1767864265.63cd20df-bp160.1.1.s390x.rpm os-autoinst-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-devel-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1767893100.fd5003c-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1767893100.fd5003c-bp160.1.1.s390x.rpm openQA-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-client-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-common-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-devel-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-doc-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-local-db-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-mcp-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-munin-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm openQA-worker-5.1767864265.63cd20df-bp160.1.1.ppc64le.rpm os-autoinst-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1767893100.fd5003c-bp160.1.1.ppc64le.rpm openQA-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-auto-update-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-client-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-common-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-devel-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-doc-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-local-db-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-mcp-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-munin-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-single-instance-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm openQA-worker-5.1767864265.63cd20df-bp160.1.1.aarch64.rpm os-autoinst-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1767893100.fd5003c-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-7 Security update for warewulf4 important openSUSE Backports SLE-16.0 This update for warewulf4 fixes the following issues: Changes in warewulf4: - Update to version 4.6.4: * v4.6.4 release updates * Convert disk booleans from wwbool to *bool which allows bools in disk to be set to false via command line (bsc#1248768) * Update NetworkManager Overlay * Disable ipv4 in NetworkManager if no address or route is specified * fix(wwctl): Create overlay edit tempfile in tmpdir * Add default for systemd name for warewulf in warewulf.conf * Atomic overlay file application in wwclient * Simpler names for overlay methods * Fix warewulfd api behavior when deleting distribution overlay - Update to version 4.6.3: * v4.6.3 release * IPv6 iPXE support * Fix a syntax error in the RPM specfile * Fix a race condition in wwctl overlay edit * Fixed handling of comma-separated mount options in `fstab` and `ignition` overlays * Move reexec.Init() to beginning of wwctl * Add documentation for using tmpfs to distribute across numa nodes * added warewuld configure option * Fix wwctl upgrade nodes to handle kernel argument lists (bsc#1227686 bsc#1227465) * Address copilot review from #1945 * Refactor wwapi tests for proper isolation * Bugfix: cloning a site overlay when parent dir does not exist * Clone to a site overlay when adding files in wwapi * Consolidated createOverlayFile and updateOverlayFile to addOverlayFile * Support for creating and updating overlay file in wwapi * Only return overlay files that refer to a path within the overlay * add overlay file deletion support * DELETE /api/overlays/{id}?force=true can delete overlays in use * Restore idempotency of PUT /api/nodes/{id} * Simplify overlay mtime api and add tests * add node overlay buildtime * Improved netplan support * Rebuild overlays for discovered nodes * Restrict userdocs from building during pr when not modified * Update to v4.6.2 GitHub release notes warewulf4-4.6.4-bp160.1.1.aarch64.rpm warewulf4-4.6.4-bp160.1.1.src.rpm warewulf4-debuginfo-4.6.4-bp160.1.1.aarch64.rpm warewulf4-dracut-4.6.4-bp160.1.1.noarch.rpm warewulf4-man-4.6.4-bp160.1.1.noarch.rpm warewulf4-overlay-4.6.4-bp160.1.1.aarch64.rpm warewulf4-overlay-debuginfo-4.6.4-bp160.1.1.aarch64.rpm warewulf4-overlay-rke2-4.6.4-bp160.1.1.noarch.rpm warewulf4-overlay-slurm-4.6.4-bp160.1.1.noarch.rpm warewulf4-reference-doc-4.6.4-bp160.1.1.noarch.rpm warewulf4-4.6.4-bp160.1.1.x86_64.rpm warewulf4-debuginfo-4.6.4-bp160.1.1.x86_64.rpm warewulf4-overlay-4.6.4-bp160.1.1.x86_64.rpm warewulf4-overlay-debuginfo-4.6.4-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-70 Security update for wget2 important openSUSE Backports SLE-16.0 This update for wget2 fixes the following issues: Changes in wget2: - Update to release 2.2.1 * Fix file overwrite issue with metalink [CVE-2025-69194 bsc#1255728] * Fix remote buffer overflow in get_local_filename_real() [CVE-2025-69195 bsc#1255729] * Fix a redirect/mirror regression from 400713ca * Use the local system timestamp when requested via --no-use-server-timestamps * Prevent file truncation with --no-clobber * Improve messages about why URLs are not being followed * Fix metalink with -O/--output-document * Fix sorting of metalink mirrors by priority * Add --show-progress to improve backwards compatibility to wget * Fix buffer overflow in wget_iri_clone() after wget_iri_set_scheme() * Allow 'no_' prefix in config options * Use libnghttp2 for HTTP/2 testing * Set exit status to 8 on 403 response code * Fix convert-links * Fix --server-response for HTTP/1.1 - Update to release 2.2.0 * Don't truncate file when -c and -O are combined * Don't log URI userinfo to logs * Fix downloading multiple files via HTTP/2 * Support connecting with HTTP/1.0 proxies * Ignore 1xx HTTP responses for HTTP/1.1 * Disable TCP Fast Open by default * Fix segfault when OCSP response is missing * Add libproxy support libwget4-2.2.1-bp160.1.1.x86_64.rpm libwget4-debuginfo-2.2.1-bp160.1.1.x86_64.rpm wget2-2.2.1-bp160.1.1.src.rpm wget2-2.2.1-bp160.1.1.x86_64.rpm wget2-debuginfo-2.2.1-bp160.1.1.x86_64.rpm wget2-debugsource-2.2.1-bp160.1.1.x86_64.rpm wget2-devel-2.2.1-bp160.1.1.x86_64.rpm libwget4-2.2.1-bp160.1.1.s390x.rpm libwget4-debuginfo-2.2.1-bp160.1.1.s390x.rpm wget2-2.2.1-bp160.1.1.s390x.rpm wget2-debuginfo-2.2.1-bp160.1.1.s390x.rpm wget2-debugsource-2.2.1-bp160.1.1.s390x.rpm wget2-devel-2.2.1-bp160.1.1.s390x.rpm libwget4-2.2.1-bp160.1.1.ppc64le.rpm libwget4-debuginfo-2.2.1-bp160.1.1.ppc64le.rpm wget2-2.2.1-bp160.1.1.ppc64le.rpm wget2-debuginfo-2.2.1-bp160.1.1.ppc64le.rpm wget2-debugsource-2.2.1-bp160.1.1.ppc64le.rpm wget2-devel-2.2.1-bp160.1.1.ppc64le.rpm libwget4-2.2.1-bp160.1.1.aarch64.rpm libwget4-debuginfo-2.2.1-bp160.1.1.aarch64.rpm wget2-2.2.1-bp160.1.1.aarch64.rpm wget2-debuginfo-2.2.1-bp160.1.1.aarch64.rpm wget2-debugsource-2.2.1-bp160.1.1.aarch64.rpm wget2-devel-2.2.1-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-71 Recommended update for knot moderate openSUSE Backports SLE-16.0 This update for knot fixes the following issues: - update to version 3.5.2, see https://www.knot-dns.cz/2025-11-28-version-352.html knot-3.5.2-bp160.1.1.src.rpm knot-3.5.2-bp160.1.1.x86_64.rpm knot-debuginfo-3.5.2-bp160.1.1.x86_64.rpm knot-debugsource-3.5.2-bp160.1.1.x86_64.rpm knot-devel-3.5.2-bp160.1.1.x86_64.rpm knot-utils-3.5.2-bp160.1.1.x86_64.rpm knot-utils-debuginfo-3.5.2-bp160.1.1.x86_64.rpm libdnssec10-3.5.2-bp160.1.1.x86_64.rpm libdnssec10-debuginfo-3.5.2-bp160.1.1.x86_64.rpm libknot16-3.5.2-bp160.1.1.x86_64.rpm libknot16-debuginfo-3.5.2-bp160.1.1.x86_64.rpm libzscanner5-3.5.2-bp160.1.1.x86_64.rpm libzscanner5-debuginfo-3.5.2-bp160.1.1.x86_64.rpm knot-3.5.2-bp160.1.1.s390x.rpm knot-debuginfo-3.5.2-bp160.1.1.s390x.rpm knot-debugsource-3.5.2-bp160.1.1.s390x.rpm knot-devel-3.5.2-bp160.1.1.s390x.rpm knot-utils-3.5.2-bp160.1.1.s390x.rpm knot-utils-debuginfo-3.5.2-bp160.1.1.s390x.rpm libdnssec10-3.5.2-bp160.1.1.s390x.rpm libdnssec10-debuginfo-3.5.2-bp160.1.1.s390x.rpm libknot16-3.5.2-bp160.1.1.s390x.rpm libknot16-debuginfo-3.5.2-bp160.1.1.s390x.rpm libzscanner5-3.5.2-bp160.1.1.s390x.rpm libzscanner5-debuginfo-3.5.2-bp160.1.1.s390x.rpm knot-3.5.2-bp160.1.1.ppc64le.rpm knot-debuginfo-3.5.2-bp160.1.1.ppc64le.rpm knot-debugsource-3.5.2-bp160.1.1.ppc64le.rpm knot-devel-3.5.2-bp160.1.1.ppc64le.rpm knot-utils-3.5.2-bp160.1.1.ppc64le.rpm knot-utils-debuginfo-3.5.2-bp160.1.1.ppc64le.rpm libdnssec10-3.5.2-bp160.1.1.ppc64le.rpm libdnssec10-debuginfo-3.5.2-bp160.1.1.ppc64le.rpm libknot16-3.5.2-bp160.1.1.ppc64le.rpm libknot16-debuginfo-3.5.2-bp160.1.1.ppc64le.rpm libzscanner5-3.5.2-bp160.1.1.ppc64le.rpm libzscanner5-debuginfo-3.5.2-bp160.1.1.ppc64le.rpm knot-3.5.2-bp160.1.1.aarch64.rpm knot-debuginfo-3.5.2-bp160.1.1.aarch64.rpm knot-debugsource-3.5.2-bp160.1.1.aarch64.rpm knot-devel-3.5.2-bp160.1.1.aarch64.rpm knot-utils-3.5.2-bp160.1.1.aarch64.rpm knot-utils-debuginfo-3.5.2-bp160.1.1.aarch64.rpm libdnssec10-3.5.2-bp160.1.1.aarch64.rpm libdnssec10-debuginfo-3.5.2-bp160.1.1.aarch64.rpm libknot16-3.5.2-bp160.1.1.aarch64.rpm libknot16-debuginfo-3.5.2-bp160.1.1.aarch64.rpm libzscanner5-3.5.2-bp160.1.1.aarch64.rpm libzscanner5-debuginfo-3.5.2-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-72 Security update for MozillaThunderbird important openSUSE Backports SLE-16.0 This update for MozillaThunderbird fixes the following issues: Changes in MozillaThunderbird: - Mozilla Thunderbird 140.6.0 ESR MFSA 2025-96 (bsc#1254551) * CVE-2025-14321 (bmo#1992760) Use-after-free in the WebRTC: Signaling component * CVE-2025-14322 (bmo#1996473) Sandbox escape due to incorrect boundary conditions in the Graphics: CanvasWebGL component * CVE-2025-14323 (bmo#1996555) Privilege escalation in the DOM: Notifications component * CVE-2025-14324 (bmo#1996840) JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14325 (bmo#1998050) JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14328 (bmo#1996761) Privilege escalation in the Netmonitor component * CVE-2025-14329 (bmo#1997018) Privilege escalation in the Netmonitor component * CVE-2025-14330 (bmo#1997503) JIT miscompilation in the JavaScript Engine: JIT component * CVE-2025-14331 (bmo#2000218) Same-origin policy bypass in the Request Handling component * CVE-2025-14333 (bmo#1966501, bmo#1997639) Memory safety bugs fixed in Firefox ESR 140.6, Thunderbird ESR 140.6, Firefox 146 and Thunderbird 146 MozillaThunderbird-140.6.0-bp160.1.1.src.rpm MozillaThunderbird-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debuginfo-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-debugsource-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-common-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-translations-other-140.6.0-bp160.1.1.x86_64.rpm MozillaThunderbird-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-debuginfo-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-debugsource-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-common-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-translations-other-140.6.0-bp160.1.1.s390x.rpm MozillaThunderbird-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debuginfo-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-debugsource-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-common-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-translations-other-140.6.0-bp160.1.1.ppc64le.rpm MozillaThunderbird-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debuginfo-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-debugsource-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-openpgp-librnp-debuginfo-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-common-140.6.0-bp160.1.1.aarch64.rpm MozillaThunderbird-translations-other-140.6.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-73 Recommended update for apache2-mod_wsgi moderate openSUSE Backports SLE-16.0 This update for apache2-mod_wsgi fixes the following issues: Changes in apache2-mod_wsgi: - Don't enable the module by default. Instead, include instructions in the description, consistent with other comparable modules, such as apache2-mod_fcgid, apache2-mod_jk and apache2-mod_mono. If a reverse dependency of this module requires it, that package may execute `a2enmod wsgi`. Update to 5.0.2 includes changes from 5.0.1: * Eliminate noise in logs under Python 3.13 when Python garbage collection decides to delay destruction of objects until a second phase, resulting in the wsgi.errors log object being accessed after the request had been completed and the log object marked as invalid. This resulted due to changes in garbage collection behaviour in Python 3.13. * Internally, when using Python 3.8 or newer, the PyConfig API will now be used due to deprecation and future removal of older C API alternatives. This was required to support Python 3.13. * Fix issue which could result in process crashing when values were supplied for user/password/realm of HTTP basic authentication which weren’t compliant with UTF-8 encoding format. * Fix memory leak in check_password() authentication hook handler. * Change use of deprecated thread.setDaemon to thread.daemon. apache2-mod_wsgi-5.0.2-bp160.1.1.src.rpm apache2-mod_wsgi-5.0.2-bp160.1.1.x86_64.rpm apache2-mod_wsgi-debuginfo-5.0.2-bp160.1.1.x86_64.rpm apache2-mod_wsgi-debugsource-5.0.2-bp160.1.1.x86_64.rpm apache2-mod_wsgi-5.0.2-bp160.1.1.s390x.rpm apache2-mod_wsgi-debuginfo-5.0.2-bp160.1.1.s390x.rpm apache2-mod_wsgi-debugsource-5.0.2-bp160.1.1.s390x.rpm apache2-mod_wsgi-5.0.2-bp160.1.1.ppc64le.rpm apache2-mod_wsgi-debuginfo-5.0.2-bp160.1.1.ppc64le.rpm apache2-mod_wsgi-debugsource-5.0.2-bp160.1.1.ppc64le.rpm apache2-mod_wsgi-5.0.2-bp160.1.1.aarch64.rpm apache2-mod_wsgi-debuginfo-5.0.2-bp160.1.1.aarch64.rpm apache2-mod_wsgi-debugsource-5.0.2-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-74 Recommended update for fcitx5 moderate openSUSE Backports SLE-16.0 This update for fcitx5 fixes the following issues: - Use return instead of exit in 20-fcitx-plasma-setup.sh (boo#1255237) - Replace "IBus" with "Fcitx" in a log message fcitx5-5.1.13-bp160.3.1.src.rpm fcitx5-5.1.13-bp160.3.1.x86_64.rpm fcitx5-debuginfo-5.1.13-bp160.3.1.x86_64.rpm fcitx5-debugsource-5.1.13-bp160.3.1.x86_64.rpm fcitx5-devel-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Config6-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Config6-debuginfo-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Core7-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Core7-debuginfo-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Utils2-5.1.13-bp160.3.1.x86_64.rpm libFcitx5Utils2-debuginfo-5.1.13-bp160.3.1.x86_64.rpm fcitx5-5.1.13-bp160.3.1.s390x.rpm fcitx5-debuginfo-5.1.13-bp160.3.1.s390x.rpm fcitx5-debugsource-5.1.13-bp160.3.1.s390x.rpm fcitx5-devel-5.1.13-bp160.3.1.s390x.rpm libFcitx5Config6-5.1.13-bp160.3.1.s390x.rpm libFcitx5Config6-debuginfo-5.1.13-bp160.3.1.s390x.rpm libFcitx5Core7-5.1.13-bp160.3.1.s390x.rpm libFcitx5Core7-debuginfo-5.1.13-bp160.3.1.s390x.rpm libFcitx5Utils2-5.1.13-bp160.3.1.s390x.rpm libFcitx5Utils2-debuginfo-5.1.13-bp160.3.1.s390x.rpm fcitx5-5.1.13-bp160.3.1.ppc64le.rpm fcitx5-debuginfo-5.1.13-bp160.3.1.ppc64le.rpm fcitx5-debugsource-5.1.13-bp160.3.1.ppc64le.rpm fcitx5-devel-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Config6-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Config6-debuginfo-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Core7-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Core7-debuginfo-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Utils2-5.1.13-bp160.3.1.ppc64le.rpm libFcitx5Utils2-debuginfo-5.1.13-bp160.3.1.ppc64le.rpm fcitx5-5.1.13-bp160.3.1.aarch64.rpm fcitx5-debuginfo-5.1.13-bp160.3.1.aarch64.rpm fcitx5-debugsource-5.1.13-bp160.3.1.aarch64.rpm fcitx5-devel-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Config6-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Config6-debuginfo-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Core7-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Core7-debuginfo-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Utils2-5.1.13-bp160.3.1.aarch64.rpm libFcitx5Utils2-debuginfo-5.1.13-bp160.3.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-75 Recommended update for flint moderate openSUSE Backports SLE-16.0 This update for flint fixes the following issues: Changes in flint: - Fixed a compile error for downstream users when using -std=c23 or a newer GCC which defaults to such. flint-3.1.3-bp160.2.1.src.rpm flint-debugsource-3.1.3-bp160.2.1.x86_64.rpm flint-devel-3.1.3-bp160.2.1.x86_64.rpm libflint19-3.1.3-bp160.2.1.x86_64.rpm libflint19-debuginfo-3.1.3-bp160.2.1.x86_64.rpm flint-debugsource-3.1.3-bp160.2.1.s390x.rpm flint-devel-3.1.3-bp160.2.1.s390x.rpm libflint19-3.1.3-bp160.2.1.s390x.rpm libflint19-debuginfo-3.1.3-bp160.2.1.s390x.rpm flint-debugsource-3.1.3-bp160.2.1.ppc64le.rpm flint-devel-3.1.3-bp160.2.1.ppc64le.rpm libflint19-3.1.3-bp160.2.1.ppc64le.rpm libflint19-debuginfo-3.1.3-bp160.2.1.ppc64le.rpm flint-debugsource-3.1.3-bp160.2.1.aarch64.rpm flint-devel-3.1.3-bp160.2.1.aarch64.rpm libflint19-3.1.3-bp160.2.1.aarch64.rpm libflint19-debuginfo-3.1.3-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-76 Optional update for dehydrated moderate openSUSE Backports SLE-16.0 This update for dehydrated fixes the following issues: Adds dehydrated to PackageHub / Leap 16.0. dehydrated-0.7.1-bp160.1.1.noarch.rpm dehydrated-0.7.1-bp160.1.1.src.rpm dehydrated-apache2-0.7.1-bp160.1.1.noarch.rpm dehydrated-nginx-0.7.1-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-77 Recommended update for polymake, cddlib moderate openSUSE Backports SLE-16.0 This update for polymake, cddlib fixes the following issues: Changes in polymake: - Enable polydb for Tumbleweed / suse_version >=1690 - Reenable callable library mode [boo#1256453] - Update to release 4.15 * graph: graphviz: use PDF instead of PS * polytope: MILP: allow non-rational coordinates * Some bugfixes - Update to release 4.14 * tropical: cone: refactoring and fixes for DOME, COVECTORs and PSEUDOVERTICES * tropical: polytope: fix vertices computation * tropical: hypersurface: fixes for monomials and binomials - Update to release 4.13 * Support for Perl 5.40 and -std=c++20 builds Changes in cddlib: - Update to release 0.94n * Fixed a potential dd_MatrixCanonicalize segfault. * cddlib.pc file now points to the non-GMP version, and cddgmp.pc has been added for the GMP version. * Copy certificate and handle errors correctly in dd_SRedundant for the V-representation code path. * cddlib is now thread-safe. libpolymake4_15-4.15-bp160.1.1.x86_64.rpm libpolymake4_15-debuginfo-4.15-bp160.1.1.x86_64.rpm polymake-4.15-bp160.1.1.src.rpm polymake-4.15-bp160.1.1.x86_64.rpm polymake-debuginfo-4.15-bp160.1.1.x86_64.rpm polymake-debugsource-4.15-bp160.1.1.x86_64.rpm polymake-devel-4.15-bp160.1.1.x86_64.rpm cddlib-0.94n-bp160.1.1.src.rpm cddlib-debuginfo-0.94n-bp160.1.1.x86_64.rpm cddlib-debugsource-0.94n-bp160.1.1.x86_64.rpm cddlib-devel-0.94n-bp160.1.1.x86_64.rpm cddlib-doc-0.94n-bp160.1.1.noarch.rpm cddlib-tools-0.94n-bp160.1.1.x86_64.rpm cddlib-tools-debuginfo-0.94n-bp160.1.1.x86_64.rpm libcdd0-0.94n-bp160.1.1.x86_64.rpm libcdd0-debuginfo-0.94n-bp160.1.1.x86_64.rpm libpolymake4_15-4.15-bp160.1.1.s390x.rpm libpolymake4_15-debuginfo-4.15-bp160.1.1.s390x.rpm polymake-4.15-bp160.1.1.s390x.rpm polymake-debuginfo-4.15-bp160.1.1.s390x.rpm polymake-debugsource-4.15-bp160.1.1.s390x.rpm polymake-devel-4.15-bp160.1.1.s390x.rpm cddlib-debuginfo-0.94n-bp160.1.1.s390x.rpm cddlib-debugsource-0.94n-bp160.1.1.s390x.rpm cddlib-devel-0.94n-bp160.1.1.s390x.rpm cddlib-tools-0.94n-bp160.1.1.s390x.rpm cddlib-tools-debuginfo-0.94n-bp160.1.1.s390x.rpm libcdd0-0.94n-bp160.1.1.s390x.rpm libcdd0-debuginfo-0.94n-bp160.1.1.s390x.rpm libpolymake4_15-4.15-bp160.1.1.ppc64le.rpm libpolymake4_15-debuginfo-4.15-bp160.1.1.ppc64le.rpm polymake-4.15-bp160.1.1.ppc64le.rpm polymake-debuginfo-4.15-bp160.1.1.ppc64le.rpm polymake-debugsource-4.15-bp160.1.1.ppc64le.rpm polymake-devel-4.15-bp160.1.1.ppc64le.rpm cddlib-debuginfo-0.94n-bp160.1.1.ppc64le.rpm cddlib-debugsource-0.94n-bp160.1.1.ppc64le.rpm cddlib-devel-0.94n-bp160.1.1.ppc64le.rpm cddlib-tools-0.94n-bp160.1.1.ppc64le.rpm cddlib-tools-debuginfo-0.94n-bp160.1.1.ppc64le.rpm libcdd0-0.94n-bp160.1.1.ppc64le.rpm libcdd0-debuginfo-0.94n-bp160.1.1.ppc64le.rpm libpolymake4_15-4.15-bp160.1.1.aarch64.rpm libpolymake4_15-debuginfo-4.15-bp160.1.1.aarch64.rpm polymake-4.15-bp160.1.1.aarch64.rpm polymake-debuginfo-4.15-bp160.1.1.aarch64.rpm polymake-debugsource-4.15-bp160.1.1.aarch64.rpm polymake-devel-4.15-bp160.1.1.aarch64.rpm cddlib-debuginfo-0.94n-bp160.1.1.aarch64.rpm cddlib-debugsource-0.94n-bp160.1.1.aarch64.rpm cddlib-devel-0.94n-bp160.1.1.aarch64.rpm cddlib-tools-0.94n-bp160.1.1.aarch64.rpm cddlib-tools-debuginfo-0.94n-bp160.1.1.aarch64.rpm libcdd0-0.94n-bp160.1.1.aarch64.rpm libcdd0-debuginfo-0.94n-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-78 Recommended update for ansible-sap-launchpad moderate openSUSE Backports SLE-16.0 This update for ansible-sap-launchpad fixes the following issues: Changes in ansible-sap-launchpad: - Refactor Ansible Modules and adjust for ansible-core 2.19. - 1.3.1 - Bugfixes: - collection: Add ansible-test sanity workflow and fix sanity errors - 1.3.0 - Changes: - collection: Refactor all Ansible Modules - sap_software_download: Update for ansible-core 2.19 - Bugfixes: - sap_software_download: Fix for failed checksums not correctly retrying ansible-sap-launchpad-1.3.1-bp160.1.1.noarch.rpm ansible-sap-launchpad-1.3.1-bp160.1.1.src.rpm openSUSE-Leap-16.0-packagehub-79 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: - Update to version 5.1768323619.9a70ab91: * refactor: Extend tests of df-based cleanup * fix: Avoid wrong deletion of archived jobs in df-based cleanup * refactor: Move logic for validating percentage into helper * refactor: Clarify wording in comment regarding job cleanup * Use template literals in certain JavaScript code * Retry delete_needles job on server restart * Add test for _delete_needles * feat(OpenQA::Git): Cleanup git dir in commit() on shutdown * feat: Improve rendering results on the scheduled product page - Update to version 5.1768209690.f34c2973: * feat(scheduled-products): Allow adding note to result data * docs: Use node_modules target * docs: Mention minimum PostgreSQL version * ci: Update PostgreSQL in CI/packaging to at least 14 * Revert "Add MCP tool annotations for Claude connector compliance" - Update to version 5.1767868268.dacbd3f7: * Add MCP tool annotations for Claude connector compliance Changes in os-autoinst: - Update to version 5.1768317525.86a9a7f: * fix(dist): exclude unstable t/28-signalblocker.t in OBS checks * Remove deprecated BIOS and UEFI_PFLASH variables * Add documentation of APPEND variable * Add undocumented KERNEL/INITRD to the supported variables * os-autoinst-generate-needle-preview: Embed PNG Changes in openQA-devel-container: - Update to version 5.1768323619.9a70ab916: * Update to latest openQA version openQA-5.1768323619.9a70ab91-bp160.1.1.src.rpm openQA-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-auto-update-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-client-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-common-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-devel-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-doc-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-local-db-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-mcp-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-munin-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-single-instance-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm openQA-worker-5.1768323619.9a70ab91-bp160.1.1.x86_64.rpm os-autoinst-5.1768317525.86a9a7f-bp160.1.1.src.rpm os-autoinst-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1768317525.86a9a7f-bp160.1.1.x86_64.rpm openQA-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-auto-update-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-bootstrap-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-client-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-common-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-continuous-update-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-devel-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-doc-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-local-db-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-mcp-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-munin-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-python-scripts-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-single-instance-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm openQA-worker-5.1768323619.9a70ab91-bp160.1.1.s390x.rpm os-autoinst-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-devel-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1768317525.86a9a7f-bp160.1.1.s390x.rpm openQA-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-client-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-common-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-devel-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-doc-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-local-db-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-mcp-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-munin-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm openQA-worker-5.1768323619.9a70ab91-bp160.1.1.ppc64le.rpm os-autoinst-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1768317525.86a9a7f-bp160.1.1.ppc64le.rpm openQA-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-auto-update-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-client-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-common-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-devel-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-doc-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-local-db-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-mcp-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-munin-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-single-instance-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm openQA-worker-5.1768323619.9a70ab91-bp160.1.1.aarch64.rpm os-autoinst-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1768317525.86a9a7f-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-8 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Chromium 141.0.7390.122: * CVE-2025-12036: Inappropriate implementation in V8 (boo#1252402) chromedriver-141.0.7390.122-bp160.1.1.aarch64.rpm chromium-141.0.7390.122-bp160.1.1.aarch64.rpm chromium-141.0.7390.122-bp160.1.1.nosrc.rpm chromedriver-141.0.7390.122-bp160.1.1.ppc64le.rpm chromium-141.0.7390.122-bp160.1.1.ppc64le.rpm chromedriver-141.0.7390.122-bp160.1.1.x86_64.rpm chromium-141.0.7390.122-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-80 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Changes in chromium: - Chromium 144.0.7559.59 (boo#1256614) * CVE-2026-0899: Out of bounds memory access in V8 * CVE-2026-0900: Inappropriate implementation in V8 * CVE-2026-0901: Inappropriate implementation in Blink * CVE-2026-0902: Inappropriate implementation in V8 * CVE-2026-0903: Insufficient validation of untrusted input in Downloads * CVE-2026-0904: Incorrect security UI in Digital Credentials * CVE-2026-0905: Insufficient policy enforcement in Network * CVE-2026-0906: Incorrect security UI * CVE-2026-0907: Incorrect security UI in Split View * CVE-2026-0908: Use after free in ANGLE - use noopenh264 where available chromedriver-144.0.7559.59-bp160.1.1.x86_64.rpm chromium-144.0.7559.59-bp160.1.1.nosrc.rpm chromium-144.0.7559.59-bp160.1.1.x86_64.rpm chromedriver-144.0.7559.59-bp160.1.1.ppc64le.rpm chromium-144.0.7559.59-bp160.1.1.ppc64le.rpm chromedriver-144.0.7559.59-bp160.1.1.aarch64.rpm chromium-144.0.7559.59-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-81 Security update for gimp important openSUSE Backports SLE-16.0 This update for gimp fixes the following issues: Changes in gimp: Update to 3.0.6: - Security: - During development, we received reports from the Zero Day Initiative of potential security issues with some of our file import plug-ins. While these issues are very unlikely to occur with real files, developers like Jacob Boerema and Alx Sa proactively improved security for those imports. The resolved reports are: - ZDI-CAN-27793 - ZDI-CAN-27823 - ZDI-CAN-27836 - ZDI-CAN-27878 - ZDI-CAN-27863 - ZDI-CAN-27684 - Core: - Many false-positive build warnings have been cleaned out (and proper issues fixed). - Various crashes fixed. - When creating a layer mask from the layer's alpha, but the layer has no alpha, simply fill the mask with complete opacity instead of a completely transparent layer. - Various core infrastructure code reviewed, cleaned up, refactored and improved, in drawable, layer and filter handling code, tree view code, and more. - GIMP_ICONS_LIKE_A_BOSS environment variable is not working anymore (because "gtk-menu-images" and "gtk-button-images" have been deprecated in GTK3 and removed in GTK4) and was therefore removed. - Lock Content now shows as an undo step. - Add alpha channel for certain transforms. - Add alpha channel on filter merge, when necessary. - Filters can now be applied non-destructively on channels. - Improved Photoshop brush support. - After deleting a palette entry, the next entry is automatically selected. This allows easily deleting several entries in a row, among other usage. - Resize image to layers irrespective to selections. - Improved in-GUI release notes' demo script language: - We can now set a button value to click it: "toolbox:text, tool-options:outline=1, tool-options:outline-direction" - Color selector's module names can be used as identifiers: "color-editor,color-editor:CMYK=1,color-editor:total-ink-coverage" - Fixed Alpha to Selection on single layers with no transparency. - Various code is slowly ported to newer code, preparing for GTK4 port (in an unplanned future step): - Using g_set_str() (optionally redefining it in our core code to avoid bumping the GLib minimum requirement). - Start using GListModel in various pieces of code, in particular getting rid of more and more usage of GtkTreeView when possible (as it will be deprecated with GTK4). - New GimpRow class for all future row widgets. - Use more of G_DECLARE_DERIVABLE_TYPE and G_DECLARE_FINAL_TYPE where relevant. - New GimpContainerListView using a GtkListBox. - New GimpRowSeparator, GimpRowSettings, GimpRowFilter and GimpRowDrawableFilter widgets. - (Experimental) GEX Format was updated. - Palette import: - Set alpha value for image palette imports. - Fix Lab & CMYK ACB palette import. - Add palette format filters to import dialog, making it more apparent what palette formats are supported, and giving the ability to hide irrelevant files. - Improved filter actions' sensitivity to make sure they are set insensitive when relevant. In particular filters which cannot be run non-destructively (e.g. filters with aux inputs, non-interactive filters and GEGL Graph) must be insensitive when trying to run them on group layers. - Fix bad axis centering on zoom out. - Export better SVG when exporting paths. - Tools: - Text tool: make sure the default color is only changed when the user confirms the color change. - Foreground Selection tool: do not create a selection when no strokes has been made. In particular this removes the unnecessary delay which happened when switching to another tool without actually stroking anything. - All Transform tools: transform boundaries for preview is now multi-layers aware. - (Experimental) Seamless Clone tool: made to work again, though it is still too slow to get out of Playground. - Graphical User Interface: - Various improvements to window management: - Keep-Above windows are set with the Utility hint. - Utility windows are not made transient to a parent. - Transient factory dialogs follow the active display, ensuring that new image windows would not hide your toolbox and dock windows. - Various CSS improvements for styling of the interface. Some theme leaks were also fixed. - New toggle button in Brushes and Fonts dockable, allowing brush and font previews to optionally follow the color theme. For instance, when using a dark theme, the brush and font previews could be drawn on the theme background, using the theme foreground colors. By default, these data previews are still drawn as black on white. - Palette grid is now drawn with the theme's background color. - Consistent naming patterns on human-facing options (first word only capitalized). - About dialog: - We will now display the date and time of the last check in a "Up to date as of <date> at <time>" string, differing from the "Last checked on <date> at <time>" string. The former will be used to indicate that GIMP is indeed up-to-date whereas the latter when a new version was released and that you should update. - We now respect the system time/date format on macOS and Windows. - The search popup won't pop up without an image. - Better zoom step algorithm for data previews in container popup (e.g. the brush popup in paint Tool Options). - Disable animation in the Input Controller, Preferences and Welcome dialogs for stack transition when animation are disabled in system settings. - Fixed crosshair hotspot on Windows (crosshair cursor for brushes was offset with a non-100% display scale factor). - Debug/CRITICAL dialog: - Make sure it is non-modal. - Follow the theme mode under Windows. - While loading images, all widgets in the file dialog are made insensitive, except for the Cancel button and the progress bar. - Both grid and list views can now zoom via scroll and zoom gestures (it used to only work in list views). - Pop an error message up on startup when GIO modules to read HTTPS links are not found and that we therefore fail to load the remote gimp_versions.json file. With the AppImage package in particular, we depend on an environment daemon which cannot be shipped in the package. So the next best thing is to warn people and tell them what they should install to get version checks. - Welcome dialog: - The "Community Tutorials" link is now shown after the "Documentation" link. - The "Learn more" link in Release Notes tab leads to the actual release news for this version. - Plug-ins: - PDF export: do not draw disabled layer masks. - Jigsaw: the plug-in can now draw on transparent layers. - Various file format fixes and improvements: JPEG 2000 import, TIFF import, DDS import, SVG import, PSP import, FITS export, ICNS import, Dicom import, WBMP import, Farbfeld import, XWD import, ILBM import. - Sphere Designer: use spin scale instead of spin entries (the latter is unusable with little horizontal space). - Animation Play: frames are shown again in the playback progress bar. - Vala Goat Exercise: ignoring C warning in this Vala plug-in as it is generated code and we cannot control it. - file-gih: brush pipe selection modes now have nice, translatable names. - Metadata viewer: port from GtkTreeView to GtkListBox. - File Raw Data: reduce Raw Data load dialogue height by moving to a 2-column layout. - SVG import: it is now possible to break aspect ratio with specific width/height arguments, when calling the PDB procedure non-interactively (from other plug-ins). - Print: when run through a portal print dialog, the "Image Settings" will be exposed as a secondary dialog, outputted after the portal dialog, instead of a tab on the main print dialog (because it is not possible to tweak the print dialog when it is created by a portal). This will bring back usable workflow of printing with GIMP when run in a sandbox (e.g. Flatpak or Snap). - Recompose: fixed for YCbCr decomposed images. - Fixed vulnerabilities: ZDI-CAN-27684, ZDI-CAN-27863, ZDI-CAN-27878, ZDI-CAN-27836, ZDI-CAN-27823, ZDI-CAN-27793. - C Source and HTML export can now be run non-interactively too (e.g. from other plug-ins). - Map Object: fix missing spin boxes. - Small Tiles: fix display lag. - CVE-2025-10925: Fix GIMP ILBM file parsing stack-based buffer overflow remote code execution vulnerability. (ZDI-25-914, ZDI-CAN-27793, bsc#1250501) - CVE-2025-10922: Fix GIMP DCM file parsing heap-based buffer overflow remote code execution vulnerability. (ZDI-25-911, ZDI-CAN-27863, bsc#1250497) - CVE-2025-10920: Prevent overflow attack by checking if output >= max, not just output > max. (ZDI-25-909, ZDI-CAN-27684, bsc#1250495) - CVE-2025-10924: Fix integer overflow while parsing FF files. (bsc#1250499) - CVE-2025-2760: A vulnerability allows remote attackers to execute arbitrary code on affected installations of GIMP. The specific flaw exists within parsing of XWD files. An integer overflow happens before allocating a buffer. This fixed in GIMP 3.0.0. https://www.gimp.org/news/2025/03/16/gimp-3-0-released (bsc#1241690) gimp-3.0.6-bp160.1.1.src.rpm gimp-3.0.6-bp160.1.1.x86_64.rpm gimp-debuginfo-3.0.6-bp160.1.1.x86_64.rpm gimp-debugsource-3.0.6-bp160.1.1.x86_64.rpm gimp-devel-3.0.6-bp160.1.1.x86_64.rpm gimp-devel-debuginfo-3.0.6-bp160.1.1.x86_64.rpm gimp-extension-goat-excercises-3.0.6-bp160.1.1.x86_64.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.1.1.x86_64.rpm gimp-lang-3.0.6-bp160.1.1.noarch.rpm gimp-plugin-aa-3.0.6-bp160.1.1.x86_64.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.1.1.x86_64.rpm gimp-plugin-python3-3.0.6-bp160.1.1.x86_64.rpm gimp-vala-3.0.6-bp160.1.1.x86_64.rpm libgimp-3_0-0-3.0.6-bp160.1.1.x86_64.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.1.1.x86_64.rpm libgimpui-3_0-0-3.0.6-bp160.1.1.x86_64.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.1.1.x86_64.rpm gimp-3.0.6-bp160.1.1.ppc64le.rpm gimp-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm gimp-debugsource-3.0.6-bp160.1.1.ppc64le.rpm gimp-devel-3.0.6-bp160.1.1.ppc64le.rpm gimp-devel-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm gimp-extension-goat-excercises-3.0.6-bp160.1.1.ppc64le.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm gimp-plugin-aa-3.0.6-bp160.1.1.ppc64le.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm gimp-plugin-python3-3.0.6-bp160.1.1.ppc64le.rpm gimp-vala-3.0.6-bp160.1.1.ppc64le.rpm libgimp-3_0-0-3.0.6-bp160.1.1.ppc64le.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm libgimpui-3_0-0-3.0.6-bp160.1.1.ppc64le.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.1.1.ppc64le.rpm gimp-3.0.6-bp160.1.1.aarch64.rpm gimp-debuginfo-3.0.6-bp160.1.1.aarch64.rpm gimp-debugsource-3.0.6-bp160.1.1.aarch64.rpm gimp-devel-3.0.6-bp160.1.1.aarch64.rpm gimp-devel-debuginfo-3.0.6-bp160.1.1.aarch64.rpm gimp-extension-goat-excercises-3.0.6-bp160.1.1.aarch64.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.1.1.aarch64.rpm gimp-plugin-aa-3.0.6-bp160.1.1.aarch64.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.1.1.aarch64.rpm gimp-plugin-python3-3.0.6-bp160.1.1.aarch64.rpm gimp-vala-3.0.6-bp160.1.1.aarch64.rpm libgimp-3_0-0-3.0.6-bp160.1.1.aarch64.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.1.1.aarch64.rpm libgimpui-3_0-0-3.0.6-bp160.1.1.aarch64.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-82 Security update for go-sendxmpp moderate openSUSE Backports SLE-16.0 This update for go-sendxmpp fixes the following issues: Changes in go-sendxmpp: - Update to 0.15.1: Added * Add XEP-0359 Origin-ID to messages (requires go-xmpp >= v0.2.18). Changed * HTTP upload: Ignore timeouts on disco IQs as some components do not reply. - Upgrades the embedded golang.org/x/net to 0.46.0 * Fixes: bsc#1251461, CVE-2025-47911: various algorithms with quadratic complexity when parsing HTML documents * Fixes: bsc#1251677, CVE-2025-58190: excessive memory consumption by 'html.ParseFragment' when processing specially crafted input - Update to 0.15.0: Added: * Add flag --verbose to show debug information. * Add flag --recipients to specify recipients by file. * Add flag --retry-connect to try after a waiting time if the connection fails. * Add flag --retry-connect-max to specify the amount of retry attempts. * Add flag --legacy-pgp for using XEP-0027 PGP encryption with Ox keys. * Add support for punycode domains. Changed: * Update gopenpgp library to v3. * Improve error detection for MUC joins. * Don't try to connect to other SRV record targets if error contains 'auth-failure'. * Remove support for old SSDP version (via go-xmpp v0.2.15). * Http-upload: Stop checking other disco items after finding upload component. * Increase default TLS version to 1.3. - bsc#1241814 (CVE-2025-22872): This update includes golang.org/x/net/html 0.43.0 - Update to 0.14.1: * Use prettier date format for error messages. * Update XEP-0474 to version 0.4.0 (requires go-xmpp >= 0.2.10). - Update to 0.14.0: Added: * Add --fast-invalidate to allow invalidating the FAST token. Changed: * Don't create legacy Ox private key directory in ~/.local/share/go-sendxmpp/oxprivkeys. * Delete legacy Ox private key directory if it's empty. * Show proper error if saved FAST mechanism isn't usable with current TLS version (requires go-xmpp >= 0.2.9). * Print debug output to stdout, not stderr (requires go-xmpp >= 0.2.9). * Show RECV: and SEND: prefix for debug output (requires go-xmpp >= 0.2.9). * Delete stored fast token if --fast-invalidate and --fast-off are set. * Show error when FAST creds are stored but non-FAST mechanism is requested. - Update to 0.13.0: Added: * Add --anonymous to support anonymous authentication (requires go-xmpp >= 0.2.8). * Add XEP-0480: SASL Upgrade Tasks support (requires go-xmpp >= 0.2.8). * Add support for see-other-host stream error (requires go-xmpp >= 0.2.8). Changed: * Don't automatically try other auth mechanisms if FAST authentication fails. - Update to 0.12.1: Changed: * Print error instead of quitting if a message of type error is received. * Allow upload of multiple files. Added: * Add flag --suppress-root-warning to suppress the warning when go-sendxmpp is used by the root user. - Update to 0.12.0: Added: * Add possibility to look up direct TLS connection endpoint via hostmeta2 (requires xmppsrv >= 0.3.3). * Add flag --allow-plain to allow PLAIN authentication (requires go-xmpp >= 0.2.5). Changed: * Disable PLAIN authentication per default. * Disable PLAIN authentication after first use of a SCRAM auth mechanism (overrides --allow-plain) (requires go-xmpp >= 0.2.5). - Update to 0.11.4: * Fix bug in SCRAM-SHA-256-PLUS (via go-xmpp >= 0.2.4). - Update to 0.11.3: * Add go-xmpp library version to --version output (requires go-xmpp >= 0.2.2). * Fix XEP-0474: SASL SCRAM Downgrade Protection hash calculation bug (via go-xmpp >= v0.2.3). * [gocritic]: Improve code quality. go-sendxmpp-0.15.1-bp160.1.1.aarch64.rpm go-sendxmpp-0.15.1-bp160.1.1.src.rpm go-sendxmpp-debuginfo-0.15.1-bp160.1.1.aarch64.rpm go-sendxmpp-0.15.1-bp160.1.1.ppc64le.rpm go-sendxmpp-debuginfo-0.15.1-bp160.1.1.ppc64le.rpm go-sendxmpp-0.15.1-bp160.1.1.s390x.rpm go-sendxmpp-debuginfo-0.15.1-bp160.1.1.s390x.rpm go-sendxmpp-0.15.1-bp160.1.1.x86_64.rpm go-sendxmpp-debuginfo-0.15.1-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-83 Recommended update for wicked moderate openSUSE Backports SLE-16.0 This update for wicked fixes the following issues: Changes in wicked: - Update to version 0.6.78 - man: small fixes in wireless manpage (gh#opensuse/wicked#1053) - rtnetlink: fix RTM_NEWLINK name resolution in debug (gh#opensuse/wicked#1052) - Add support for IPVLAN/IPVTAP (jsc#PED-1942, gh#opensuse/wicked#1050, gh#opensuse/wicked#1051) - fsm: remove children reference array from worker (gh#opensuse/wicked#1049) - ifxml: migrate and generate lower configs/policies (gh#opensuse/wicked#1048) - fsm: use refcount and array macros in worker and policy (gh#opensuse/wicked#1047) - route: use refcounted array and fix error leaks (gh#opensuse/wicked#1046) - utils: add support for refcounted objects in generic array (gh#openSUSE/wicked#1045) wicked-0.6.78-bp160.1.1.src.rpm wicked-0.6.78-bp160.1.1.x86_64.rpm wicked-debuginfo-0.6.78-bp160.1.1.x86_64.rpm wicked-debugsource-0.6.78-bp160.1.1.x86_64.rpm wicked-nbft-0.6.78-bp160.1.1.x86_64.rpm wicked-service-0.6.78-bp160.1.1.x86_64.rpm wicked-0.6.78-bp160.1.1.s390x.rpm wicked-debuginfo-0.6.78-bp160.1.1.s390x.rpm wicked-debugsource-0.6.78-bp160.1.1.s390x.rpm wicked-nbft-0.6.78-bp160.1.1.s390x.rpm wicked-service-0.6.78-bp160.1.1.s390x.rpm wicked-0.6.78-bp160.1.1.ppc64le.rpm wicked-debuginfo-0.6.78-bp160.1.1.ppc64le.rpm wicked-debugsource-0.6.78-bp160.1.1.ppc64le.rpm wicked-nbft-0.6.78-bp160.1.1.ppc64le.rpm wicked-service-0.6.78-bp160.1.1.ppc64le.rpm wicked-0.6.78-bp160.1.1.aarch64.rpm wicked-debuginfo-0.6.78-bp160.1.1.aarch64.rpm wicked-debugsource-0.6.78-bp160.1.1.aarch64.rpm wicked-nbft-0.6.78-bp160.1.1.aarch64.rpm wicked-service-0.6.78-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-84 Security update for ffmpeg-4 important openSUSE Backports SLE-16.0 This update for ffmpeg-4 fixes the following issues: - CVE-2025-63757: Fixed swscale/output: Fix integer overflow in yuv2ya16_X_c_template() (bsc#1255392). ffmpeg-4-4.4.5-bp160.2.1.src.rpm ffmpeg-4-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-debuginfo-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-debugsource-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavcodec-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavdevice-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavfilter-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavformat-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavresample-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libavutil-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libpostproc-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libswresample-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-libswscale-devel-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-private-devel-4.4.5-bp160.2.1.x86_64.rpm libavcodec58_134-4.4.5-bp160.2.1.x86_64.rpm libavcodec58_134-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libavdevice58_13-4.4.5-bp160.2.1.x86_64.rpm libavdevice58_13-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libavfilter7_110-4.4.5-bp160.2.1.x86_64.rpm libavfilter7_110-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libavformat58_76-4.4.5-bp160.2.1.x86_64.rpm libavformat58_76-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libavresample4_0-4.4.5-bp160.2.1.x86_64.rpm libavresample4_0-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libavutil56_70-4.4.5-bp160.2.1.x86_64.rpm libavutil56_70-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libpostproc55_9-4.4.5-bp160.2.1.x86_64.rpm libpostproc55_9-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libswresample3_9-4.4.5-bp160.2.1.x86_64.rpm libswresample3_9-debuginfo-4.4.5-bp160.2.1.x86_64.rpm libswscale5_9-4.4.5-bp160.2.1.x86_64.rpm libswscale5_9-debuginfo-4.4.5-bp160.2.1.x86_64.rpm ffmpeg-4-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-debuginfo-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-debugsource-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavcodec-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavdevice-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavfilter-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavformat-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavresample-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libavutil-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libpostproc-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libswresample-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-libswscale-devel-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-private-devel-4.4.5-bp160.2.1.s390x.rpm libavcodec58_134-4.4.5-bp160.2.1.s390x.rpm libavcodec58_134-debuginfo-4.4.5-bp160.2.1.s390x.rpm libavdevice58_13-4.4.5-bp160.2.1.s390x.rpm libavdevice58_13-debuginfo-4.4.5-bp160.2.1.s390x.rpm libavfilter7_110-4.4.5-bp160.2.1.s390x.rpm libavfilter7_110-debuginfo-4.4.5-bp160.2.1.s390x.rpm libavformat58_76-4.4.5-bp160.2.1.s390x.rpm libavformat58_76-debuginfo-4.4.5-bp160.2.1.s390x.rpm libavresample4_0-4.4.5-bp160.2.1.s390x.rpm libavresample4_0-debuginfo-4.4.5-bp160.2.1.s390x.rpm libavutil56_70-4.4.5-bp160.2.1.s390x.rpm libavutil56_70-debuginfo-4.4.5-bp160.2.1.s390x.rpm libpostproc55_9-4.4.5-bp160.2.1.s390x.rpm libpostproc55_9-debuginfo-4.4.5-bp160.2.1.s390x.rpm libswresample3_9-4.4.5-bp160.2.1.s390x.rpm libswresample3_9-debuginfo-4.4.5-bp160.2.1.s390x.rpm libswscale5_9-4.4.5-bp160.2.1.s390x.rpm libswscale5_9-debuginfo-4.4.5-bp160.2.1.s390x.rpm ffmpeg-4-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-debugsource-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavcodec-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavdevice-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavfilter-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavformat-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavresample-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libavutil-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libpostproc-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libswresample-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-libswscale-devel-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-private-devel-4.4.5-bp160.2.1.ppc64le.rpm libavcodec58_134-4.4.5-bp160.2.1.ppc64le.rpm libavcodec58_134-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libavdevice58_13-4.4.5-bp160.2.1.ppc64le.rpm libavdevice58_13-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libavfilter7_110-4.4.5-bp160.2.1.ppc64le.rpm libavfilter7_110-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libavformat58_76-4.4.5-bp160.2.1.ppc64le.rpm libavformat58_76-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libavresample4_0-4.4.5-bp160.2.1.ppc64le.rpm libavresample4_0-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libavutil56_70-4.4.5-bp160.2.1.ppc64le.rpm libavutil56_70-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libpostproc55_9-4.4.5-bp160.2.1.ppc64le.rpm libpostproc55_9-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libswresample3_9-4.4.5-bp160.2.1.ppc64le.rpm libswresample3_9-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm libswscale5_9-4.4.5-bp160.2.1.ppc64le.rpm libswscale5_9-debuginfo-4.4.5-bp160.2.1.ppc64le.rpm ffmpeg-4-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-debuginfo-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-debugsource-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavcodec-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavdevice-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavfilter-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavformat-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavresample-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libavutil-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libpostproc-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libswresample-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-libswscale-devel-4.4.5-bp160.2.1.aarch64.rpm ffmpeg-4-private-devel-4.4.5-bp160.2.1.aarch64.rpm libavcodec58_134-4.4.5-bp160.2.1.aarch64.rpm libavcodec58_134-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libavdevice58_13-4.4.5-bp160.2.1.aarch64.rpm libavdevice58_13-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libavfilter7_110-4.4.5-bp160.2.1.aarch64.rpm libavfilter7_110-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libavformat58_76-4.4.5-bp160.2.1.aarch64.rpm libavformat58_76-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libavresample4_0-4.4.5-bp160.2.1.aarch64.rpm libavresample4_0-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libavutil56_70-4.4.5-bp160.2.1.aarch64.rpm libavutil56_70-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libpostproc55_9-4.4.5-bp160.2.1.aarch64.rpm libpostproc55_9-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libswresample3_9-4.4.5-bp160.2.1.aarch64.rpm libswresample3_9-debuginfo-4.4.5-bp160.2.1.aarch64.rpm libswscale5_9-4.4.5-bp160.2.1.aarch64.rpm libswscale5_9-debuginfo-4.4.5-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-85 Recommended update for niri moderate openSUSE Backports SLE-16.0 This update for niri fixes the following issues: - Fixed portal notification proxy (boo#1254975) niri-0.1.9-bp160.2.1.src.rpm niri-0.1.9-bp160.2.1.x86_64.rpm niri-debuginfo-0.1.9-bp160.2.1.x86_64.rpm niri-debugsource-0.1.9-bp160.2.1.x86_64.rpm niri-0.1.9-bp160.2.1.s390x.rpm niri-debuginfo-0.1.9-bp160.2.1.s390x.rpm niri-debugsource-0.1.9-bp160.2.1.s390x.rpm niri-0.1.9-bp160.2.1.ppc64le.rpm niri-debuginfo-0.1.9-bp160.2.1.ppc64le.rpm niri-debugsource-0.1.9-bp160.2.1.ppc64le.rpm niri-0.1.9-bp160.2.1.aarch64.rpm niri-debuginfo-0.1.9-bp160.2.1.aarch64.rpm niri-debugsource-0.1.9-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-86 Security update for python-weasyprint important openSUSE Backports SLE-16.0 This update for python-weasyprint fixes the following issues: Changes in python-weasyprint: - CVE-2025-68616: Fixed a server-side request forgery in default fetcher (boo#1256936). python-weasyprint-65.1-bp160.2.1.src.rpm python313-weasyprint-65.1-bp160.2.1.noarch.rpm openSUSE-Leap-16.0-packagehub-87 Security update for coredns important openSUSE Backports SLE-16.0 This update for coredns fixes the following issues: Changes in coredns: - fix CVE-2025-68156 bsc#1255345 - fix CVE-2025-68161 bsc#1256411 - Update to version 1.14.0: * core: Fix gosec G115 integer overflow warnings * core: Add regex length limit * plugin/azure: Fix slice init length * plugin/errors: Add optional show_first flag to consolidate directive * plugin/file: Fix for misleading SOA parser warnings * plugin/kubernetes: Rate limits to api server * plugin/metrics: Implement plugin chain tracking * plugin/sign: Report parser err before missing SOA * build(deps): bump github.com/expr-lang/expr from 1.17.6 to 1.17.7 - Update to version 1.13.2: * core: Add basic support for DoH3 * core: Avoid proxy unnecessary alloc in Yield * core: Fix usage of sync.Pool to save an alloc * core: Fix data race with sync.RWMutex for uniq * core: Prevent QUIC reload panic by lazily initializing the listener * core: Refactor/use reflect.TypeFor * plugin/auto: Limit regex length * plugin/cache: Remove superfluous allocations in item.toMsg * plugin/cache: Isolate metadata in prefetch goroutine * plugin/cache: Correct spelling of MaximumDefaultTTL in cache and dnsutil packages * plugin/dnstap: Better error handling (redial & logging) when Dnstap is busy * plugin/file: Performance finetuning * plugin/forward: Disallow NOERROR in failover * plugin/forward: Added support for per-nameserver TLS SNI * plugin/forward: Prevent busy loop on connection err * plugin/forward: Add max connect attempts knob * plugin/geoip: Add ASN schema support * plugin/geoip: Add support for subdivisions * plugin/kubernetes: Fix kubernetes plugin logging * plugin/multisocket: Cap num sockets to prevent OOM * plugin/nomad: Support service filtering * plugin/rewrite: Pre-compile CNAME rewrite regexp * plugin/secondary: Fix reload causing secondary plugin goroutine to leak - Update to version 1.13.1: * core: Avoid string concatenation in loops * core: Update golang to 1.25.2 and golang.org/x/net to v0.45.0 on CVE fixes * plugin/sign: Reject invalid UTF‑8 dbfile token - Update to version 1.13.0: * core: Export timeout values in dnsserver.Server * core: Fix Corefile infinite loop on unclosed braces * core: Fix Corefile related import cycle issue * core: Normalize panics on invalid origins * core: Rely on dns.Server.ShutdownContext to gracefully stop * plugin/dnstap: Add bounds for plugin args * plugin/file: Fix data race in tree Elem.Name * plugin/forward: No failover to next upstream when receiving SERVFAIL or REFUSED response codes * plugin/grpc: Enforce DNS message size limits * plugin/loop: Prevent panic when ListenHosts is empty * plugin/loop: Avoid panic on invalid server block * plugin/nomad: Add a Nomad plugin * plugin/reload: Prevent SIGTERM/reload deadlock - fix CVE-2025-58063 bsc#1249389 - Update to version 1.12.4: * bump deps * fix(transfer): goroutine leak on axfr err (#7516) * plugin/etcd: fix import order for ttl test (#7515) * fix(grpc): check proxy list length in policies (#7512) * fix(https): propagate HTTP request context (#7491) * fix(plugin): guard nil lookups across plugins (#7494) * lint: add missing prealloc to backend lookup test (#7510) * fix(grpc): span leak on error attempt (#7487) * test(plugin): improve backend lookup coverage (#7496) * lint: enable prealloc (#7493) * lint: enable durationcheck (#7492) * Add Sophotech to adopters list (#7495) * plugin: Use %w to wrap user error (#7489) * fix(metrics): add timeouts to metrics HTTP server (#7469) * chore(ci): restrict token permissions (#7470) * chore(ci): pin workflow dependencies (#7471) * fix(forward): use netip package for parsing (#7472) * test(plugin): improve test coverage for pprof (#7473) * build(deps): bump github.com/go-viper/mapstructure/v2 (#7468) * plugin/file: fix label offset problem in ClosestEncloser (#7465) * feat(trace): migrate dd-trace-go v1 to v2 (#7466) * test(multisocket): deflake restart by using a fresh port and coordinated cleanup (#7438) * chore: update Go version to 1.24.6 (#7437) * plugin/header: Remove deprecated syntax (#7436) * plugin/loadbalance: support prefer option (#7433) * Improve caddy.GracefulServer conformance checks (#7416) - Update to version 1.12.3: * chore: Minor changes to `Dockerfile` (#7428) * Properly create hostname from IPv6 (#7431) * Bump deps * fix: handle cached connection closure in forward plugin (#7427) * plugin/test: fix TXT record comparison for multi-chunk vs multiple records * plugin/file: preserve case in SRV record names and targets per RFC 6763 * fix(auto/file): return REFUSED when no next plugin is available (#7381) * Port to AWS Go SDK v2 (#6588) * fix(cache): data race when refreshing cached messages (#7398) * fix(cache): data race when updating the TTL of cached messages (#7397) * chore: fix docs incompatibility (#7390) * plugin/rewrite: Add EDNS0 Unset Action (#7380) * add args: startup_timeout for kubernetes plugin (#7068) * [plugin/cache] create a copy of a response to ensure original data is never modified * Add support for fallthrough to the grpc plugin (#7359) * view: Add IPv6 example match (#7355) * chore: enable more rules from revive (#7352) * chore: enable early-return and superfluous-else from revive (#7129) * test(plugin): improve tests for auto (#7348) * fix(proxy): flaky dial tests (#7349) * test: add t.Helper() calls to test helper functions (#7351) * fix(kubernetes): multicluster DNS race condition (#7350) * lint: enable wastedassign linter (#7340) * test(plugin): add tests for any (#7341) * Actually invoke make release -f Makefile.release during test (#7338) * Keep golang to 1.24.2 due to build issues in 1.24.3 (#7337) * lint: enable protogetter linter (#7336) * lint: enable nolintlint linter (#7332) * fix: missing intrange lint fix (#7333) * perf(kubernetes): optimize AutoPath slice allocation (#7323) * lint: enable intrange linter (#7331) * feat(plugin/file): fallthrough (#7327) * lint: enable canonicalheader linter (#7330) * fix(proxy): avoid Dial hang after Transport stopped (#7321) * test(plugin): add tests for pkg/rand (#7320) * test(dnsserver): add unit tests for gRPC and QUIC servers (#7319) * fix: loop variable capture and linter (#7328) * lint: enable usetesting linter (#7322) * test: skip certain network-specific tests on non-Linux (#7318) * test(dnsserver): improve core/dnsserver test coverage (#7317) * fix(metrics): preserve request size from plugins (#7313) * fix: ensure DNS query name reset in plugin.NS error path (#7142) * feat: enable plugins via environment during build (#7310) * fix(plugin/bind): remove zone for link-local IPv4 (#7295) * test(request): improve coverage across package (#7307) * test(coremain): Add unit tests (#7308) * ci(test-e2e): add Go version setup to workflow (#7309) * kubernetes: add multicluster support (#7266) * chore: Add new maintainer thevilledev (#7298) * Update golangci-lint (#7294) * feat: limit concurrent DoQ streams and goroutines (#7296) * docs: add man page for multisocket plugin (#7297) * Prepare for the k8s api upgrade (#7293) * fix(rewrite): truncated upstream response (#7277) * fix(plugin/secondary): make transfer property mandatory (#7249) * plugin/bind: remove macOS bug mention in docs (#7250) * Remove `?bla=foo:443` for `POST` DoH (#7257) * Do not interrupt querying readiness probes for plugins (#6975) * Added `SetProxyOptions` function for `forward` plugin (#7229) - Backported quic-go PR #5094: Fix parsing of ifindex from packets to ensure compatibility with big-endian architectures (see quic-go/quic-go#4978, coredns/coredns#6682). - Update to version 1.12.1: * core: Increase CNAME lookup limit from 7 to 10 (#7153) * plugin/kubernetes: Fix handling of pods having DeletionTimestamp set * plugin/kubernetes: Revert "only create PTR records for endpoints with hostname defined" * plugin/forward: added option failfast_all_unhealthy_upstreams to return servfail if all upstreams are down * bump dependencies, fixing bsc#1239294 and bsc#1239728 - Update to version 1.12.0: * New multisocket plugin - allows CoreDNS to listen on multiple sockets * bump deps - Update to version 1.11.4: * forward plugin: new option next, to try alternate upstreams when receiving specified response codes upstreams on (functions like the external plugin alternate) * dnssec plugin: new option to load keys from AWS Secrets Manager * rewrite plugin: new option to revert EDNS0 option rewrites in responses - Update to version 1.11.3+git129.387f34d: * fix CVE-2024-51744 (https://bugzilla.suse.com/show_bug.cgi?id=1232991) build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#6955) * core: set cache-control max-age as integer, not float (#6764) * Issue-6671: Fixed the order of plugins. (#6729) * `root`: explicit mark `dnssec` support (#6753) * feat: dnssec load keys from AWS Secrets Manager (#6618) * fuzzing: fix broken oss-fuzz build (#6880) * Replace k8s.io/utils/strings/slices by Go stdlib slices (#6863) * Update .go-version to 1.23.2 (#6920) * plugin/rewrite: Add "revert" parameter for EDNS0 options (#6893) * Added OpenSSF Scorecard Badge (#6738) * fix(cwd): Restored backwards compatibility of Current Workdir (#6731) * fix: plugin/auto: call OnShutdown() for each zone at its own OnShutdown() (#6705) * feature: log queue and buffer memory size configuration (#6591) * plugin/bind: add zone for link-local IPv6 instead of skipping (#6547) * only create PTR records for endpoints with hostname defined (#6898) * fix: reverter should execute the reversion in reversed order (#6872) * plugin/etcd: fix etcd connection leakage when reload (#6646) * kubernetes: Add useragent (#6484) * Update build (#6836) * Update grpc library use (#6826) * Bump go version from 1.21.11 to 1.21.12 (#6800) * Upgrade antonmedv/expr to expr-lang/expr (#6814) * hosts: add hostsfile as label for coredns_hosts_entries (#6801) * fix TestCorefile1 panic for nil handling (#6802) coredns-1.14.0-bp160.1.1.src.rpm coredns-1.14.0-bp160.1.1.x86_64.rpm coredns-debuginfo-1.14.0-bp160.1.1.x86_64.rpm coredns-extras-1.14.0-bp160.1.1.noarch.rpm coredns-1.14.0-bp160.1.1.ppc64le.rpm coredns-debuginfo-1.14.0-bp160.1.1.ppc64le.rpm coredns-1.14.0-bp160.1.1.aarch64.rpm coredns-debuginfo-1.14.0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-88 Security update for gimp important openSUSE Backports SLE-16.0 This update for gimp fixes the following issues: Changes in gimp: - CVE-2025-14422: Fixed PNM File Parsing Integer Overflow (bsc#1255293) - CVE-2025-14423: Fixed LBM File Parsing Stack-based Buffer Overflow (bsc#1255294) - CVE-2025-14424: Fixed XCF File Parsing Use-After-Free (bsc#1255295) - CVE-2025-14425: Fixed JP2 File Parsing Heap-based Buffer Overflow(bsc#1255296) gimp-3.0.6-bp160.2.1.src.rpm gimp-3.0.6-bp160.2.1.x86_64.rpm gimp-debuginfo-3.0.6-bp160.2.1.x86_64.rpm gimp-debugsource-3.0.6-bp160.2.1.x86_64.rpm gimp-devel-3.0.6-bp160.2.1.x86_64.rpm gimp-devel-debuginfo-3.0.6-bp160.2.1.x86_64.rpm gimp-extension-goat-excercises-3.0.6-bp160.2.1.x86_64.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.2.1.x86_64.rpm gimp-lang-3.0.6-bp160.2.1.noarch.rpm gimp-plugin-aa-3.0.6-bp160.2.1.x86_64.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.2.1.x86_64.rpm gimp-plugin-python3-3.0.6-bp160.2.1.x86_64.rpm gimp-vala-3.0.6-bp160.2.1.x86_64.rpm libgimp-3_0-0-3.0.6-bp160.2.1.x86_64.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.2.1.x86_64.rpm libgimpui-3_0-0-3.0.6-bp160.2.1.x86_64.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.2.1.x86_64.rpm gimp-3.0.6-bp160.2.1.ppc64le.rpm gimp-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm gimp-debugsource-3.0.6-bp160.2.1.ppc64le.rpm gimp-devel-3.0.6-bp160.2.1.ppc64le.rpm gimp-devel-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm gimp-extension-goat-excercises-3.0.6-bp160.2.1.ppc64le.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm gimp-plugin-aa-3.0.6-bp160.2.1.ppc64le.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm gimp-plugin-python3-3.0.6-bp160.2.1.ppc64le.rpm gimp-vala-3.0.6-bp160.2.1.ppc64le.rpm libgimp-3_0-0-3.0.6-bp160.2.1.ppc64le.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm libgimpui-3_0-0-3.0.6-bp160.2.1.ppc64le.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.2.1.ppc64le.rpm gimp-3.0.6-bp160.2.1.aarch64.rpm gimp-debuginfo-3.0.6-bp160.2.1.aarch64.rpm gimp-debugsource-3.0.6-bp160.2.1.aarch64.rpm gimp-devel-3.0.6-bp160.2.1.aarch64.rpm gimp-devel-debuginfo-3.0.6-bp160.2.1.aarch64.rpm gimp-extension-goat-excercises-3.0.6-bp160.2.1.aarch64.rpm gimp-extension-goat-excercises-debuginfo-3.0.6-bp160.2.1.aarch64.rpm gimp-plugin-aa-3.0.6-bp160.2.1.aarch64.rpm gimp-plugin-aa-debuginfo-3.0.6-bp160.2.1.aarch64.rpm gimp-plugin-python3-3.0.6-bp160.2.1.aarch64.rpm gimp-vala-3.0.6-bp160.2.1.aarch64.rpm libgimp-3_0-0-3.0.6-bp160.2.1.aarch64.rpm libgimp-3_0-0-debuginfo-3.0.6-bp160.2.1.aarch64.rpm libgimpui-3_0-0-3.0.6-bp160.2.1.aarch64.rpm libgimpui-3_0-0-debuginfo-3.0.6-bp160.2.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-89 Recommended update for helmfile moderate openSUSE Backports SLE-16.0 This update for helmfile fixes the following issues: Changes in helmfile: - Update to version 1.2.3: * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.2 to 1.32.3 by @dependabot[bot] in #2308 * build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 by @dependabot[bot] in #2310 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.92.1 to 1.93.0 by @dependabot[bot] in #2307 * Add parameter to render helmfile as go template without .gotmpl extension by @ronaldour in #2312 * build(deps): bump golang.org/x/sync from 0.18.0 to 0.19.0 by @dependabot[bot] in #2315 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.93.0 to 1.93.2 by @dependabot[bot] in #2323 * build(deps): bump k8s.io/apimachinery from 0.34.2 to 0.34.3 by @dependabot[bot] in #2322 * build(deps): bump golang.org/x/term from 0.37.0 to 0.38.0 by @dependabot[bot] in #2317 * build(deps): bump k8s.io/client-go from 0.34.2 to 0.34.3 by @dependabot[bot] in #2321 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.3 to 1.32.5 by @dependabot[bot] in #2320 * build(deps): bump helm.sh/helm/v3 from 3.19.2 to 3.19.3 by @dependabot[bot] in #2325 * build(deps): bump helm.sh/helm/v4 from 4.0.1 to 4.0.2 by @dependabot[bot] in #2326 * build(deps): bump actions/upload-artifact from 5 to 6 by @dependabot[bot] in #2331 * build(deps): bump helm.sh/helm/v3 from 3.19.3 to 3.19.4 by @dependabot[bot] in #2328 * build(deps): bump actions/download-artifact from 6 to 7 by @dependabot[bot] in #2332 * build(deps): bump dessant/lock-threads from 5 to 6 by @dependabot[bot] in #2330 * build(deps): bump helm.sh/helm/v4 from 4.0.3 to 4.0.4 by @dependabot[bot] in #2329 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.93.2 to 1.94.0 by @dependabot[bot] in #2333 * bump helm version to 4.0.4 by @yxxhero in #2335 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.5 to 1.32.6 by @dependabot[bot] in #2336 * build(deps): bump github.com/zclconf/go-cty-yaml from 1.1.0 to 1.2.0 by @dependabot[bot] in #2340 * build(deps): bump k8s.io/client-go from 0.34.3 to 0.35.0 by @dependabot[bot] in #2338 * fix: rewrite relative file:// chart dependencies to absolute paths by @sstarcher in #2334 - Update to version 1.2.2: * Fix AWS SDK debug logging by making it configurable (issue #2270) by @aditmeno in #2290 * test: add integration test for issue #2291 (CRD preservation with strategicMergePatches) by @aditmeno in #2292 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.1 to 1.32.2 by @dependabot[bot] in #2300 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.92.0 to 1.92.1 by @dependabot[bot] in #2299 * fix: resolve issues #2295, #2296, and #2297 by @aditmeno in #2298 * build(deps): update Helm v4 to 4.0.1 and helm-secrets to 4.7.4 by @aditmeno in #2304 * feat: add print-env command by @dschmidt in #2279 - Update to version 1.2.1: * build(deps): bump azure/setup-helm from 4.3.0 to 4.3.1 by @dependabot[bot] in #2274 * build(deps): bump github.com/helmfile/vals from 0.42.4 to 0.42.5 by @dependabot[bot] in #2272 * build(deps): bump golang.org/x/crypto from 0.43.0 to 0.45.0 by @dependabot[bot] in #2277 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.90.2 to 1.91.1 by @dependabot[bot] in #2284 * Fix four critical issues: environment merging, kubeVersion detection, lookup() with kustomize, and Helm 4 color flags by @aditmeno in #2276 * build(deps): bump go.uber.org/zap from 1.27.0 to 1.27.1 by @dependabot[bot] in #2283 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.20 to 1.32.0 by @dependabot[bot] in #2282 * build(deps): bump actions/checkout from 5 to 6 by @dependabot[bot] in #2287 * build(deps): bump k8s.io/client-go from 0.34.1 to 0.34.2 by @dependabot[bot] in #2285 * Fix four critical bugs: array merging (#2281), AWS SDK logging (#2270), helmDefaults skip flags (#2269), and OCI chart versions (#2247) by @aditmeno in #2288 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.91.1 to 1.92.0 by @dependabot[bot] in #2286 - Update to version 1.2.0: * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.15 to 1.31.16 by @dependabot[bot] in #2242 * build(deps): bump github.com/hashicorp/go-getter from 1.8.2 to 1.8.3 by @dependabot[bot] in #2241 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.89.0 to 1.89.1 by @dependabot[bot] in #2240 * build(deps): bump github.com/containerd/containerd from 1.7.28 to 1.7.29 by @dependabot[bot] in #2249 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.89.1 to 1.90.0 by @dependabot[bot] in #2248 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.16 to 1.31.17 by @dependabot[bot] in #2245 * build(deps): bump golang.org/x/sync from 0.17.0 to 0.18.0 by @dependabot[bot] in #2251 * build(deps): bump golangci/golangci-lint-action from 8 to 9 by @dependabot[bot] in #2250 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.17 to 1.31.18 by @dependabot[bot] in #2253 * build(deps): bump golang.org/x/term from 0.36.0 to 0.37.0 by @dependabot[bot] in #2256 * build(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.31.18 to 1.31.20 by @dependabot[bot] in #2259 * perf(app): Parallelize helmfile.d rendering and eliminate chdir race conditions by @aditmeno in #2261 * build(deps): bump k8s.io/apimachinery from 0.34.1 to 0.34.2 by @dependabot[bot] in #2264 * Issue-1883 fix by @zhaque44 in #2058 * feat: add Helm 4 support while maintaining Helm 3 compatibility by @aditmeno in #2262 * build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.90.0 to 1.90.2 by @dependabot[bot] in #2258 helmfile-1.2.3-bp160.1.1.src.rpm helmfile-1.2.3-bp160.1.1.x86_64.rpm helmfile-bash-completion-1.2.3-bp160.1.1.noarch.rpm helmfile-debuginfo-1.2.3-bp160.1.1.x86_64.rpm helmfile-fish-completion-1.2.3-bp160.1.1.noarch.rpm helmfile-zsh-completion-1.2.3-bp160.1.1.noarch.rpm helmfile-1.2.3-bp160.1.1.s390x.rpm helmfile-debuginfo-1.2.3-bp160.1.1.s390x.rpm helmfile-1.2.3-bp160.1.1.ppc64le.rpm helmfile-debuginfo-1.2.3-bp160.1.1.ppc64le.rpm helmfile-1.2.3-bp160.1.1.aarch64.rpm helmfile-debuginfo-1.2.3-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-9 Optional update for fprintd moderate openSUSE Backports SLE-16.0 This update ships fprintd 1.94.4 to openSUSE Leap 16.0 and SLES Package Hub 16.0 fprintd-1.94.4-bp160.1.1.aarch64.rpm fprintd-1.94.4-bp160.1.1.src.rpm fprintd-debuginfo-1.94.4-bp160.1.1.aarch64.rpm fprintd-debugsource-1.94.4-bp160.1.1.aarch64.rpm fprintd-devel-1.94.4-bp160.1.1.noarch.rpm fprintd-doc-1.94.4-bp160.1.1.noarch.rpm fprintd-lang-1.94.4-bp160.1.1.noarch.rpm fprintd-pam-1.94.4-bp160.1.1.aarch64.rpm fprintd-pam-debuginfo-1.94.4-bp160.1.1.aarch64.rpm fprintd-1.94.4-bp160.1.1.ppc64le.rpm fprintd-debuginfo-1.94.4-bp160.1.1.ppc64le.rpm fprintd-debugsource-1.94.4-bp160.1.1.ppc64le.rpm fprintd-pam-1.94.4-bp160.1.1.ppc64le.rpm fprintd-pam-debuginfo-1.94.4-bp160.1.1.ppc64le.rpm fprintd-1.94.4-bp160.1.1.x86_64.rpm fprintd-debuginfo-1.94.4-bp160.1.1.x86_64.rpm fprintd-debugsource-1.94.4-bp160.1.1.x86_64.rpm fprintd-pam-1.94.4-bp160.1.1.x86_64.rpm fprintd-pam-debuginfo-1.94.4-bp160.1.1.x86_64.rpm openSUSE-Leap-16.0-packagehub-90 Recommended update for micro-editor moderate openSUSE Backports SLE-16.0 This update for micro-editor fixes the following issues: Changes in micro-editor: - Update to version 2.0.15: * truecolor (supersedes the MICRO_TRUECOLOR environment variable) * showchars (deprecates indentchar) * lockbindings for completely disallowing plugins to modify keybindings * helpsplit for changing default split type for the help command * pageoverlap for setting number of lines kept during page up/page down * Added FirstTab, LastTab, FirstSplit and LastSplit commands * SkipMultiCursorBack as a counterpart to SkipMultiCursor * CursorToViewTop, CursorToViewCenter, CursorToViewBottom * Duplicate for duplicating the selection only, not the whole line * Plugins never write to settings.json or bindings.json anymore * Add onBufferOptionChanged callback * Add SpawnCursorAtLoc() * Expose bufpane's DoubleClick and TripleClick to plugins * Pass mouse info to {on,pre}MouseXXX callbacks * Support goto statement from Lua 5.2 * Various Syntax Highlighting improvements - Update to version 2.0.14: * matchbracestyle to choose whether to underline or highlight matching braces * matchbraceleft to choose whether to match brace to the left of the cursor * hltrailingws to highlight trailing whitespace * hltaberrors to highlight tab vs space inconsistencies * Add jump command to perform a relative goto * Add sub-word movement actions and improve word movements * Add paragraph selection actions and improve paragraph movements * Make Shift-PageUp/Down the default keybindings for SelectPageUp/Down * Add signatures support to improve filetype detection in ambiguous cases * Provide default.yaml for default syntax highlighting * Improvements in syntax highlighting for various languages * More generic support for mouse events handling * Add mouse release and mouse drag events * Make MouseMultiCursor toggle cursors * Better support for handling mouse events in lua * Better API for lua timers * Add onAnyEvent callback * Allow colorschemes to include other colorschemes * Give user's files in ~/.config/micro/ precedence over micro's built-in files * Respect umask when creating files * Smarter smartpaste * Make default fileformat value suited to the OS * Improve buffer view relocation after jumping to a far-away location * Improve return values of some actions for better action chaining * Autocomplete filetypes * Allow raw escape sequence to be bound with bind * Various small improvements * Fix various crashes * Fix micro killed by SIGINT sent to its shell job * Various fixes for setting local options * Various fixes for reloading settings via reload command * Various fixes for updating settings after changing filetype * Fix unneeded rewriting of settings.json * Fix overwriting persistent non-default settings in settings.json with temporary default settings * Don't apply rmtrailingws on autosave * Don't autosave unmodified buffer * Properly update autosave timer when the autosave option value changes * Fix opening filenames including colons with parsecursor * Fix replace to be able to insert '$' * Fix cursor moving to an unexpected location after a redo * Make cursor movements after selection consistent * Fix incorrect buffer view after reloading file * Fix lost mouse release events in case the pane becomes inactive * Add proper locking to LineArray to fix potential races * Cleanup indentation and trailing whitespace * Improve plugin documentation micro-editor-2.0.15-bp160.1.1.src.rpm micro-editor-2.0.15-bp160.1.1.x86_64.rpm micro-editor-2.0.15-bp160.1.1.s390x.rpm micro-editor-2.0.15-bp160.1.1.ppc64le.rpm micro-editor-2.0.15-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-91 Security update for chromium moderate openSUSE Backports SLE-16.0 This update for chromium fixes the following issues: Changes in chromium: - Chromium 144.0.7559.96 (boo#1257011) * CVE-2026-1220: Race in V8 - update INSTALL.sh to handle the addded tags in the desktop file (boo#1256938) chromedriver-144.0.7559.96-bp160.1.1.x86_64.rpm chromium-144.0.7559.96-bp160.1.1.nosrc.rpm chromium-144.0.7559.96-bp160.1.1.x86_64.rpm chromedriver-144.0.7559.96-bp160.1.1.ppc64le.rpm chromium-144.0.7559.96-bp160.1.1.ppc64le.rpm chromedriver-144.0.7559.96-bp160.1.1.aarch64.rpm chromium-144.0.7559.96-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-92 Recommended update for minisign moderate openSUSE Backports SLE-16.0 This update for minisign fixes the following issues: Changes in minisign: - Bugfix: * bugfix: duplicate command-line arguments [7dfdb3c] - Security fix: [gpg.fail/trustcomment] * Trusted comment injection (minisign) [6c59875] * trim(): only trim trailing \r\n, reject straight \r characters - Security fix: [gpg.fail/minisign] * Trusted comment injection (minisign) [a10dc92] * Bail out if the signature file contains unprintable characters - Update to version 0.12 * Libsodium is now an optional dependency. When using the Zig toolchain to compile Minisign, you can specify the -Dwithout-libsodium flag to build and run without libsodium. * Key identifiers are now zero-padded when printed. minisign-0.12-bp160.1.1.src.rpm minisign-0.12-bp160.1.1.x86_64.rpm minisign-debuginfo-0.12-bp160.1.1.x86_64.rpm minisign-debugsource-0.12-bp160.1.1.x86_64.rpm minisign-0.12-bp160.1.1.s390x.rpm minisign-debuginfo-0.12-bp160.1.1.s390x.rpm minisign-debugsource-0.12-bp160.1.1.s390x.rpm minisign-0.12-bp160.1.1.ppc64le.rpm minisign-debuginfo-0.12-bp160.1.1.ppc64le.rpm minisign-debugsource-0.12-bp160.1.1.ppc64le.rpm minisign-0.12-bp160.1.1.aarch64.rpm minisign-debuginfo-0.12-bp160.1.1.aarch64.rpm minisign-debugsource-0.12-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-93 Security update for sbctl moderate openSUSE Backports SLE-16.0 This update for sbctl fixes the following issues: Changes in sbctl: - Upgrade the embedded golang.org/x/net to 0.46.0 * Fixes: bsc#1251399, CVE-2025-47911: various algorithms with quadratic complexity when parsing HTML documents * Fixes: bsc#1251609, CVE-2025-58190: excessive memory consumption by 'html.ParseFragment' when processing specially crafted input - Update to version 0.18: * logging: fixup new go vet warning * workflows: add cc for cross compile * workflow: add sudo to apt * workflow: add pcsclite to ci * workflow: try enable cgo * go.mod: update golang.org/x/ dependencies * fix: avoid adding bogus Country attribute to subject DNs * sbctl: only store file if we did actually sign the file * installkernel: add post install hook for Debian's traditional installkernel * CI: missing libpcsclite pkg * workflows: add missing depends and new pattern keyword * Add yubikey example for create keys to the README * Initial yubikey backend keytype support * verify: ensure we pass args in correct order - bsc#1248949 (CVE-2025-58058): Bump xz to 0.5.14 - Update to version 0.17: * Ensure we don't wrongly compare input/output files when signing * Added --json supprt to sbctl verify * Ensure sbctl setup with no arguments returns a helpful output * Import latest Microsoft keys for KEK and db databases * Ensure we print the path of the file when encountering an invalid PE file * Misc fixups in tests * Misc typo fixes in prints - Update to version 0.16: * Ensure sbctl reads --config even if /etc/sbctl/sbctl.conf is present * Fixed a bug where sbctl would abort if the TPM eventlog contains the same byte multiple times * Fixed a landlock bug where enroll-keys --export did not work * Fixed a bug where an ESP mounted to multiple paths would not be detected * Exporting keys without efivars present work again * sbctl sign will now use the saved output path if the signed file is enrolled * enroll-keys --append will now work without --force. - Updates from version 0.15.4: * Fixed an issue where sign-all did not report a non-zero exit code when something failed * Fixed and issue where we couldn't write to a file with landlock * Fixed an issue where --json would print the human readable output and the json * Fixes landlock for UKI/bundles by disabling the sandbox feature * Some doc fixups that mentioned /usr/share/ sbctl-0.18-bp160.1.1.src.rpm sbctl-0.18-bp160.1.1.x86_64.rpm sbctl-debuginfo-0.18-bp160.1.1.x86_64.rpm sbctl-0.18-bp160.1.1.aarch64.rpm sbctl-debuginfo-0.18-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-94 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: Fri Jan 16 20:30:53 UTC 2026 - okurz@suse.com - Update to version 5.1768564451.45d5d5b2: * feat: optionally configure fake auth key+secret+expiration * OpenSuseIssueReporter: Avoid multiple push calls * unit_tests: Add unit tests for OpenSuseBugzillaUtils * unit_tests: Adapt the UI tests to the new kernel bug button * plugins: Introduce OpenSuseIssueReporter for external issue reporting Changes in os-autoinst: Fri Jan 16 20:43:12 UTC 2026 - okurz@suse.com - Update to version 5.1768577300.b85e486: * fix(dist): provide proper copyright headers in all spec-files * fix(dist): try to fix os-autoinst-obs-auto-submit reverting content Changes in openQA-devel-container: Fri Jan 16 20:41:22 UTC 2026 - okurz@suse.de - Update to version 5.1768564451.45d5d5b2e: * Update to latest openQA version openQA-5.1768564451.45d5d5b2-bp160.1.1.src.rpm openQA-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-auto-update-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-client-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-common-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-devel-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-doc-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-local-db-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-mcp-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-munin-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-single-instance-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm openQA-worker-5.1768564451.45d5d5b2-bp160.1.1.x86_64.rpm os-autoinst-5.1768577300.b85e486-bp160.1.1.src.rpm os-autoinst-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1768577300.b85e486-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1768577300.b85e486-bp160.1.1.x86_64.rpm openQA-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-auto-update-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-bootstrap-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-client-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-common-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-continuous-update-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-devel-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-doc-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-local-db-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-mcp-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-munin-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-python-scripts-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-single-instance-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm openQA-worker-5.1768564451.45d5d5b2-bp160.1.1.s390x.rpm os-autoinst-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-devel-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1768577300.b85e486-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1768577300.b85e486-bp160.1.1.s390x.rpm openQA-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-client-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-common-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-devel-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-doc-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-local-db-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-mcp-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-munin-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm openQA-worker-5.1768564451.45d5d5b2-bp160.1.1.ppc64le.rpm os-autoinst-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1768577300.b85e486-bp160.1.1.ppc64le.rpm openQA-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-auto-update-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-client-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-common-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-devel-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-doc-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-local-db-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-mcp-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-munin-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-single-instance-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm openQA-worker-5.1768564451.45d5d5b2-bp160.1.1.aarch64.rpm os-autoinst-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1768577300.b85e486-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1768577300.b85e486-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-95 Recommended update for OpenBoard moderate openSUSE Backports SLE-16.0 This update for OpenBoard fixes the following issues: Changes in OpenBoard: - update to release version 1.7.4 OpenBoard-1.7.4-bp160.1.1.src.rpm OpenBoard-1.7.4-bp160.1.1.x86_64.rpm OpenBoard-debuginfo-1.7.4-bp160.1.1.x86_64.rpm OpenBoard-debugsource-1.7.4-bp160.1.1.x86_64.rpm OpenBoard-1.7.4-bp160.1.1.aarch64.rpm OpenBoard-debuginfo-1.7.4-bp160.1.1.aarch64.rpm OpenBoard-debugsource-1.7.4-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-96 Recommended update for hauler moderate openSUSE Backports SLE-16.0 This update for hauler fixes the following issues: Changes in hauler: - Update to version 1.4.1 (bsc#1256546, CVE-2026-22772): * fixed typos for containerd imports (#493) * fix and support containerd imports of `hauls` (#492) * bump github.com/sigstore/fulcio (#489) - Update to version 1.4.0: * added/updated logging for `serve` and `remove` (#487) * added/fixed helm chart images/dependencies features (#485) * more experimental feature updates (#486) * add experimental notes (#483) * updated tempdir flag to store persistent flags (#484) * delete artifacts from store (#473) * path rewrites (#475) * updated/fixed workflow dependency versions (#478) - Update to version 1.3.2: * bump to latest cosign fork release (#481) * Bump golang.org/x/crypto in the go_modules group across 1 directory (#476) hauler-1.4.1-bp160.1.1.src.rpm hauler-1.4.1-bp160.1.1.x86_64.rpm hauler-1.4.1-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-97 Recommended update for os-autoinst-distri-opensuse-deps moderate openSUSE Backports SLE-16.0 This update for os-autoinst-distri-opensuse-deps fixes the following issues: Changes in os-autoinst-distri-opensuse-deps: - Added dependency perl(Inline::Python) - Added dependency mkisofs - Added dependency jq - Added dependency gzip os-autoinst-distri-opensuse-deps-1.1768848815.573053a6-bp160.1.1.noarch.rpm os-autoinst-distri-opensuse-deps-1.1768848815.573053a6-bp160.1.1.src.rpm os-autoinst-distri-opensuse-deps-worker-1.1768848815.573053a6-bp160.1.1.noarch.rpm openSUSE-Leap-16.0-packagehub-98 Recommended update for openQA, os-autoinst, openQA-devel-container moderate openSUSE Backports SLE-16.0 This update for openQA, os-autoinst, openQA-devel-container fixes the following issues: Changes in openQA: - Update to version 5.1769068942.639067ee: * Dependency cron 2026-01-22 * feat: Show limits on "Next & Previous" tab within table - Update to version 5.1768996386.e3f58202: * fix: Avoid Perl warning if product spec contains undef values * GenericBug: Add [QE] to the subject * doc: Mention version lookup of mediums and special value `*` * doc: Wrap section about medium types consistently at 80 characters * doc: Remove surplus white-space * chore: Improve indentation/wrapping of comment * feat: Improve error message when product contains no templates * tests: Improve/add tests for "no products found" case * KernelBug: Extend the kernel bug template * feat: Improve error message when falling back to version `*` - Update to version 5.1768856318.847e4fc7: * fix(systemd): prevent openqa-gru starting while mounts are unavailable * fix(systemd): try restarts on failure to be more resilient * feat: Show when "Next & Previous" jobs are limited * refactor: Format SQL code for "Next & Previous" jobs more nicely * refactor: Simplify determining latest job in "Next & Previous" list - Update to version 5.1768402729.462b3957: * feat: optionally configure fake auth key+secret+expiration Changes in os-autoinst: - Update to version 5.1769153586.72cabd0: * Replace remaining functions with subroutine signatures in 18-qemu.t * Fix snapshot overlay mechanism to avoid duplication * fix(dist): provide proper copyright headers in all spec-files * fix(dist): try to fix os-autoinst-obs-auto-submit reverting content * fix(dist): exclude unstable t/28-signalblocker.t in OBS checks * Add documentation of APPEND variable * Add undocumented KERNEL/INITRD to the supported variables * os-autoinst-generate-needle-preview: Embed PNG Changes in openQA-devel-container: - Update to version 5.1769167363.fd9ad8d88: * Update to latest openQA version openQA-5.1769068942.639067ee-bp160.1.1.src.rpm openQA-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-auto-update-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-bootstrap-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-client-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-common-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-continuous-update-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-devel-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-doc-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-local-db-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-mcp-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-munin-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-python-scripts-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-single-instance-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-single-instance-nginx-5.1769068942.639067ee-bp160.1.1.x86_64.rpm openQA-worker-5.1769068942.639067ee-bp160.1.1.x86_64.rpm os-autoinst-5.1769153586.72cabd0-bp160.1.1.src.rpm os-autoinst-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-debuginfo-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-debugsource-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-devel-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-ipmi-deps-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-openvswitch-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-qemu-kvm-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-qemu-x86-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-s390-deps-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm os-autoinst-swtpm-5.1769153586.72cabd0-bp160.1.1.x86_64.rpm openQA-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-auto-update-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-bootstrap-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-client-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-common-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-continuous-update-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-devel-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-doc-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-local-db-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-mcp-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-munin-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-python-scripts-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-single-instance-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-single-instance-nginx-5.1769068942.639067ee-bp160.1.1.s390x.rpm openQA-worker-5.1769068942.639067ee-bp160.1.1.s390x.rpm os-autoinst-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-debuginfo-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-debugsource-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-devel-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-ipmi-deps-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-openvswitch-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-s390-deps-5.1769153586.72cabd0-bp160.1.1.s390x.rpm os-autoinst-swtpm-5.1769153586.72cabd0-bp160.1.1.s390x.rpm openQA-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-auto-update-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-bootstrap-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-client-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-common-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-continuous-update-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-devel-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-doc-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-local-db-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-mcp-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-munin-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-python-scripts-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-single-instance-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-single-instance-nginx-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm openQA-worker-5.1769068942.639067ee-bp160.1.1.ppc64le.rpm os-autoinst-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-debuginfo-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-debugsource-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-devel-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-ipmi-deps-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-openvswitch-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-s390-deps-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm os-autoinst-swtpm-5.1769153586.72cabd0-bp160.1.1.ppc64le.rpm openQA-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-auto-update-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-bootstrap-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-client-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-common-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-continuous-update-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-devel-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-doc-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-local-db-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-mcp-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-munin-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-python-scripts-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-single-instance-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-single-instance-nginx-5.1769068942.639067ee-bp160.1.1.aarch64.rpm openQA-worker-5.1769068942.639067ee-bp160.1.1.aarch64.rpm os-autoinst-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-debuginfo-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-debugsource-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-devel-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-ipmi-deps-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-openvswitch-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-s390-deps-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm os-autoinst-swtpm-5.1769153586.72cabd0-bp160.1.1.aarch64.rpm openSUSE-Leap-16.0-packagehub-99 Recommended update for tryton, trytond, gnuhealth, trytond_account, gnuhealth-client, proteus, python-PyWebDAV3-GNUHealth, trytond_account_invoice, trytond_party, trytond_product, trytond_purchase, trytond_stock, trytond_stock_lot, trytond_stock_supply moderate openSUSE Backports SLE-16.0 This update for tryton, trytond, gnuhealth, trytond_account, gnuhealth-client, proteus, python-PyWebDAV3-GNUHealth, trytond_account_invoice, trytond_party, trytond_product, trytond_purchase, trytond_stock, trytond_stock_lot, trytond_stock_supply fixes the following issues: Changes in tryton: - Version 7.0.31 - Bugfix Release - Version 7.0.29 - Bugfix Release Changes in trytond: - Version 7.0.44 - Bugfix Release - Version 7.0.43 - Bugfix Release - Version 7.0.42 - Bugfix Release - Version 7.0.40 - Bugfix Release - Version 7.0.38 - Bugfix Release - Version 7.0.37 - Bugfix Release - Version 7.0.36 - Security Release for issue #14220 - Version 7.0.35 - Bugfix Release - Version 7.0.34 - Bugfix Release - Version 7.0.33 - Bugfix Release Changes in gnuhealth: - version 5.0.5 * optimizations to language files * various fixes * install_demo_database.sh added - version 5.0.2 * inconsistent naming of package and directories, switch to local copy * gnuhealth.keyring removed due to local copy * Remove unused dependencies from health module * Wrong cursor field teeth (dentistry module) * remove pillow dependency from lab and dentistry Changes in trytond_account: - Version 7.0.23 - Bugfix Release - Version 7.0.22 - Bugfix Release - Version 7.0.21 - Bugfix Release Changes in gnuhealth-client: - version 5.0.1 * Fix issue #11. default settings for federation.gnhealth.org not working * allow Python 3.14 Changes in proteus: - Version 7.0.3 - Bugfix Release - Version 7.0.2 - Bugfix Release Changes in python-PyWebDAV3-GNUHealth: - version 0.13.0 * no changelog provided * source file renamed Changes in trytond_account_invoice: - Version 7.0.14 - Bugfix Release Changes in trytond_party: - Version 7.0.7 - Bugfix Release Changes in trytond_product: - Version 7.0.3 - Bugfix Release Changes in trytond_purchase: - Version 7.0.16 - Bugfix Release - Version 7.0.15 - Bugfix Release Changes in trytond_stock: - Version 7.0.16 - Bugfix Release - Version 7.0.15 - Bugfix Release - Version 7.0.14 - Bugfix Release Changes in trytond_stock_lot: - Version 7.0.5 - Bugfix Release - Version 7.0.4 - Bugfix Release Changes in trytond_stock_supply: - Version 7.0.5 - Bugfix Release tryton-7.0.31-bp160.1.1.noarch.rpm tryton-7.0.31-bp160.1.1.src.rpm trytond-7.0.44-bp160.1.1.noarch.rpm trytond-7.0.44-bp160.1.1.src.rpm gnuhealth-5.0.5-bp160.1.1.noarch.rpm gnuhealth-5.0.5-bp160.1.1.src.rpm gnuhealth-orthanc-5.0.5-bp160.1.1.noarch.rpm trytond_account-7.0.23-bp160.1.1.noarch.rpm trytond_account-7.0.23-bp160.1.1.src.rpm gnuhealth-client-5.0.1-bp160.1.1.noarch.rpm gnuhealth-client-5.0.1-bp160.1.1.src.rpm proteus-7.0.3-bp160.1.1.noarch.rpm proteus-7.0.3-bp160.1.1.src.rpm python-PyWebDAV3-GNUHealth-0.13.0-bp160.1.1.src.rpm python313-PyWebDAV3-GNUHealth-0.13.0-bp160.1.1.noarch.rpm trytond_account_invoice-7.0.14-bp160.1.1.noarch.rpm trytond_account_invoice-7.0.14-bp160.1.1.src.rpm trytond_party-7.0.7-bp160.1.1.noarch.rpm trytond_party-7.0.7-bp160.1.1.src.rpm trytond_product-7.0.3-bp160.1.1.noarch.rpm trytond_product-7.0.3-bp160.1.1.src.rpm trytond_purchase-7.0.16-bp160.1.1.noarch.rpm trytond_purchase-7.0.16-bp160.1.1.src.rpm trytond_stock-7.0.16-bp160.1.1.noarch.rpm trytond_stock-7.0.16-bp160.1.1.src.rpm trytond_stock_lot-7.0.5-bp160.1.1.noarch.rpm trytond_stock_lot-7.0.5-bp160.1.1.src.rpm trytond_stock_supply-7.0.5-bp160.1.1.noarch.rpm trytond_stock_supply-7.0.5-bp160.1.1.src.rpm