-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathRELEASE-NOTES-1.46
More file actions
1154 lines (1089 loc) · 44.5 KB
/
RELEASE-NOTES-1.46
File metadata and controls
1154 lines (1089 loc) · 44.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
= MediaWiki 1.46 =
PHP 8.2 workboard: https://phabricator.wikimedia.org/tag/php_8.2_support/
PHP 8.3 workboard: https://phabricator.wikimedia.org/tag/php_8.3_support/
PHP 8.4 workboard: https://phabricator.wikimedia.org/tag/php_8.4_support/
PHP 8.5 workboard: https://phabricator.wikimedia.org/tag/php_8.5_support/
== MediaWiki 1.46.0-PRERELEASE ==
THIS IS NOT A RELEASE YET
MediaWiki 1.46 is an alpha-quality development branch, and is not recommended
for use in production.
== Upgrading notes for 1.46 ==
Don't forget to always back up your database before upgrading!
See the file UPGRADE for more detailed per-version upgrade instructions from the
oldest supported upgrading version, MediaWiki 1.35.
Some specific notes for MediaWiki 1.46 upgrades are below:
* …
For notes on 1.45.x and older releases, see HISTORY.
=== Configuration changes for system administrators in 1.46 ===
* $wgSVGConverter inkscape now requires Inkscape 1.0 or newer
* $wgSVGConverter presets sodipodi and imgserv were removed
* (T246054) $wgLogos['1.5x'] is no longer used. Devices that previously
displayed the 1.5x logo will use $wgLogos['1x'] instead.
* …
==== New configuration ====
* $wgEnableWatchlistLabels - Feature flag to enable the new watchlist labels
feature (see https://www.mediawiki.org/wiki/Help:Watchlist_labels for info).
Note that the two new database tables for watchlist labels will be created
regardless of the value of this flag. Defaults to false.
* $wgUserJsPrefLimit – (T408733) This setting lets you limit the maximum number
of supported custom JS preferences each user can have, to reduce load. The
default value is 100.
* $wgBotPasswordsLimit - This setting allows administrators to configure the
maximum number of bot passwords a user can create. The default value is 100.
* …
==== Changed configuration ====
* $wgSVGNativeRendering now defaults to true. This means that uploaded SVGs are
rendered directly by the browser most of the time. MediaWiki applies several
filters on uploaded SVGs to protect against malicious SVGs.
The browser adds restrictions on the SVG when included as an <img> for
additional protection. We do advise configuring CSP headers to protect users
in case they open a SVG file directly in the browser.
* $wgThumbLimits has two new entries by default, 220px and 400px. This
matches the configuration used by WMF in production. Since the default
user thumbsize option is an index into this list (currently, '5'), this
has the effect of changing the user default thumbnail size from 300px
to 250px; again matching current WMF production defaults.
* …
==== Removed configuration ====
* (T276975) $wgAPIRequestLog, ignored since 1.43, has now been fully removed.
* $wgBlockTargetMigrationStage, ignored since 1.43, has now been fully removed.
* (T413867) $wgEnableSpecialMute and $wgEnableUserEmailMuteList feature flags
have been removed.
* …
=== New user-facing features in 1.46 ===
* (T413375) A new parser function has been added, {{#isbn}}, which replaces
the ISBN "magic link" functionality for those wikis which have chosen to
disable it.
* (T12814) Special:MovePage can now move over existing pages when moving the
talk page (following the same logic as for moving the subject page).
* (T12814) Special:MovePage will now fail loudly if you ask to move the
the talk page but it couldn't be moved (rather than not moving the
talk page and displaying an easy-to-miss error message)
* (T85393) Special:MovePage will now require explicit confirmation if the
page you are trying to move to is protected against creation.
* (T413867) Special:Mute is always unconditionally enabled.
* (T381455) Special:NamespaceInfo will now display aliases defined through
$wgNamespaceAliases.
* …
=== New features for sysadmins in 1.46 ===
* The 'arrays' localisation cache backend is more compact: a redundant list of
message keys, and fallback data from other languages, are now deduplicated.
Old cache files should either auto-update or continue to be readable where
unchanged.
* The update.php maintenance script and the web-based schema updater now skips
messages about schema updates that were already applied in earlier MediaWiki
versions.
* A new "postprocessing" cache has been added in addition to the parser cache.
This is enabled by default for Parsoid but not for the legacy parser; use
$wgParserCacheFilterConfig to enable or disable use of this new cache.
* …
=== New developer features in 1.46 ===
* Various functions are now marked with the #[\NoDiscard] attribute, which will
cause PHP 8.5 (and Phan) to emit warnings when their return values are not
used, as that is usually a mistake. This has no effect when running on PHP
8.4 or earlier.
* mw.message( ... ).parseDom() is now part of mediawiki.base and will return a
jQuery object wrapping a text node with the unparsed message contents if
mediawiki.jqueryMsg is not loaded.
* …
=== External library changes in 1.46 ===
==== New external libraries ====
* Added okvpn/clock-lts at 1.0.0 to over-ride lcobucci/clock.
* Added wikimedia/language-data composer library at v1.1.13.
* …
===== New development-only external libraries =====
* Added ergebnis/phpunit-slow-test-detector v2.24.0.
* …
==== Changed external libraries ====
* Updated codex, codex-design-tokens and codex-icons
from v2.3.2 to v2.4.0.
* Updated jsonrainbow/json-schema from 5.3.0 to 5.3.2.
* Updated lcobucci/jwt from 4.1.5 to 5.6.0.
* Updated monolog/monolog from 2.9.3 to 2.11.0.
* Updated oojs/oojs-ui (OOUI) from v0.53.0 to v0.53.1.
* Updated pear/net_smtp from 1.12.1 to 1.12.2.
* Updated psy/psysh from ^0.12.3 to 0.12.19.
* Updated symfony/polyfill-php83 from 1.33.0 to 1.36.0.
* Updated symfony/polyfill-php84 from 1.33.0 to 1.36.0.
* Updated symfony/polyfill-php85 from 1.33.0 to 1.36.0.
* Updated symfony/yaml from 6.4.26 to 7.4.6.
* Updated wikimedia/bcp-47-code from 2.0.1 to 2.0.3.
* Updated wikimedia/css-sanitizer from 6.1.0 to 6.2.1.
* Updated wikimedia/ip-utils from 5.0.0 to 6.0.1.
* Updated wikimedia/less.php from 5.2.2 to 5.5.1.
* Updated wikimedia/minify from 2.9.0 to 2.10.0.
* Updated wikimedia/object-factory from 5.0.1 to 6.0.0.
* Updated wikimedia/relpath from 4.0.2 to 4.1.1.
* Updated wikimedia/remex-html from 5.1.0 to 6.0.0.
* Updated wikimedia/running-stat from 2.1.0 to 2.2.0.
* Updated wikimedia/shellbox from 4.3.0 to 4.4.0.
* Updated wikimedia/testing-access-wrapper from 3.0.0 to 4.0.0.
* Updated wikimedia/timestamp from 5.0.0 to 5.1.0.
* Updated wikimedia/wrappedstring from 4.0.1 to 4.1.0.
* …
===== Changed development-only external libraries =====
* Updated doctrine/dbal from 3.10.0 to 3.10.5.
* Updated doctrine/sql-formatter from 1.5.2 to 1.5.4.
* Updated eslint-config-wikimedia from 0.31.0 to 0.32.3.
* Updated mck89/peast from 1.17.2 to 1.17.5.
* Updated mediawiki/mediawiki-codesniffer from 48.0.0 to 50.0.0.
* Updated mediawiki/mediawiki-phan-config from 0.18.0 to 0.20.0.
* Updated mediawiki/minus-x from 1.1.3 to 2.0.1.
* Updated phpunit/phpunit from 9.6.21 to 9.6.34.
* Updated svgo from 3.3.2 to 3.3.3.
* Updated symfony/yaml from 6.4.25 to 6.4.26.
* Updated wikimedia/alea from 1.0.0 to 1.0.1.
* …
==== Removed external libraries ====
* Removed symfony/polyfill-php82.
* …
===== Removed development-only external libraries =====
* Dropped johnkary/phpunit-speedtrap, incompatible with PHPUnit 10+. (T328919)
* …
=== Bug fixes in 1.46 ===
* …
=== Action API changes in 1.46 ===
* In the `action=parse` API endpoint, the value `prop=sections` has been
deprecated. Use `prop=tocdata` instead (T319141).
* When specifying the Action API output format as `xml` or `xmlfm`, the
`xslt` parameter has been removed. No alternative is provided.
* (T359634) An SBOM in the CycloneDX 1.6 format can now be generated via the
`sbom` prop of meta=siteinfo.
=== Action API internal changes in 1.46 ===
* …
=== Languages updated in 1.46 ===
MediaWiki supports over 350 languages. Many localisations are updated regularly.
Below only new and removed languages are listed, as well as changes to languages
because of Phabricator reports.
* (T407507) Updated namespace translations for Igbo (ig) language.
* (T409708) Added language support for Bole (bol).
* (T409393) Added language support for Javanese (Javanese script) (jv-java).
* (T411884) Added language support for Nawat (ppl).
* (T419373) Added language support for Lakota (lkt).
* …
=== Breaking changes in 1.46 ===
* The SpecialWatchlistGetNonRevisionTypesHook has been removed. Instead,
extensions should ensure that rc_this_oldid is set to zero on recent changes
entries that do not relate to any particular revision.
* MutableRevisionRecord::setSha1() has been removed without deprecation.
* Localizations of behavior switches must begin and end with double
underscore (`_` or U+FF3F). Some localizations present in 1.45 which
did not do so have been removed; check the category named by
[[MediaWiki::Bad-double-underscore-category]] before upgrade to see
if your local wiki contains affected wikitext.
* Passing something other than an Authority for the $performer parameter to
WatchlistManager methods clearTitleUserNotifications() and
clearAllUserNotifications, deprecated since 1.37, will now throw. User
implements Authority and so is still permitted.
* Passing something other than a PageReference for the $title parameter to
WatchlistManager::getTitleNotificationTimestamp and
clearTitleUserNotifications, deprecated since 1.37, will now throw.
* Many WatchedItemStore methods took either PageIdentity or LinkTarget, with
LinkTarget being deprecated since 1.37. Passing a LinkTarget which is not a
PageReference will now throw.
* Added an `isLegacy()` method to the `LogEntry` interface. All implementors in
core already defined this method, and the interface is not stable to
implement.
* WatchedItemQueryService::getWatchedItemsWithRecentChangeInfo, deprecated since
1.45, has been removed. The associated constants, which were used as
parameters to that method, like WatchedItemQueryService::FILTER_MINOR, have
also been removed.
* The following methods of SpecialUserRights, deprecated in 1.45, have been
removed: userCanChangeRights, expiryToTimestamp, doSaveUserGroups,
fetchUser, changeableGroups. Callers should now use the equivalent methods
from UserGroupAssignmentService or MultiFormatUserIdentityLookup.
* UserGroupsSpecialPage::canProcessExpiries (formerly
SpecialUserRights::canProcessExpiries), deprecated in 1.45, has been removed.
There's no replacement; the special page always assumes it can process
expiries.
* The tests/phpunit/phpunit.php entrypoint, deprecated in 1.41, has been
removed. Use `composer phpunit` instead.
* The tests/phpunit/suite.xml configuration file and
tests/phpunit/bootstrap.integration.php bootstrap, deprecated in 1.42, have
been removed. Use phpunit.xml.dist and bootstrap.php instead.
* The phpunit.xml.dist configuration file has been removed. MediaWiki now
provides a phpunit.xml.template file that will be used to generate a local
configuration file dependent on the wiki config. The local configuration
can be generated manually by running `composer phpunit:config`, or
automatically when running tests via `composer phpunit`.
* The tables represented by subclasses of TitleLinksTable are now expected to
be normalized to use the linktarget table. If they are not, they should
override the linksTargetNormalizationStage method to return MIGRATION_OLD.
* MimeAnalyzer::isPHPImageType, deprecated in 1.40, has been removed.
* FileRepo no longer implements getUploadStash(), only LocalRepo does.
* EtcdConfig::setLogger(), deprecated in 1.41, has been removed.
* Deprecated functions in DatabaseBlock have been removed.
- DatabaseBlock::delete(), deprecated in 1.36, has been removed. Please use
DatabaseBlockStore::deleteBlock instead.
- DatabaseBlock::update(), deprecated in 1.36, has been removed. Use the
replacement DatabaseBlockStore::updateBlock instead.
- DatabaseBlock::insert(), deprecated in 1.36, has been removed. Use the
replacement DatabaseBlockStore::insertBlock instead.
* The Result class has been removed; it was an unused alias of
Shellbox\Command\UnboxedResult since 1.36.
* The PageContentSave hook, deprecated in 1.35, has been removed.
* The MagicWordwgVariableIDs hook, deprecated in 1.35, has been removed.
* The UserIsBlockedGlobally hook, deprecated in 1.40, has been removed
* The hooks 'AbortTalkPageEmailNotification' and 'AbortEmailNotification'
(deprecated in 1.44 and 1.45) have been removed.
* The hooks 'UpdateUserMailerFormattedPageStatus' and
'SendWatchlistEmailNotification' (deprecated in 1.45) have been removed.
* The related method RecentChangeNotifier::getPageStatus() has been removed.
* Constructing SpecialRedirectWithAction without a SearchEngineFactory argument
will now trigger a PHP type error; omitting this was deprecated in 1.39.
* Parser::getDefaultSort(), deprecated in 1.38, has been removed.
* WatchedItem::getLinkTarget(), deprecated in 1.36, has been removed. Instead,
use ::getTarget() (and cast if needed).
* The AddNewAccount hook, deprecated in 1.27, has been dropped.
* wfMatchesDomainsList(), deprecated in 1.39, has been removed. Instead, use
UrlUtils::matchesDomainList().
* The PSR-7 (HTTP request/response) interfaces have been updated from the
1.1 version of the spec to 2.0, adding return type hints. The copycat
interface MediaWiki\Rest\ResponseInterface has been likewise updated.
* The global function wfAssembleUrl(), deprecated in 1.39, has been removed.
Instead, use UrlUtils::assemble().
* The global function wfArrayDiff2(), deprecated in 1.43, has been removed.
* Parser::Options(), deprecated in 1.35, has been dropped. Instead, use the
::getOptions() and ::setOptions() methods.
* DefaultSettings.php, deprecated in 1.39, has been removed.
* $wgRCEngines and remaining behaviour has been removed. This was deprecated
in 1.38.
* $wgRCFeeds now explicitly requires a class parameter. The fallback behaviour
has been deprecated since 1.38 and has been dropped.
* Various deprecated Parser class functions have been dropped.
- Parser::OutputType(), deprecated in 1.35. Use ::getOutputType() and
::setOutputType() instead.
- Parser::getFunctionLang(), deprecated in 1.40. Use ::getTargetLanguage().
- Parser::doBlockLevels(), deprecated in 1.35. Internal-only replacement
is provided by BlockLevelPass::doBlockLevels().
- Parser::attributeStripCallback(), deprecated with warnings in 1.35.
This was never intended to be public.
- Parser::enableOOUI(), deprecated with warnings in 1.35. Use
$parser->getOutput()->setEnableOOUI() instead.
- Parser::getPage() never returns null. Calling ::getPage() without
a title set was deprecated in 1.34 and has emitted warnings when
returning null since 1.41.
- Parser::getOutput() never returns null. Calling ::getOutput() before
the initialization of ParserOutput has been deprecated with warnings
since 1.43.
- Parser::setCacheTime() no longer accepts -1 to mean "not cacheable".
This has emitted deprecation warnings since 1.36.
* ContentSerializationException no longer extends deprecated MWException.
* ContentHandler::checkFormat() and AbstractContent::checkFormat() now
throw UnsupportedContentFormatException instead of deprecated MWException.
* wfMergeErrorArrays(), deprecated in 1.43, has been dropped.
* Article::getRedirectHeaderHtml(), deprecated in 1.41, has been dropped.
Instead, use LinkRenderer::makeRedirectHeader().
* MergeHistory::isValidMerge() and MergeHistory::merge() now return StatusValue
instead of Status. There are no known callers outside of core.
* Various deprecated global functions for handling URLs have been dropped.
- wfParseUrl(), deprecated in 1.39, has been dropped. Instead, use
UrlUtils::parse().
- wfExpandUrl(), deprecated in 1.39, has been dropped. Instead, use
UrlUtils::expand().
- wfUrlProtocolsWithoutProtRel(), deprecated in 1.39, has been dropped.
Instead, use UrlUtils::validAbsoluteProtocols().
- wfUrlProtocols(), deprecated in 1.39, has been dropped. Instead,
use UrlUtils::validProtocols().
* The 'vform' HTMLForm display format, deprecated in 1.45, has been removed.
Use the 'codex' display format introduced in 1.41, or the 'ooui' format
if you need form fields that are not supported by Codex yet.
* The VFormHTMLForm class and the HTMLFormField::getVForm() method
have been removed.
* ContentHandler::checkModelID() and AbstractContent::checkModelID() now
throw UnexpectedContentModelException instead of deprecated MWException.
* The mediawiki.ui module, deprecated in 1.41 and unused, was removed.
Instead, use Codex modules.
* The mediawiki.ui.checkbox module, deprecated in 1.41 and unused, was removed.
Instead, use Codex modules.
* The mediawiki.ui.radio module, deprecated in 1.41 and unused, was removed.
Instead, use Codex modules.
* Less mixin 'mediawiki.mixins.animation.less', deprecated in 1.39, was removed.
Use standard CSS animation and transform instead.
* The $wgUser variable, deprecated in 1.36, was removed. You can instead use
RequestContext::getMain()->getUser(), or another available ContextSource.
* …
=== Deprecations in 1.46 ===
* (T166010) All PHP code in MediaWiki is slowly being moved to be in a class
namespace as appropriate, so that we can use PSR-4 auto-loading, which will
speed up general code loading of MediaWiki. The old global namespace class
names are being left behind as deprecated aliases.
In this release of MediaWiki, XXX classes now have a namespace and XXX do
not yet (XXX% done, up from 89% in MediaWiki 1.45.0). The following have newly
been moved:
- Actions related hooks: MediaWiki\Hook => MediaWiki\Actions\Hook
- ActionBeforeFormDisplayHook
- ActionModifyFormFieldsHook
- CustomEditorHook
- HistoryPageToolLinksHook
- HistoryToolsHook
- InfoActionHook
- PageHistoryBeforeListHook
- PageHistoryLineEndingHook
- PageHistoryPager__doBatchLookupsHook
- PageHistoryPager__getQueryInfoHook
- RawPageViewBeforeOutputHook
- UnwatchArticleCompleteHook
- UnwatchArticleHook
- WatchArticleCompleteHook
- WatchArticleHook
- Actions related pager: MediaWiki\Pager => MediaWiki\Actions\Pager
- HistoryPager
- MediaWiki\Autoload:
- ClassCollector
- AutoloadGenerator
- MediaWiki\Collation:
- AbkhazUppercaseCollation
- BashkirUppercaseCollation
- CentralKurdishUppercaseCollation
- Collation
- CollationCkb
- CustomUppercaseCollation
- IcuCollation
- IdentityCollation
- InariSaamiUppercaseCollation
- NumericUppercaseCollation
- RemoteIcuCollation
- UppercaseCollation
- Collation related hook: MediaWiki\Hook => MediaWiki\Collation\Hook
- Collation__factoryHook
- Context related hooks: MediaWiki\Hook => MediaWiki\Context\Hook
- RequestContextCreateSkinHook
- UserGetLanguageObjectHook
- MediaWiki\DB:
- CloneDatabase
- MWLBFactory
- MediaWiki\Debug:
- MW
- Deferred related hooks: MediaWiki\Hook => MediaWiki\Deferred\Hook
- LinksUpdateCompleteHook
- LinksUpdateHook
- UserEditCountUpdateHook
- MediaWiki\Diff:
- DifferenceEngine
- DifferenceEngineSlotDiffRenderer
- IncompatibleDiffTypesException
- SlotDiffRenderer
- TextSlotDiffRenderer
- UnsupportedSlotDiffRenderer
- Exception related hook: MediaWiki\Hook => MediaWiki\Exception\Hook
- LogExceptionHook
- MediaWiki\Export:
- BaseDump
- DumpBZip2Output
- DumpNamespaceFilter
- Dump7ZipOutput
- DumpFileOutput
- WikiExporter
- DumpLatestFilter
- XmlDumpWriter
- DumpDBZip2Output
- DumpOutput
- DumpNotalkFilter
- DumpLBZip2Output
- DumpMultiWriter
- DumpStringOutput
- ExportProgressFilter
- DumpPipeOutput
- DumpGZipOutput
- DumpFilter
- Export related hooks: MediaWiki\Hook => MediaWiki\Export\Hook
- ModifyExportQueryHook
- WikiExporter__dumpStableQueryHook
- XmlDumpWriterOpenPageHook
- XmlDumpWriterWriteRevisionHook
- MediaWiki\ExternalStore:
- ExternalStoreMedium
- ExternalStoreFactory
- ExternalStore
- ExternalStoreMemory
- ExternalStoreMwstore
- ExternalStoreHttp
- ExternalStoreException
- ExternalStoreAccess
- ExternalStoreDB
- MediaWiki\FileBackend\LockManager:
- LockManagerGroup
- FileRepo related hooks: MediaWiki\Hook => MediaWiki\FileRepo\Hook
- FileTransformedHook
- FileUploadHook
- LocalFilePurgeThumbnailsHook
- LocalFile__getHistoryHook
- MediaWiki\Gallery:
- ImageGalleryBase
- NolinesImageGallery
- PackedHoverImageGallery
- PackedImageGallery
- PackedOverlayImageGallery
- SlideshowImageGallery
- TraditionalImageGallery
- MediaWiki\Gallery\Exception:
- ImageGalleryClassNotFoundException
- Gallery related hook: MediaWiki\Hook => MediaWiki\Gallery\Hook
- GalleryGetModesHook
- MediaWiki\Http:
- MWCallbackStream
- MWHttpRequest
- GuzzleHttpRequest
- MediaWiki\Import:
- WikiImporterFactory
- ImportableOldRevisionImporter
- ImportStreamSource
- ImportableUploadRevisionImporter
- OldRevisionImporter
- WikiRevision
- ImportableOldRevision
- ImportStringSource
- ImportableUploadRevision
- ImportSource
- UploadRevisionImporter
- WikiImporter
- UploadSourceAdapter
- Import related hooks: MediaWiki\Hook => MediaWiki\Import\Hook
- AfterImportPageHook
- ImportHandleContentXMLTagHook
- ImportHandleLogItemXMLTagHook
- ImportHandlePageXMLTagHook
- ImportHandleRevisionXMLTagHook
- ImportHandleToplevelXMLTagHook
- ImportHandleUploadXMLTagHook
- Jobs related hook: MediaWiki\Hook => MediaWiki\JobQueue\Jobs\Hook
- RecentChangesPurgeRowsHook
- MediaWiki\Language
- MessageCache
- LanguageConverterSpecific
- TrivialLanguageConverter
- LCStore
- LCStoreStaticArray
- LanguageConverterIcu
- LocalisationCache
- LocalisationCacheBulkLoad
- MessageLocalizer
- LCStoreCDB
- LCStoreNull
- LCStoreDB
- MediaWiki\Language\Converters
- ShiConverter
- EnConverter
- BanConverter
- CrhConverter
- TlyConverter
- ZhConverter
- MniConverter
- TgConverter
- IuConverter
- GanConverter
- ShConverter
- WuuConverter
- UzConverter
- KuConverter
- ZghConverter
- SrConverter
- MediaWiki\Languages
- LanguageTr
- LanguageFi
- LanguageSh
- LanguageHu
- LanguageKm
- LanguageAr
- LanguageWa
- LanguageBe_tarask
- LanguageKk_cyrl
- LanguageHy
- LanguageEn
- LanguageMy
- LanguageKaa
- LanguageDsb
- LanguageLa
- LanguageBs
- LanguageSl
- LanguageQqx
- LanguageOs
- LanguageZh_hans
- LanguageKsh
- LanguageKk
- LanguageWuu
- LanguageGa
- LanguageTyv
- LanguageMl
- LanguageAz
- LanguageYue
- LanguageJa
- LanguageCu
- LanguageZh
- LanguageHsb
- LanguageGan
- Linker related hooks: MediaWiki\Hook => MediaWiki\Linker\Hook
- LinkerMakeExternalImageHook
- LinkerMakeExternalLinkHook
- LinkerMakeMediaLinkFileHook
- MediaWiki\ObjectCache:
- ObjectCache
- ObjectCacheFactory
- SqlBagOStuff
- MediaWiki\Skins\Hook => MediaWiki\Language\Skin
- SkinAfterPortletHook
- SkinPageReadyConfigHook
- Logging related hooks: MediaWiki\Hook => MediaWiki\Logging\Hook
- LogEventsListGetExtraInputsHook
- LogEventsListLineEndingHook
- LogEventsListShowLogExtractHook
- LogLineHook
- ManualLogEntryBeforePublishHook
- Logging related pager: MediaWiki\Pager => MediaWiki\Logging\Pager
- LogPager
- Mail related hooks: MediaWiki\Hook => MediaWiki\Mail\Hook
- AlternateUserMailerHook
- UserMailerChangeReturnPathHook
- UserMailerSplitToHook
- UserMailerTransformContentHook
- UserMailerTransformMessageHook
- MediaWiki\Media
- PNGMetadataExtractor
- MediaHandlerFactory
- MediaTransformInvalidParametersException
- DjVuImage
- SVGReader
- IPTC
- BitmapHandler_ClientOnly
- TransformationalImageHandler
- BmpHandler
- JpegMetadataExtractor
- GIFMetadataExtractor
- ExifBitmapHandler
- BitmapHandler
- InvalidJpegException
- DjVuHandler
- ThumbnailImage
- JpegHandler
- GIFHandler
- PNGHandler
- MediaHandlerState
- TrivialMediaHandlerState
- MediaHandler
- InvalidSVGException
- XCFHandler
- TiffHandler
- MediaTransformError
- BitmapMetadataHandler
- FormatMetadata
- InvalidTiffException
- TransformTooBigImageAreaError
- TransformParameterError
- SvgHandler
- InvalidPSIRException
- ImageHandler
- WebPHandler
- MediaTransformOutput
- Jpeg2000Handler
- Exif
- Media related hooks: MediaWiki\Hook => MediaWiki\Media\Hook
- BitmapHandlerCheckImageAreaHook
- BitmapHandlerTransformHook
- GetExtendedMetadataHook
- GetMetadataVersionHook
- ThumbnailBeforeProduceHTMLHook
- ValidateExtendedMetadataCacheHook
- Parser related hooks: MediaWiki\Hook => MediaWiki\Parser\Hook
- AfterParserFetchFileAndTitleHook
- BeforeParserFetchFileAndTitleHook
- BeforeParserFetchTemplateRevisionRecordHook
- GetLinkColoursHook
- GetMagicVariableIDsHook
- InternalParseBeforeLinksHook
- IsValidEmailAddrHook
- PageRenderingHashHook
- ParserAfterParseHook
- ParserAfterTidyHook
- ParserBeforeInternalParseHook
- ParserBeforePreprocessHook
- ParserCacheSaveCompleteHook
- ParserClearStateHook
- ParserClonedHook
- ParserFetchTemplateDataHook
- ParserFirstCallInitHook
- ParserGetVariableValueSwitchHook
- ParserGetVariableValueTsHook
- ParserLimitReportFormatHook
- ParserLimitReportPrepareHook
- ParserLogLinterDataHook
- ParserMakeImageParamsHook
- ParserModifyImageHTMLHook
- ParserOptionsRegisterHook
- ParserOutputPostCacheTransformHook
- ParserPreSaveTransformCompleteHook
- RejectParserCacheValueHook
- Password related hook: MediaWiki\Hook => MediaWiki\Password\Hook
- PasswordPoliciesForUserHook
- MediaWiki\Profiler
- ProfilerSectionOnly
- ProfilerXhprof
- Profiler
- SectionProfileCallback
- ProfilerStub
- ProfilerExcimer
- SectionProfiler
- MediaWiki\Profiler\Output
- ProfilerOutputText
- ProfilerOutput
- ProfilerOutputStats
- ProfilerOutputDump
- RCFeed related hook: MediaWiki\Hook => MediaWiki\RCFeed\Hook
- IRCLineURLHook
- RecentChanges related hooks: MediaWiki\Hook => MediaWiki\RecentChanges\Hook
- ChangesListInitRowsHook
- ChangesListInsertArticleLinkHook
- ChangesListInsertLogEntryHook
- EnhancedChangesListModifyBlockLineDataHook
- EnhancedChangesListModifyLineDataHook
- EnhancedChangesList__getLogTextHook
- FetchChangesListHook
- MarkPatrolledCompleteHook
- MarkPatrolledHook
- OldChangesListRecentChangesLineHook
- RecentChange_saveHook
- MediaWiki\RevisionDelete:
- RevisionDeleter
- RevDelFileItem
- RevDelRevisionItem
- RevDelLogList
- RevisionDeleteUser
- RevDelList
- RevDelFileList
- RevDelArchivedFileList
- RevDelLogItem
- RevDelRevisionList
- RevDelArchivedFileItem
- RevDelItem
- RevDelArchivedRevisionItem
- RevDelArchiveList
- RevDelArchiveItem
- RevisionDelete related hook: MediaWiki\Hook => MediaWiki\RevisionDelete\Hook
- ArticleRevisionVisibilitySetHook
- MediaWiki\Search:
- SearchMySQL
- SqlSearchResult
- SqlSearchResultSet
- BaseSearchResultSet
- ISearchResultSet
- PrefixSearch
- RevisionSearchResult
- SearchEngineConfig
- SearchResult
- SearchResultSet
- SearchResultTrait
- TitlePrefixSearch
- PaginatingSearchEngine
- SearchHighlighter
- StringPrefixSearch
- SearchIndexField
- PerRowAugmentor
- ResultAugmentor
- NullIndexField
- SearchIndexFieldDefinition
- FauxSearchResultSet
- SearchSuggestion
- SearchEngine
- SearchSqlite
- SearchResultSetTrait
- SearchNearMatchResultSet
- ResultSetAugmentor
- SearchEngineFactory
- SearchSuggestionSet
- SearchPostgres
- SearchDatabase
- DummySearchIndexFieldDefinition
- SearchExactMatchRescorer
- FauxSearchResult
- Skin related hooks: MediaWiki\Hook => MediaWiki\Skin\Hook
- GetNewMessagesAlertHook
- SidebarBeforeOutputHook
- SiteNoticeAfterHook
- SiteNoticeBeforeHook
- SkinAddFooterLinksHook
- SkinAfterBottomScriptsHook
- SkinAfterContentHook
- SkinBuildSidebarHook
- SkinCopyrightFooterMessageHook
- SkinEditSectionLinksHook
- SkinPreloadExistenceHook
- SkinSubPageSubtitleHook
- SkinTemplateGetLanguageLinkHook
- SkinTemplateNavigation__UniversalHook
- UndeletePageToolLinksHook
- Skin component related classes: MediaWiki\Skin => MediaWiki\Skin\Components
- ComponentRegistryContext
- SkinComponent
- SkinComponentCopyright
- SkinComponentFooter
- SkinComponentLastModified
- SkinComponentLink
- SkinComponentListItem
- SkinComponentLogo
- SkinComponentMenu
- SkinComponentRegistry
- SkinComponentRegistryContext
- SkinComponentRenderedWith
- SkinComponentSearch
- SkinComponentTableOfContents
- SkinComponentTempUserBanner
- SkinComponentUtils
- MediaWiki\Specials\Exception
- SpecialUploadStashTooLargeException
- MediaWiki\Specials\FormFields
- Licenses
- MediaWiki\Specials\Forms
- MediaWiki\Specials\Forms\EditWatchlistNormalHTMLForm
- MediaWiki\Specials\Forms\PreferencesFormOOUI
- MediaWiki\Specials\Forms\UploadForm
- MediaWiki\Specials\Helpers
- License
- LoginHelper
- ImportReporter
- Specials related hooks: MediaWiki\Hook => MediaWiki\Specials\Hook
- AncientPagesQueryHook
- BeforeWelcomeCreationHook
- BlockIpCompleteHook
- BlockIpHook
- BookInformationHook
- ChangeUserGroupsHook
- ContribsPager__getQueryInfoHook
- ContribsPager__reallyDoQueryHook
- ContributionsLineEndingHook
- ContributionsToolLinksHook
- DeletedContribsPager__reallyDoQueryHook
- DeletedContributionsLineEndingHook
- EmailUserCCHook
- EmailUserCompleteHook
- EmailUserFormHook
- EmailUserHook
- EmailUserPermissionsErrorsHook
- ExtensionTypesHook
- FileUndeleteCompleteHook
- GetLogTypesOnUserHook
- ImportLogInterwikiLinkHook
- ImportSourcesHook
- LanguageSelectorHook
- LoginFormValidErrorMessagesHook
- LonelyPagesQueryHook
- NewPagesLineEndingHook
- OtherAutoblockLogLinkHook
- OtherBlockLogLinkHook
- PostLoginRedirectHook
- PreferencesGetLegendHook
- PrefsEmailAuditHook
- RandomPageQueryHook
- ShortPagesQueryHook
- SoftwareInfoHook
- SpecialBlockModifyFormFieldsHook
- SpecialContributionsBeforeMainOutputHook
- SpecialContributions__formatRow__flagsHook
- SpecialContributions__getForm__filtersHook
- SpecialCreateAccountBenefitsHook
- SpecialExportGetExtraPagesHook
- SpecialListusersDefaultQueryHook
- SpecialListusersFormatRowHook
- SpecialListusersHeaderFormHook
- SpecialListusersHeaderHook
- SpecialListusersQueryInfoHook
- SpecialLogAddLogSearchRelationsHook
- SpecialLogResolveLogTypeHook
- SpecialMovepageAfterMoveHook
- SpecialMuteModifyFormFieldsHook
- SpecialNewPagesFiltersHook
- SpecialNewpagesConditionsHook
- SpecialPrefixIndexGetFormFiltersHook
- SpecialPrefixIndexQueryHook
- SpecialRandomGetRandomTitleHook
- SpecialRecentChangesPanelHook
- SpecialResetTokensTokensHook
- SpecialSearchCreateLinkHook
- SpecialSearchGoResultHook
- SpecialSearchNogomatchHook
- SpecialSearchProfilesHook
- SpecialSearchResultsAppendHook
- SpecialSearchResultsHook
- SpecialSearchResultsPrependHook
- SpecialSearchSetupEngineHook
- SpecialStatsAddExtraHook
- SpecialTrackingCategories__generateCatLinkHook
- SpecialTrackingCategories__preprocessHook
- SpecialUploadCompleteHook
- SpecialVersionVersionUrlHook
- SpecialWhatLinksHereQueryHook
- UnblockUserCompleteHook
- UnblockUserHook
- UndeleteForm__showHistoryHook
- UndeleteForm__showRevisionHook
- UploadFormInitDescriptorHook
- UploadFormSourceDescriptorsHook
- UploadForm_BeforeProcessingHook
- UploadForm_getInitialPageTextHook
- UploadForm_initialHook
- UserCanChangeEmailHook
- UserLoginCompleteHook
- UserLogoutCompleteHook
- UsersPagerDoBatchLookupsHook
- WantedPages__getQueryInfoHook
- WatchlistEditorBeforeFormRenderHook
- WatchlistEditorBuildRemoveLineHook
- WhatLinksHerePropsHook
- Specials related pager: MediaWiki\Pager => MediaWiki\Specials\Pager
- ActiveUsersPager
- AllMessagesTablePager
- BlockListPager
- CategoryPager
- ContribsPager
- DeletedContribsPager
- EditWatchlistPager
- ImageListPager
- MergeHistoryPager
- NewFilesPager
- NewPagesPager
- PagerTools
- ProtectedPagesPager
- ProtectedTitlesPager
- UploadStashPager
- UsersPager
- Title related hooks: MediaWiki\Hook => MediaWiki\Title\Hook
- CanonicalNamespacesHook
- NamespaceIsMovableHook
- MediaWiki\Upload:
- UploadVerificationStatus
- UploadFromStash
- UploadFromUrl
- UploadBase
- UploadStash
- UploadStashFile
- UploadFromFile
- UploadFromChunks
- MediaWiki\Upload\Exception:
- UploadChunkFileException
- UploadChunkVerificationException
- UploadStashBadPathException
- UploadStashException
- UploadStashFileException
- UploadStashNotFoundException
- UploadStashNoSuchKeyException
- UploadStashNotLoggedInException
- UploadStashWrongOwnerException
- UploadStashZeroLengthFileException
- Upload related hooks: MediaWiki\Hook => MediaWiki\Upload\Hook
- IsUploadAllowedFromUrlHook
- UploadCompleteHook
- UploadCreateFromRequestHook
- UploadStashFileHook
- UploadVerifyFileHook
- UploadVerifyUploadHook
- MediaWiki\User:
- UserEditCountInitJob
- UserGroupExpiryJob
- Options/UserOptionsUpdateJob
- MediaWiki\Utils:
- BatchRowUpdate
- MWCryptRand
- BatchRowWriter
- BatchRowIterator
- RowUpdateGenerator
- MWRestrictions
- MWFileProps
- ExecutableFinder
- FileContentsHasher
- Watchlist related hook: MediaWiki\Hook => MediaWiki\Watchlist\Hook
- WatchedItemQueryServiceExtensionsHook
- The LockManager library: Wikimedia\LockManager
- FSLockManager
- LockManager
- MemcLockManager
- NullLockManager
- QuorumLockManager
- RedisLockManager
- ScopedLock
* Wikimedia\MapCacheLRU\MapCacheLRU renamed to
Wikimedia\ObjectCache\MapCacheLRU.
* MediaWiki\Cache\Hook\MessageCacheFetchOverridesHook renamed to
MediaWiki\Language\Hook\MessageCacheFetchOverridesHook.
* MediaWiki\Cache\Hook\MessageCacheReplaceHook renamed to
MediaWiki\Language\Hook\MessageCacheReplaceHook.
* MediaWiki\Cache\Hook\MessageCache__getHook renamed to
MediaWiki\Language\Hook\MessageCache__getHook.
* MediaWiki\Cache\Hook\MessagesPreLoadHook renamed to
MediaWiki\Language\Hook\MessagesPreLoadHook.
* MediaWiki\Exception\MWContentSerializationException renamed to
MediaWiki\Content\ContentSerializationException.
* MediaWiki\Exception\MWUnknownContentModelException renamed to
MediaWiki\Content\UnknownContentModelException.
* Using an int for the $mode parameter of LanguageFallback::getAll() is now
deprecated. Use the new LanguageFallbackMode enumeration instead.
* LanguageFallback::MESSAGES and LanguageFallback::STRICT are deprecated; use
LanguageFallbackModes::{MESSAGES,STRICT} instead.
* IDatabase::lockIsFree is deprecated. For non-blocking locks, use
IDatabase::lock with timeout 0 instead.
* The AutopromoteCondition hook has been deprecated and will now trigger
deprecation warnings. Use UserRequirementsCondition hook, instead.
* The RecentChange::parseToRCType and RecentChange::parseFromRCType methods are
deprecated and will now trigger deprecation warnings.
* RecentChange::getCharacterDifference was unused and has been deprecated, call
ChangesList::formatCharacterDifference or ChangesList::showCharacterDifference
instead.
* Calling ChangesList::flag and ChangesList::showCharacterDifference without
specifying a context has been deprecated.
* Calling ChangesList::userCan without specifying a performer has been
deprecated.
* Parser::makeImage() has been deprecated with warnings; use
::makeImageHtml() instead, which doesn't expose the internal LinkHolderArray.
* Parser::replaceLinkHolders() now emits deprecation warnings; it was
deprecated in 1.34.
* Parser::setCacheTime() now requires its argument to be a non-null string;
passing other values triggers a deprecation warning.
* CoreTagHooks has been deprecated; use the ParserCoreTagHooks service
instead. Its static methods were previously marked @internal but will
now trigger deprecation warnings as well.
* Content::getNativeData() now emits deprecation warnings in all Content
subclasses defined in core; it was deprecated in 1.33.
* Returning null (or allowing the null initial value to remain) from the
ParserGetVariableValueSwitch hook for a magic word you've registered
via the GetMagicVariableIDs hook is deprecated and emits warnings.
* The WatchedItemQueryServiceExtensions hook is deprecated and is no longer
called. Use ApiQueryBaseBeforeQuery, ApiQueryBaseAfterQuery,
ApiQueryBaseProcessRow and ApiQueryWatchlistExtractOutputData.
* Passing oldid to WatchlistManager::clearTitleUserNotifications
or WikiPage::doViewUpdates is deprecated and emits notice,