Compare commits

...

2 Commits

Author SHA1 Message Date
Lumir Balhar 914bca2d52 Security fix for CVE-2024-3651 2024-04-26 04:07:33 +00:00
Tomas Orsava b56a2115a0 Add gating configuration and a simple smoke test
Related: rhbz#1950291
2022-02-21 15:31:10 +01:00
6 changed files with 2878 additions and 1 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

1
.python-idna.metadata Normal file
View File

@ -0,0 +1 @@
ab9b7f0143cc0095da8439939eee9ce153af5f60 idna-2.10.tar.gz

2844
CVE-2024-3651.patch Normal file

File diff suppressed because it is too large Load Diff

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

11
plans.fmf Normal file
View File

@ -0,0 +1,11 @@
discover:
- name: Smoke-tests
how: shell
tests:
- name: python-import-test
test: python3 -c 'import idna'
require:
- python3-idna
duration: 1m
execute:
how: tmt

View File

@ -2,12 +2,18 @@
Name: python-%{srcname}
Version: 2.10
Release: 6%{?dist}
Release: 7%{?dist}.1
Summary: Internationalized Domain Names in Applications (IDNA)
License: BSD and Python and Unicode
URL: https://github.com/kjd/idna
Source0: https://pypi.io/packages/source/i/%{srcname}/%{srcname}-%{version}.tar.gz
# Security fix for CVE-2024-3651
# Upstream: https://github.com/kjd/idna/commit/5beb28b9dd77912c0dd656d8b0fdba3eb80222e7
# Tracking bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2274779
Patch: CVE-2024-3651.patch
BuildArch: noarch
BuildRequires: python3-devel
@ -59,6 +65,14 @@ rm -rf %{srcname}.egg-info
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info
%changelog
* Tue Apr 23 2024 Lumír Balhar <lbalhar@redhat.com> - 2.10-7.1
- Security fix for CVE-2024-3651
Resolves: RHEL-33464
* Mon Feb 21 2022 Tomas Orsava <torsava@redhat.com> - 2.10-7
- Add gating configuration and a simple smoke test
- Related: rhbz#1950291
* Tue Feb 08 2022 Tomas Orsava <torsava@redhat.com> - 2.10-6
- Add automatically generated Obsoletes tag with the python39- prefix
for smoother upgrade from RHEL8