Aggregator

python3-docs-3.12.6-1.fc39 python3.12-3.12.6-1.fc39

14 hours 47 minutes ago
FEDORA-2024-e453a209e9 Packages in this update:
  • python3.12-3.12.6-1.fc39
  • python3-docs-3.12.6-1.fc39
Update description: This is the sixth maintenance release of Python 3.12

Python 3.12 is the newest major release of the Python programming language, and it contains many new features and optimizations. 3.12.6 is the latest maintenance release, containing about 90 bugfixes, build improvements and documentation changes since 3.12.5. This is an expedited release to address the following security issues:

  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.

python3-docs-3.12.6-1.fc40 python3.12-3.12.6-1.fc40

14 hours 47 minutes ago
FEDORA-2024-1d0cb3b43f Packages in this update:
  • python3.12-3.12.6-1.fc40
  • python3-docs-3.12.6-1.fc40
Update description: This is the sixth maintenance release of Python 3.12

Python 3.12 is the newest major release of the Python programming language, and it contains many new features and optimizations. 3.12.6 is the latest maintenance release, containing about 90 bugfixes, build improvements and documentation changes since 3.12.5. This is an expedited release to address the following security issues:

  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.

python3.12-3.12.6-1.fc41

14 hours 47 minutes ago
FEDORA-2024-6def755315 Packages in this update:
  • python3.12-3.12.6-1.fc41
Update description: This is the sixth maintenance release of Python 3.12

Python 3.12 is the newest major release of the Python programming language, and it contains many new features and optimizations. 3.12.6 is the latest maintenance release, containing about 90 bugfixes, build improvements and documentation changes since 3.12.5. This is an expedited release to address the following security issues:

  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.

python3.10-3.10.15-1.fc40

14 hours 50 minutes ago
FEDORA-2024-f750328c3b Packages in this update:
  • python3.10-3.10.15-1.fc40
Update description: This is a security release of Python 3.10

Note: The release you're looking at is Python 3.10.15, a security bugfix release for the legacy 3.10 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here.

Security content in this release
  • gh-123678 and gh-116741: Upgrade bundled libexpat to 2.6.3 to fix CVE-2024-28757, CVE-2024-45490, CVE-2024-45491 and CVE-2024-45492.
  • gh-118486: os.mkdir() on Windows now accepts mode of 0o700 to restrict the new directory to the current user. This fixes CVE-2024-4030 affecting tempfile.mkdtemp() in scenarios where the base temporary directory is more permissive than the default.
  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-113171: Fixed various false positives and false negatives in IPv4Address.is_private, IPv4Address.is_global, IPv6Address.is_private, IPv6Address.is_global. Fixes CVE-2024-4032.
  • gh-67693: Fix urllib.parse.urlunparse() and urllib.parse.urlunsplit() for URIs with path starting with multiple slashes and no authority. Fixes CVE-2015-2104.
  • gh-121957: Fixed missing audit events around interactive use of Python, now also properly firing for python -i, as well as for python -m asyncio. The event in question is cpython.run_stdin.
  • gh-122133: Authenticate the socket connection for the socket.socketpair() fallback on platforms where AF_UNIX is not available like Windows.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-114572: ssl.SSLContext.cert_store_stats() and ssl.SSLContext.get_ca_certs() now correctly lock access to the certificate store, when the ssl.SSLContext is shared across multiple threads.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.
  • gh-121650: email headers with embedded newlines are now quoted on output. The generator will now refuse to serialize (write) headers that are unsafely folded or delimited; see verify_generated_headers. That's CVE-2024-6923.
  • gh-119690: Fixes data type confusion in audit events raised by _winapi.CreateFile and _winapi.CreateNamedPipe.
  • gh-116773: Fix instances of <_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash.
  • gh-112275: A deadlock involving pystate.c's HEAD_LOCK in posixmodule.c at fork is now fixed.

python3.10-3.10.15-1.fc39

14 hours 50 minutes ago
FEDORA-2024-39d459dd00 Packages in this update:
  • python3.10-3.10.15-1.fc39
Update description: This is a security release of Python 3.10

Note: The release you're looking at is Python 3.10.15, a security bugfix release for the legacy 3.10 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here.

