WikidataBuilder has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/288751

Change subject: New Wikidata Build - 2016-05-14T10:00:01+0000
......................................................................

New Wikidata Build - 2016-05-14T10:00:01+0000

Change-Id: Ic07036ff094a8be44beaf5f710400716575eba0c
---
M composer.lock
M extensions/ArticlePlaceholder/includes/SearchHookHandler.php
M extensions/Wikibase/client/i18n/en.json
M extensions/Wikibase/lib/includes/Formatters/WikibaseSnakFormatterBuilders.php
M extensions/Wikibase/repo/i18n/en.json
M extensions/Wikibase/repo/includes/Api/SetSiteLink.php
M vendor/composer/installed.json
7 files changed, 44 insertions(+), 66 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Wikidata 
refs/changes/51/288751/1

diff --git a/composer.lock b/composer.lock
index 8f2963c..28c9d81 100644
--- a/composer.lock
+++ b/composer.lock
@@ -780,12 +780,12 @@
             "source": {
                 "type": "git",
                 "url": 
"https://github.com/wikimedia/mediawiki-extensions-ArticlePlaceholder.git";,
-                "reference": "0d1816460af6029d14ebdfc16625a80e2fdba79a"
+                "reference": "c96aefb81f2fe04e0d7342e4f0e2452394f7006b"
             },
             "dist": {
                 "type": "zip",
-                "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-ArticlePlaceholder/zipball/0d1816460af6029d14ebdfc16625a80e2fdba79a";,
-                "reference": "0d1816460af6029d14ebdfc16625a80e2fdba79a",
+                "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-ArticlePlaceholder/zipball/c96aefb81f2fe04e0d7342e4f0e2452394f7006b";,
+                "reference": "c96aefb81f2fe04e0d7342e4f0e2452394f7006b",
                 "shasum": ""
             },
             "require-dev": {
@@ -804,7 +804,7 @@
             ],
             "description": "Provides a special page with Wikibase information 
about a certain topic, with invitation to create an article for the topic",
             "homepage": 
"https://www.mediawiki.org/wiki/Extension:ArticlePlaceholder";,
-            "time": "2016-05-12 20:12:11"
+            "time": "2016-05-12 20:52:09"
         },
         {
             "name": "propertysuggester/property-suggester",
@@ -1564,12 +1564,12 @@
             "source": {
                 "type": "git",
                 "url": 
"https://github.com/wikimedia/mediawiki-extensions-Wikibase.git";,
-                "reference": "ceae1b20a299ab45b5ea34da411cde36f2ca5deb"
+                "reference": "7c658aa9ffd160920e18d63fffa6fd73e4c21042"
             },
             "dist": {
                 "type": "zip",
-                "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-Wikibase/zipball/ceae1b20a299ab45b5ea34da411cde36f2ca5deb";,
-                "reference": "ceae1b20a299ab45b5ea34da411cde36f2ca5deb",
+                "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-Wikibase/zipball/7c658aa9ffd160920e18d63fffa6fd73e4c21042";,
+                "reference": "7c658aa9ffd160920e18d63fffa6fd73e4c21042",
                 "shasum": ""
             },
             "require": {
@@ -1641,7 +1641,7 @@
                 "wikibaserepo",
                 "wikidata"
             ],
-            "time": "2016-05-12 20:18:01"
+            "time": "2016-05-13 19:47:35"
         },
         {
             "name": "wikibase/wikimedia-badges",
diff --git a/extensions/ArticlePlaceholder/includes/SearchHookHandler.php 
b/extensions/ArticlePlaceholder/includes/SearchHookHandler.php
index 6b4bf0a..453d70f 100644
--- a/extensions/ArticlePlaceholder/includes/SearchHookHandler.php
+++ b/extensions/ArticlePlaceholder/includes/SearchHookHandler.php
@@ -218,9 +218,9 @@
                }
 
                foreach ( $entityIds as $entityId ) {
-                       if ( count( $data[$entityId][ 'claims' ] ) > 
self::MIN_STATEMENTS
-                               && count( $data[$entityId][ 'sitelinks' ] ) > 
self::MIN_SITELINKS ) {
-                                       array_push( $notableEntityIds, 
$entityId );
+                       if ( count( $data[$entityId][ 'claims' ] ) >= 
self::MIN_STATEMENTS
+                               && count( $data[$entityId][ 'sitelinks' ] ) >= 
self::MIN_SITELINKS ) {
+                                       $notableEntityIds[] = $entityId;
                        }
                }
                return $notableEntityIds;
diff --git a/extensions/Wikibase/client/i18n/en.json 
b/extensions/Wikibase/client/i18n/en.json
index edf3290..787407a 100644
--- a/extensions/Wikibase/client/i18n/en.json
+++ b/extensions/Wikibase/client/i18n/en.json
@@ -71,7 +71,7 @@
        "wikibase-unconnectedpages-submit": "Show pages",
        "pageswithbadges": "Pages with badges",
        "pageswithbadges-summary": "This page lists pages with badges (e.g. 
good article or featured article). The list is sorted by descending page ID, so 
that newer pages are listed first.",
-       "wikibase-pageswithbadges-invalid-id": "$1 is not a valid item id",
+       "wikibase-pageswithbadges-invalid-id": "$1 is not a valid item ID",
        "wikibase-pageswithbadges-legend": "List of pages with a given badge",
        "wikibase-pageswithbadges-badge": "Badge:",
        "wikibase-pageswithbadges-submit": "Show pages",
