Skip to content

Commit c72637b

Browse files
committed
Changelog for v13.7
1 parent aeae907 commit c72637b

File tree

2 files changed

+81
-2
lines changed

2 files changed

+81
-2
lines changed

CHANGELOG.rst

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

4+
Kiwi TCMS 13.7 (04 Dec 2024)
5+
----------------------------
6+
7+
.. important::
8+
9+
This release includes security related updates, several improvements,
10+
API changes, a few bug fixes and new translations.
11+
12+
13+
Recommended upgrade path, see :ref:`upgrading-instructions`::
14+
15+
13.6 -> 13.7
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.9 to 5.0.10, addressing
27+
one security issue with severity “high” and
28+
one security issue with severity “moderate” which do not appear to
29+
affect Kiwi TCMS.
30+
31+
32+
Improvements
33+
~~~~~~~~~~~~
34+
35+
- Update bleach from 6.1.0 to 6.2.0
36+
- Update mysqlclient from 2.2.4 to 2.2.6
37+
- Update pygithub from 2.4.0 to 2.5.0
38+
- Update python-gitlab from 4.13.0 to 5.1.0
39+
- Update uwsgi from 2.0.27 to 2.0.28
40+
- Update node_modules/pdfmake from 0.2.14 to 0.2.15
41+
- Speed-up TestCase filtering on the TestPlan view page
42+
- Speed-up TestExecution filtering on TestRun view page
43+
44+
45+
API
46+
~~~
47+
48+
- Method ``Bug.details()`` will now return the additional fields
49+
``id``, ``status`` and ``url``! References
50+
`Issue #3748 <https://github.com/kiwitcms/Kiwi/issues/3748>`_
51+
52+
53+
Bug fixes
54+
~~~~~~~~~
55+
56+
- Remove internal ``IssueTrackerType.rpc_cache`` attribute. Fixes
57+
`Issue #3757 <https://github.com/kiwitcms/Kiwi/issues/3757>`_
58+
- Update filtering logic for ``Automated=False`` on TestPlan view page. Fixes
59+
`Issue #3841 <https://github.com/kiwitcms/Kiwi/issues/3841>`_
60+
- Refresh test execution counter when filtering on TestRun view page
61+
62+
63+
Refactoring and testing
64+
~~~~~~~~~~~~~~~~~~~~~~~
65+
66+
- Update action psf/black from 24.8.0 to 24.10.0
67+
- Update action codecov/codecov-action from 4 to 5
68+
- Update selenium from 4.25.0 to 4.27.1
69+
- Update sphinx from 8.1.1 to 8.1.3
70+
- Update node_modules/webpack from 5.95.0 to 5.97.0
71+
- Update fedora from 40 to 41 in /tests/bugzilla
72+
- Update redmine from 5 to 6 in /tests/redmine
73+
74+
75+
Translations
76+
~~~~~~~~~~~~
77+
78+
- New `Ukrainian translation <https://crowdin.com/project/kiwitcms/uk#>`_
79+
(Oleksandr Nemchenko)
80+
81+
82+
483
Kiwi TCMS 13.6 (12 Oct 2024)
584
----------------------------
685

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.6"
5-
__release_date__ = datetime(2024, 10, 12, 18, 30)
4+
__version__ = "13.7"
5+
__release_date__ = datetime(2024, 12, 4, 18, 59)

0 commit comments

Comments
 (0)