jenkins-bot submitted this change.
doc: update ROADMAP.rst and CHANGELOG.rst
Change-Id: I26a23809991f73f96bdb1c77bd08b80561731c1a
---
M ROADMAP.rst
M scripts/CHANGELOG.rst
2 files changed, 33 insertions(+), 11 deletions(-)
diff --git a/ROADMAP.rst b/ROADMAP.rst
index f982227..fb6a0e9 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,7 +1,12 @@
Current Release Changes
=======================
-* (no changes yet)
+* Add -cookies option to :mod:`login<pywikibot.scripts.login>` script to login with cookies files only
+* Create a Site using :func:`pywikibot.Site` constructor with a given url even if the url ends with
+ a slash (:phab:`T396592`)
+* Remove hard-coded error messages from :meth:`login.LoginManager.login` and use API response instead
+* Add additional informations to :meth:`Site.login()<pywikibot.site._apisite.APISite.login>` error message (:phab:`T395670`)
+* i18n updates
Current Deprecations
====================
@@ -16,8 +21,8 @@
'millennium' must be used instead.
* 10.0.0: *includeredirects* parameter of :func:`pagegenerators.AllpagesPageGenerator` and
:func:`pagegenerators.PrefixingPageGenerator` is deprecated and should be replaced by *filterredir*
-* 9.6.0: :meth:`BaseSite.languages()<pywikibot.site._basesite.BaseSite.languages>` will be removed in favour of
- :attr:`BaseSite.codes<pywikibot.site._basesite.BaseSite.codes>`
+* 9.6.0: :meth:`BaseSite.languages()<pywikibot.site._basesite.BaseSite.languages>` will be removed in
+ favour of :attr:`BaseSite.codes<pywikibot.site._basesite.BaseSite.codes>`
* 9.5.0: :meth:`DataSite.getPropertyType()<pywikibot.site._datasite.DataSite.getPropertyType>` will be removed
in favour of :meth:`DataSite.get_property_type()<pywikibot.site._datasite.DataSite.get_property_type>`
* 9.3.0: :meth:`page.BasePage.userName` and :meth:`page.BasePage.isIpEdit` are deprecated in favour of
@@ -25,16 +30,16 @@
* 9.2.0: Imports of :mod:`logging` functions from :mod:`bot` module is deprecated and will be desupported
* 9.2.0: *total* argument in ``-logevents`` pagegenerators option is deprecated;
use ``-limit`` instead (:phab:`T128981`)
-* 9.0.0: The *content* parameter of :meth:`proofreadpage.IndexPage.page_gen` is deprecated and will be ignored
- (:phab:`T358635`)
+* 9.0.0: The *content* parameter of :meth:`proofreadpage.IndexPage.page_gen` is deprecated and will be
+ ignored (:phab:`T358635`)
* 9.0.0: ``userinterfaces.transliteration.transliterator`` was renamed to :class:`Transliterator
<userinterfaces.transliteration.Transliterator>`
-* 9.0.0: ``next`` parameter of :meth:`userinterfaces.transliteration.transliterator.transliterate` was renamed to
- ``succ``
+* 9.0.0: ``next`` parameter of :meth:`userinterfaces.transliteration.transliterator.transliterate` was
+ renamed to ``succ``
* 9.0.0: ``type`` parameter of :meth:`site.APISite.protectedpages()
<pywikibot.site._generators.GeneratorsMixin.protectedpages>` was renamed to ``protect_type``
-* 9.0.0: ``all`` parameter of :meth:`site.APISite.namespace()<pywikibot.site._apisite.APISite.namespace>` was renamed to
- ``all_ns``
+* 9.0.0: ``all`` parameter of :meth:`site.APISite.namespace()<pywikibot.site._apisite.APISite.namespace>`
+ was renamed to ``all_ns``
* 9.0.0: ``filter`` parameter of :func:`date.dh` was renamed to ``filter_func``
* 9.0.0: ``dict`` parameter of :class:`data.api.OptionSet` was renamed to ``data``
* 9.0.0: ``pywikibot.version.get_toolforge_hostname()`` is deprecated without replacement
@@ -69,7 +74,7 @@
* 8.0.0: :meth:`LoginManager.get_login_token<login.ClientLoginManager.get_login_token>` was
replaced by ``login.ClientLoginManager.site.tokens['login']``
* 8.0.0: ``data.api.LoginManager()`` is deprecated in favour of :class:`login.ClientLoginManager`
-* 8.0.0: :meth:`APISite.messages()<pywikibot.site._apisite.APISite.messages>` method is deprecated in favour of
- :attr:`userinfo['messages']<pywikibot.site._apisite.APISite.userinfo>`
+* 8.0.0: :meth:`APISite.messages()<pywikibot.site._apisite.APISite.messages>` method is deprecated in
+ favour of :attr:`userinfo['messages']<pywikibot.site._apisite.APISite.userinfo>`
* 8.0.0: :meth:`Page.editTime()<page.BasePage.editTime>` method is deprecated and should be replaced by
:attr:`Page.latest_revision.timestamp<page.BasePage.latest_revision>`
diff --git a/scripts/CHANGELOG.rst b/scripts/CHANGELOG.rst
index 598a879..62f50ea 100644
--- a/scripts/CHANGELOG.rst
+++ b/scripts/CHANGELOG.rst
@@ -1,6 +1,23 @@
Scripts Changelog
=================
+10.3.0
+------
+
+* i18n updates
+
+archivebot
+^^^^^^^^^^
+
+* Use wikidata items for archive header templates (:phab:`T396399`)
+
+redirect
+^^^^^^^^
+
+* Try one more move to fix redirect targets (:phab:`T396473`)
+* Don't fix broken redirects if namespace of source and target are different (:phab:`T396456`)
+
+
10.2.0
------
To view, visit change 1164580. To unsubscribe, or for help writing mail filters, visit settings.