diff --git a/HISTORY.rst b/HISTORY.rst index f0f0436acf..bcf219c472 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,6 @@ -3.2.10 (2019-XX-XX) +3.2.10 (2019-11-19) =================== -- Auto-import dependecies. No need to use: +- Auto-import dependencies. No need to use: from .dependencies import * # NOQA - Add makefile target to run all tests in debug mode. This mode is more strict and sidesteps a Django bug that @@ -11,7 +11,7 @@ - Add missing label to metadata and file metadata model properties entries. - Improve workflow field help text. Make it usable - for the creation/edit form help text and for the + for the creation/edit form help text and for the column pop over. - Fix NamedMultiWidget issue on Python 3. Affects document checkout form. GitLab issue #683. Thanks diff --git a/docs/releases/3.2.10.rst b/docs/releases/3.2.10.rst index a017f5089c..13f1f13092 100644 --- a/docs/releases/3.2.10.rst +++ b/docs/releases/3.2.10.rst @@ -1,13 +1,79 @@ Version 3.2.10 ============== -Released: November XX, 2019 - +Released: November 19, 2019 Changes ------- +Dependencies +^^^^^^^^^^^^ +App dependencies are now automatically imported ensuring there are no missing +dependencies when installing or upgrading. + +For developers this means that the line:: + + from .dependencies import * # NOQA + +is no longer needed. + + +Documentation +^^^^^^^^^^^^^ + +Improvements in the settings chapter. + +The file paths in the documentation are now inserted programmatically. +This ensures consistency and avoid human error when copying and pasting path +when writing documentation chapters. + + +Testing +^^^^^^^ + +New targets for the makefile to run all tests in debug mode. This mode is +more strict and sidesteps a Django bug that causes errors in the template +code that to be silent during tests. + +Renamed the ``expected_content_type`` to ``expected_content_types`` and +allow a list of content types to be specified. + +Added missing ``Event`` class cache invalidation when calling the +``refresh()`` method. + + +Python 3 +^^^^^^^^ + +Fixed an issue with the NamedMultiWidget class on Python 3. This issue +affected the document checkout form. This closes GitLab issue #683. Thanks +to John Bentley (@johnbentleyii) for the report. + + +Statistics +^^^^^^^^^^ + +Statistics code were updated to use timezone aware date. This solves a few +off-by-one-day results. + + +Workflows +^^^^^^^^^ + +When renaming custom workflow state actions, the workflow system would +error out when trying to show the label of the deleted or removed class. A +placeholder label will now be shown on invalid action classes reading +"Unknown action type". + +The help text for workflows was improved. + + +Indexing +^^^^^^^^ + +The missing label for document metadata and file metadata model +properties entries were added. No functional changes were made just visual. Removals