jenkins-bot submitted this change.

View Change

Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
[doc] Update ROADMAP.rst and CHANGELOG.md

Change-Id: I88d004ece927d75e9f6f7151b5b8da745938ca71
---
M ROADMAP.rst
M pywikibot/exceptions.py
M scripts/CHANGELOG.md
3 files changed, 47 insertions(+), 4 deletions(-)

diff --git a/ROADMAP.rst b/ROADMAP.rst
index 37e0783..eba2565 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,6 +1,14 @@
Current release changes
^^^^^^^^^^^^^^^^^^^^^^^

+Improvements and Bugfixes
+-------------------------
+
+* Adjust groupsize within pagegenerators.PreloadingGenerator (T291770)
+* New "maxlimit" property was added to APISite (T291770)
+
+
+
Breaking changes
----------------

@@ -10,6 +18,13 @@
Code cleanups
-------------

+* Outdated parameter names has been dropped
+* Deprecated pywikibot.Error exception were removed in favour of pywikibot.exceptions.Error classes (T280227)
+* Deprecated exception identifiers were removed (T280227)
+* Deprecated date.FormatDate class was removed in favour of date.format_date function
+* language_by_size property of wowwiki Family was removed in favour of codes attribute
+* availableOptions was removed in favour of available_options
+* config2 was removed in favour of config
* tools.RotatingFileHandler was removed in favour of logging.handlers.RotatingFileHandler
* tools.DotReadableDict, tools.LazyRegex and tools.DeprecatedRegex classes were removed
* tools.frozenmap was removed in favour of types.MappingProxyType
@@ -29,8 +44,4 @@
* 6.4.0: Pywikibot `began using semantic versioning
<https://www.mediawiki.org/wiki/Manual:Pywikibot/Development/Guidelines#Deprecation_Policy>`_,
all deprecated code will be removed in Pywikibot version 7.0.0.
-* 6.2.0: Bot's availableOptions will be removed in favour of available_options
-* 6.2.0: Usage of pywikibot.config2 is deprecated and will be dropped
-* 6.2.0: Exceptions must be imported from exceptions namespace (T280227)
-* 6.2.0: Deprecated exception identifiers will be removed (T280227)
* 5.0.0: Methods deprecated for 5 years or longer will be removed
diff --git a/pywikibot/exceptions.py b/pywikibot/exceptions.py
index f844f98..0850418 100644
--- a/pywikibot/exceptions.py
+++ b/pywikibot/exceptions.py
@@ -155,6 +155,11 @@

.. versionchanged:: 6.0
exceptions were renamed and are ending with "Error".
+
+.. versionchanged:: 7.0
+ All Pywikibot Error exceptions must be imported from
+ ``pywikibot.exceptions``. Deprecated exceptions identifiers were
+ removed.
"""
#
# (C) Pywikibot team, 2008-2021
diff --git a/scripts/CHANGELOG.md b/scripts/CHANGELOG.md
index f85a12a..0db9f4c 100644
--- a/scripts/CHANGELOG.md
+++ b/scripts/CHANGELOG.md
@@ -9,9 +9,36 @@
* Deprecated function put_text() was removed in favour of BaseBot.userPut() method
* Deprecated function add_text() were remove in favour of textlib.add_text()

+### blockpageschecker
+* Use different edit comments when adding, changeing or removing templates (T291345)
+* Derive CheckerBot from ConfigParserBot (T57106)
+* Derive CheckerBot from CurrentPageBot (T196851, T171713)
+
+### category
+* Deprecated code parts were removed
+
+### djvutext
+* pass site arg only once (T292367)
+
### newitem
* Do not pass OtherPageSaveRelatedError silently

+### pagefromfile
+* Preload pages instead of reading them one by one before putting changes
+* Don't ask for confirmation by default (T291757)
+
+### reflinks
+* L10N updates
+
+### replace
+* Deprecated "acceptall" and "addedCat" parameters were replaced by "always" and "addcat"
+
+### revertbot
+* Deprecated "max" parameter was replaced by "total"
+
+### solve_disambiguation
+* Remove deprecated properties in favour of DisambiguationRobot.opt options
+
### touch
*Do not pass OtherPageSaveRelatedError silently


To view, visit change 729142. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I88d004ece927d75e9f6f7151b5b8da745938ca71
Gerrit-Change-Number: 729142
Gerrit-PatchSet: 2
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: D3r1ck01 <xsavitar.wiki@aol.com>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged