From c5dc5643970b75c647388c6dacad768cdf866ad0 Mon Sep 17 00:00:00 2001 From: Julien BERNARD Date: Wed, 15 Nov 2023 22:23:19 +0100 Subject: [PATCH] Prepare release 6.1.0 --- Changelog.md | 19 +++++++++++++++++++ containers/lgr-django/files/requirements.txt | 6 +++--- etc/requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 5e987fc1..4f41b5ef 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,24 @@ # Changelog for lgr-django +## 6.1.0 (2023-11-15) +### New features +- Add new IDNA 2008 compliance report tool + +### Improvements +- Change label form output format +- Display reports expiration beside the reports +- Retry on IDN table download failure +- Label review: + - only display an error on IDNA 2008 non-compliance + - display A-label in another column + +### Fixes +- Enable review for all IDN tables instead of a restricted set +- Stop failing for some exceptions in IDN table reviews +- Keep invalid code points in IDN table reviews +- Do not clean ICANN reports +- Correctly check IDNA 2008 compliance in label forms tool + ## 6.0.0 (2023-08-04) ### New features - Enable IDN review with RFC Core Requirements diff --git a/containers/lgr-django/files/requirements.txt b/containers/lgr-django/files/requirements.txt index f4ed1960..12688c27 100644 --- a/containers/lgr-django/files/requirements.txt +++ b/containers/lgr-django/files/requirements.txt @@ -12,10 +12,10 @@ django-celery-beat==2.2.0 # LGR/Unicode modules picu==1.4 -#munidata==2.3.1 +munidata==2.3.1 #picu @ git+https://github.com/icann/picu.git@master -munidata @ git+https://github.com/icann/munidata.git@master -lgr-core @ git+https://github.com/icann/lgr-core.git@v6.0.1 +#munidata @ git+https://github.com/icann/munidata.git@master +lgr-core @ git+https://github.com/icann/lgr-core.git@v6.1.0 # Natural sorting implementation natsort==7.1.1 diff --git a/etc/requirements.txt b/etc/requirements.txt index 3cc00cdd..c0774548 100644 --- a/etc/requirements.txt +++ b/etc/requirements.txt @@ -12,7 +12,7 @@ django-celery-beat==2.2.0 # LGR/Unicode modules picu==1.4 munidata==2.3.1 -lgr-core>=6.0.0 +lgr-core>=6.1.0 # Natural sorting implementation natsort==7.1.1 diff --git a/setup.py b/setup.py index 05d84cdb..51c2e3ce 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='lgr-django', - version='6.0.0', + version='6.1.0', author='Cofomo, Viagenie and Wil Tan', author_email='int-eng@cofomo.com', packages=find_packages('src'),