Merge remote-tracking branch 'origin/versions/micro' into merges/micro_to_minor

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-11-19 03:38:37 -04:00
10 changed files with 117 additions and 49 deletions

View File

@@ -535,6 +535,13 @@ Release using GitLab CI
git push
#. Push the new tags:
::
git push --tags
#. Delete the corresponding ``releases/`` branch:
::
@@ -546,12 +553,6 @@ Release using GitLab CI
git push origin <local branch>:releases/<branch>
#. Push the new tags:
::
git push --tags
Manual release
--------------

View File

@@ -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