ميدياويكي 1.31
تحتوي هذه الصفحة على ملاحظات إصدار أحد الإصدارات غير المدعومة لبرمجيات ميدياويكي. |
ميدياويكي 1.31 هو أحدث إصدار من ميدياويكي.
Consult the ملاحظات الإصدار file for the full list of changes.
It was deployed on Wikimedia Foundation wikis through incremental "wmf "-branches starting 26 September 2017.
The 1.31.0 stable release was released on 13 June 2018.
Download the latest releases or checkout the REL1_31
branch in Git to follow this release.
It was originally due to go end-of-life in June 2021. Due to MediaWiki 1.35 being delayed to September 2020, 1.31 went end of life on 30 September 2021.
What's new
More bundled extensions
The set of extensions that are bundled with the MediaWiki tarball has increased. The new additions are:
- CategoryTree
- CodeEditor provides a more friendly editor when editing CSS and JavaScript on-wiki.
- MultimediaViewer provides a lightbox viewer for images and galleries.
- OATHAuth provides two-factor authentication for wiki accounts.
- Replace Text provides a form to let administrators do string replacements on the entire wiki, for both page contents and page titles.
The الحذف الجماعي extension was not included in the tarball for MediaWiki 1.31.0 by mistake. If you want to use this extension, please download the extension separately. This is fixed in 1.31.1 and up.
Skins
Timeless skin
Timeless is a new, responsive skin for MediaWiki, and is now bundled.
-
Mobile layout
-
Tablet layout
-
Desktop layout
-
Wide desktop layout
CologneBlue and Modern
The CologneBlue and Modern skins are no longer bundled, although are still compatible with MediaWiki. If you are upgrading and had that skin installed, be sure to download it separately.
Tidy replaced with HTML 5 parsing algorithm
- See the frequently asked questions for more details
The HTML 4 based Tidy library has been replaced by a pure-PHP HTML 5 parser named RemexHtml to clean up improper wikitext in a modern and standards compliant way. If your content relied on some of the tidy fix-ups that are not being continued, they will need to be fixed.
You can use the Linter extension in conjunction with Parsoid to identify pages with problems that cause differences in rendering with the RemexHtml parser. The ParserMigration extension shows editors a side-by-side comparison of rendering with tidy and RemexHtml.
Interwiki usernames
MediaWiki now supports "interwiki" usernames in a format like "iw>Example
" in revisions, log entries, and so on. This allows for properly recording imports and events from foreign wikis (as generated by Wikibase, for example) without confusion with a local account that exists now or may be created in the future.
- (مهمة T9240) Imports will now record unknown (and, optionally, known) usernames in a format like "
iw>Example
". - (مهمة T20209)
Linker
(used on history pages, log pages, and so on) will display usernames formed like "iw>
Example" as interwiki links, as if by wikitext like[[iw:User:Example|iw>Example]]
.
Further UI standardization
- As a first pass in standardizing dialog boxes across the MediaWiki product, Html class now provides helper methods for messageBox, successBox, errorBox and warningBox generation.
Other feature changes
- Add default edit rate limit of 90 edits/minute for all users. This can be changed by setting
$wgRateLimits
. - (مهمة T143790)
$wgEmailConfirmToEdit
only affectsedit
actions. - (مهمة T76554) User sub-pages named
….json
are now protected in the same way that….js
and….css
pages are, so that configuration options can safely be placed there. - (مهمة T181651) The info page for File pages now displays the file's base-16 SHA1 hash value in the table of basic information.
- (مهمة T189785) The pingback feature will now send a monthly heartbeat ping to identify active wikis.
- (مهمة T19099) Tabs which link to pages that don't exist (like those to uncreated discussion pages) now have a tooltip to indicate state, not just colour.
Languages updated in 1.31
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.
- (مهمة T180052) Mirandese (mwl) now supports gendered
NS_USER
/NS_USER_TALK
. - (مهمة T182305) New language support: Nyungar (nys).
- (مهمة T186359) New language support: Siberian Tatar [cебертатар] (sty).
- (مهمة T186635) New language support: Guianan Creole (gcr).
- (مهمة T186647) New language support: Kumyk [къумукъ] (kum).
- (مهمة T187750) New language support: Spanish formal address (es-formal).
- (مهمة T187824) New language support: Hungarian formal address (hu-formal).
- (مهمة T189127) New language support: Gorontalo (gor).
Upgrade notices for MediaWiki administrators
PHP 7 or HHVM is now required
MediaWiki 1.31 requires PHP 7.0.0 or later. Although HHVM 3.18.5 or later is supported, it is generally advised to use PHP 7.0.0 or later for long term support.
Database changes
1.31 has several database changes since 1.30, and will not work without schema updates. PostgreSQL users now need version 9.2 or later.
Revision table
Note that due to changes to some very large tables like the revision table, the schema update may take quite long (minutes on a medium sized site, many hours on a large site). Don't forget to always back up your database before upgrading!
Archive table
If you're using MySQL, SQLite, or MSSQL, are not using update.php
to apply schema changes, and cannot have downtime to run migrateArchiveText.php
and apply patch-drop-ar_text.sql
manually, you'll have to apply a default value to the ar_text
and ar_flags
columns of the archive
table or make those columns nullable before upgrading to MediaWiki 1.31.
maintenance/archives/patch-nullable-ar_text.sql
shows how to do this for MySQL.
Actor table
The identity of the logged-in or IP "actor" for logged actions is being moved into a new actor
table, with the rows in tables such as revision and logging referring to the actor ID instead of storing the user ID and name/IP in every row.
- This is currently gated by
$wgActorTableSchemaMigrationStage
. Most wikis can set this toMIGRATION_NEW
and runmaintenance/migrateActors.php
as soon as any necessary extensions are updated. - Most code accessing rows for logged actions from the database should use the relevant
getQueryInfo()
methods to get the information needed to build the SQL query. TheActorMigration
class may also be used to get feature-flagged information needed to access actor-related fields during the migration period.
See the ترحيل الفاعل page for details.
Configuration changes
$wgEnableAPI
and$wgEnableWriteAPI
are now deprecated and will be removed in a future version. The API is now considered to be stable, secure and essential.$wgUsejQueryThree
was removed, as it is now the default. This was documented as a temporary variable during the migration period, deprecated since 1.29.$wgLogoHD
has been updated to support SVG images and uses$wgLogo
where possible for fallback images such as PNG.- (مهمة T44246)
$wgFilterLogTypes
will no longer ignore 'patrol
' when user does not have the right to mark things patrolled. - Wikis that contain imported revisions or التصريح المركزي global blocks should run
maintenance/cleanupUsersWithNoId.php
. - The configuration settings
$wgResourceLoaderMinifierStatementsOnOwnLine
and$wgResourceLoaderMinifierMaxLineLength
, deprecated since 1.27, were removed. - (مهمة T180921)
$wgReferrerPolicy
now supports having fallbacks for browsers that are not using the latest version of the Referrer Policy specification. $wgFragmentMode
is now set to[ 'legacy', 'html5' ]
by default. This is a first step of migration to human-readable section IDs that will later result in 'html5
' being the default mode.CACHE_ACCEL
now only supports APC(u) or WinCache. XCache support was removed as upstream is inactive and has no plans to move to PHP 7.- The old
CategorizedRecentChanges
feature, including its related configuration option$wgAllowCategorizedRecentChanges
, has been removed. - (مهمة T188472) The '
comma
' value for$wgArticleCountMethod
is no longer supported for performance reasons, and installations with this setting will now work as if it was configured with 'any
'. - (مهمة T185753) MediaWiki now defaults to using
RemexHtml
to tidy up user input, rather than being off by default. If you wish to disable HTML tidying entirely, set$wgTidyConfig
tonull
; if you wish to use the old, deprecated Tidy external binary, both set$wgTidyConfig
tonull
and$wgUseTidy
totrue
. $wgLogAutopatrol
now defaults tofalse
instead oftrue
.$wgValidateAllHtml
was removed and will be ignored.$wgScriptExtension
, deprecated and ignored since 1.25, was removed. See the 1.25 release notes for more information.$wgUseAjax
is now marked as deprecated, just like the deprecated AJAX framework that it enables. Some extensions mistakenly used this to check whether any AJAX functionality at all should be enabled, further making this problematic to retain.$wgDBmysql5
is now deprecated, and will be removed in a future version. It has been marked as experimental ever since it was introduced.$wgDBmwschema
now affects all database types. Old MediaWiki versions were setting this to 'mediawiki' during the installer, which may cause errors during the upgrade when your database is not PostgreSQL or MSSQL. In that case, remove this setting from LocalSettings.php.
Action API changes in 1.31
- (مهمة T185058) The '
name
' value totgprop
foraction=query&list=tags
has been removed. It has never made a difference in the output, the name was always returned regardless. - The '
watch
' and 'unwatch
' parameters foraction=move
have been removed. They were deprecated and also accidentally nonfunctional since 1.17 in 2010. Use 'watchlist
' instead.
Other changes in 1.31
- Browser support for Internet Explorer 10 was lowered from Grade A to Grade C.
- Browser support for Opera 12 and older was dropped entirely. Opera 15+ continues at Grade A.
- Multi-content-revision capability was introduced into the storage layer. See <https://mediawiki.org/wiki/Requests_for_comment/Multi-Content_Revisions>.
- The "
free
" CSS class is now only applied to unbracketed URLs in wikitext. Links written using square brackets will get the class "text
", not "free
". - مهمة T157418: Whitespace is trimmed from wikitext headings, wikitext list items, wikitext table captions, wikitext table headings, wikitext table cells. HTML headings, HTML list items, HTML table captions, HTML table headings, HTML table cells will not have this trimming behavior.
- Add support for PSR-4 namespace autoloading for PHP classes in core and extensions (مهمة T173799, مهمة T99865).
صفحات فرعية
- MediaWiki 1.31/Roadmap
- MediaWiki 1.31/wmf.1
- MediaWiki 1.31/wmf.1/Changelog
- MediaWiki 1.31/wmf.10
- MediaWiki 1.31/wmf.11
- MediaWiki 1.31/wmf.11/Changelog
- MediaWiki 1.31/wmf.12
- MediaWiki 1.31/wmf.12/Changelog
- MediaWiki 1.31/wmf.15
- MediaWiki 1.31/wmf.15/Changelog
- MediaWiki 1.31/wmf.16
- MediaWiki 1.31/wmf.16/Changelog
- MediaWiki 1.31/wmf.17
- MediaWiki 1.31/wmf.2
- MediaWiki 1.31/wmf.2/Changelog
- MediaWiki 1.31/wmf.20
- MediaWiki 1.31/wmf.20/Changelog
- MediaWiki 1.31/wmf.21
- MediaWiki 1.31/wmf.21/Changelog
- MediaWiki 1.31/wmf.22
- MediaWiki 1.31/wmf.22/Changelog
- MediaWiki 1.31/wmf.23
- MediaWiki 1.31/wmf.23/Changelog
- MediaWiki 1.31/wmf.24
- MediaWiki 1.31/wmf.24/Changelog
- MediaWiki 1.31/wmf.25
- MediaWiki 1.31/wmf.25/Changelog
- MediaWiki 1.31/wmf.26
- MediaWiki 1.31/wmf.26/Changelog
- MediaWiki 1.31/wmf.27
- MediaWiki 1.31/wmf.27/Changelog
- MediaWiki 1.31/wmf.28
- MediaWiki 1.31/wmf.28/Changelog
- MediaWiki 1.31/wmf.29
- MediaWiki 1.31/wmf.29/Changelog
- MediaWiki 1.31/wmf.3
- MediaWiki 1.31/wmf.3/Changelog
- MediaWiki 1.31/wmf.30
- MediaWiki 1.31/wmf.30/Changelog
- MediaWiki 1.31/wmf.4
- MediaWiki 1.31/wmf.4/Changelog
- MediaWiki 1.31/wmf.5
- MediaWiki 1.31/wmf.6
- MediaWiki 1.31/wmf.7
- MediaWiki 1.31/wmf.8