stable

Clone or download

Read-only

MediaWiki update script is executed during `tuleap-cfg site-deploy` command

The MediaWiki maintenance script should be executed when MediaWiki or an extension is updated. Since this is something that is not easy to determine we execute it whenever we call the `site-deploy` command. Part of story #26042: install mediawiki standalone Change-Id: I261f71227a02efa4b89d9aec1589b8c36e3869ab

Modified Files

Name
M plugins/mediawiki_standalone/include/Configuration/LocalSettingsRepresentation.php +1 −1 Go to diff View file
A plugins/mediawiki_standalone/include/Configuration/MediaWikiUpdateScriptCaller.php +43 −0 Go to diff View file
M plugins/mediawiki_standalone/include/mediawiki_standalonePlugin.php +15 −0 Go to diff View file
A plugins/pluginsadministration/include/LifecycleHookCommand/PluginExecuteUpdateHookEvent.php +36 −0 Go to diff View file
A plugins/pluginsadministration/include/LifecycleHookCommand/PluginUpdateHookCommand.php +52 −0 Go to diff View file
M plugins/pluginsadministration/include/pluginsadministrationPlugin.php +13 −0 Go to diff View file
A plugins/pluginsadministration/tests/unit/LifecycleHookCommand/PluginUpdateHookCommandTest.php +52 −0 Go to diff View file
A src/common/CLI/AssertRunner.php +48 −0 Go to diff View file
M src/common/CLI/Command/WorkerSupervisorCommand.php +3 −10 Go to diff View file
A src/tuleap-cfg/Command/SiteDeploy/Plugins/SiteDeployPluginsCommand.php +55 −0 Go to diff View file
M src/tuleap-cfg/tuleap-cfg.php +1 −0 Go to diff View file
M src/utils/tuleap.php +2 −1 Go to diff View file
A tests/unit/common/CLI/AssertRunnerTest.php +48 −0 Go to diff View file