jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/618103 )
Change subject: [doc] Update roadmap
......................................................................
[doc] Update roadmap
Change-Id: I0a91366546f9e9d154041c6f93be90ad32081565
---
M ROADMAP.rst
1 file changed, 5 insertions(+), 1 deletion(-)
Approvals:
Matěj Suchánek: Looks good to me, approved
jenkins-bot: Verified
diff --git a/ROADMAP.rst b/ROADMAP.rst
index ce90dd0..c788ddc 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,6 +1,10 @@
Current release
~~~~~~~~~~~~~~~
+* Read correct object in SiteLinkCollection.normalizeData (T259426)
+* tools.count and tools classes Counter, OrderedDict and ContextManagerWrapper were removed
+* Deprecate UnicodeMixin and IteratorNextMixin
+* Restrict site module interface
* EventStreams "since" parameter settings has been fixed
* Unsupported debug and uploadByUrl parameters of UploadRobot were removed
* Unported compat decode parameter of Page.title() has been removed
@@ -23,11 +27,11 @@
Future releases
~~~~~~~~~~~~~~~
+* 4.0.0: Deprecate tools.UnicodeMixin and tools.IteratorNextMixin will be removed
* 4.0.0: Site.Family() function will be removed in favour of Family.load() method
* 4.0.0: Site.getExpandedString method will be removed in favour of expand_text
* 4.0.0: Unused parameters of page methods like forceReload, insite, throttle, step will be removed
* 4.0.0: site/family methods code2encodings and code2encoding will be removed in favour of encoding/endcodings methods
* 4.0.0: Methods deprecated for 6 years or longer will be removed
-* 3.0.20200703: tools.count, tools.Counter, tools.OrderedDict and ContextManagerWrapper will be removed
* 3.0.20200508: Page.getVersionHistory and Page.fullVersionHistory() methods will be removed (T136513, T151110)
* 3.0.20200306: Support of MediaWiki releases below 1.19 will be dropped (T245350)
--
To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/618103
To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I0a91366546f9e9d154041c6f93be90ad32081565
Gerrit-Change-Number: 618103
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info(a)gno.de>
Gerrit-Reviewer: Matěj Suchánek <matejsuchanek97(a)gmail.com>
Gerrit-Reviewer: jenkins-bot
Gerrit-CC: Huji <huji.huji(a)gmail.com>
Gerrit-MessageType: merged
jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/617856 )
Change subject: [bugfix] Read correct object in normalizeData
......................................................................
[bugfix] Read correct object in normalizeData
Obviously, we need to read the JSON because
its structure is enforced by _extract_JSON.
Bug: T259426
Change-Id: I9af79c83db288874b734e9fd63c4c32427978aa5
---
M pywikibot/page/__init__.py
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Xqt: Looks good to me, approved
jenkins-bot: Verified
diff --git a/pywikibot/page/__init__.py b/pywikibot/page/__init__.py
index 78d559c..f36513e 100644
--- a/pywikibot/page/__init__.py
+++ b/pywikibot/page/__init__.py
@@ -3921,7 +3921,7 @@
raise ValueError(
"Couldn't determine the site and title of the value: "
'{!r}'.format(json))
- db_name = obj['site']
+ db_name = json['site']
norm_data[db_name] = json
return norm_data
--
To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/617856
To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I9af79c83db288874b734e9fd63c4c32427978aa5
Gerrit-Change-Number: 617856
Gerrit-PatchSet: 1
Gerrit-Owner: Matěj Suchánek <matejsuchanek97(a)gmail.com>
Gerrit-Reviewer: Urbanecm <martin.urbanec(a)wikimedia.cz>
Gerrit-Reviewer: Xqt <info(a)gno.de>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged