jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/676313 )
Change subject: [doc] Update ROADMAP.rst ......................................................................
[doc] Update ROADMAP.rst
- add changelog - add deprecation warnings - highlight dependency changes - fix RuntimeError message gui.py
Change-Id: I7f4447a7aaf56ba4d7ccb1861123890394b63bbd --- M ROADMAP.rst M pywikibot/userinterfaces/gui.py 2 files changed, 12 insertions(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/ROADMAP.rst b/ROADMAP.rst index cea9631..b47f76d 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,6 +1,14 @@ Current release changes ~~~~~~~~~~~~~~~~~~~~~~~
+* Require **Pillow**>=8.1.1 due to vulnerability found (T278743) +* TkDialog of GUI userinterface requires **Python 3.6+** (T278743) +* Enable textlib.extract_templates_and_params with **wikitextparser** package +* Add support for **PyMySQL** 1.0.0+ +* Exclude expressions from parsed template in **mwparserfromhell** (T71384) +* Provide an object representation for DequeGenerator +* Allow deleting any subclass of BasePage by title (T278659) +* Add support for API:Revisiondelete with Site.deleterevs() method (T276726) * L10N updates * Family files can be collected from a zip folder (T278076) * Deprecated getuserinfo and getglobaluserinfo Site methods were removed @@ -9,6 +17,9 @@ Future release notes ~~~~~~~~~~~~~~~~~~~~
+* 6.0.1: Site.undeletepage() and Site.undelete_file_versions() will be removed in favour of Site.undelete() method +* 6.0.1: Site.deletepage() and Site.deleteoldimage() will be removed in favour of Site.delete() method +* 6.0.1: DataSite.createNewItemFromPage() method will be removed in favour of ImagePage.fromPage() (T98663) * 6.0.0: User.name() method will be removed in favour of User.username property * 5.6.0: pagenenerators.handleArg() method will be removed in favour of handle_arg() (T271437) * 5.6.0: Family.ignore_certificate_error() method will be removed in favour of verify_SSL_certificate() (T265205) diff --git a/pywikibot/userinterfaces/gui.py b/pywikibot/userinterfaces/gui.py index 0f0b488..1b32aac 100644 --- a/pywikibot/userinterfaces/gui.py +++ b/pywikibot/userinterfaces/gui.py @@ -564,7 +564,7 @@ # vulnerability found in Pillow<8.1.1 from sys import version raise RuntimeError( - 'This script requires Python 3.5+ for GUI support.\n' + 'This script requires Python 3.6+ for GUI support.\n' '{version} is not supported. Please update your Python.' .format(version=version.split(maxsplit=1)[0]) )
pywikibot-commits@lists.wikimedia.org