Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Updated mediawiki to 1.28.
Browse files Browse the repository at this point in the history
  • Loading branch information
mofarrell committed Mar 10, 2017
1 parent 0feb383 commit c7de4aa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion targets/mediawiki/LocalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

## Database settings
$wgDBtype = "mysql";
#$wgDBserver = "localhost";
$wgDBserver = "127.0.0.1";
$wgDBname = "mw_bench";
$wgDBuser = "mw_bench";
$wgDBpassword = "mw_bench";
Expand Down
2 changes: 1 addition & 1 deletion targets/mediawiki/MediaWikiTarget.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

final class MediaWikiTarget extends PerfTarget {

const MEDIAWIKI_VERSION = 'mediawiki-1.26.2';
const MEDIAWIKI_VERSION = 'mediawiki-1.28.0';

public function __construct(private PerfOptions $options) {}

Expand Down
Binary file not shown.

1 comment on commit c7de4aa

@reedy
Copy link
Contributor

@reedy reedy commented on c7de4aa May 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't this have updated mw_bench.sql.gz too?

As it will be missing all these db updates. Granted, not all are actually necessary..

			// 1.27
			[ 'dropTable', 'msg_resource_links' ],
			[ 'dropTable', 'msg_resource' ],
			[ 'addTable', 'bot_passwords', 'patch-bot_passwords.sql' ],
			[ 'addField', 'watchlist', 'wl_id', 'patch-watchlist-wl_id.sql' ],
			[ 'dropIndex', 'categorylinks', 'cl_collation', 'patch-kill-cl_collation_index.sql' ],
			[ 'addIndex', 'categorylinks', 'cl_collation_ext',
				'patch-add-cl_collation_ext_index.sql' ],
			[ 'doCollationUpdate' ],

			// 1.28
			[ 'addIndex', 'recentchanges', 'rc_name_type_patrolled_timestamp',
				'patch-add-rc_name_type_patrolled_timestamp_index.sql' ],
			[ 'doRevisionPageRevIndexNonUnique' ],
			[ 'doNonUniquePlTlIl' ],
			[ 'addField', 'change_tag', 'ct_id', 'patch-change_tag-ct_id.sql' ],
			[ 'addField', 'tag_summary', 'ts_id', 'patch-tag_summary-ts_id.sql' ],
			[ 'modifyField', 'recentchanges', 'rc_ip', 'patch-rc_ip_modify.sql' ],
			[ 'addIndex', 'archive', 'usertext_timestamp', 'patch-rename-ar_usertext_timestamp.sql' ],

Please sign in to comment.