MediaWiki 1.25
Esta página contém notas de lançamento para uma versão não suportada do MediaWiki. |
MediaWiki 1.25 é uma versão legada do MediaWiki.
Consulte o arquivo RELEASE NOTES para obter a lista completa de mudanças.
Ele foi implantado nas wikis da Fundação Wikimedia por meio de ramificações "wmf" incrementais de setembro de 2014 a abril de 2015.
A versão estável 1.25.0 foi lançada na segunda-feira, 25 de maio de 2015.
Uma tarball 1.25.1 foi lançada pouco depois devido a um erro de sintaxe JSON na extensão ConfirmEdit.
Contém mais de 2200 mudanças de mais de 140 programadores, como também o trabalho de muitos tradutores.
Baixe o release mais recente ou verifique o pacote REL1_25
no Git para acompanhar este lançamento.
Indicadores
Templates that add icons to the top right corner of the page (and more) can be updated to use the new page status indicators feature.
Mudanças recentes melhoradas
MediaWiki now uses by default the extended watchlist and so called enhanced recent changes (preference "Agrupar alterações por páginas nas Mudanças recentes e na Lista de páginas vigiadas"), which also received several improvements in MediaWiki 1.24 and 1.25 (tarefa T37785).
This means that Special:RecentChanges and Special:Watchlist show all the changes to each page in a given day, sorted by page rather than chronologically. Changes to each page are collapsed by default and a compact overview is shown, with links to collated diffs and counts of each user's actions. Full activity for an individual page can then be shown with a single click.
Users will no longer need to know in detail how a single change was chosen for display in order to figure out what else may have happened to the page that day, nor to scan a long list of non-contiguous lines on the screen in order to get a complete picture. The change is part of MediaWiki's evolution towards an interface which is more discoverable and less cluttered by default, while equally easy to quickly access in full, with the help of JavaScript. However, the (grouped) layout is an improvement for non-JavaScript users as well.
Pré-visualização ao vivo
While editing, you're not sure what a wikitext syntax will produce? That's no longer a problem, now that live preview is no longer experimental. By enabling the feature in your preferences, MediaWiki will display the effect of your edits without fully reloading the page, so that you can quickly correct any mistake.
Impacto
The import tool is now much easier to use on content from a wiki which has different namespaces than yours (e.g. because it's in another language).
Contadores de visitas removidos
MediaWiki no longer includes hit counters in core, following a request for comment, which means that Special:PopularPages and the "Most Viewed Pages" section of Special:Statistics are now removed. The hit numbers, which occurred until the 1.25 upgrade was installed, will still be kept in the database, but they will no longer be updated. If you want to continue using this functionality: It has been re-implemented into Extension:HitCounters .
Internacionalização
= Entrada e género
Continuing the work in MediaWiki 1.18 and 1.19, multiple log types of Special:Log have been migrated to the new logging system, which allows full internationalization including word order and grammatical gender. The migration continues. See tarefa T26620 for a list.
Novas locais =
As seguintes locais foram adicionadas:
- awadhi
- balúchi ocidental
- koyraboro senni
Avisos de atualização para os administradores do MediaWiki
Alterações significativas
- PHP 5.3.3 or newer is now required to run MediaWiki (up from PHP 5.3.2).
- The legacy skinning system, that uses skin autodiscovery, has been removed (deprecated since 1.23) in favor of the skin registration system. This skinning system has been available, with some minor changes, since MediaWiki 1.12.
- The OpenSearchXml extension was merged into MediaWiki core. If you have it installed, you should undeploy it.
- The default-off jQuery Migrate library was removed. Please see http://jquery.com/upgrade-guide/1.9/ for guidance on how to fix your local JavaScript.
- Users installing from git will now need to fetch external libraries. More details are available below in #External libraries.
- Special:Cite was moved out of the Cite extension and into a separate CiteThisPage repository.
require_once "$IP/extensions/Cite/SpecialCite.php";
should be replaced bywfLoadExtension( 'CiteThisPage' );
- If you do not keep your extensions or skins inside the default location (
$IP /extensions
,$IP/skins
), see #Changes to extension loading below. - #Hit counters removed
Modificações nas configurações
More configuration defaults have been flipped, to reduce the strain needed by most administrators to get a sensibly-configured install. See the full release notes for details.
Alterações na API de Ação
A large amount of time was spent cleaning up the API, making the output saner, and friendlier for new developers to use. The following breaking changes are included in 1.25:
- Backlinks, imageusage, and embeddedin as prop modules
- Warnings will be sent if no continuation parameter is passed
- API help overhaul (see below)
- Breaking change in generator=search
- Deprecation of list=deletedrevs, and a minor BREAKING CHANGE for action=query revids=
- BREAKING CHANGE: Title-part parameters will no longer silently break on the '#' character
- BREAKING CHANGE: list=search redirecttitle is no longer an object
- Reminder: Breaking change to API continuation planned for 1.26
The API documentation was overhauled to use internationalized messages, a prettier format, and be easier to navigate. The help can be embedded or linked to in wiki pages by transcluding Special:ApiHelp. For those who preferred being able to see all documentation in one page, you can use recursivesubmodules=1.
API responses in format=json
or php
have a more sensible data layout if clients specify a new formatversion=2
parameter in requests (tarefa T76728). If you do not specify this, API responses should be backwards-compatible, but in some cases developers of API modules will need to update their extension to ensure this. All extensions that are developed in Wikimedia Gerrit have been updated in 1.25 to ensure backwards compatibility. More details are in API:JSON version 2 and the generated API help for json
format.
Esquema
- Update
user_newtalk.user_id
to an unsigned integer - Increase the length for various comment and reason fields to prepare for increasing the edit summary length
Mudanças do carregamento de extensões
To work towards a proper configuration database, we are changing the way extensions and skins are registered with MediaWiki. Extensions and skins can now move their metadata into extension.json or skin.json, and use wfLoadExtension( 'FooBar' );
or wfLoadSkin( 'FooBar' );
to load those that support it. All extensions and skins bundled with the tarball support this. The old style of loading by require_once "$IP/extensions/FooBar/FooBar.php";
will continue to be supported for backwards-compatibility.
If you do not keep your extensions or skins inside the default location ($IP /extensions
, $IP/skins
), you will need to set $wgExtensionDirectory
for extensions, and the poorly named $wgStyleDirectory
for skins.
Developer documentation on how to migrate extensions can be found at extension registration.
Menos profiling invasivo
The entire profiling system has been overhauled to be more flexible and less invasive using the xhprof extension. Manual wfProfileIn
and wfProfileOut
function calls are no longer needed and should be removed. See Manual:Profiling for an overview of the new options and how to update your StartProfiler.php
.
Bibliotecas externas
As part of the Library infrastructure for MediaWiki project, MediaWiki core now uses composer for managing external dependencies instead of copying the files into our code repo, such as CSSJanus and lessphp. In addition, libraries not specific to MediaWiki that were originally written for MediaWiki, such as the CDB library, were moved out into their own repos.
The tarball will contain these dependencies and the upgrade process for tarball users should stay the same. Users who have cloned from git will need to follow the instructions at Download from Git#Fetch external libraries. Installed libraries will be displayed upon Special:Version in their own section.
Melhor suporte para extensões geridas pelo compositor
composer.json was previously used for composer-managed extensions, but it is now used for managing dependencies of MediaWiki core. After discussions regarding this issue, a composer-merge-plugin was developed so sysadmins could specify their dependencies in a composer.local.json
. More documentation is available at Composer/For extensions.
Cronograma de lançamento
As datas previstas para lançamentos pontuais para a versão 1.25 são as seguintes:
Lançamento | Data |
---|---|
1.25.0 | 2015-05-25 |
1.25.1 | 2015-05-25; Corrige problemas no QuestyCaptcha e no ReCaptcha que estão incluídos na versão 1.25.0. |
1.25.2 | 2015-08-10 |
1.25.3 | 2015-10-16 |
1.25.4 | 2015-12-18 |
1.25.5 | 2015-12-22[1] |
1.25.6 | 2016-05-20 |
References
Subpáginas
- MediaWiki 1.25/Roadmap
- MediaWiki 1.25/wmf1
- MediaWiki 1.25/wmf1/Changelog
- MediaWiki 1.25/wmf10
- MediaWiki 1.25/wmf10/Changelog
- MediaWiki 1.25/wmf11
- MediaWiki 1.25/wmf11/Changelog
- MediaWiki 1.25/wmf12
- MediaWiki 1.25/wmf12/Changelog
- MediaWiki 1.25/wmf13
- MediaWiki 1.25/wmf13/Changelog
- MediaWiki 1.25/wmf14
- MediaWiki 1.25/wmf14/Changelog
- MediaWiki 1.25/wmf15
- MediaWiki 1.25/wmf15/Changelog
- MediaWiki 1.25/wmf16
- MediaWiki 1.25/wmf16/Changelog
- MediaWiki 1.25/wmf17
- MediaWiki 1.25/wmf17/Changelog
- MediaWiki 1.25/wmf18
- MediaWiki 1.25/wmf18/Changelog
- MediaWiki 1.25/wmf19
- MediaWiki 1.25/wmf19/Changelog
- MediaWiki 1.25/wmf2
- MediaWiki 1.25/wmf2/Changelog
- MediaWiki 1.25/wmf20
- MediaWiki 1.25/wmf20/Changelog
- MediaWiki 1.25/wmf21
- MediaWiki 1.25/wmf21/Changelog
- MediaWiki 1.25/wmf22
- MediaWiki 1.25/wmf22/Changelog
- MediaWiki 1.25/wmf23
- MediaWiki 1.25/wmf23/Changelog
- MediaWiki 1.25/wmf24
- MediaWiki 1.25/wmf24/Changelog
- MediaWiki 1.25/wmf3
- MediaWiki 1.25/wmf3/Changelog
- MediaWiki 1.25/wmf4
- MediaWiki 1.25/wmf4/Changelog
- MediaWiki 1.25/wmf5
- MediaWiki 1.25/wmf5/Changelog
- MediaWiki 1.25/wmf6
- MediaWiki 1.25/wmf6/Changelog
- MediaWiki 1.25/wmf7
- MediaWiki 1.25/wmf7/Changelog
- MediaWiki 1.25/wmf8
- MediaWiki 1.25/wmf8/Changelog
- MediaWiki 1.25/wmf9
- MediaWiki 1.25/wmf9/Changelog