Forwarding, not sure if this breaks pywikibot.



-------- Doorgestuurd bericht --------
Onderwerp: [Mediawiki-api-announce] [BREAKING CHANGE] meta=notifications outputs array instead of object since 1.27.0-wmf.22
Datum: Tue, 28 Jun 2016 15:49:03 +0200
Van: Roan Kattouw <roan.kattouw@gmail.com>
Antwoord-naar: mediawiki-api@lists.wikimedia.org
Aan: MediaWiki API announcements & discussion <mediawiki-api-announce@lists.wikimedia.org>


As of 1.27.0-wmf.22 (deployed to WMF wikis April 26-28) and MediaWiki release 1.27 (specifically, this change in Echo), meta=notifications will return its result as an array rather than an object.

Previously, the meta=notifications output looked like:
{
    "query": {
        "notifications": {
            "list": {
                "12345": {
                    "id": "12345",
                    "type": "edit-user-talk",
                    ...
                },
                ...
            }


Now, it looks like:
{
    "query": {
        "notifications": {
            "list": [
                {
                    "id": "12345",
                    "type": "edit-user-talk",
                    ...
                },
                ...
            ]

My apologies for the late announcement, and thanks to APerson and Cienca Al Poder for noticing and encouraging me to write this announcement.