Sync from SUSE:SLFO:Main python-idna revision ca5fa2619730ae3bfc4c316f250f031e

This commit is contained in:
Adrian Schröter 2024-09-13 16:20:37 +02:00
parent a9d350ad31
commit 6b8f32cfa0
4 changed files with 33 additions and 10 deletions

BIN
idna-3.4.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
idna-3.7.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,27 @@
-------------------------------------------------------------------
Thu Apr 18 07:30:37 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
- update to 3.7 (bsc#1222842, CVE-2024-3651):
* Fix issue where specially crafted inputs to encode() could take
exceptionally long amount of time to process. [CVE-2024-3651]
-------------------------------------------------------------------
Mon Nov 27 08:56:13 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.6:
* Fix regression to include tests in source distribution.
* Update to Unicode 15.1.0
* String codec name is now "idna2008" as overriding the system codec
"idna" was not working.
* Fix typing error for codec encoding
* "setup.cfg" has been added for this release due to some downstream
* lack of adherence to PEP 517. Should be removed in a future release
so please prepare accordingly.
* Removed reliance on a symlink for the "idna-data" tool to comport
with PEP 517 and the Python Packaging User Guide for sdist
archives.
* Added security reporting protocol for project
-------------------------------------------------------------------
Fri Apr 21 12:26:39 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-idna
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,11 +16,9 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global skip_python2 1
%{?sle15_python_module_pythons}
Name: python-idna
Version: 3.4
Version: 3.7
Release: 0
Summary: Internationalized Domain Names in Applications (IDNA)
License: BSD-3-Clause
@ -48,7 +46,7 @@ for the “encodings.idna” module that comes with the Python standard
library but currently only supports the older 2003 specification.
%prep
%setup -q -n idna-%{version}
%autosetup -p1 -n idna-%{version}
%build
%pyproject_wheel
@ -62,7 +60,8 @@ library but currently only supports the older 2003 specification.
%files %{python_files}
%license LICENSE.md
%doc HISTORY.rst README.rst
%{python_sitelib}/*
%doc README.rst
%{python_sitelib}/idna
%{python_sitelib}/idna-%{version}*-info
%changelog