Skip to content

Releases: django-commons/drf-excel

2.5.1

22 Oct 18:08
917b75f
Compare
Choose a tag to compare

What's Changed

  • Move to django-commons organization, and auto-deploy to PyPI.

Full Changelog: 2.5.0...2.5.1

2.5.0

16 Oct 19:43
cefa815
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.2...2.5.0

2.4.2

12 Oct 16:42
48b09e5
Compare
Choose a tag to compare

What's Changed

Fixed

Internal/Tests

New Contributors

Full Changelog: 2.4.1...2.4.2

2.4.1

22 Jun 14:59
Compare
Choose a tag to compare

What's Changed

  • Bug fix: edge cases of datetime.date need to be accounted for in our logic by @rptmat57, reported by @shawnyang2019
  • Bug fix: list of str are incorrectly prepped using json.dumps on newer Python versions in 787cec0 by @rptmat57, reported by @melvinkcx
  • Switch from setup.py to pyproject.toml, consolidate and cleanup by @FlipperPA

Full Changelog: 2.4.0...2.4.1

2.4.0

23 Jun 12:17
Compare
Choose a tag to compare

What's Changed

  • Support for _lazy by @BilityLeu in #76
  • Support for temporary files on Windows by @rdmolony in #74
  • Code clean up, comment improvement, and trove classifier update for support Python & Django versions by @FlipperPA

Full Changelog: 2.3.0...2.4.0

2.3.0

06 Feb 19:31
5352919
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.2.0...2.3.0

2.2.0

30 Sep 13:58
Compare
Choose a tag to compare

What's Changed

  • Removed NullBooleanField, and requires Django REST Framework 3.14 or higher. For older versions of DRF, use version 2.1.0. By @sarahboyce in #65
  • Better Unicode character support by @suhanoves in #64 and @moyechen in #63
  • Use the correct media type by @willtho89 in #62

Full Changelog: 2.1.0...2.2.0

2.1.0

07 Mar 15:49
1dfb2dc
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0.1...2.1.0

2.0.1

24 Feb 20:25
77852c9
Compare
Choose a tag to compare

What's Changed

  • Bug fix: allow_null source arguments in issue #55 fixed by PR #56

2.0.0

22 Feb 15:40
Compare
Choose a tag to compare

What's Changed

  • Support was added for column data styles and global date, time, and datetime formats @rptmat57 in #50
    • This is a breaking change for anyone who was using xlsx_date_format_mappings; please update to use column_data_styles
  • Typos were fixed by @runningzyp in #52

column_data_styles example

This new features allows for flexible styling at the column level:

column_data_styles = {
    'distance': {
        'alignment': {
            'horizontal': 'right',
            'vertical': 'top',
        },
        'format': '0.00E+00'
    },
    'created_at': {
        'format': '%d.%m.%Y %H:%M',
    }
}

New Contributors

Full Changelog: 1.0.0...2.0.0