Security content in this release
  • gh-123678 and gh-116741: Upgrade bundled libexpat to 2.6.3 to fix CVE-2024-28757, CVE-2024-45490, CVE-2024-45491 and CVE-2024-45492.
  • gh-118486: os.mkdir() on Windows now accepts mode of 0o700 to restrict the new directory to the current user. This fixes CVE-2024-4030 affecting tempfile.mkdtemp() in scenarios where the base temporary directory is more permissive than the default.
  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-113171: Fixed various false positives and false negatives in IPv4Address.is_private, IPv4Address.is_global, IPv6Address.is_private, IPv6Address.is_global. Fixes CVE-2024-4032.
  • gh-67693: Fix urllib.parse.urlunparse() and urllib.parse.urlunsplit() for URIs with path starting with multiple slashes and no authority. Fixes CVE-2015-2104.
  • gh-121957: Fixed missing audit events around interactive use of Python, now also properly firing for python -i, as well as for python -m asyncio. The event in question is cpython.run_stdin.
  • gh-122133: Authenticate the socket connection for the socket.socketpair() fallback on platforms where AF_UNIX is not available like Windows.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-114572: ssl.SSLContext.cert_store_stats() and ssl.SSLContext.get_ca_certs() now correctly lock access to the certificate store, when the ssl.SSLContext is shared across multiple threads.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.
  • gh-121650: email headers with embedded newlines are now quoted on output. The generator will now refuse to serialize (write) headers that are unsafely folded or delimited; see verify_generated_headers. That's CVE-2024-6923.
  • gh-119690: Fixes data type confusion in audit events raised by _winapi.CreateFile and _winapi.CreateNamedPipe.
  • gh-116773: Fix instances of <_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash.
  • gh-112275: A deadlock involving pystate.c's HEAD_LOCK in posixmodule.c at fork is now fixed.

python3.10-3.10.15-1.fc41

14 hours 50 minutes ago
FEDORA-2024-2b163f9201 Packages in this update:
  • python3.10-3.10.15-1.fc41
Update description: This is a security release of Python 3.10

Note: The release you're looking at is Python 3.10.15, a security bugfix release for the legacy 3.10 series. Python 3.12 is now the latest feature release series of Python 3. Get the latest release of 3.12.x here.

Security content in this release
  • gh-123678 and gh-116741: Upgrade bundled libexpat to 2.6.3 to fix CVE-2024-28757, CVE-2024-45490, CVE-2024-45491 and CVE-2024-45492.
  • gh-118486: os.mkdir() on Windows now accepts mode of 0o700 to restrict the new directory to the current user. This fixes CVE-2024-4030 affecting tempfile.mkdtemp() in scenarios where the base temporary directory is more permissive than the default.
  • gh-123067: Fix quadratic complexity in parsing "-quoted cookie values with backslashes by http.cookies. Fixes CVE-2024-7592.
  • gh-113171: Fixed various false positives and false negatives in IPv4Address.is_private, IPv4Address.is_global, IPv6Address.is_private, IPv6Address.is_global. Fixes CVE-2024-4032.
  • gh-67693: Fix urllib.parse.urlunparse() and urllib.parse.urlunsplit() for URIs with path starting with multiple slashes and no authority. Fixes CVE-2015-2104.
  • gh-121957: Fixed missing audit events around interactive use of Python, now also properly firing for python -i, as well as for python -m asyncio. The event in question is cpython.run_stdin.
  • gh-122133: Authenticate the socket connection for the socket.socketpair() fallback on platforms where AF_UNIX is not available like Windows.
  • gh-121285: Remove backtracking from tarfile header parsing for hdrcharset, PAX, and GNU sparse headers. That's CVE-2024-6232.
  • gh-114572: ssl.SSLContext.cert_store_stats() and ssl.SSLContext.get_ca_certs() now correctly lock access to the certificate store, when the ssl.SSLContext is shared across multiple threads.
  • gh-102988: email.utils.getaddresses() and email.utils.parseaddr() now return ('', '') 2-tuples in more situations where invalid email addresses are encountered instead of potentially inaccurate values. Add optional strict parameter to these two functions: use strict=False to get the old behavior, accept malformed inputs. getattr(email.utils, 'supports_strict_parsing', False) can be use to check if the strict paramater is available. This improves the CVE-2023-27043 fix.
  • gh-123270: Sanitize names in zipfile.Path to avoid infinite loops (gh-122905) without breaking contents using legitimate characters. That's CVE-2024-8088.
  • gh-121650: email headers with embedded newlines are now quoted on output. The generator will now refuse to serialize (write) headers that are unsafely folded or delimited; see verify_generated_headers. That's CVE-2024-6923.
  • gh-119690: Fixes data type confusion in audit events raised by _winapi.CreateFile and _winapi.CreateNamedPipe.
  • gh-116773: Fix instances of <_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash.
  • gh-112275: A deadlock involving pystate.c's HEAD_LOCK in posixmodule.c at fork is now fixed.

