Skip to content

Commit 559d5ec

Browse files
committedMay 4, 2024·
Changelog for v13.2
1 parent fc9524b commit 559d5ec

File tree

2 files changed

+70
-2
lines changed

2 files changed

+70
-2
lines changed
 

‎CHANGELOG.rst

+68
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,73 @@
11
Change Log
22
==========
33

4+
Kiwi TCMS 13.2 (04 May 2024)
5+
----------------------------
6+
7+
.. important::
8+
9+
This is a small release which contains several improvements,
10+
internal refactoring and updated translations!
11+
12+
13+
Recommended upgrade path, see :ref:`upgrading-instructions`::
14+
15+
13.1.1 -> 13.2
16+
17+
18+
After upgrade don't forget to::
19+
20+
./manage.py upgrade
21+
22+
23+
Improvements
24+
~~~~~~~~~~~~
25+
26+
- Update Django from 4.2.10 to 4.2.11
27+
- Update django-grappelli from 3.0.8 to 4.0.1
28+
- Update django-modern-rpc from 1.0.2 to 1.0.3
29+
- Update django-tree-queries from 0.16.1 to 0.19.0
30+
- Update jira from 3.6.0 to 3.8.0
31+
- Update markdown from 3.5.2 to 3.6
32+
- Update python-redmine from 2.4.0 to 2.5.0
33+
- Update uwsgi from 2.0.24 to 2.0.25.1
34+
- Update node_modules/pdfmake from 0.2.9 to 0.2.10
35+
- Update node_modules/es5-ext from 0.10.62 to 0.10.63
36+
- Update documentation with better installation instructions when using Docker
37+
- Remove multiple inline ``style=`` HTML attributes
38+
39+
40+
Settings
41+
~~~~~~~~
42+
43+
- Don't send outgoing emails to addresses which fail validation, including
44+
custom validation configured via the ``EMAIL_VALIDATORS`` setting. For
45+
example if there are blacklisted addresses Kiwi TCMS will not send messages
46+
to them anymore
47+
48+
49+
Refactoring and testing
50+
~~~~~~~~~~~~~~~~~~~~~~~
51+
52+
- Update black from 23.12.1 to 24.4.2
53+
- Update selenium from 4.9.1 to 4.20.0
54+
- Update node_modules/eslint from 8.56.0 to 8.57.0
55+
- Update nodemodules/webpack from 5.90.3 to 5.91.0
56+
- Remove unused ``has_permissions_to_modify()``
57+
- Do not execute Docker image tests as root
58+
- Add tests for file upload via browser UI
59+
60+
61+
Translations
62+
~~~~~~~~~~~~
63+
64+
- Updated `Albanian translation <https://crowdin.com/project/kiwitcms/sq#>`_
65+
- Updated `Korean translation <https://crowdin.com/project/kiwitcms/ko#>`_
66+
- Updated `Portuguese, Brazilian translation <https://crowdin.com/project/kiwitcms/pt-BR#>`_
67+
- Updated `Turkish translation <https://crowdin.com/project/kiwitcms/tr#>`_
68+
69+
70+
471
Kiwi TCMS 13.1.1 (27 Feb 2024)
572
------------------------------
673

@@ -25,6 +92,7 @@ Bug fixes
2592
- Downgrade node_modules/datatables.net-buttons from 3.0.0 to 2.4.3. Fixes
2693
`Issue #3552 <https://github.com/kiwitcms/Kiwi/issues/3552>`_
2794

95+
2896
Refactoring
2997
~~~~~~~~~~~
3098

‎tcms/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
22
from datetime import datetime
33

4-
__version__ = "13.1.1"
5-
__release_date__ = datetime(2024, 2, 27, 13, 5)
4+
__version__ = "13.2"
5+
__release_date__ = datetime(2024, 5, 4, 11, 35)

0 commit comments

Comments
 (0)
Please sign in to comment.