diff --git 
a/extensions/Wikibase/lib/includes/Formatters/WikibaseSnakFormatterBuilders.php 
b/extensions/Wikibase/lib/includes/Formatters/WikibaseSnakFormatterBuilders.php
index 4960a32..fc778e1 100644
--- 
a/extensions/Wikibase/lib/includes/Formatters/WikibaseSnakFormatterBuilders.php
+++ 
b/extensions/Wikibase/lib/includes/Formatters/WikibaseSnakFormatterBuilders.php
@@ -93,28 +93,6 @@
        }
 
        /**
-        * Wraps the given formatter in an EscapingSnakFormatter if necessary.
-        *
-        * @param string $format The desired target format, see 
SnakFormatter::FORMAT_XXX
-        * @param SnakFormatter $formatter The plain text formatter to wrap.
-        *
-        * @throws InvalidArgumentException
-        * @return SnakFormatter
-        */
-       private function escapeSnakFormatter( $format, SnakFormatter $formatter 
) {
-               switch ( $this->getBaseFormat( $format ) ) {
-                       case SnakFormatter::FORMAT_HTML:
-                               return new EscapingSnakFormatter( $format, 
$formatter, 'htmlspecialchars' );
-                       case SnakFormatter::FORMAT_WIKI:
-                               return new EscapingSnakFormatter( $format, 
$formatter, 'wfEscapeWikiText' );
-                       case SnakFormatter::FORMAT_PLAIN:
-                               return $formatter;
-               }
-
-               throw new InvalidArgumentException( 'Unsupported output format: 
' . $format );
-       }
-
-       /**
         * @param string $format The desired target format, see 
SnakFormatter::FORMAT_XXX
         * @param FormatterOptions $options
         *
diff --git a/extensions/Wikibase/repo/i18n/en.json 
b/extensions/Wikibase/repo/i18n/en.json
index 574a7d2..c46745d 100644
--- a/extensions/Wikibase/repo/i18n/en.json
+++ b/extensions/Wikibase/repo/i18n/en.json
@@ -398,15 +398,15 @@
        "apihelp-wbcreateredirect-param-bot": "Mark this edit as bot. This URL 
flag will only be respected if the user belongs to the group \"bot\".",
        "apihelp-wbcreateredirect-example-1": "Turn Q11 into a redirect to Q12",
        "apihelp-wbeditentity-description": "Creates a single new Wikibase 
entity and modifies it with serialised information.",
-       "apihelp-wbeditentity-param-id": "The identifier for the entity, 
including the prefix.\nUse either 'id' or 'site' and 'title' together.",
-       "apihelp-wbeditentity-param-site": "An identifier for the site on which 
the page resides.\nUse together with 'title' to make a complete sitelink.",
-       "apihelp-wbeditentity-param-title": "Title of the page to 
associate.\nUse together with 'site' to make a complete sitelink.",
+       "apihelp-wbeditentity-param-id": "The identifier for the entity, 
including the prefix.\nUse either <var>id</var> or <var>site</var> and 
<var>title</var> together.",
+       "apihelp-wbeditentity-param-site": "An identifier for the site on which 
the page resides.\nUse together with <var>title</var> to make a complete 
sitelink.",
+       "apihelp-wbeditentity-param-title": "Title of the page to 
associate.\nUse together with <var>site</var> to make a complete sitelink.",
        "apihelp-wbeditentity-param-baserevid": "The numeric identifier for the 
revision to base the modification on.\nThis is used for detecting conflicts 
during save.",
        "apihelp-wbeditentity-param-summary": "Summary for the edit.\nWill be 
prepended by an automatically generated comment. The length limit of the 
autocomment together with the summary is 260 characters. Be aware that 
everything above that limit will be cut off.",
        "apihelp-wbeditentity-param-bot": "Mark this edit as bot. This URL flag 
will only be respected if the user belongs to the group \"bot\".",
        "apihelp-wbeditentity-param-data": "The serialized object that is used 
as the data source.\nA newly created entity will be assigned an 'id'.",
        "apihelp-wbeditentity-param-clear": "If set, the complete entity is 
emptied before proceeding.\nThe entity will not be saved before it is filled 
with the \"data\", possibly with parts excluded.",
-       "apihelp-wbeditentity-param-new": "If set, a new entity will be 
created.\nSet this to the type of the entity you want to create.\nIt is not 
allowed to have this set when 'id' is also set.",
+       "apihelp-wbeditentity-param-new": "If set, a new entity will be 
created.\nSet this to the type of the entity you want to create.\nIt is not 
allowed to have this set when <var>id</var> is also set.",
        "apihelp-wbeditentity-example-1": "Create a new empty item, return full 
entity structure",
        "apihelp-wbeditentity-example-2": "Create a new item and set labels for 
de and en",
        "apihelp-wbeditentity-example-3": "Create a new property containing the 
json data, return full entity structure",
@@ -444,7 +444,7 @@
        "apihelp-wbgetentities-param-redirects": "Whether redirects shall be 
resolved.\nIf set to \"no\", redirects will be treated like deleted entities.",
        "apihelp-wbgetentities-param-props": "The names of the properties to 
get back from each entity.\nWill be further filtered by any languages given.",
        "apihelp-wbgetentities-param-languages": "By default the 
internationalized values are returned in all available languages.\nThis 
parameter allows filtering these down to one or more languages by providing one 
or more language codes.",
-       "apihelp-wbgetentities-param-languagefallback": "Apply language 
fallback for languages defined in the \"languages\" parameter, with the current 
context of API call.",
+       "apihelp-wbgetentities-param-languagefallback": "Apply language 
fallback for languages defined in the <var>languages</var> parameter, with the 
current context of API call.",
        "apihelp-wbgetentities-param-normalize": "Try to normalize the page 
title against the client site.\nThis only works if exactly one site and one 
page have been given.",
        "apihelp-wbgetentities-param-sitefilter": "Filter sitelinks in entities 
to those with these site IDs.",
        "apihelp-wbgetentities-example-1": "Get entities with ID Q42 with all 
available attributes in all available languages",
@@ -505,7 +505,7 @@
        "apihelp-wbremovereferences-param-statement": "A GUID identifying the 
statement for which a reference is being set",
        "apihelp-wbremovereferences-param-summary": "Summary for the 
edit.\nWill be prepended by an automatically generated comment. The length 
limit of the autocomment together with the summary is 260 characters. Be aware 
that everything above that limit will be cut off.",
        "apihelp-wbremovereferences-param-references": "The hashes of the 
references that should be removed",
-       "apihelp-wbremovereferences-example-1": "Remove reference with hash 
\"455481eeac76e6a8af71a6b493c073d54788e7e9\" from claim with GUID of 
\"Q42$D8404CDA-25E4-4334-AF13-A3290BCD9C0F\"",
+       "apihelp-wbremovereferences-example-1": "Remove reference with hash 
\"455481eeac76e6a8af71a6b493c073d54788e7e9\" from the statement with GUID of 
\"Q42$D8404CDA-25E4-4334-AF13-A3290BCD9C0F\"",
        "apihelp-wbsearchentities-description": "Searches for entities using 
labels and aliases.\nReturns a label and description for the entity in the user 
language if possible.\nReturns details of the matched term.\nThe matched term 
text is also present in the aliases key if different from the display label.",
        "apihelp-wbsearchentities-param-search": "Search for this text.",
        "apihelp-wbsearchentities-param-language": "Search in this language.",
@@ -526,9 +526,9 @@
        "apihelp-query+wbsearch-example-2": "Search for \"abc\" in English 
language with a limit of 50",
        "apihelp-query+wbsearch-example-3": "Search for \"alphabet\" in English 
language for type property",
        "apihelp-wbsetaliases-description": "Sets the aliases for a Wikibase 
entity.",
-       "apihelp-wbsetaliases-param-id": "The identifier for the entity, 
including the prefix.\nUse either 'id' or 'site' and 'title' together.",
-       "apihelp-wbsetaliases-param-site": "An identifier for the site on which 
the page resides.\nUse together with 'title' to make a complete sitelink.",
-       "apihelp-wbsetaliases-param-title": "Title of the page to 
associate.\nUse together with 'site' to make a complete sitelink.",
+       "apihelp-wbsetaliases-param-id": "The identifier for the entity, 
including the prefix.\nUse either <var>id</var> or <var>site</var> and 
<var>title</var> together.",
+       "apihelp-wbsetaliases-param-site": "An identifier for the site on which 
the page resides.\nUse together with <var>title</var> to make a complete 
sitelink.",
+       "apihelp-wbsetaliases-param-title": "Title of the page to 
associate.\nUse together with <var>site</var> to make a complete sitelink.",
        "apihelp-wbsetaliases-param-baserevid": "The numeric identifier for the 
revision to base the modification on.\nThis is used for detecting conflicts 
during save.",
        "apihelp-wbsetaliases-param-summary": "Summary for the edit.\nWill be 
prepended by an automatically generated comment. The length limit of the 
autocomment together with the summary is 260 characters. Be aware that 
everything above that limit will be cut off.",
        "apihelp-wbsetaliases-param-bot": "Mark this edit as bot. This URL flag 
will only be respected if the user belongs to the group \"bot\".",
@@ -558,9 +558,9 @@
        "apihelp-wbsetclaimvalue-param-bot": "Mark this edit as bot. This URL 
flag will only be respected if the user belongs to the group \"bot\".",
        "apihelp-wbsetclaimvalue-example-1": "Sets the claim with the GUID of 
Q42$D8404CDA-25E4-4334-AF13-A3290BCD9C0F to a value of Q1",
        "apihelp-wbsetdescription-description": "Sets a description for a 
single Wikibase entity.",
-       "apihelp-wbsetdescription-param-id": "The identifier for the entity, 
including the prefix.\nUse either 'id' or 'site' and 'title' together.",
-       "apihelp-wbsetdescription-param-site": "An identifier for the site on 
which the page resides.\nUse together with 'title' to make a complete 
sitelink.",
-       "apihelp-wbsetdescription-param-title": "Title of the page to 
associate.\nUse together with 'site' to make a complete sitelink.",
+       "apihelp-wbsetdescription-param-id": "The identifier for the entity, 
including the prefix.\nUse either <var>id</var> or <var>site</var> and 
<var>title</var> together.",
+       "apihelp-wbsetdescription-param-site": "An identifier for the site on 
which the page resides.\nUse together with <var>title</var> to make a complete 
sitelink.",
+       "apihelp-wbsetdescription-param-title": "Title of the page to 
associate.\nUse together with <var>site</var> to make a complete sitelink.",
        "apihelp-wbsetdescription-param-baserevid": "The numeric identifier for 
the revision to base the modification on.\nThis is used for detecting conflicts 
during save.",
        "apihelp-wbsetdescription-param-summary": "Summary for the edit.\nWill 
be prepended by an automatically generated comment. The length limit of the 
autocomment together with the summary is 260 characters. Be aware that 
everything above that limit will be cut off.",
        "apihelp-wbsetdescription-param-bot": "Mark this edit as bot. This URL 
flag will only be respected if the user belongs to the group \"bot\".",
@@ -569,9 +569,9 @@
        "apihelp-wbsetdescription-example-1": "Set the string \"An encyclopedia 
that everyone can edit\" for page with ID \"Q42\" as a description in English 
language",
        "apihelp-wbsetdescription-example-2": "Set the string \"An encyclopedia 
that everyone can edit\" as a description in English language for page with a 
sitelink to enwiki:Wikipedia",
        "apihelp-wbsetlabel-description": "Sets a label for a single Wikibase 
entity.",
-       "apihelp-wbsetlabel-param-id": "The identifier for the entity, 
including the prefix.\nUse either 'id' or 'site' and 'title' together.",
-       "apihelp-wbsetlabel-param-site": "An identifier for the site on which 
the page resides.\nUse together with 'title' to make a complete sitelink.",
-       "apihelp-wbsetlabel-param-title": "Title of the page to associate.\nUse 
together with 'site' to make a complete sitelink.",
+       "apihelp-wbsetlabel-param-id": "The identifier for the entity, 
including the prefix.\nUse either <var>id</var> or <var>site</var> and 
<var>title</var> together.",
+       "apihelp-wbsetlabel-param-site": "An identifier for the site on which 
the page resides.\nUse together with <var>title</var> to make a complete 
sitelink.",
+       "apihelp-wbsetlabel-param-title": "Title of the page to associate.\nUse 
together with <var>site</var> to make a complete sitelink.",
        "apihelp-wbsetlabel-param-baserevid": "The numeric identifier for the 
revision to base the modification on.\nThis is used for detecting conflicts 
during save.",
        "apihelp-wbsetlabel-param-summary": "Summary for the edit.\nWill be 
prepended by an automatically generated comment. The length limit of the 
autocomment together with the summary is 260 characters. Be aware that 
everything above that limit will be cut off.",
        "apihelp-wbsetlabel-param-bot": "Mark this edit as bot. This URL flag 
will only be respected if the user belongs to the group \"bot\".",
@@ -602,20 +602,20 @@
        "apihelp-wbsetreference-example-2": "Set reference for claim with GUID 
Q76$D4FDE516-F20C-4154-ADCE-7C5B609DFDFF which has hash of 
1eb8793c002b1d9820c833d234a1b54c8e94187e",
        "apihelp-wbsetreference-example-3": "Creates a new reference for the 
claim with GUID Q76$D4FDE516-F20C-4154-ADCE-7C5B609DFDFF and inserts the new 
reference at the top of the list of references instead of appending it to the 
bottom.",
        "apihelp-wbsetsitelink-description": "Associates an article on a wiki 
with a Wikibase item or removes an already made such association.",
-       "apihelp-wbsetsitelink-param-id": "The identifier for the entity, 
including the prefix.\nUse either 'id' or 'site' and 'title' together.",
-       "apihelp-wbsetsitelink-param-site": "An identifier for the site on 
which the page resides.\nUse together with 'title' to make a complete 
sitelink.",
-       "apihelp-wbsetsitelink-param-title": "Title of the page to 
associate.\nUse together with 'site' to make a complete sitelink.",
+       "apihelp-wbsetsitelink-param-id": "The identifier for the entity, 
including the prefix.\nUse either <var>id</var> or <var>site</var> and 
<var>title</var> together.",
+       "apihelp-wbsetsitelink-param-site": "An identifier for the site on 
which the page resides.\nUse together with <var>title</var> to make a complete 
sitelink.",
+       "apihelp-wbsetsitelink-param-title": "Title of the page to 
associate.\nUse together with <var>site</var> to make a complete sitelink.",
        "apihelp-wbsetsitelink-param-baserevid": "The numeric identifier for 
the revision to base the modification on.\nThis is used for detecting conflicts 
during save.",
        "apihelp-wbsetsitelink-param-summary": "Summary for the edit.\nWill be 
prepended by an automatically generated comment. The length limit of the 
autocomment together with the summary is 260 characters. Be aware that 
everything above that limit will be cut off.",
        "apihelp-wbsetsitelink-param-bot": "Mark this edit as bot. This URL 
flag will only be respected if the user belongs to the group \"bot\".",
        "apihelp-wbsetsitelink-param-linksite": "The identifier of the site on 
which the article to link resides",
        "apihelp-wbsetsitelink-param-linktitle": "The title of the article to 
link. If this parameter is an empty string or both linktitle and badges are not 
set, the link will be removed.",
        "apihelp-wbsetsitelink-param-badges": "The IDs of items to be set as 
badges. They will replace the current ones. If this parameter is not set, the 
badges will not be changed",
-       "apihelp-wbsetsitelink-example-1": "Add a sitelink \"Hydrogen\" for 
English page with ID \"Q42\", if the sitelink does not exist",
-       "apihelp-wbsetsitelink-example-2": "Add a sitelink \"Hydrogen\" for 
English page with ID \"Q42\", if the sitelink does not exist with an edit 
summary of \"World domination will be mine soon!\"",
-       "apihelp-wbsetsitelink-example-3": "Add a sitelink \"Wasserstoff\" for 
the German page on item with the link for the English page to \"Hydrogen\", if 
the sitelink does not exist",
-       "apihelp-wbsetsitelink-example-4": "Removes the German sitelink from 
the item",
-       "apihelp-wbsetsitelink-example-5": "Add a sitelink \"Wodór\" for the 
Polish page on item with the link for the English page to \"Hydrogen\" with one 
badge pointing to the item with ID \"Q149\"",
+       "apihelp-wbsetsitelink-example-1": "Add a sitelink to the English 
article \"Hydrogen\" to the item with ID \"Q42\", if the sitelink does not 
exist",
+       "apihelp-wbsetsitelink-example-2": "Add a sitelink to the English 
article \"Hydrogen\" to the item with ID \"Q42\", if the sitelink does not 
exist. Also appends \"Loves Oxygen\" to the edit summary.",
+       "apihelp-wbsetsitelink-example-3": "Add a sitelink to the German 
article \"Wasserstoff\" to the item that is linked with the English article 
\"Hydrogen\", if the sitelink does not exist",
+       "apihelp-wbsetsitelink-example-4": "Remove the German sitelink from the 
item",
+       "apihelp-wbsetsitelink-example-5": "Add a sitelink to the Polish 
article \"Wodór\" to the item that is linked with the English article 
\"Hydrogen\", with one badge pointing to the item with ID \"Q149\"",
        "apihelp-wbsetsitelink-example-6": "Change badges for the link to the 
Polish page from the item with ID \"Q42\" to two badges pointing to the items 
with IDs \"Q2\" and \"Q149\" without providing the link title",
        "apihelp-wbsetsitelink-example-7": "Change the link to the Polish page 
from the item with ID \"Q42\" without changing badges",
        "apihelp-wbsetsitelink-example-8": "Change the link to the Polish page 
from the item with ID \"Q42\" and remove all of its badges"
diff --git a/extensions/Wikibase/repo/includes/Api/SetSiteLink.php 
b/extensions/Wikibase/repo/includes/Api/SetSiteLink.php
index 381f092..e655c40 100644
--- a/extensions/Wikibase/repo/includes/Api/SetSiteLink.php
+++ b/extensions/Wikibase/repo/includes/Api/SetSiteLink.php
@@ -212,7 +212,7 @@
                return array(
                        
'action=wbsetsitelink&id=Q42&linksite=enwiki&linktitle=Hydrogen'
                        => 'apihelp-wbsetsitelink-example-1',
-                       
'action=wbsetsitelink&id=Q42&linksite=enwiki&linktitle=Hydrogen&summary=World%20domination%20will%20be%20mine%20soon!'
+                       
'action=wbsetsitelink&id=Q42&linksite=enwiki&linktitle=Hydrogen&summary=Loves%20Oxygen'
                        => 'apihelp-wbsetsitelink-example-2',
                        
'action=wbsetsitelink&site=enwiki&title=Hydrogen&linksite=dewiki&linktitle=Wasserstoff'
                        => 'apihelp-wbsetsitelink-example-3',
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 7fdbf3c..8eac7e1 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -108,19 +108,19 @@
         "source": {
             "type": "git",
             "url": 
"https://github.com/wikimedia/mediawiki-extensions-ArticlePlaceholder.git";,
-            "reference": "0d1816460af6029d14ebdfc16625a80e2fdba79a"
+            "reference": "c96aefb81f2fe04e0d7342e4f0e2452394f7006b"
         },
         "dist": {
             "type": "zip",
-            "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-ArticlePlaceholder/zipball/0d1816460af6029d14ebdfc16625a80e2fdba79a";,
-            "reference": "0d1816460af6029d14ebdfc16625a80e2fdba79a",
+            "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-ArticlePlaceholder/zipball/c96aefb81f2fe04e0d7342e4f0e2452394f7006b";,
+            "reference": "c96aefb81f2fe04e0d7342e4f0e2452394f7006b",
             "shasum": ""
         },
         "require-dev": {
             "jakub-onderka/php-parallel-lint": "0.9.2",
             "mediawiki/mediawiki-codesniffer": "0.7.1"
         },
-        "time": "2016-05-12 20:12:11",
+        "time": "2016-05-12 20:52:09",
         "type": "mediawiki-extension",
         "installation-source": "dist",
         "notification-url": "https://packagist.org/downloads/";,
@@ -1340,12 +1340,12 @@
         "source": {
             "type": "git",
             "url": 
"https://github.com/wikimedia/mediawiki-extensions-Wikibase.git";,
-            "reference": "ceae1b20a299ab45b5ea34da411cde36f2ca5deb"
+            "reference": "7c658aa9ffd160920e18d63fffa6fd73e4c21042"
         },
         "dist": {
             "type": "zip",
-            "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-Wikibase/zipball/ceae1b20a299ab45b5ea34da411cde36f2ca5deb";,
-            "reference": "ceae1b20a299ab45b5ea34da411cde36f2ca5deb",
+            "url": 
"https://api.github.com/repos/wikimedia/mediawiki-extensions-Wikibase/zipball/7c658aa9ffd160920e18d63fffa6fd73e4c21042";,
+            "reference": "7c658aa9ffd160920e18d63fffa6fd73e4c21042",
             "shasum": ""
         },
         "require": {
@@ -1378,7 +1378,7 @@
             "jakub-onderka/php-parallel-lint": "0.9.2",
             "mediawiki/mediawiki-codesniffer": "0.4.0|0.5.0"
         },
-        "time": "2016-05-12 20:18:01",
+        "time": "2016-05-13 19:47:35",
         "type": "mediawiki-extension",
         "installation-source": "dist",
         "autoload": {

-- 
To view, visit https://gerrit.wikimedia.org/r/288751
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic07036ff094a8be44beaf5f710400716575eba0c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Wikidata
Gerrit-Branch: master
Gerrit-Owner: WikidataBuilder <wikidata-servi...@wikimedia.de>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to