Skip to content

Commit e5692de

Browse files
committed
Changelog for v13.6
1 parent cff20e0 commit e5692de

File tree

2 files changed

+76
-3
lines changed

2 files changed

+76
-3
lines changed

CHANGELOG.rst

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

4+
Kiwi TCMS 13.6 (12 Oct 2024)
5+
----------------------------
6+
7+
.. important::
8+
9+
This release includes security related updates, several small improvements
10+
and important bug fixes.
11+
12+
13+
Recommended upgrade path, see :ref:`upgrading-instructions`::
14+
15+
13.5 -> 13.6
16+
17+
18+
After upgrade don't forget to::
19+
20+
./manage.py upgrade
21+
22+
23+
Security
24+
~~~~~~~~
25+
26+
- Update Django from 5.0.8 to 5.0.9, addressing multiple potential security
27+
vulnerabilities, which do not seem to affect Kiwi TCMS directly however
28+
this is not 100% guaranteed
29+
30+
31+
Improvements
32+
~~~~~~~~~~~~
33+
34+
- Update markdown from 3.6 to 3.7
35+
- Update psycopg from 3.2.1 to 3.2.3
36+
- Update pygithub from 2.3.0 to 2.4.0
37+
- Update python-bugzilla from 3.2.0 to 3.3.0
38+
- Update python-gitlab from 4.9.0 to 4.13.0
39+
- Update tzdata from 2024.1 to 2024.2
40+
- Update uwsgi from 2.0.26 to 2.0.27
41+
- Update node_modules/pdfmake from 0.2.10 to 0.2.14
42+
- Specify ``large_client_header_buffers`` for NGINX proxy configuration example
43+
to match the configuration of Kiwi TCMS
44+
- Set uWSGI configuration ``max-requests`` to 1024
45+
46+
47+
Settings
48+
~~~~~~~~
49+
50+
- Explicitly set ``DATA_UPLOAD_MAX_NUMBER_FIELDS`` to 1024, default is 1000
51+
52+
53+
Bug fixes
54+
~~~~~~~~~
55+
56+
- Increase uWSGI configuration ``buffer-size`` to 20k to allows the creation of
57+
a TestRun with 1000 test cases! Fixes
58+
`Issue #3387 <https://github.com/kiwitcms/Kiwi/issues/3387>`_,
59+
`Issue #3800 <https://github.com/kiwitcms/Kiwi/issues/3800>`_
60+
61+
62+
Refactoring and testing
63+
~~~~~~~~~~~~~~~~~~~~~~~
64+
65+
- Update black from 24.8.0 to 24.10.0
66+
- Update pylint-django from 2.5.5 to 2.6.1
67+
- Update selenium from 4.23.1 to 4.25.0
68+
- Update sphinx from 8.0.2 to 8.1.1
69+
- Update node_modules/webpack from 5.93.0 to 5.95.0
70+
- Update node_modules/eslint from 8.57.0 to 8.57.1
71+
- Update node_modules/eslint-plugin-import from 2.29.1 to 2.31.0
72+
- Assert that password reset email contains username reminder
73+
- Update translation source strings
74+
75+
76+
477
Kiwi TCMS 13.5 (07 Aug 2024)
578
----------------------------
679

@@ -35,7 +108,7 @@ Improvements
35108
- Update python-gitlab from 4.6.0 to 4.9.0
36109
- Add a ``Test Plan +`` button on *New Test Run* page. Refs
37110
`Issue #3680 <https://github.com/kiwitcms/Kiwi/issues/3680>`_
38-
- Always show the ``Build +`` button on *New Test Run* page. Refs #3680
111+
- Always show the ``Build +`` button on *New Test Run* page. Refs
39112
`Issue #3680 <https://github.com/kiwitcms/Kiwi/issues/3680>`_
40113
- Add a ``Product +`` button on *New Test Run* page. Closes
41114
`Issue #3680 <https://github.com/kiwitcms/Kiwi/issues/3680>`_

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.5"
5-
__release_date__ = datetime(2024, 8, 7, 0, 1)
4+
__version__ = "13.6"
5+
__release_date__ = datetime(2024, 10, 12, 18, 30)

0 commit comments

Comments
 (0)