Skip to content

Commit

Permalink
Prepare 5.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
j-bernard committed Oct 26, 2022
1 parent b7f3667 commit ea32df6
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 11 deletions.
22 changes: 22 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
# Changelog for lgr-django
## 5.0.0 (2022-10-26)
### New features
- Add account for all users
- Add IDNA repertoires and MSRs management interfaces in admin
- Set fixed Unicode version
- Add a tasks information and management interface
- Add settings for variants computation limits in admin
- Allow unsupported code points to be displayed and edited in advanced tool
- Allow uploading reference LGR in IDN table review
- Add support for third-party authentication with JWT
- Compute label indexes for RZ LGR periodically for collision computation
### Improvements
- Remove email fields from forms as all users are logged in
- Improve user search and sorting in admin interface
- Stop sending emails upon tasks completion
- Make admin select default LGRs and only displays the default one in dropdowns
- Update some LGR selection dropdowns to include more LGR types
- Allow limiting the number of variants displayed in the validation tools
- hide blocked variants above a certain limit
- hide cross-scripts variants by default
- Add new general rules report in IDN tables review


## 4.0.0 (2021-04-27)
### New features
Expand Down
4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include manage.py README.md runtests.sh Makefile LICENSE
include Installation_Guide.md Release_Notes.md
include bin/bootstrap bin/gen_secret_key
include etc/requirements.txt
include etc/nginx/lgr-django.conf etc/systemd/lgr-django.service etc/systemd/lgr-django.conf etc/systemd/lgr-celery.service
include etc/nginx/lgr-django.conf etc/systemd/lgr-django.service etc/systemd/lgr-django.conf etc/systemd/lgr-celery.service lgr-celery-beat.service
include doc doc/conf.py doc/index.rst doc/Makefile
recursive-include doc/_static *
include src/lgr_web/resources/lgr.rng
Expand All @@ -20,8 +20,6 @@ recursive-include src/lgr_auth/templates *
recursive-include src/lgr_auth/locale *
recursive-include src/lgr_basic/templates *
recursive-include src/lgr_basic/locale *
recursive-include src/lgr_models/templates *
recursive-include src/lgr_models/locale *
recursive-include src/lgr_idn_table_review/locale *
recursive-include src/lgr_idn_table_review/templates *
recursive-include src/lgr_idn_table_review/icann_tools/locale *
Expand Down
8 changes: 4 additions & 4 deletions containers/lgr-django/files/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ django-celery-results==2.0.0
django-celery-beat==2.2.0

# LGR/Unicode modules
picu @ git+https://github.com/icann/picu.git
munidata @ git+https://github.com/icann/munidata.git
lgr-core @ git+https://github.com/icann/lgr-core.git@qa
picu==1.3
munidata==2.2.0
lgr-core @ git+https://github.com/icann/lgr-core.git@5.0.0

# Natural sorting implementation
natsort==7.1.1

# ICANN login
okta-jwt-verifier==0.2.3
okta-jwt-verifier==0.2.3
6 changes: 3 additions & 3 deletions etc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ django-celery-results==2.0.0
django-celery-beat==2.2.0

# LGR/Unicode modules
picu==1.2
munidata==2.1.0
lgr-core>=4.0.0
picu==1.3
munidata==2.2.0
lgr-core>=5.0.0

# Natural sorting implementation
natsort==7.1.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='lgr-django',
version='4.0.0',
version='5.0.0',
author='Viagenie and Wil Tan',
author_email='[email protected]',
packages=find_packages('src'),
Expand Down

0 comments on commit ea32df6

Please sign in to comment.