python3.6-3.6.15-37.fc42

15 hours 2 minutes ago
FEDORA-2024-f3ff13f3c2 Packages in this update:
  • python3.6-3.6.15-37.fc42
Update description:

Automatic update for python3.6-3.6.15-37.fc42.

Changelog * Thu Sep 5 2024 Lumír Balhar <lbalhar@redhat.com> - 3.6.15-37 - Security fix for CVE-2024-6232 (rhbz#2310092) * Wed Sep 4 2024 Miroslav Suchý <msuchy@redhat.com> - 3.6.15-36 - convert license to SPDX

bluez-5.78-1.fc41 iwd-2.21-1.fc41 libell-0.69-1.fc41

1 day 10 hours ago
FEDORA-2024-acb9425c93 Packages in this update:
  • bluez-5.78-1.fc41
  • iwd-2.21-1.fc41
  • libell-0.69-1.fc41
Update description:

libell 0.69:

Add support for getting remaining microseconds left on a timer. Add support for setting link MTU on a network interface.

iwd 2.21:

Fix issue with pending scan requests after regdom update. Fix issue with handling the rearming of the roaming timeout. Fix issue with survey request and externally triggered scans. Fix issue with RSSI fallback when setting CQM threshold fails. Fix issue with FT-over-Air without offchannel support. Add support for per station Affinities property.

bluez 5.78:

Fix issue with handling notification of scanned BISes to BASS Fix issue with handling checking BIS caps against peer caps. Fix issue with handling MGMT Set Device Flags overwrites. Fix issue with handling ASE notification order. Fix issue with handling BIG Info report events. Fix issue with handling PACS Server role. Fix issue with registering UHID_START multiple times. Fix issue with pairing method not setting auto-connect.

bluez-5.78-1.fc40 iwd-2.21-1.fc40 libell-0.69-1.fc40

1 day 10 hours ago
FEDORA-2024-223428e702 Packages in this update:
  • bluez-5.78-1.fc40
  • iwd-2.21-1.fc40
  • libell-0.69-1.fc40
Update description:

libell 0.69:

Add support for getting remaining microseconds left on a timer. Add support for setting link MTU on a network interface.

iwd 2.21:

Fix issue with pending scan requests after regdom update. Fix issue with handling the rearming of the roaming timeout. Fix issue with survey request and externally triggered scans. Fix issue with RSSI fallback when setting CQM threshold fails. Fix issue with FT-over-Air without offchannel support. Add support for per station Affinities property.

bluez 5.78:

Fix issue with handling notification of scanned BISes to BASS Fix issue with handling checking BIS caps against peer caps. Fix issue with handling MGMT Set Device Flags overwrites. Fix issue with handling ASE notification order. Fix issue with handling BIG Info report events. Fix issue with handling PACS Server role. Fix issue with registering UHID_START multiple times. Fix issue with pairing method not setting auto-connect.

linux-firmware-20240909-1.fc39

1 day 11 hours ago
FEDORA-2024-3dbf10c949 Packages in this update:
  • linux-firmware-20240909-1.fc39
Update description:

Update to upstream 20240909:

  • i915: Update MTL DMC v2.23
  • cirrus: cs35l56: Add firmware for Cirrus CS35L54 for some HP laptops
  • amdgpu: Revert sienna cichlid dmcub firmware update
  • iwlwifi: add Bz FW for core89-58 release
  • rtl_nic: add firmware rtl8126a-3
  • update MT7921 WiFi/bluetooth device firmware
  • amdgpu: update DMCUB to v0.0.232.0 for DCN314 and DCN351
  • amdgpu: DMCUB updates forvarious AMDGPU ASICs
  • rtw89: 8922a: add fw format-1 v0.35.41.0
  • update MT7925 WiFi/bluetooth device firmware
  • rtl_bt: Add firmware and config files for RTL8922A
  • rtl_bt: Add firmware file for the the RTL8723CS Bluetooth part
  • rtl_bt: de-dupe identical config.bin files
  • rename rtl8723bs_config-OBDA8723.bin -> rtl_bt/rtl8723bs_config.bin
  • Update AMD SEV firmware
  • update firmware for MT7996
  • Revert "i915: Update MTL DMC v2.22"
  • ath12k: WCN7850 hw2.0: update board-2.bin
  • ath11k: WCN6855 hw2.0: update to WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.41
  • ath11k: WCN6855 hw2.0: update board-2.bin
  • ath11k: QCA2066 hw2.1: add to WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.3
  • ath11k: QCA2066 hw2.1: add board-2.bin
  • ath11k: IPQ5018 hw1.0: update to WLAN.HK.2.6.0.1-01291-QCAHKSWPL_SILICONZ-1
  • qcom: vpu: add video firmware for sa8775p
  • amdgpu: DMCUB updates for various AMDGPU ASICs

linux-firmware-20240909-1.fc40

1 day 11 hours ago
FEDORA-2024-f32e633786 Packages in this update:
  • linux-firmware-20240909-1.fc40
Update description:

Update to upstream 20240909:

  • i915: Update MTL DMC v2.23
  • cirrus: cs35l56: Add firmware for Cirrus CS35L54 for some HP laptops
  • amdgpu: Revert sienna cichlid dmcub firmware update
  • iwlwifi: add Bz FW for core89-58 release
  • rtl_nic: add firmware rtl8126a-3
  • update MT7921 WiFi/bluetooth device firmware
  • amdgpu: update DMCUB to v0.0.232.0 for DCN314 and DCN351
  • amdgpu: DMCUB updates forvarious AMDGPU ASICs
  • rtw89: 8922a: add fw format-1 v0.35.41.0
  • update MT7925 WiFi/bluetooth device firmware
  • rtl_bt: Add firmware and config files for RTL8922A
  • rtl_bt: Add firmware file for the the RTL8723CS Bluetooth part
  • rtl_bt: de-dupe identical config.bin files
  • rename rtl8723bs_config-OBDA8723.bin -> rtl_bt/rtl8723bs_config.bin
  • Update AMD SEV firmware
  • update firmware for MT7996
  • Revert "i915: Update MTL DMC v2.22"
  • ath12k: WCN7850 hw2.0: update board-2.bin
  • ath11k: WCN6855 hw2.0: update to WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.41
  • ath11k: WCN6855 hw2.0: update board-2.bin
  • ath11k: QCA2066 hw2.1: add to WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.3
  • ath11k: QCA2066 hw2.1: add board-2.bin
  • ath11k: IPQ5018 hw1.0: update to WLAN.HK.2.6.0.1-01291-QCAHKSWPL_SILICONZ-1
  • qcom: vpu: add video firmware for sa8775p
  • amdgpu: DMCUB updates for various AMDGPU ASICs

linux-firmware-20240909-1.fc41

1 day 11 hours ago
FEDORA-2024-3cd42e9e29 Packages in this update:
  • linux-firmware-20240909-1.fc41
Update description:

Update to upstream 20240909:

  • i915: Update MTL DMC v2.23
  • cirrus: cs35l56: Add firmware for Cirrus CS35L54 for some HP laptops
  • amdgpu: Revert sienna cichlid dmcub firmware update
  • iwlwifi: add Bz FW for core89-58 release
  • rtl_nic: add firmware rtl8126a-3
  • update MT7921 WiFi/bluetooth device firmware
  • amdgpu: update DMCUB to v0.0.232.0 for DCN314 and DCN351
  • amdgpu: DMCUB updates forvarious AMDGPU ASICs
  • rtw89: 8922a: add fw format-1 v0.35.41.0
  • update MT7925 WiFi/bluetooth device firmware
  • rtl_bt: Add firmware and config files for RTL8922A
  • rtl_bt: Add firmware file for the the RTL8723CS Bluetooth part
  • rtl_bt: de-dupe identical config.bin files
  • rename rtl8723bs_config-OBDA8723.bin -> rtl_bt/rtl8723bs_config.bin
  • Update AMD SEV firmware
  • update firmware for MT7996
  • Revert "i915: Update MTL DMC v2.22"
  • ath12k: WCN7850 hw2.0: update board-2.bin
  • ath11k: WCN6855 hw2.0: update to WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.41
  • ath11k: WCN6855 hw2.0: update board-2.bin
  • ath11k: QCA2066 hw2.1: add to WLAN.HSP.1.1-03926.13-QCAHSPSWPL_V2_SILICONZ_CE-2.52297.3
  • ath11k: QCA2066 hw2.1: add board-2.bin
  • ath11k: IPQ5018 hw1.0: update to WLAN.HK.2.6.0.1-01291-QCAHKSWPL_SILICONZ-1
  • qcom: vpu: add video firmware for sa8775p
  • amdgpu: DMCUB updates for various AMDGPU ASICs