Skip to content

Latest commit

 

History

History
84 lines (65 loc) · 2.65 KB

CHANGELOG.md

File metadata and controls

84 lines (65 loc) · 2.65 KB

Changelog

All notable changes to this project will be documented in this file.

The format of this changelog is based on Keep a Changelog and this project adheres to Semantic Versioning.

Changed

  • Use Model.str() for related fields. In 1.x the primary key was used for related fields.

Added

  • Test on Django 3.2, 4.0, 4.1 and 4.2.
  • Test on Python 3.9, 3.10 and 3.11 (for Django versions with support).
  • Add verbose_names option to control whether to use capitalized verbose column names in the header. The default is True which matches the behaviour in 1.x.

Removed

  • Drop support for Python 2, 3.4 and 3.5.
  • Drop support for Django 1.11, 2.0, 2.1, 3.0 and 3.1.
    • Django 3.1 was never supported in an official release, but it was tested in a pre-release version.

Added

  • Add support for Django 3.0.
  • Test on Python 3.8 (for Django versions with support).

Added

  • Test on Django 2.2.

Fixed

  • Fixed bug with filename getting duplicate .csv extension.

Added

  • Add CHANGELOG.md to release.

Added

  • Test on Django 2.0 and 2.1.
  • Test with pypy and pypy3.5.

Removed

  • Drop testing on Django < 1.11.

Fixed

  • Fixed bug with numeric choice fields with 0 values.

Added

  • More documentation in the README.
  • More tests.
  • Check that get_context_data(self, **kwargs) is not being overridden.

Fixed

  • Fixed issue with unicode csv data on Python 2.

Removed

  • Drop support for Python 3.3.

0.2.0 - 2017-08-07

Added

  • Allow get_fields(self, queryset) to be overridden.

Fixed

  • Fixed issue with blank value in choice field.

0.1.0 - 2017-08-01

Added

  • Initial version.