Releases: jmichalicek/django-fractions
Releases · jmichalicek/django-fractions
v5.0.0
v3.1.0
What's Changed
- Add testing on python 3.11 by @jmichalicek in #30
- Fixed 'Polynomial regular expression used on uncontrolled data' codeQL issues which could be abused to impact performance.
Full Changelog: v3.0.0...v3.1.0
v3.0.0
What's Changed
- Create codeql-analysis.yml by @jmichalicek in #21
- Add type checking by @jmichalicek in #22
- Update supported python versions to 3.7+ by @jmichalicek in #23
- fix: Django 4.0 deprecations by @GriceTurrble in #24
- Add testing of django 4.0 by @jmichalicek in #27
- Updated to support Django 4.1, drop old unsupported Django and Python versions by @jmichalicek in #29
New Contributors
- @GriceTurrble made their first contribution in #24
Full Changelog: v2.0.0...v3.0.0
v2.0.0
A release after several years!
- Dropped support for Django 2.0 and lower
- Dropped support for Python 3.4 and lower
- Updated DecimalFractionField to work on Django 2+ where from_db_field() does not take a context argument and where the field is expected to have a
context
attribute like DecimalField. - Cleared out a bunch of Python 2 compatibility code such as how calls to super() are made, usage of six, and from future imports.