The following Fedora EPEL 9 Security updates need testing: Age URL 3 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2025-70d131bc6c phpMyAdmin-5.2.2-1.el9 3 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2025-dd34d33955 lemonldap-ng-2.20.2-1.el9 1 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2025-f34b49ec4b rust-routinator-0.14.1-2.el9 The following builds have been pushed to Fedora EPEL 9 updates-testing clamav-1.0.8-1.el9 dav1d-1.5.1-1.el9 ddgr-2.2-1.el9 fastd-23-1.el9 lexertl17-1.1.3-1.el9 nginx-mod-headers-more-0.38-1.el9 parsertl17-1.0.0-1.el9 podman-tui-1.3.1-1.el9 prometheus-podman-exporter-1.14.1-1.el9 radicale-3.4.1-1.el9 rust-bcder-0.7.5-1.el9 rust-bitflags-2.8.0-1.el9 rust-brotli-decompressor-4.0.2-1.el9 rust-cc-1.2.10-1.el9 rust-chrono-tz-0.10.1-1.el9 rust-clang-ast-0.1.29-1.el9 rust-cpufeatures-0.2.17-1.el9 rust-crunchy-0.2.3-1.el9 rust-fs-err-3.1.0-1.el9 rust-indexmap-2.7.1-1.el9 rust-instability-0.3.7-1.el9 rust-ipnet-2.11.0-1.el9 rust-openssl-0.10.69-1.el9 rust-openssl-probe-0.1.6-1.el9 rust-prettyplease-0.2.29-1.el9 Details about builds: ================================================================================ clamav-1.0.8-1.el9 (FEDORA-EPEL-2025-c955ec4753) End-user tools for the Clam Antivirus scanner -------------------------------------------------------------------------------- Update Information: Update to 1.0.8 -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Orion Poplawski <orion@xxxxxxxx> - 1.0.8-1 - Update to 1.0.8 -------------------------------------------------------------------------------- ================================================================================ dav1d-1.5.1-1.el9 (FEDORA-EPEL-2025-6f8ed0a49e) AV1 cross-platform Decoder -------------------------------------------------------------------------------- Update Information: Update to version 1.5.1. Release notes: https://code.videolan.org/videolan/dav1d/-/blob/1.5.1/NEWS TL;DR: Performance optimizations and a fix for a potential deadlock. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 1.5.1-1 - Update to version 1.5.1; Fixes RHBZ#2338924 * Thu Jan 16 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.5.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ ddgr-2.2-1.el9 (FEDORA-EPEL-2025-523ed9e38d) DuckDuckGo from the terminal -------------------------------------------------------------------------------- Update Information: Update to 2.2 -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Robert-André Mauchin <zebob.m@xxxxxxxxx> - 2.2-1 - Update to 2.2 * Thu Jan 16 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Thu Jul 25 2024 Miroslav Suchý <msuchy@xxxxxxxxxx> - 2.1-8 - convert GPLv3+ license to SPDX * Wed Jul 17 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Wed Jan 24 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Jan 19 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Wed Jul 19 2023 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Wed Mar 15 2023 Zephyrus Lykos <fedora@xxxxxxxxx> - 2.1-3 - Move fish completion file to vendor_completions.d -------------------------------------------------------------------------------- References: [ 1 ] Bug #2256282 - ddgr-2.2 is available https://bugzilla.redhat.com/show_bug.cgi?id=2256282 -------------------------------------------------------------------------------- ================================================================================ fastd-23-1.el9 (FEDORA-EPEL-2025-799e5ef6f0) Fast and secure tunneling daemon -------------------------------------------------------------------------------- Update Information: This release contains a number of small improvements and bugfixes, including mitigations for the LOW severity vulnerability CVE-2025-24356. Bugfixes Add mitigations for fast-reconnect amplification attacks When receiving a data packet from an unknown IP address/port combination, fastd will assume that one of its connected peers has moved to a new address (for example due to internet lines with dynamic IP, or roaming between WWAN and a local internet connection) and initiate a reconnect by sending a handshake packet. This â??fast reconnectâ?? avoids having to wait for a session timeout (up to ~90s) until a new connection is established. Even a 1-byte UDP packet just containing the fastd packet type header can trigger a much larger handshake packet (~150 bytes of UDP payload). With fastd v22, this number is doubled, because two handshakes are sent (one in a pre-v22-compatible format and one in a new L2TP-style format). Including IPv4 and UDP headers, the resulting amplification factor is roughly 12-13. By sending data packets with a spoofed source address to fastd instances reachable on the internet, this amplification of UDP traffic might be used to facilitate a Distributed Denial of Service attack. fastd has always implemented rate limiting for handshakes to unknown IP addresses and ports to 1 handshake per 15s to avoid this kind of attack, however the rate is limited per-port and not per-address, thus still allowing handshakes to be sent to all 65535 UDP ports of the same IP address unlimited. The issue has been mitigated in fastd v23 by a number of changes: Rate-limiting has been changed changed to be applied per-address instead of per- port Only one handshake instead of two handshakes is sent for fast-reconnect (by determining from the format of the data packet whether a pre-v22 or L2TP-style handshake should be used) Require at least a full method header instead of just a single byte for a data packet to be considered valid. This does not have an effect on instances that enable the null method (regardless of null being actually in use), as a single- byte UDP packet is a valid null keepalive, but for all other methods the amplification factor is slightly reduced. Only fastd instances that allow connections from arbitrary IP addresses are vulnerable. Instances in a â??clientâ?? role that configure their peers using the remote config option (which includes the common deployment as part of the Gluon wireless mesh firmware) will not respond to unexpected data packets with a handshake and are therefore unaffected. CVE-2025-24356 has been assigned to this issue. The severity of this vulnerability is considered LOW. A GitHub security advisory can be found under GHSA-pggg-vpfv-4rcv. Fix config loading to fail on offload l2tp no; when L2TP offloading is unsupported by the fastd build or the kernel Fix assembly Salsa20(/12) implementations accidentally generating the Linux- specific .note.GNU-stack ELF section on non-Linux systems This is unlikely to have caused any issues, as other systems should just ignore the unknown section. Status socket: - Fix interface name information with L2TP offloading - Add per- peer MTU information Documentation: - Fix incorrect â??persist interfaceâ?? examples - Improve explanation of float option Build: - Fix build on macOS (again) - Fix build with Meson 0.49 (the minimum version marked as supported by fastd) Other changes Add support for Indirect Branch Tracking and Shadow Stacks on x86 The assembly Salsa20(/12) implementations have been marked compatible with IBT and SHSTK, which are part of Intel CET (Control-flow Enforcement Technology) and can be enabled using the -fcf-protection GCC option. The file COPYRIGHT has been renamed to LICENSE The vendored version of libmnl that is used with libmnl_builtin=true has been updated to 1.0.5 -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Felix Kaechele <felix@xxxxxxxxxxx> - 23-1 - update to 23 * Thu Jan 16 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 22-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Wed Jul 17 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 22-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Thu Feb 8 2024 Felix Kaechele <felix@xxxxxxxxxxx> - 22-15 - Add tmpfiles configuration for potential socket location * Wed Jan 24 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 22-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Jan 19 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 22-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Thu Oct 5 2023 Remi Collet <remi@xxxxxxxxxxxxxxxxx> - 22-12 - rebuild for new libsodium * Sat Sep 9 2023 Felix Kaechele <felix@xxxxxxxxxxx> - 22-11 - clean up spec file - use rpmautospec - use forge macros - fix License tag * Wed Jul 19 2023 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 22-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild -------------------------------------------------------------------------------- References: [ 1 ] Bug #2342133 - fastd-23 is available https://bugzilla.redhat.com/show_bug.cgi?id=2342133 -------------------------------------------------------------------------------- ================================================================================ lexertl17-1.1.3-1.el9 (FEDORA-EPEL-2025-9eccf9cfee) The Modular Lexical Analyser Generator -------------------------------------------------------------------------------- Update Information: Update lexertl17 and parsertl17 to their latest versions. -------------------------------------------------------------------------------- ChangeLog: * Sat Jan 25 2025 Benjamin A. Beasley <code@xxxxxxxxxxxxxxxxxx> - 1:1.1.3-1 - Update to 1.1.3 and correct License -------------------------------------------------------------------------------- ================================================================================ nginx-mod-headers-more-0.38-1.el9 (FEDORA-EPEL-2025-8cd7e32fa7) This module allows adding, setting, or clearing specified input/output headers -------------------------------------------------------------------------------- Update Information: first package release -------------------------------------------------------------------------------- ChangeLog: * Sat Jan 25 2025 LuboÅ¡ Uhliarik <luhliari@xxxxxxxxxx> - 0.38-1 - new version 0.38 * Fri Jan 24 2025 LuboÅ¡ Uhliarik <luhliari@xxxxxxxxxx> - 0.37-1 - Initial packaging -------------------------------------------------------------------------------- ================================================================================ parsertl17-1.0.0-1.el9 (FEDORA-EPEL-2025-9eccf9cfee) The Modular Parser Generator -------------------------------------------------------------------------------- Update Information: Update lexertl17 and parsertl17 to their latest versions. -------------------------------------------------------------------------------- ChangeLog: * Sat Jan 25 2025 Benjamin A. Beasley <code@xxxxxxxxxxxxxxxxxx> - 1:1.0.0-1 - Update to 1.0.0 -------------------------------------------------------------------------------- ================================================================================ podman-tui-1.3.1-1.el9 (FEDORA-EPEL-2025-85f37d887f) Podman Terminal User Interface -------------------------------------------------------------------------------- Update Information: release 1.3.1 -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Navid Yaghoobi <navidys@xxxxxxxxxxxxxxxxx> - 1.3.1-1 - release v1.3.1 -------------------------------------------------------------------------------- ================================================================================ prometheus-podman-exporter-1.14.1-1.el9 (FEDORA-EPEL-2025-31967fae2a) Prometheus exporter for podman environment -------------------------------------------------------------------------------- Update Information: release v1.14.1 -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Navid Yaghoobi <navidys@xxxxxxxxxxxxxxxxx> - 1.14.1-1 - release v1.14.1 * Sat Jan 18 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.14.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ radicale-3.4.1-1.el9 (FEDORA-EPEL-2025-0df59f536e) A simple CalDAV (calendar) and CardDAV (contact) server -------------------------------------------------------------------------------- Update Information: Update to 3.4.1 -------------------------------------------------------------------------------- ChangeLog: -------------------------------------------------------------------------------- References: [ 1 ] Bug #2342121 - radicale-3.4.1 is available https://bugzilla.redhat.com/show_bug.cgi?id=2342121 -------------------------------------------------------------------------------- ================================================================================ rust-bcder-0.7.5-1.el9 (FEDORA-EPEL-2025-ec6adc5e61) Handling of data encoded in BER, CER, and DER -------------------------------------------------------------------------------- Update Information: Update to version 0.7.5. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.7.5-1 - Update to version 0.7.5; Fixes RHBZ#2339471 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.7.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Fri Jul 19 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.7.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-bitflags-2.8.0-1.el9 (FEDORA-EPEL-2025-50093d505e) Macro to generate structures which behave like bitflags -------------------------------------------------------------------------------- Update Information: Update to version 2.8.0. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 2.8.0-1 - Update to version 2.8.0; Fixes RHBZ#2338099 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-brotli-decompressor-4.0.2-1.el9 (FEDORA-EPEL-2025-e30bbc99fc) Brotli decompressor with no_std support -------------------------------------------------------------------------------- Update Information: Update to version 4.0.2. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 4.0.2-1 - Update to version 4.0.2; Fixes RHBZ#2339090 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 4.0.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-cc-1.2.10-1.el9 (FEDORA-EPEL-2025-bde674e40c) Build-time dependency for Cargo build scripts to invoke the native C compiler -------------------------------------------------------------------------------- Update Information: Update to version 1.2.10. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 1.2.10-1 - Update to version 1.2.10; Fixes RHBZ#2338593 -------------------------------------------------------------------------------- ================================================================================ rust-chrono-tz-0.10.1-1.el9 (FEDORA-EPEL-2025-672b437b16) TimeZone implementations for chrono from the IANA database -------------------------------------------------------------------------------- Update Information: Update to version 0.10.1. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.10.1-1 - Update to version 0.10.1; Fixes RHBZ#2338538 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-clang-ast-0.1.29-1.el9 (FEDORA-EPEL-2025-1d9043ae92) Data structures for processing Clang's -ast-dump=json format -------------------------------------------------------------------------------- Update Information: Update to version 0.1.29. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.1.29-1 - Update to version 0.1.29; Fixes RHBZ#2338717 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.1.27-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-cpufeatures-0.2.17-1.el9 (FEDORA-EPEL-2025-cb0cfdf12e) Lightweight runtime CPU feature detection for x86/x86_64 and aarch64 -------------------------------------------------------------------------------- Update Information: Update to version 0.2.17. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.2.17-1 - Update to version 0.2.17; Fixes RHBZ#2342049 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.2.16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-crunchy-0.2.3-1.el9 (FEDORA-EPEL-2025-7ffce485e4) Crunchy unroller: deterministically unroll constant loops -------------------------------------------------------------------------------- Update Information: Update to version 0.2.3. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.2.3-1 - Update to version 0.2.3; Fixes RHBZ#2339436 * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.2.2-8 - Regenerate with rust2rpm v24 -------------------------------------------------------------------------------- ================================================================================ rust-fs-err-3.1.0-1.el9 (FEDORA-EPEL-2025-2cfab08ddb) Drop-in replacement for std::fs with more helpful error messages -------------------------------------------------------------------------------- Update Information: Update to version 3.1.0. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 3.1.0-1 - Update to version 3.1.0; Fixes RHBZ#2339322 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 3.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-indexmap-2.7.1-1.el9 (FEDORA-EPEL-2025-c922fc5a46) Hash table with consistent order and fast iteration -------------------------------------------------------------------------------- Update Information: Update to version 2.7.1. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 2.7.1-1 - Update to version 2.7.1; Fixes RHBZ#2338938 -------------------------------------------------------------------------------- ================================================================================ rust-instability-0.3.7-1.el9 (FEDORA-EPEL-2025-99524ccc7e) Rust API stability attributes for the rest of us -------------------------------------------------------------------------------- Update Information: Update to version 0.3.7. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.3.7-1 - Update to version 0.3.7; Fixes RHBZ#2335544 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.3.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-ipnet-2.11.0-1.el9 (FEDORA-EPEL-2025-67c883bbd8) Types and useful methods for working with IP prefixes -------------------------------------------------------------------------------- Update Information: Update to version 2.11.0. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 2.11.0-1 - Update to version 2.11.0; Fixes RHBZ#2338939 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 2.10.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-openssl-0.10.69-1.el9 (FEDORA-EPEL-2025-ce123587fb) OpenSSL bindings -------------------------------------------------------------------------------- Update Information: Update to version 0.10.69. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.10.69-1 - Update to version 0.10.96; Fixes RHBZ#2342104 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.10.68-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-openssl-probe-0.1.6-1.el9 (FEDORA-EPEL-2025-c5f71a8248) Tool for helping to find SSL certificate locations on the system for OpenSSL -------------------------------------------------------------------------------- Update Information: Update to version 0.1.6. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.1.6-1 - Update to version 0.1.6 * Sun Jan 19 2025 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.1.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild * Sat Jul 20 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.1.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Fri Jan 26 2024 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.1.5-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Sat Aug 5 2023 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.1.5-5 - Regenerate with rust2rpm v24 * Fri Jul 21 2023 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 0.1.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild -------------------------------------------------------------------------------- ================================================================================ rust-prettyplease-0.2.29-1.el9 (FEDORA-EPEL-2025-43525ee6eb) Minimal syn syntax tree pretty-printer -------------------------------------------------------------------------------- Update Information: Update to version 0.2.29. -------------------------------------------------------------------------------- ChangeLog: * Sun Jan 26 2025 Fabio Valentini <decathorpe@xxxxxxxxx> - 0.2.29-1 - Update to version 0.2.29; Fixes RHBZ#2335722 --------------------------------------------------------------------------------
-- _______________________________________________ epel-devel mailing list -- epel-devel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to epel-devel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/epel-devel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue