File tree Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
4
+ 9.6.2
5
+ -----
6
+ *02 February 2025 *
7
+
8
+ * Add support for kncwiki (:phab: `T385187 `)
9
+ * Fix a f-string in :meth: `Claim.fromJSON()<pywikibot.Claim.fromJSON> `
10
+ * i18n updates.
11
+
4
12
9.6.1
5
13
-----
6
14
*13 December 2024 *
Original file line number Diff line number Diff line change @@ -3,20 +3,27 @@ Current Release Changes
3
3
4
4
**Improvements **
5
5
6
+ * Update :attr: `Family.cross_allowed<family.Family.cross_allowed> ` lists in family files
7
+ * Ignore empty message warning in :class: `EventStreams<comms.eventstreams.EventStreams> `
8
+ (:phab: `T383035 `).
6
9
* A *timeout * parameter was added to :func: `data.memento.get_closest_memento_url `
7
10
and the default timeout was increased to 30 s (:phab: `T382943 `).
8
11
* :func: `bot.calledModuleName ` returns either 'unittest' or 'pytest' during test run (:phab: `T382797 `).
9
12
* :class: `tools.threading.BoundedPoolExecutor ` was added (:phab: `T333741 `).
10
13
* *args * parameter for :mod: `logging ` functions can be used as formatting arguments
11
14
* :attr: `.login.OauthLoginManager.access_token ` was added.
12
15
* Representation string for :class: `login.LoginManager ` was added.
16
+ * i18n updates.
13
17
14
18
**Bugfixes **
15
19
20
+ * Appended <<default>> color tag before the last linefeed in
21
+ :class: `UI<userinterfaces.terminal_interface_base.UI> ` (:phab: `T382884 `).
16
22
* Remove unintentional *args * parameter in :class: `tools.threading.ThreadList ` (:phab: `T382787 `).
17
23
18
24
**Code cleanups **
19
25
26
+ * Remove old and deprecated variables in :mod: `config `
20
27
* Remove unintentional ``pywikibot.warn() ``
21
28
* Unused *get_redirect * parameter of :meth: `BasePage.getOldVersion()<page.BasePage.getOldVersion> ` was removed.
22
29
* *baserevid * parameter of :class: `DataSite<pywikibot.site._datasite.DataSite> ` methods
Original file line number Diff line number Diff line change 3
3
.. versionadded:: 4.0
4
4
"""
5
5
#
6
- # (C) Pywikibot team, 2020-2024
6
+ # (C) Pywikibot team, 2020-2025
7
7
#
8
8
# Distributed under the terms of the MIT license.
9
9
#
12
12
from time import strftime
13
13
14
14
15
- __version__ = '10.0.0.dev1 '
15
+ __version__ = '10.0.0.dev2 '
16
16
__url__ = 'https://www.mediawiki.org/wiki/Manual:Pywikibot'
17
17
__copyright__ = f'2003-{ strftime ("%Y" )} , Pywikibot team'
Original file line number Diff line number Diff line change 8
8
* WikibaseEntity: base interface for Wikibase entities.
9
9
"""
10
10
#
11
- # (C) Pywikibot team, 2013-2024
11
+ # (C) Pywikibot team, 2013-2025
12
12
#
13
13
# Distributed under the terms of the MIT license.
14
14
#
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Scripts Changelog
4
4
10.0.0
5
5
------
6
6
7
+ * L10N updates
8
+ * i18n updates
7
9
* Require Python 3.8 or higher
8
10
* Require Pywikibot 10.0.0
9
11
You can’t perform that action at this time.
0 commit comments