Page MenuHomePhabricator
Paste P13090

Sample git activity outout
ActivePublic

Authored by daniel on Oct 28 2020, 5:31 PM.
Tags
None
Referenced Files
F32417708: Sample git activity outout
Oct 28 2020, 5:31 PM
Subscribers
None
{
"maintenance\/tables.sql": {
"File": "maintenance\/tables.sql",
"Commits": [
{
"message": "Migrate new_talk to abstract schema\n\nFor MySQL\n - Modify user_last_timestamp from VARBINARY to BINARY\n\nFor Postgres\n - Drop foreign key on user_id\n - Rename indexes to match MySQL convention\n\nBug: T230428\nChange-Id: Idc3ded012890d4ace805a646d75cd805b49b250c\n",
"bugs": [
"T230428"
],
"subject": "Migrate new_talk to abstract schema",
"hash": "74c0553250034729393fbf8f36a928daf752905d",
"date": "2020-10-26T13:10:24"
},
{
"message": "Fix ip_changes.ipc_rev_id column default value\n\nInteger field should not be given a default string value.\nIntroduced in Ice1bdae3d16cf365da14c6df0e8d91d2b914e064.\n\nBug: T191231\nBug: T163562\nChange-Id: I74de8efa9b39c2c07fee8249d779a0622b3586d8\n",
"bugs": [
"T191231",
"T163562"
],
"subject": "Fix ip_changes.ipc_rev_id column default value",
"hash": "097ab7b600d3a7f5671b2434437336604e9cf1d3",
"date": "2020-10-26T06:31:22"
},
{
"message": "Migrate sites table to abstract schema\n\nFor MySQL\/Sqlite, using mwtinyint instead of bool, in reality it doesn't\nmatter since bool is an alias of tinyint(1) in MySQL.\n\nIn Postgres:\n - Changing type of site_domain from TEXT to VARCHAR to make it in sync\n with MySQL\/Sqlite\n - Renaming all indexes from site_* to sites_* to be in sync with\n MySQL\/Sqlite\n\nBug: T230428\nBug: T164898\nChange-Id: Id73bb372807730446901d772fcdbd2f333b397ba\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate sites table to abstract schema",
"hash": "a9dcbe3585244619be21bd9d9c0a040f5f328611",
"date": "2020-10-22T17:35:39"
},
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
},
{
"message": "Migrate querycache_info to abstract schema\n\nAdditional changes for Postgres:\n - Set empty string as default for qci_type\n - Set PG-equivalent of the given MySql\/Sqlite timestamp as\n default timestamp for qci_timestamp\n - Make qci_type non nullable\n - Make qci_timestamp non nullable\n - Drop UNIQUE constraint on qci_type\n\nBug: T230428\nBug: T164898\nDepends-On: If344395615087c360597a5b3d66ea03e930b7d9b\nChange-Id: I741d2d079696d4b4eba09945341054d2a145bddc\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate querycache_info to abstract schema",
"hash": "6599e5706c08cdcbd134985dfa7f4db451e30a14",
"date": "2020-10-20T07:18:03"
}
],
"Tickets": {
"0": "T230428",
"1": "T164898",
"4": "T191231",
"5": "T163562"
},
"TicketCount": 4
},
"languages\/Language.php": {
"File": "languages\/Language.php",
"Commits": [
{
"message": "Language: Fix 'uesd' typo to 'used'\n\nChange-Id: I20c615b6b8c7f9420b29f8e8486d8979fefb6a49\n",
"bugs": [],
"subject": "Language: Fix 'uesd' typo to 'used'",
"hash": "77c3b90307c948459143dae11d96fbff11623d1e",
"date": "2020-10-23T16:39:20"
},
{
"message": "Language: hard deprecate the `noSeparators` parameter to ::formatNum\n\nCode should use Language::formatNumNoSeparators() instead, which has\nexisted since MW 1.21.\n\nCode search:\nhttps:\/\/codesearch.wmcloud.org\/search\/?q=formatNum%5C%28%5B%5E%29%5D*%2C&i=nope&files=&repos=\n\nDepends-On: I95c365e2535bb3c47bed69a9b702c8f13d9fab87\nDepends-On: I012434d5f6c749fec45a6c160e8d5d03686192e9\nDepends-On: If3de5645a92514f605d4117fea3a820ed6c86624\nChange-Id: I58a66975e505f16d8db5d663a9ca225535277983\n",
"bugs": [],
"subject": "Language: hard deprecate the `noSeparators` parameter to ::formatNum",
"hash": "1c9bbfc14e3f811e3a768f16d43241315a32e0f7",
"date": "2020-10-21T14:08:04"
},
{
"message": "Update formatNum implementation to match tr35 and latest CLDR\n\n* Update digitGroupingPattern to match CLDR 31: New versions of CLDR has\n digit grouping pattern with decimal part. Update digitGroupingPattern\n values in Message classes with this improved pattern.\n Refer: http:\/\/unicode.org\/reports\/tr35\/tr35-numbers.html\n\n* Refer the following chart for the decimal patterns.\n http:\/\/www.unicode.org\/cldr\/charts\/31\/by_type\/numbers.number_formatting_patterns.html\n\n* Uses PHP NumberFormatter class for the commafy implementation, which\n is available in PHP 7.\n\n* Some tests need to update to match the TR 35 spec\n\n* The formatNum public method in Language.php is the preferred way to\n use this feature. It does separator transformation and digit transformation\n wherever applicable.\n\n* Renamed the second param name for formatNum from noCommafy to noSeparators\n\n* commafy method is deprecated and formatNum is preferred. Practically,\n we are not just adding comma, but seperators according to the language.\n Replaced some tests based on commafy methods with tests based on formatNum.\n\nNote: The corresponding js implementation is not changed in this commit.\nIt would probably be a good idea to use globalize.js, which is also based\non the CLDR patterns.\n\nNote: This patch preserves the existing off-by-one error in\n$minimumGroupingDigits; T262500 will eventually fix this.\n\nBug: T167088\nCo-Authored-By: C. Scott Ananian <cscott@cscott.net>\nChange-Id: Ic721b9a91e78e4ef07040339d1006b7a90a910c0\n",
"bugs": [
"T167088"
],
"subject": "Update formatNum implementation to match tr35 and latest CLDR",
"hash": "ce8d0e9599a84565d53965481d1c163a90c4e6dd",
"date": "2020-10-21T14:08:04"
},
{
"message": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()\n\nCo-authored-by: C. Scott Ananian <cananian@wikimedia.org>\nBug: T226832\nChange-Id: I41a3b67490fc6b9d4c484f566d346a0d10c670e9\n",
"bugs": [
"T226832"
],
"subject": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()",
"hash": "e7dbd69de07c429405b764ec15316f512297634b",
"date": "2020-10-20T20:49:17"
},
{
"message": "Re-enable deprecation warning in Language::commafy() for non-numeric string\n\nThis reverts commit 10b0e1468e57a9741c390d16f006dd1028d2a8e6.\n\nThe underlying issue was fixed by 45183f0bf2d2e6b2a5d71c3ddc8e1b5dbaad1110.\n\nBug: T263592\nBug: T237467\nChange-Id: I05fdc99b2326f36e89cbd39672eca404af49a18a\n",
"bugs": [
"T263592",
"T237467"
],
"subject": "Re-enable deprecation warning in Language::commafy() for non-numeric string",
"hash": "448a51ae083abc1ca9fccb51a5a533e0fe9f8b71",
"date": "2020-10-20T19:46:17"
}
],
"Tickets": [
"T263592",
"T237467",
"T226832",
"T167088"
],
"TicketCount": 4
},
"RELEASE-NOTES-1.36": {
"File": "RELEASE-NOTES-1.36",
"Commits": [
{
"message": "Inject services into SpecialComparePages\n\nThis covers only directly used services by this special page\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: Ieea10ca032fefc6787ede5df6da19da63d152ec0\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialComparePages",
"hash": "1af9f7dc78e235aff2a68c8a862f5402b57de4c9",
"date": "2020-10-25T22:07:21"
},
{
"message": "Remove deprecated Profiler::(get|set)Templated\n\nDeprecated and unused\n\nChange-Id: I7b46543e0e32b6f13fcf8f8fb9273946ffbbdee9\n",
"bugs": [],
"subject": "Remove deprecated Profiler::(get|set)Templated",
"hash": "1fbdc8f19dfb3a653a8e8bf903f85aca20ec7965",
"date": "2020-10-22T02:55:31"
},
{
"message": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()\n\nCo-authored-by: C. Scott Ananian <cananian@wikimedia.org>\nBug: T226832\nChange-Id: I41a3b67490fc6b9d4c484f566d346a0d10c670e9\n",
"bugs": [
"T226832"
],
"subject": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()",
"hash": "e7dbd69de07c429405b764ec15316f512297634b",
"date": "2020-10-20T20:49:17"
},
{
"message": "Remove ProcessCacheLRU, deprecated and unused.\n\nChange-Id: I88c30c2480c51ad18d9a14d9f75700087ed09b99\n",
"bugs": [],
"subject": "Remove ProcessCacheLRU, deprecated and unused.",
"hash": "1f2f71ff6009394c5dd01e8f172663772347032f",
"date": "2020-10-20T19:49:05"
},
{
"message": "Remove SVGMetadataExtractor deprecated and unused.\n\nChange-Id: Ia30e59d1ff93129d48b4e6f0df76879407b5e3e2\n",
"bugs": [],
"subject": "Remove SVGMetadataExtractor deprecated and unused.",
"hash": "e11ea525760ab1a748d3b6de43464909cf0b8102",
"date": "2020-10-20T03:53:08"
}
],
"Tickets": [
"T226832",
"T259960"
],
"TicketCount": 2
},
"resources\/src\/mediawiki.special.apisandbox\/apisandbox.css": {
"File": "resources\/src\/mediawiki.special.apisandbox\/apisandbox.css",
"Commits": [
{
"message": "ApiSandbox: Use LESS\n\nChange-Id: I5368ff7b43c8eb504b4d1a0699eac0d1a031c447\n",
"bugs": [],
"subject": "ApiSandbox: Use LESS",
"hash": "e96d76ea4246fd4644d9c2d93d07f618a6240b56",
"date": "2020-10-22T09:50:19"
},
{
"message": "ApiSandbox: Reduce width of field labels, and set max width on field\n\nBug: T130495\nChange-Id: I20575ce6f3039a178eed798ec211dd447a8c1e97\n",
"bugs": [
"T130495"
],
"subject": "ApiSandbox: Reduce width of field labels, and set max width on field",
"hash": "a6229c888e751763b324c8d697b9a69f44bc67af",
"date": "2020-10-22T09:46:22"
},
{
"message": "ApiSandbox: Restore padding around field spacers\n\nBug: T130496\nChange-Id: I916e21ad37a63786400c84e2c0a070cd73df4d4a\n",
"bugs": [
"T130496"
],
"subject": "ApiSandbox: Restore padding around field spacers",
"hash": "0cee9916cbd9d62af7b484982eba1756d33d917d",
"date": "2020-10-22T09:46:19"
},
{
"message": "ApiSandbox: Style field help with oo-ui-inline-help class\n\nBug: T130496\nChange-Id: I2235dcb0f858c1f0c9e89928123a5bad5ae85865\n",
"bugs": [
"T130496"
],
"subject": "ApiSandbox: Style field help with oo-ui-inline-help class",
"hash": "aa09ad973930b8b15ee996ba89e37acba07071fd",
"date": "2020-10-21T19:56:28"
}
],
"Tickets": {
"0": "T130496",
"2": "T130495"
},
"TicketCount": 2
},
"includes\/ServiceWiring.php": {
"File": "includes\/ServiceWiring.php",
"Commits": [
{
"message": "EditPage: Move spam checks to SpamRegexConstraint\n\nBug: T157658\nChange-Id: I06ef5796f9da7b0e8555768ec6fd128b4f778294\n",
"bugs": [
"T157658"
],
"subject": "EditPage: Move spam checks to SpamRegexConstraint",
"hash": "e50dacf78c3a32f977d3a5e86343ca553dfb4d32",
"date": "2020-10-21T22:43:01"
},
{
"message": "Add EditConstraintFactory, migrate SimpleAntiSpamConstraint\n\nFactory is a service in ServiceWiring, given the number\nof dependencies that will eventually be needed, but is\ninternal and has no corresponding method in MediaWikiServices\n\nBug: T157658\nChange-Id: I801a09f5133bed14da10c64a42ca0658024357d3\n",
"bugs": [
"T157658"
],
"subject": "Add EditConstraintFactory, migrate SimpleAntiSpamConstraint",
"hash": "dc32b15d8d4371b89d882b236c30d6b65a9d1ff2",
"date": "2020-10-21T14:36:01"
},
{
"message": "Remove use of User::whoIs in PermissionManager\n\nInject a UserCache instead\n\nChange-Id: Ic5fcb9bed1e001ae56c568fd4dd8bb635e404e60\n",
"bugs": [],
"subject": "Remove use of User::whoIs in PermissionManager",
"hash": "7a0a121eb9fd8bc269191bd2308d41e77ac720d3",
"date": "2020-10-20T21:03:32"
},
{
"message": "Convert UserCache to a service\n\nBug: T253061\nChange-Id: Id951177712648dc5ac684ae38097a0e9f3e12c7a\n",
"bugs": [
"T253061"
],
"subject": "Convert UserCache to a service",
"hash": "cc464b202871afa561c356f33366041029359636",
"date": "2020-10-20T20:13:38"
}
],
"Tickets": [
"T253061",
"T157658"
],
"TicketCount": 2
},
"includes\/parser\/CoreParserFunctions.php": {
"File": "includes\/parser\/CoreParserFunctions.php",
"Commits": [
{
"message": "Update formatNum implementation to match tr35 and latest CLDR\n\n* Update digitGroupingPattern to match CLDR 31: New versions of CLDR has\n digit grouping pattern with decimal part. Update digitGroupingPattern\n values in Message classes with this improved pattern.\n Refer: http:\/\/unicode.org\/reports\/tr35\/tr35-numbers.html\n\n* Refer the following chart for the decimal patterns.\n http:\/\/www.unicode.org\/cldr\/charts\/31\/by_type\/numbers.number_formatting_patterns.html\n\n* Uses PHP NumberFormatter class for the commafy implementation, which\n is available in PHP 7.\n\n* Some tests need to update to match the TR 35 spec\n\n* The formatNum public method in Language.php is the preferred way to\n use this feature. It does separator transformation and digit transformation\n wherever applicable.\n\n* Renamed the second param name for formatNum from noCommafy to noSeparators\n\n* commafy method is deprecated and formatNum is preferred. Practically,\n we are not just adding comma, but seperators according to the language.\n Replaced some tests based on commafy methods with tests based on formatNum.\n\nNote: The corresponding js implementation is not changed in this commit.\nIt would probably be a good idea to use globalize.js, which is also based\non the CLDR patterns.\n\nNote: This patch preserves the existing off-by-one error in\n$minimumGroupingDigits; T262500 will eventually fix this.\n\nBug: T167088\nCo-Authored-By: C. Scott Ananian <cscott@cscott.net>\nChange-Id: Ic721b9a91e78e4ef07040339d1006b7a90a910c0\n",
"bugs": [
"T167088"
],
"subject": "Update formatNum implementation to match tr35 and latest CLDR",
"hash": "ce8d0e9599a84565d53965481d1c163a90c4e6dd",
"date": "2020-10-21T14:08:04"
},
{
"message": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()\n\nCo-authored-by: C. Scott Ananian <cananian@wikimedia.org>\nBug: T226832\nChange-Id: I41a3b67490fc6b9d4c484f566d346a0d10c670e9\n",
"bugs": [
"T226832"
],
"subject": "Hard deprecation of Language::convertTitle(),\n ::findVariantLink(), ::updateConversionTable()",
"hash": "e7dbd69de07c429405b764ec15316f512297634b",
"date": "2020-10-20T20:49:17"
}
],
"Tickets": [
"T226832",
"T167088"
],
"TicketCount": 2
},
"includes\/specialpage\/SpecialPageFactory.php": {
"File": "includes\/specialpage\/SpecialPageFactory.php",
"Commits": [
{
"message": "Inject services into SpecialProtectedtitles\n\nThis covers only directly used services by this special page and pager\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: I63f07acb50bcfd05ce5203db1ec31feed5dad7d2\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialProtectedtitles",
"hash": "fc4c3e91ecf9f91d0072d82c717c12f891ba4f85",
"date": "2020-10-25T22:11:56"
},
{
"message": "Inject services into SpecialComparePages\n\nThis covers only directly used services by this special page\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: Ieea10ca032fefc6787ede5df6da19da63d152ec0\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialComparePages",
"hash": "1af9f7dc78e235aff2a68c8a862f5402b57de4c9",
"date": "2020-10-25T22:07:21"
},
{
"message": "Replace deprecated User::getOption in SpecialUndelete\n\nChange-Id: I7d1c4d8b5d742cca10b5450225cabfd6aac24617\n",
"bugs": [],
"subject": "Replace deprecated User::getOption in SpecialUndelete",
"hash": "1463eaf6826ef45e4f1813aa239cc99545c5704d",
"date": "2020-10-25T21:32:53"
},
{
"message": "Inject services into SpecialMyLanguage\n\nThis covers only directly used services by this special page and pager\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: Ie5332b8c94f0bd54a0702d17cec7aec90c482b72\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialMyLanguage",
"hash": "2aaebd8aba392ea6eb5599dd57acb6a06a5803f4",
"date": "2020-10-21T17:58:28"
},
{
"message": "Inject services into SpecialExport\/SpecialImport\n\nThis covers only directly used services by this special page and pager\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: Ib6869d35afb8fc05709d42371c40ba8341af8f20\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialExport\/SpecialImport",
"hash": "45785f2e0af88d4027b727c4fbedb9497bb3edab",
"date": "2020-10-21T17:55:48"
},
{
"message": "Inject Parser into SpecialVersion\n\nThis covers only directly used services by this special page and pager\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: I57872aa6e070da40a3accbba23e72bb2b36f580a\n",
"bugs": [
"T259960"
],
"subject": "Inject Parser into SpecialVersion",
"hash": "14ad9ac689aa46adccfe27f5cf08aa182c920f81",
"date": "2020-10-21T17:16:01"
},
{
"message": "Inject UserCache into SpecialListFiles\/SpecialNewFiles\n\nBug: T259960\nBug: T253061\nFollow-Up: Id951177712648dc5ac684ae38097a0e9f3e12c7a\nChange-Id: Ib0d82080e13b2be7aab3271884dbb9f1237fd28d\n",
"bugs": [
"T259960",
"T253061"
],
"subject": "Inject UserCache into SpecialListFiles\/SpecialNewFiles",
"hash": "26ff3c90b1b036f09c416205326f3d5953978dfe",
"date": "2020-10-21T16:35:07"
},
{
"message": "Inject services into SpecialProtectedpages\n\nThis covers only directly used services by this special page and pager\nServices used by the base class are not part of this patch set\n\nBug: T259960\nChange-Id: I546f4c70cfea9859b2e873c915bfab209cfb36c0\n",
"bugs": [
"T259960"
],
"subject": "Inject services into SpecialProtectedpages",
"hash": "bbb8ad3f90b0aa3150408d26edd274068fd15dad",
"date": "2020-10-21T16:27:16"
}
],
"Tickets": {
"0": "T259960",
"2": "T253061"
},
"TicketCount": 2
},
"maintenance\/sqlite\/archives\/patch-ip_changes.sql": {
"File": "maintenance\/sqlite\/archives\/patch-ip_changes.sql",
"Commits": [
{
"message": "Fix ip_changes.ipc_rev_id column default value\n\nInteger field should not be given a default string value.\nIntroduced in Ice1bdae3d16cf365da14c6df0e8d91d2b914e064.\n\nBug: T191231\nBug: T163562\nChange-Id: I74de8efa9b39c2c07fee8249d779a0622b3586d8\n",
"bugs": [
"T191231",
"T163562"
],
"subject": "Fix ip_changes.ipc_rev_id column default value",
"hash": "097ab7b600d3a7f5671b2434437336604e9cf1d3",
"date": "2020-10-26T06:31:22"
}
],
"Tickets": [
"T191231",
"T163562"
],
"TicketCount": 2
},
"includes\/specials\/SpecialNewFiles.php": {
"File": "includes\/specials\/SpecialNewFiles.php",
"Commits": [
{
"message": "Inject UserCache into SpecialListFiles\/SpecialNewFiles\n\nBug: T259960\nBug: T253061\nFollow-Up: Id951177712648dc5ac684ae38097a0e9f3e12c7a\nChange-Id: Ib0d82080e13b2be7aab3271884dbb9f1237fd28d\n",
"bugs": [
"T259960",
"T253061"
],
"subject": "Inject UserCache into SpecialListFiles\/SpecialNewFiles",
"hash": "26ff3c90b1b036f09c416205326f3d5953978dfe",
"date": "2020-10-21T16:35:07"
}
],
"Tickets": [
"T259960",
"T253061"
],
"TicketCount": 2
},
"includes\/specials\/SpecialListFiles.php": {
"File": "includes\/specials\/SpecialListFiles.php",
"Commits": [
{
"message": "Inject UserCache into SpecialListFiles\/SpecialNewFiles\n\nBug: T259960\nBug: T253061\nFollow-Up: Id951177712648dc5ac684ae38097a0e9f3e12c7a\nChange-Id: Ib0d82080e13b2be7aab3271884dbb9f1237fd28d\n",
"bugs": [
"T259960",
"T253061"
],
"subject": "Inject UserCache into SpecialListFiles\/SpecialNewFiles",
"hash": "26ff3c90b1b036f09c416205326f3d5953978dfe",
"date": "2020-10-21T16:35:07"
}
],
"Tickets": [
"T259960",
"T253061"
],
"TicketCount": 2
},
"includes\/installer\/SqliteUpdater.php": {
"File": "includes\/installer\/SqliteUpdater.php",
"Commits": [
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
}
],
"Tickets": [
"T230428",
"T164898"
],
"TicketCount": 2
},
"tests\/qunit\/suites\/resources\/mediawiki\/mediawiki.jqueryMsg.test.js": {
"File": "tests\/qunit\/suites\/resources\/mediawiki\/mediawiki.jqueryMsg.test.js",
"Commits": [
{
"message": "Update formatNum implementation to match tr35 and latest CLDR\n\n* Update digitGroupingPattern to match CLDR 31: New versions of CLDR has\n digit grouping pattern with decimal part. Update digitGroupingPattern\n values in Message classes with this improved pattern.\n Refer: http:\/\/unicode.org\/reports\/tr35\/tr35-numbers.html\n\n* Refer the following chart for the decimal patterns.\n http:\/\/www.unicode.org\/cldr\/charts\/31\/by_type\/numbers.number_formatting_patterns.html\n\n* Uses PHP NumberFormatter class for the commafy implementation, which\n is available in PHP 7.\n\n* Some tests need to update to match the TR 35 spec\n\n* The formatNum public method in Language.php is the preferred way to\n use this feature. It does separator transformation and digit transformation\n wherever applicable.\n\n* Renamed the second param name for formatNum from noCommafy to noSeparators\n\n* commafy method is deprecated and formatNum is preferred. Practically,\n we are not just adding comma, but seperators according to the language.\n Replaced some tests based on commafy methods with tests based on formatNum.\n\nNote: The corresponding js implementation is not changed in this commit.\nIt would probably be a good idea to use globalize.js, which is also based\non the CLDR patterns.\n\nNote: This patch preserves the existing off-by-one error in\n$minimumGroupingDigits; T262500 will eventually fix this.\n\nBug: T167088\nCo-Authored-By: C. Scott Ananian <cscott@cscott.net>\nChange-Id: Ic721b9a91e78e4ef07040339d1006b7a90a910c0\n",
"bugs": [
"T167088"
],
"subject": "Update formatNum implementation to match tr35 and latest CLDR",
"hash": "ce8d0e9599a84565d53965481d1c163a90c4e6dd",
"date": "2020-10-21T14:08:04"
},
{
"message": "Add 'external' class to links generated by jQueryMsg\n\nBug: T176711\nChange-Id: I439461a20fcb235b2f1571946704d01348dfccf5\n",
"bugs": [
"T176711"
],
"subject": "Add 'external' class to links generated by jQueryMsg",
"hash": "371f0d1f50fd4738c12def3dfa35f571d8e12959",
"date": "2020-10-20T21:36:07"
}
],
"Tickets": [
"T176711",
"T167088"
],
"TicketCount": 2
},
"maintenance\/archives\/patch-watchlist-wl_title-varbinary.sql": {
"File": "maintenance\/archives\/patch-watchlist-wl_title-varbinary.sql",
"Commits": [
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
}
],
"Tickets": [
"T230428",
"T164898"
],
"TicketCount": 2
},
"maintenance\/sqlite\/archives\/patch-watchlist-wl_title-varbinary.sql": {
"File": "maintenance\/sqlite\/archives\/patch-watchlist-wl_title-varbinary.sql",
"Commits": [
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
}
],
"Tickets": [
"T230428",
"T164898"
],
"TicketCount": 2
},
"resources\/src\/mediawiki.special.apisandbox\/apisandbox.js": {
"File": "resources\/src\/mediawiki.special.apisandbox\/apisandbox.js",
"Commits": [
{
"message": "ApiSandbox: Remove full page border\n\nBug: T130499\nChange-Id: I1cf945b034332a6e9d2a2d971b70b60f89f6529e\n",
"bugs": [
"T130499"
],
"subject": "ApiSandbox: Remove full page border",
"hash": "497be20fdb49a6996ee510456dcee1aaea5e23a0",
"date": "2020-10-22T11:09:45"
},
{
"message": "ApiSandbox: Fix width and padding of help popups\n\nChange-Id: Ia90fd961cd9093064ed520c7aeeb003da8f0fa8d\n",
"bugs": [],
"subject": "ApiSandbox: Fix width and padding of help popups",
"hash": "f43697a31d12436c66a844750d550bf26edf55f5",
"date": "2020-10-22T10:57:01"
},
{
"message": "ApiSandbox: Style field help with oo-ui-inline-help class\n\nBug: T130496\nChange-Id: I2235dcb0f858c1f0c9e89928123a5bad5ae85865\n",
"bugs": [
"T130496"
],
"subject": "ApiSandbox: Style field help with oo-ui-inline-help class",
"hash": "aa09ad973930b8b15ee996ba89e37acba07071fd",
"date": "2020-10-21T19:56:28"
}
],
"Tickets": [
"T130496",
"T130499"
],
"TicketCount": 2
},
"includes\/installer\/PostgresUpdater.php": {
"File": "includes\/installer\/PostgresUpdater.php",
"Commits": [
{
"message": "Migrate new_talk to abstract schema\n\nFor MySQL\n - Modify user_last_timestamp from VARBINARY to BINARY\n\nFor Postgres\n - Drop foreign key on user_id\n - Rename indexes to match MySQL convention\n\nBug: T230428\nChange-Id: Idc3ded012890d4ace805a646d75cd805b49b250c\n",
"bugs": [
"T230428"
],
"subject": "Migrate new_talk to abstract schema",
"hash": "74c0553250034729393fbf8f36a928daf752905d",
"date": "2020-10-26T13:10:24"
},
{
"message": "Migrate sites table to abstract schema\n\nFor MySQL\/Sqlite, using mwtinyint instead of bool, in reality it doesn't\nmatter since bool is an alias of tinyint(1) in MySQL.\n\nIn Postgres:\n - Changing type of site_domain from TEXT to VARCHAR to make it in sync\n with MySQL\/Sqlite\n - Renaming all indexes from site_* to sites_* to be in sync with\n MySQL\/Sqlite\n\nBug: T230428\nBug: T164898\nChange-Id: Id73bb372807730446901d772fcdbd2f333b397ba\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate sites table to abstract schema",
"hash": "a9dcbe3585244619be21bd9d9c0a040f5f328611",
"date": "2020-10-22T17:35:39"
},
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
},
{
"message": "Migrate querycache_info to abstract schema\n\nAdditional changes for Postgres:\n - Set empty string as default for qci_type\n - Set PG-equivalent of the given MySql\/Sqlite timestamp as\n default timestamp for qci_timestamp\n - Make qci_type non nullable\n - Make qci_timestamp non nullable\n - Drop UNIQUE constraint on qci_type\n\nBug: T230428\nBug: T164898\nDepends-On: If344395615087c360597a5b3d66ea03e930b7d9b\nChange-Id: I741d2d079696d4b4eba09945341054d2a145bddc\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate querycache_info to abstract schema",
"hash": "6599e5706c08cdcbd134985dfa7f4db451e30a14",
"date": "2020-10-20T07:18:03"
}
],
"Tickets": [
"T230428",
"T164898"
],
"TicketCount": 2
},
"maintenance\/postgres\/tables.sql": {
"File": "maintenance\/postgres\/tables.sql",
"Commits": [
{
"message": "Migrate new_talk to abstract schema\n\nFor MySQL\n - Modify user_last_timestamp from VARBINARY to BINARY\n\nFor Postgres\n - Drop foreign key on user_id\n - Rename indexes to match MySQL convention\n\nBug: T230428\nChange-Id: Idc3ded012890d4ace805a646d75cd805b49b250c\n",
"bugs": [
"T230428"
],
"subject": "Migrate new_talk to abstract schema",
"hash": "74c0553250034729393fbf8f36a928daf752905d",
"date": "2020-10-26T13:10:24"
},
{
"message": "Migrate sites table to abstract schema\n\nFor MySQL\/Sqlite, using mwtinyint instead of bool, in reality it doesn't\nmatter since bool is an alias of tinyint(1) in MySQL.\n\nIn Postgres:\n - Changing type of site_domain from TEXT to VARCHAR to make it in sync\n with MySQL\/Sqlite\n - Renaming all indexes from site_* to sites_* to be in sync with\n MySQL\/Sqlite\n\nBug: T230428\nBug: T164898\nChange-Id: Id73bb372807730446901d772fcdbd2f333b397ba\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate sites table to abstract schema",
"hash": "a9dcbe3585244619be21bd9d9c0a040f5f328611",
"date": "2020-10-22T17:35:39"
},
{
"message": "Migrate watchlist table to Abstract schema\n\nPostgres:\n - Set empty string as default for wl_title to match MySQL\n - Drop foreign key from wl_user\n - Change wl_namespace datatype from SMALLINT to INT to match MySQL\/SQLite\n - Drop PG-specific indexes and sync them with MySQL\n\nBug: T230428\nBug: T164898\nChange-Id: Ie996b81ca59069443976b90d7bcdce29997d768a\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate watchlist table to Abstract schema",
"hash": "c8e8449caf0434e23abdd1a9146fa517833acf5c",
"date": "2020-10-22T13:12:00"
},
{
"message": "Migrate querycache_info to abstract schema\n\nAdditional changes for Postgres:\n - Set empty string as default for qci_type\n - Set PG-equivalent of the given MySql\/Sqlite timestamp as\n default timestamp for qci_timestamp\n - Make qci_type non nullable\n - Make qci_timestamp non nullable\n - Drop UNIQUE constraint on qci_type\n\nBug: T230428\nBug: T164898\nDepends-On: If344395615087c360597a5b3d66ea03e930b7d9b\nChange-Id: I741d2d079696d4b4eba09945341054d2a145bddc\n",
"bugs": [
"T230428",
"T164898"
],
"subject": "Migrate querycache_info to abstract schema",
"hash": "6599e5706c08cdcbd134985dfa7f4db451e30a14",
"date": "2020-10-20T07:18:03"
}
],
"Tickets": [
"T230428",
"T164898"
],
"TicketCount": 2
}
}