[23:20:00] + ulimit -n 512 [23:20:00] + LOCKFILE=/var/lock/scap.operations_mediawiki-config.lock [23:20:00] + '[' -O /var/lock/scap.operations_mediawiki-config.lock ']' [23:20:00] + /usr/bin/scap version [23:20:01] 4.274.1 [23:20:01] + /usr/bin/scap prep auto [23:20:02] 23:20:02 Started scap prep auto [23:20:02] 23:20:02 Update https://gerrit.wikimedia.org/r/operations/mediawiki-config (master branch) in /srv/mediawiki-staging [23:20:03] 23:20:03 https://gerrit.wikimedia.org/r/operations/mediawiki-config checked out at commit d2d3cd7c0566e8ce7c487ccbd2530b69423afb9a [23:20:04] 23:20:04 Update https://gerrit.wikimedia.org/r/mediawiki/core (master branch) in /srv/mediawiki-staging/php-master [23:20:04] 23:20:04 https://gerrit.wikimedia.org/r/mediawiki/core checked out at commit 74c5709ec78d6b2f7853f72ee851e9456229e904 [23:20:05] 23:20:05 Update https://gerrit.wikimedia.org/r/mediawiki/extensions (master branch) in /srv/mediawiki-staging/php-master/extensions [23:20:06] 23:20:06 Changes pulled down since last fetch: [23:20:06] commit 0490c92ee16ca9d11a1170fa306d1bea7b21b630 [23:20:06] Author: David Lynch [23:20:06] Date: Mon Jul 27 18:16:59 2026 -0500 [23:20:06] [23:20:06] Update git submodules [23:20:06] [23:20:06] * Update CodeMirror from branch 'master' [23:20:06] to 3000a1bd50730f562b13e2897f68fdbfb10c33ec [23:20:06] - VisualEditor: add CSS Custom Highlight API mode for source editing [23:20:06] [23:20:06] The existing integration overlays a CodeMirror EditorView on VE's [23:20:06] surface and tokenizes the whole document, which is slow enough that [23:20:06] CodeMirror is disabled for long articles, and is the source of the [23:20:06] difficulty in keeping the overlay aligned with the VE surface. [23:20:06] [23:20:06] CodeMirrorVisualEditorHighlight renders no EditorView. A headless [23:20:06] EditorState drives CodeMirror's tokenizer over the viewport only, and [23:20:06] the colors are painted onto VE's own text via [23:20:06] SelectionManager#drawSelections with showCustomHighlight. There is no [23:20:06] second layer to keep aligned, and the cost is bounded by the viewport [23:20:06] rather than the document. [23:20:06] [23:20:06] The mode exposes its HighlightStyle for reuse without an EditorView. [23:20:06] Document edits reach the tokenizer through the surface 'precommit' [23:20:06] event (including the T382769 setContents workaround); highlights [23:20:06] refresh on scroll, position and resize. Only the properties the Custom [23:20:06] Highlight API supports (color, background-color, text-decoration, [23:20:06] text-shadow) are painted. [23:20:06] [23:20:06] Preferences come from a real CodeMirrorPreferences rather than a copy [23:20:06] of its resolution, constructed with isVisualEditor false: that flag [23:20:06] means the EditorView overlay, which gates the extension allowlist and [23:20:06] prefers wiki defaults because it has no UI to set them. Neither applies [23:20:06] here, and the real thing brings the usecodemirror-colorblind migration [23:20:06] with it. CodeMirror now exports the classes needed to resolve [23:20:06] preferences without building an editor. Registering no extensions for [23:20:06] the preferences page to reconfigure, the controller reports what it [23:20:06] honours and applies changes itself: no-highlight skips painting, [23:20:06] colorblind and the ref tint are scoped by classes on the VE surface, [23:20:06] and CodeMirrorThemes supplies the theme preference's form [23:20:06] specification. [23:20:06] [23:20:06] Gated behind the CodeMirrorVisualEditorCustomHighlight flag (default [23:20:06] off), forceable with ?cmhighlight=1. Being viewport-bounded, this mode [23:20:06] is exempt from the maxDocSize limit that disables CodeMirror on large [23:20:06] documents. [23:20:06] [23:20:06] Assisted-by: Claude Opus 5 [23:20:06] Bug: T432558 [23:20:06] Depends-On: I7d20df4e9c4874c465ac57b268fecded12b50309 [23:20:06] Change-Id: I2c8ba606a0f61f4cc21b12bf7d2e971297aed399 [23:20:06] [23:20:06] commit b64bb038b5ae0bd793fbba0b016820f70e93ba48 [23:20:06] Author: David Lynch [23:20:06] Date: Mon Jul 27 18:16:48 2026 -0500 [23:20:06] [23:20:06] Update git submodules [23:20:06] [23:20:06] * Update CodeMirror from branch 'master' [23:20:06] to 5ffc6ff024bc539bfa4170eb16d967e332975e32 [23:20:06] - VisualEditor: Add a syntax highlighting page to the options dialog [23:20:06] [23:20:06] CodeMirror's preferences were unreachable from the 2017 wikitext editor. [23:20:06] There was no UI for them, and getPreference() therefore ignored stored [23:20:06] values there and fell back to the wiki defaults. [23:20:06] [23:20:06] Add a page to VisualEditor's options dialog for the preferences [23:20:06] CodeMirror supports in VE, and a page menu item that opens the dialog on [23:20:06] it, beside the existing toggle. The fields come from the controller's [23:20:06] supportedPreferences, and changes go back through its applyPreference(), [23:20:06] rather than the page reaching into the extension registry: which [23:20:06] preferences are honoured, and what applying one means, differ between [23:20:06] integrations. They are ordered by CodeMirror's own dialogConfig, so both [23:20:06] integrations list them as CodeMirror's dialog does. These are user [23:20:06] preferences rather than document edits, so the dialog's staging does not [23:20:06] cover them: changes are buffered and written only when it closes with [23:20:06] 'done'. [23:20:06] [23:20:06] The menu item and the page are unavailable outside source mode, where [23:20:06] highlighting cannot apply at all; the highlighting toggle stays visible [23:20:06] but disabled there, which already advertises the mode switch. Within [23:20:06] source mode the item is disabled while CodeMirror is off, so the toggle [23:20:06] action announces state changes through the surface model: CodeMirror [23:20:06] loads asynchronously, and toggling it afterwards changes nothing else [23:20:06] the toolbar watches. [23:20:06] [23:20:06] Now that there is a UI, the isVisualEditor carve-out in getPreference() [23:20:06] goes, and preferences set in CodeMirror apply in the 2017 editor too. [23:20:06] That would let a user turn off line wrapping, which breaks alignment [23:20:06] between the CodeMirror layer and the VE surface, so the overlay locks [23:20:06] that preference on. Locked preferences are left out of the page rather [23:20:06] than shown disabled, since they can have no effect there. [23:20:06] [23:20:06] Locking previously left the forced value in this.preferences, which the [23:20:06] next write of any other preference would then serialize in place of the [23:20:06] user's -- silently discarding it. Since this is the first caller, fix [23:20:06] that by serializing the stored value for locked preferences. [23:20:06] [23:20:06] Assisted-by: Claude Opus 5 [23:20:06] Bug: T433188 [23:20:06] Depends-On: I2a6b32cb9448a5021b328beaad234f90a2ce39e2 [23:20:06] Change-Id: I17702a8593d82d9a6637007639a62811d4925b55 [23:20:06] [23:20:06] 23:20:06 https://gerrit.wikimedia.org/r/mediawiki/extensions checked out at commit 0490c92ee16ca9d11a1170fa306d1bea7b21b630 [23:22:10] 23:22:10 Update https://gerrit.wikimedia.org/r/mediawiki/vendor (master branch) in /srv/mediawiki-staging/php-master/vendor [23:22:11] 23:22:11 https://gerrit.wikimedia.org/r/mediawiki/vendor checked out at commit e7cd6c5ce791a51fec53e3656042b7b7062a787e [23:22:11] 23:22:11 Update https://gerrit.wikimedia.org/r/mediawiki/skins (master branch) in /srv/mediawiki-staging/php-master/skins [23:22:11] 23:22:11 https://gerrit.wikimedia.org/r/mediawiki/skins checked out at commit d49ff25faaa913ed5b47297d419c695d50bb705e [23:22:18] 23:22:18 MediaWiki master successfully checked out. [23:22:18] 23:22:18 Finished scap prep auto (duration: 02m 15s) [23:22:18] + /usr/bin/scap sync-world 'wmf-beta-update-all run' [23:22:19] ___ ____ [23:22:19] ⎛ ⎛ ,---- [23:22:19] \ //==--' [23:22:19] _//|,.·//==--' ____________________________ [23:22:19] _OO≣=- ︶ ᴹw ⎞_§ ______ ___\ ___\ ,\__ \/ __ \ [23:22:19] (∞)_, ) ( | ______/__ \/ /__ / /_/ / /_/ / [23:22:19] ¨--¨|| |- ( / ______\____/ \___/ \__^_/ .__/ [23:22:19] ««_/ «_/ jgs/bd808 /_/ [23:22:19] [23:22:19] 23:22:19 Started scap sync-world: wmf-beta-update-all run [23:22:23] 23:22:23 Started cache_git_info [23:22:29] 23:22:29 Finished cache_git_info (duration: 00m 05s) [23:22:29] 23:22:29 Started l10n-update [23:22:35] 23:22:35 Updating ExtensionMessages-master.php [23:22:48] 23:22:48 Updating LocalisationCache for master using 6 thread(s) [23:22:48] 23:22:48 Running rebuildLocalisationCache.php (cdb) [23:22:52] 23:22:52 0 languages rebuilt out of 549 [23:22:52] 23:22:52 Use --force to rebuild the caches which are still fresh. [23:22:56] 23:22:56 Running rebuildLocalisationCache.php (php) [23:22:59] 23:22:59 0 languages rebuilt out of 549 [23:22:59] 23:22:59 Use --force to rebuild the caches which are still fresh. [23:23:02] 23:23:02 Generating JSON versions and md5 files (as www-data) [23:23:05] 23:23:05 Finished l10n-update (duration: 00m 36s) [23:23:05] 23:23:05 Checking for new runtime errors locally [23:23:09] 23:23:09 Started sync-canaries [23:23:09] 23:23:09 sync-canaries: 0% (ok: 0; fail: 0; left: 1) [23:23:14] 23:23:14 sync-canaries: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [23:23:14] 23:23:14 Per-host sync duration: average 5.6s, median 5.6s [23:23:14] 23:23:14 rsync transfer: average 687215 bytes/host, total 687215 bytes [23:23:14] 23:23:14 Started scap-cdb-rebuild-canaries [23:23:14] 23:23:14 scap-cdb-rebuild: 0% (ok: 0; fail: 0; left: 1) [23:23:16] 23:23:16 scap-cdb-rebuild: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [23:23:16] 23:23:16 Finished scap-cdb-rebuild-canaries (duration: 00m 01s) [23:23:16] 23:23:16 Started sync-wikiversions-canaries [23:23:16] 23:23:16 sync-wikiversions: 0% (ok: 0; fail: 0; left: 1) [23:23:17] 23:23:17 sync-wikiversions: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [23:23:17] 23:23:17 Finished sync-wikiversions-canaries (duration: 00m 00s) [23:23:17] 23:23:17 Started php-fpm-restarts-canaries [23:23:17] 23:23:17 Running '/usr/local/sbin/restart-php-fpm-all' on 1 host(s) [23:23:17] 23:23:17 php-fpm-restart: 0% (ok: 0; fail: 0; left: 0) [23:23:18] 23:23:18 php-fpm-restart: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [23:23:18] 23:23:18 Finished php-fpm-restarts-canaries (duration: 00m 01s) [23:23:18] 23:23:18 Finished sync-canaries (duration: 00m 09s) [23:23:18] 23:23:18 Waiting 20 seconds for canary traffic... [23:23:38] 23:23:38 Logstash checker counted 0 error(s) in the last 20 seconds. OK. [23:23:38] 23:23:38 Started sync-apaches [23:23:38] 23:23:38 sync-apaches: 0% (ok: 0; fail: 0; left: 3) [23:23:45] 23:23:45 sync-apaches: 100% (in-flight: 0; ok: 3; fail: 0; left: 0) [23:23:45] 23:23:45 Per-host sync duration: average 6.6s, median 6.9s [23:23:45] 23:23:45 rsync transfer: average 687215 bytes/host, total 2061645 bytes [23:23:45] 23:23:45 Finished sync-apaches (duration: 00m 07s) [23:23:45] 23:23:45 Waiting 20 seconds for production traffic... [23:24:05] 23:24:05 Logstash checker counted 0 error(s) in the last 20 seconds. OK. [23:24:05] 23:24:05 Started scap-cdb-rebuild-prod [23:24:05] 23:24:05 scap-cdb-rebuild: 0% (ok: 0; fail: 0; left: 4) [23:24:07] 23:24:07 scap-cdb-rebuild: 100% (in-flight: 0; ok: 4; fail: 0; left: 0) [23:24:07] 23:24:07 Finished scap-cdb-rebuild-prod (duration: 00m 02s) [23:24:07] 23:24:07 Started sync-wikiversions-prod [23:24:07] 23:24:07 sync-wikiversions: 0% (ok: 0; fail: 0; left: 4) [23:24:08] 23:24:08 sync-wikiversions: 100% (in-flight: 0; ok: 4; fail: 0; left: 0) [23:24:08] 23:24:08 Finished sync-wikiversions-prod (duration: 00m 00s) [23:24:08] 23:24:08 Started php-fpm-restarts-prod [23:24:08] 23:24:08 Running '/usr/local/sbin/restart-php-fpm-all' on 3 host(s) [23:24:08] 23:24:08 php-fpm-restart: 0% (ok: 0; fail: 0; left: 0) [23:24:09] 23:24:09 php-fpm-restart: 100% (in-flight: 0; ok: 3; fail: 0; left: 0) [23:24:09] 23:24:09 Finished php-fpm-restarts-prod (duration: 00m 01s) [23:24:09] 23:24:09 Running purgeMessageBlobStore.php [23:24:12] 23:24:12 Finished scap sync-world: wmf-beta-update-all run (duration: 01m 53s) [23:24:13] + /usr/local/bin/wmf-beta-update-databases.py [23:24:26] Running update.php for 47 wikis. [23:24:26] aawiki | MediaWiki 1.47.0-alpha Updater [23:24:26] aawiki | [23:24:26] aawiki | Your composer.lock file is up to date with current dependencies [23:24:26] aawiki | Going to run database updates for aawiki [23:24:26] aawiki | Depending on the size of your database this may take a while! [23:24:26] aawiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] aawiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] aawiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] aawiki | Skipped 178 updates that were already applied. [23:24:26] aawiki | Purging caches... [23:24:26] aawiki | Done in 3.7 s. [23:24:26] arwiki | MediaWiki 1.47.0-alpha Updater [23:24:26] arwiki | [23:24:26] arwiki | Your composer.lock file is up to date with current dependencies [23:24:26] arwiki | Going to run database updates for arwiki [23:24:26] arwiki | Depending on the size of your database this may take a while! [23:24:26] arwiki | Modifying gb_id field of table globalblocks...done. [23:24:26] arwiki | Modifying gb_address field of table globalblocks...done. [23:24:26] arwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] arwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] arwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] arwiki | Skipped 254 updates that were already applied. [23:24:26] arwiki | Purging caches... [23:24:26] arwiki | Done in 5.2 s. [23:24:26] crhwiki | MediaWiki 1.47.0-alpha Updater [23:24:26] crhwiki | [23:24:26] crhwiki | Your composer.lock file is up to date with current dependencies [23:24:26] crhwiki | Going to run database updates for crhwiki [23:24:26] crhwiki | Depending on the size of your database this may take a while! [23:24:26] crhwiki | Modifying gb_id field of table globalblocks...done. [23:24:26] crhwiki | Modifying gb_address field of table globalblocks...done. [23:24:26] crhwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] crhwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] crhwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] crhwiki | Skipped 223 updates that were already applied. [23:24:26] crhwiki | Purging caches... [23:24:26] crhwiki | Done in 5.8 s. [23:24:26] bnwiki | MediaWiki 1.47.0-alpha Updater [23:24:26] bnwiki | [23:24:26] bnwiki | Your composer.lock file is up to date with current dependencies [23:24:26] bnwiki | Going to run database updates for bnwiki [23:24:26] bnwiki | Depending on the size of your database this may take a while! [23:24:26] bnwiki | Modifying gb_id field of table globalblocks...done. [23:24:26] bnwiki | Modifying gb_address field of table globalblocks...done. [23:24:26] bnwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] bnwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] bnwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] bnwiki | Skipped 243 updates that were already applied. [23:24:26] bnwiki | Purging caches... [23:24:26] bnwiki | Done in 5.9 s. [23:24:26] cswiki | MediaWiki 1.47.0-alpha Updater [23:24:26] cswiki | [23:24:26] cswiki | Your composer.lock file is up to date with current dependencies [23:24:26] cswiki | Going to run database updates for cswiki [23:24:26] cswiki | Depending on the size of your database this may take a while! [23:24:26] cswiki | Modifying gb_id field of table globalblocks...done. [23:24:26] cswiki | Modifying gb_address field of table globalblocks...done. [23:24:26] cswiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] cswiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] cswiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] cswiki | Skipped 226 updates that were already applied. [23:24:26] cswiki | Purging caches... [23:24:26] cswiki | Done in 5.9 s. [23:24:26] cawiki | MediaWiki 1.47.0-alpha Updater [23:24:26] cawiki | [23:24:26] cawiki | Your composer.lock file is up to date with current dependencies [23:24:26] cawiki | Going to run database updates for cawiki [23:24:26] cawiki | Depending on the size of your database this may take a while! [23:24:26] cawiki | Modifying gb_id field of table globalblocks...done. [23:24:26] cawiki | Modifying gb_address field of table globalblocks...done. [23:24:26] cawiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] cawiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] cawiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] cawiki | Skipped 241 updates that were already applied. [23:24:26] cawiki | Purging caches... [23:24:26] cawiki | Done in 6.0 s. [23:24:26] dewiktionary | MediaWiki 1.47.0-alpha Updater [23:24:26] dewiktionary | [23:24:26] dewiktionary | Your composer.lock file is up to date with current dependencies [23:24:26] dewiktionary | Going to run database updates for dewiktionary [23:24:26] dewiktionary | Depending on the size of your database this may take a while! [23:24:26] dewiktionary | Modifying gb_id field of table globalblocks...done. [23:24:26] dewiktionary | Modifying gb_address field of table globalblocks...done. [23:24:26] dewiktionary | Skipped 209 updates that were already applied. [23:24:26] dewiktionary | Purging caches... [23:24:26] dewiktionary | Done in 3.2 s. [23:24:26] enwikinews | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikinews | [23:24:26] enwikinews | Your composer.lock file is up to date with current dependencies [23:24:26] enwikinews | Going to run database updates for enwikinews [23:24:26] enwikinews | Depending on the size of your database this may take a while! [23:24:26] enwikinews | Skipped 187 updates that were already applied. [23:24:26] enwikinews | Purging caches... [23:24:26] enwikinews | Done in 2.3 s. [23:24:26] enwikibooks | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikibooks | [23:24:26] enwikibooks | Your composer.lock file is up to date with current dependencies [23:24:26] enwikibooks | Going to run database updates for enwikibooks [23:24:26] enwikibooks | Depending on the size of your database this may take a while! [23:24:26] enwikibooks | Modifying gb_id field of table globalblocks...done. [23:24:26] enwikibooks | Modifying gb_address field of table globalblocks...done. [23:24:26] enwikibooks | Skipped 208 updates that were already applied. [23:24:26] enwikibooks | Purging caches... [23:24:26] enwikibooks | Done in 2.7 s. [23:24:26] enwikiquote | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikiquote | [23:24:26] enwikiquote | Your composer.lock file is up to date with current dependencies [23:24:26] enwikiquote | Going to run database updates for enwikiquote [23:24:26] enwikiquote | Depending on the size of your database this may take a while! [23:24:26] enwikiquote | Modifying gb_id field of table globalblocks...done. [23:24:26] enwikiquote | Modifying gb_address field of table globalblocks...done. [23:24:26] enwikiquote | Skipped 197 updates that were already applied. [23:24:26] enwikiquote | Purging caches... [23:24:26] enwikiquote | Done in 2.8 s. [23:24:26] enwikisource | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikisource | [23:24:26] enwikisource | Your composer.lock file is up to date with current dependencies [23:24:26] enwikisource | Going to run database updates for enwikisource [23:24:26] enwikisource | Depending on the size of your database this may take a while! [23:24:26] enwikisource | Modifying gb_id field of table globalblocks...done. [23:24:26] enwikisource | Modifying gb_address field of table globalblocks...done. [23:24:26] enwikisource | Skipped 200 updates that were already applied. [23:24:26] enwikisource | Purging caches... [23:24:26] enwikisource | Done in 2.7 s. [23:24:26] enwikiversity | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikiversity | [23:24:26] enwikiversity | Your composer.lock file is up to date with current dependencies [23:24:26] enwikiversity | Going to run database updates for enwikiversity [23:24:26] enwikiversity | Depending on the size of your database this may take a while! [23:24:26] enwikiversity | Modifying gb_id field of table globalblocks...done. [23:24:26] enwikiversity | Modifying gb_address field of table globalblocks...done. [23:24:26] enwikiversity | Skipped 197 updates that were already applied. [23:24:26] enwikiversity | Purging caches... [23:24:26] enwikiversity | Done in 2.6 s. [23:24:26] enwiktionary | MediaWiki 1.47.0-alpha Updater [23:24:26] enwiktionary | [23:24:26] enwiktionary | Your composer.lock file is up to date with current dependencies [23:24:26] enwiktionary | Going to run database updates for enwiktionary [23:24:26] enwiktionary | Depending on the size of your database this may take a while! [23:24:26] enwiktionary | Modifying gb_id field of table globalblocks...done. [23:24:26] enwiktionary | Modifying gb_address field of table globalblocks...done. [23:24:26] enwiktionary | Skipped 205 updates that were already applied. [23:24:26] enwiktionary | Purging caches... [23:24:26] enwiktionary | Done in 3.0 s. [23:24:26] enwikivoyage | MediaWiki 1.47.0-alpha Updater [23:24:26] enwikivoyage | [23:24:26] enwikivoyage | Your composer.lock file is up to date with current dependencies [23:24:26] enwikivoyage | Going to run database updates for enwikivoyage [23:24:26] enwikivoyage | Depending on the size of your database this may take a while! [23:24:26] enwikivoyage | Modifying gb_id field of table globalblocks...done. [23:24:26] enwikivoyage | Modifying gb_address field of table globalblocks...done. [23:24:26] enwikivoyage | Modifying cxl_end_time field of table cx_lists...done. [23:24:26] enwikivoyage | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:26] enwikivoyage | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:26] enwikivoyage | Skipped 221 updates that were already applied. [23:24:26] enwikivoyage | Purging caches... [23:24:39] enwikivoyage | Done in 4.2 s. [23:24:39] eswiki | MediaWiki 1.47.0-alpha Updater [23:24:39] eswiki | [23:24:39] eswiki | Your composer.lock file is up to date with current dependencies [23:24:39] eswiki | Going to run database updates for eswiki [23:24:39] eswiki | Depending on the size of your database this may take a while! [23:24:39] eswiki | Modifying gb_id field of table globalblocks...done. [23:24:39] eswiki | Modifying gb_address field of table globalblocks...done. [23:24:39] eswiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] eswiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] eswiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] eswiki | Skipped 228 updates that were already applied. [23:24:39] eswiki | Purging caches... [23:24:39] eswiki | Done in 4.6 s. [23:24:39] eswikibooks | MediaWiki 1.47.0-alpha Updater [23:24:39] eswikibooks | [23:24:39] eswikibooks | Your composer.lock file is up to date with current dependencies [23:24:39] eswikibooks | Going to run database updates for eswikibooks [23:24:39] eswikibooks | Depending on the size of your database this may take a while! [23:24:39] eswikibooks | Modifying gb_id field of table globalblocks...done. [23:24:39] eswikibooks | Modifying gb_address field of table globalblocks...done. [23:24:39] eswikibooks | Skipped 201 updates that were already applied. [23:24:39] eswikibooks | Purging caches... [23:24:39] eswikibooks | Done in 3.5 s. [23:24:39] eowiki | MediaWiki 1.47.0-alpha Updater [23:24:39] eowiki | [23:24:39] eowiki | Your composer.lock file is up to date with current dependencies [23:24:39] eowiki | Going to run database updates for eowiki [23:24:39] eowiki | Depending on the size of your database this may take a while! [23:24:39] eowiki | Modifying gb_id field of table globalblocks...done. [23:24:39] eowiki | Modifying gb_address field of table globalblocks...done. [23:24:39] eowiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] eowiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] eowiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] eowiki | Skipped 249 updates that were already applied. [23:24:39] eowiki | Purging caches... [23:24:39] eowiki | Done in 4.9 s. [23:24:39] dewiki | MediaWiki 1.47.0-alpha Updater [23:24:39] dewiki | [23:24:39] dewiki | Your composer.lock file is up to date with current dependencies [23:24:39] dewiki | Going to run database updates for dewiki [23:24:39] dewiki | Depending on the size of your database this may take a while! [23:24:39] dewiki | Modifying gb_id field of table globalblocks...done. [23:24:39] dewiki | Modifying gb_address field of table globalblocks...done. [23:24:39] dewiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] dewiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] dewiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] dewiki | Skipped 249 updates that were already applied. [23:24:39] dewiki | Purging caches... [23:24:39] dewiki | Done in 16 s. [23:24:39] foundationwiki | MediaWiki 1.47.0-alpha Updater [23:24:39] foundationwiki | [23:24:39] foundationwiki | Your composer.lock file is up to date with current dependencies [23:24:39] foundationwiki | Going to run database updates for foundationwiki [23:24:39] foundationwiki | Depending on the size of your database this may take a while! [23:24:39] foundationwiki | Modifying gb_id field of table globalblocks...done. [23:24:39] foundationwiki | Modifying gb_address field of table globalblocks...done. [23:24:39] foundationwiki | Skipped 223 updates that were already applied. [23:24:39] foundationwiki | Purging caches... [23:24:39] foundationwiki | Done in 3.7 s. [23:24:39] fawiki | MediaWiki 1.47.0-alpha Updater [23:24:39] fawiki | [23:24:39] fawiki | Your composer.lock file is up to date with current dependencies [23:24:39] fawiki | Going to run database updates for fawiki [23:24:39] fawiki | Depending on the size of your database this may take a while! [23:24:39] fawiki | Modifying gb_id field of table globalblocks...done. [23:24:39] fawiki | Modifying gb_address field of table globalblocks...done. [23:24:39] fawiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] fawiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] fawiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] fawiki | Skipped 254 updates that were already applied. [23:24:39] fawiki | Purging caches... [23:24:39] fawiki | Done in 5.9 s. [23:24:39] frwiktionary | MediaWiki 1.47.0-alpha Updater [23:24:39] frwiktionary | [23:24:39] frwiktionary | Your composer.lock file is up to date with current dependencies [23:24:39] frwiktionary | Going to run database updates for frwiktionary [23:24:39] frwiktionary | Depending on the size of your database this may take a while! [23:24:39] frwiktionary | Modifying gb_id field of table globalblocks...done. [23:24:39] frwiktionary | Modifying gb_address field of table globalblocks...done. [23:24:39] frwiktionary | Skipped 232 updates that were already applied. [23:24:39] frwiktionary | Purging caches... [23:24:39] frwiktionary | Done in 4.5 s. [23:24:39] enwiki | MediaWiki 1.47.0-alpha Updater [23:24:39] enwiki | [23:24:39] enwiki | Your composer.lock file is up to date with current dependencies [23:24:39] enwiki | Going to run database updates for enwiki [23:24:39] enwiki | Depending on the size of your database this may take a while! [23:24:39] enwiki | Modifying gb_id field of table globalblocks...done. [23:24:39] enwiki | Modifying gb_address field of table globalblocks...done. [23:24:39] enwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] enwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] enwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] enwiki | Skipped 260 updates that were already applied. [23:24:39] enwiki | Purging caches... [23:24:39] enwiki | Done in 14 s. [23:24:39] hewiktionary | MediaWiki 1.47.0-alpha Updater [23:24:39] hewiktionary | [23:24:39] hewiktionary | Your composer.lock file is up to date with current dependencies [23:24:39] hewiktionary | Going to run database updates for hewiktionary [23:24:39] hewiktionary | Depending on the size of your database this may take a while! [23:24:39] hewiktionary | Modifying gb_id field of table globalblocks...done. [23:24:39] hewiktionary | Modifying gb_address field of table globalblocks...done. [23:24:39] hewiktionary | Skipped 203 updates that were already applied. [23:24:39] hewiktionary | Purging caches... [23:24:39] hewiktionary | Done in 3.3 s. [23:24:39] loginwiki | MediaWiki 1.47.0-alpha Updater [23:24:39] loginwiki | [23:24:39] loginwiki | Your composer.lock file is up to date with current dependencies [23:24:39] loginwiki | Going to run database updates for loginwiki [23:24:39] loginwiki | Depending on the size of your database this may take a while! [23:24:39] loginwiki | Modifying gb_id field of table globalblocks...done. [23:24:39] loginwiki | Modifying gb_address field of table globalblocks...done. [23:24:39] loginwiki | Skipped 137 updates that were already applied. [23:24:39] loginwiki | Purging caches... [23:24:39] loginwiki | Done in 2.2 s. [23:24:39] incubatorwiki | MediaWiki 1.47.0-alpha Updater [23:24:39] incubatorwiki | [23:24:39] incubatorwiki | Your composer.lock file is up to date with current dependencies [23:24:39] incubatorwiki | Going to run database updates for incubatorwiki [23:24:39] incubatorwiki | Depending on the size of your database this may take a while! [23:24:39] incubatorwiki | Modifying gb_id field of table globalblocks...done. [23:24:39] incubatorwiki | Modifying gb_address field of table globalblocks...done. [23:24:39] incubatorwiki | Skipped 226 updates that were already applied. [23:24:39] incubatorwiki | Purging caches... [23:24:39] incubatorwiki | Done in 3.3 s. [23:24:39] hiwiki | MediaWiki 1.47.0-alpha Updater [23:24:39] hiwiki | [23:24:39] hiwiki | Your composer.lock file is up to date with current dependencies [23:24:39] hiwiki | Going to run database updates for hiwiki [23:24:39] hiwiki | Depending on the size of your database this may take a while! [23:24:39] hiwiki | Modifying gb_id field of table globalblocks...done. [23:24:39] hiwiki | Modifying gb_address field of table globalblocks...done. [23:24:39] hiwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] hiwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] hiwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] hiwiki | Skipped 237 updates that were already applied. [23:24:39] hiwiki | Purging caches... [23:24:39] hiwiki | Done in 4.6 s. [23:24:39] kowiki | MediaWiki 1.47.0-alpha Updater [23:24:39] kowiki | [23:24:39] kowiki | Your composer.lock file is up to date with current dependencies [23:24:39] kowiki | Going to run database updates for kowiki [23:24:39] kowiki | Depending on the size of your database this may take a while! [23:24:39] kowiki | Modifying gb_id field of table globalblocks...done. [23:24:39] kowiki | Modifying gb_address field of table globalblocks...done. [23:24:39] kowiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:39] kowiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:39] kowiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:39] kowiki | Skipped 228 updates that were already applied. [23:24:39] kowiki | Purging caches... [23:24:39] kowiki | Done in 4.1 s. [23:24:39] metawiki | MediaWiki 1.47.0-alpha Updater [23:24:39] metawiki | [23:24:39] metawiki | Your composer.lock file is up to date with current dependencies [23:24:39] metawiki | Going to run database updates for metawiki [23:24:39] metawiki | Depending on the size of your database this may take a while! [23:24:39] metawiki | Modifying gb_id field of table globalblocks...done. [23:24:39] metawiki | Modifying gb_address field of table globalblocks...done. [23:24:39] metawiki | Skipped 227 updates that were already applied. [23:24:39] metawiki | Purging caches... [23:24:57] metawiki | Done in 3.3 s. [23:24:57] plwikivoyage | MediaWiki 1.47.0-alpha Updater [23:24:57] plwikivoyage | [23:24:57] plwikivoyage | Your composer.lock file is up to date with current dependencies [23:24:57] plwikivoyage | Going to run database updates for plwikivoyage [23:24:57] plwikivoyage | Depending on the size of your database this may take a while! [23:24:57] plwikivoyage | Modifying gb_id field of table globalblocks...done. [23:24:57] plwikivoyage | Modifying gb_address field of table globalblocks...done. [23:24:57] plwikivoyage | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] plwikivoyage | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] plwikivoyage | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] plwikivoyage | Skipped 219 updates that were already applied. [23:24:57] plwikivoyage | Purging caches... [23:24:57] plwikivoyage | Done in 4.3 s. [23:24:57] nlwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] nlwiki | [23:24:57] nlwiki | Your composer.lock file is up to date with current dependencies [23:24:57] nlwiki | Going to run database updates for nlwiki [23:24:57] nlwiki | Depending on the size of your database this may take a while! [23:24:57] nlwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] nlwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] nlwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] nlwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] nlwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] nlwiki | Skipped 228 updates that were already applied. [23:24:57] nlwiki | Purging caches... [23:24:57] nlwiki | Done in 4.5 s. [23:24:57] simplewiki | MediaWiki 1.47.0-alpha Updater [23:24:57] simplewiki | [23:24:57] simplewiki | Your composer.lock file is up to date with current dependencies [23:24:57] simplewiki | Going to run database updates for simplewiki [23:24:57] simplewiki | Depending on the size of your database this may take a while! [23:24:57] simplewiki | Modifying gb_id field of table globalblocks...done. [23:24:57] simplewiki | Modifying gb_address field of table globalblocks...done. [23:24:57] simplewiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] simplewiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] simplewiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] simplewiki | Skipped 226 updates that were already applied. [23:24:57] simplewiki | Purging caches... [23:24:57] simplewiki | Done in 3.6 s. [23:24:57] sqwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] sqwiki | [23:24:57] sqwiki | Your composer.lock file is up to date with current dependencies [23:24:57] sqwiki | Going to run database updates for sqwiki [23:24:57] sqwiki | Depending on the size of your database this may take a while! [23:24:57] sqwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] sqwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] sqwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] sqwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] sqwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] sqwiki | Skipped 239 updates that were already applied. [23:24:57] sqwiki | Purging caches... [23:24:57] sqwiki | Done in 3.9 s. [23:24:57] srwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] srwiki | [23:24:57] srwiki | Your composer.lock file is up to date with current dependencies [23:24:57] srwiki | Going to run database updates for srwiki [23:24:57] srwiki | Depending on the size of your database this may take a while! [23:24:57] srwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] srwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] srwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] srwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] srwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] srwiki | Skipped 228 updates that were already applied. [23:24:57] srwiki | Purging caches... [23:24:57] srwiki | Done in 4.1 s. [23:24:57] svwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] svwiki | [23:24:57] svwiki | Your composer.lock file is up to date with current dependencies [23:24:57] svwiki | Going to run database updates for svwiki [23:24:57] svwiki | Depending on the size of your database this may take a while! [23:24:57] svwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] svwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] svwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] svwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] svwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] svwiki | Skipped 243 updates that were already applied. [23:24:57] svwiki | Purging caches... [23:24:57] svwiki | Done in 3.9 s. [23:24:57] test2wiki | MediaWiki 1.47.0-alpha Updater [23:24:57] test2wiki | [23:24:57] test2wiki | Your composer.lock file is up to date with current dependencies [23:24:57] test2wiki | Going to run database updates for test2wiki [23:24:57] test2wiki | Depending on the size of your database this may take a while! [23:24:57] test2wiki | Modifying gb_id field of table globalblocks...done. [23:24:57] test2wiki | Modifying gb_address field of table globalblocks...done. [23:24:57] test2wiki | Skipped 242 updates that were already applied. [23:24:57] test2wiki | Purging caches... [23:24:57] test2wiki | Done in 3.2 s. [23:24:57] hewiki | MediaWiki 1.47.0-alpha Updater [23:24:57] hewiki | [23:24:57] hewiki | Your composer.lock file is up to date with current dependencies [23:24:57] hewiki | Going to run database updates for hewiki [23:24:57] hewiki | Depending on the size of your database this may take a while! [23:24:57] hewiki | Modifying gb_id field of table globalblocks...done. [23:24:57] hewiki | Modifying gb_address field of table globalblocks...done. [23:24:57] hewiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] hewiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] hewiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] hewiki | Skipped 243 updates that were already applied. [23:24:57] hewiki | Purging caches... [23:24:57] hewiki | Done in 24 s. [23:24:57] testwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] testwiki | [23:24:57] testwiki | Your composer.lock file is up to date with current dependencies [23:24:57] testwiki | Going to run database updates for testwiki [23:24:57] testwiki | Depending on the size of your database this may take a while! [23:24:57] testwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] testwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] testwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] testwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] testwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] testwiki | Skipped 284 updates that were already applied. [23:24:57] testwiki | Purging caches... [23:24:57] testwiki | Done in 7.4 s. [23:24:57] viwiki | MediaWiki 1.47.0-alpha Updater [23:24:57] viwiki | [23:24:57] viwiki | Your composer.lock file is up to date with current dependencies [23:24:57] viwiki | Going to run database updates for viwiki [23:24:57] viwiki | Depending on the size of your database this may take a while! [23:24:57] viwiki | Modifying gb_id field of table globalblocks...done. [23:24:57] viwiki | Modifying gb_address field of table globalblocks...done. [23:24:57] viwiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] viwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] viwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] viwiki | Skipped 225 updates that were already applied. [23:24:57] viwiki | Purging caches... [23:24:57] viwiki | Done in 5.4 s. [23:24:57] votewiki | MediaWiki 1.47.0-alpha Updater [23:24:57] votewiki | [23:24:57] votewiki | Your composer.lock file is up to date with current dependencies [23:24:57] votewiki | Going to run database updates for votewiki [23:24:57] votewiki | Depending on the size of your database this may take a while! [23:24:57] votewiki | Skipped 118 updates that were already applied. [23:24:57] votewiki | Purging caches... [23:24:57] votewiki | Done in 1.9 s. [23:24:57] commonswiki | MediaWiki 1.47.0-alpha Updater [23:24:57] commonswiki | [23:24:57] commonswiki | Your composer.lock file is up to date with current dependencies [23:24:57] commonswiki | Going to run database updates for commonswiki [23:24:57] commonswiki | Depending on the size of your database this may take a while! [23:24:57] commonswiki | Modifying gb_id field of table globalblocks...done. [23:24:57] commonswiki | Modifying gb_address field of table globalblocks...done. [23:24:57] commonswiki | Skipped 255 updates that were already applied. [23:24:57] commonswiki | Set the local repo temp zone container to be private. [23:24:57] commonswiki | Purging caches... [23:24:57] commonswiki | Done in 43 s. [23:24:57] jawiki | MediaWiki 1.47.0-alpha Updater [23:24:57] jawiki | [23:24:57] jawiki | Your composer.lock file is up to date with current dependencies [23:24:57] jawiki | Going to run database updates for jawiki [23:24:57] jawiki | Depending on the size of your database this may take a while! [23:24:57] jawiki | Modifying gb_id field of table globalblocks...done. [23:24:57] jawiki | Modifying gb_address field of table globalblocks...done. [23:24:57] jawiki | Modifying cxl_end_time field of table cx_lists...done. [23:24:57] jawiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:24:57] jawiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:24:57] jawiki | Skipped 225 updates that were already applied. [23:24:57] jawiki | Purging caches... [23:25:13] jawiki | Done in 24 s. [23:25:13] frwiki | MediaWiki 1.47.0-alpha Updater [23:25:13] frwiki | [23:25:13] frwiki | Your composer.lock file is up to date with current dependencies [23:25:13] frwiki | Going to run database updates for frwiki [23:25:13] frwiki | Depending on the size of your database this may take a while! [23:25:13] frwiki | Modifying gb_id field of table globalblocks...done. [23:25:13] frwiki | Modifying gb_address field of table globalblocks...done. [23:25:13] frwiki | Modifying cxl_end_time field of table cx_lists...done. [23:25:13] frwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:25:13] frwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:25:13] frwiki | Skipped 226 updates that were already applied. [23:25:13] frwiki | Purging caches... [23:25:13] frwiki | Done in 29 s. [23:25:13] wikidatawiki | MediaWiki 1.47.0-alpha Updater [23:25:13] wikidatawiki | [23:25:13] wikidatawiki | Your composer.lock file is up to date with current dependencies [23:25:13] wikidatawiki | Going to run database updates for wikidatawiki [23:25:13] wikidatawiki | Depending on the size of your database this may take a while! [23:25:13] wikidatawiki | Modifying gb_id field of table globalblocks...done. [23:25:13] wikidatawiki | Modifying gb_address field of table globalblocks...done. [23:25:13] wikidatawiki | Skipped 265 updates that were already applied. [23:25:13] wikidatawiki | Purging caches... [23:25:13] wikidatawiki | Done in 4.8 s. [23:25:13] ruwiki | MediaWiki 1.47.0-alpha Updater [23:25:13] ruwiki | [23:25:13] ruwiki | Your composer.lock file is up to date with current dependencies [23:25:13] ruwiki | Going to run database updates for ruwiki [23:25:13] ruwiki | Depending on the size of your database this may take a while! [23:25:13] ruwiki | Modifying gb_id field of table globalblocks...done. [23:25:13] ruwiki | Modifying gb_address field of table globalblocks...done. [23:25:13] ruwiki | Modifying cxl_end_time field of table cx_lists...done. [23:25:13] ruwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:25:13] ruwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:25:13] ruwiki | Skipped 254 updates that were already applied. [23:25:13] ruwiki | Purging caches... [23:25:13] ruwiki | Done in 21 s. [23:25:13] ukwiki | MediaWiki 1.47.0-alpha Updater [23:25:13] ukwiki | [23:25:13] ukwiki | Your composer.lock file is up to date with current dependencies [23:25:13] ukwiki | Going to run database updates for ukwiki [23:25:13] ukwiki | Depending on the size of your database this may take a while! [23:25:13] ukwiki | Modifying gb_id field of table globalblocks...done. [23:25:13] ukwiki | Modifying gb_address field of table globalblocks...done. [23:25:13] ukwiki | Modifying cxl_end_time field of table cx_lists...done. [23:25:13] ukwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:25:13] ukwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:25:13] ukwiki | Skipped 239 updates that were already applied. [23:25:13] ukwiki | Purging caches... [23:25:13] ukwiki | Done in 14 s. [23:25:13] zhwikivoyage | MediaWiki 1.47.0-alpha Updater [23:25:13] zhwikivoyage | [23:25:13] zhwikivoyage | Your composer.lock file is up to date with current dependencies [23:25:13] zhwikivoyage | Going to run database updates for zhwikivoyage [23:25:13] zhwikivoyage | Depending on the size of your database this may take a while! [23:25:13] zhwikivoyage | Modifying gb_id field of table globalblocks...done. [23:25:13] zhwikivoyage | Modifying gb_address field of table globalblocks...done. [23:25:13] zhwikivoyage | Modifying cxl_end_time field of table cx_lists...done. [23:25:13] zhwikivoyage | Modifying cxc_timestamp field of table cx_corpora...done. [23:25:13] zhwikivoyage | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:25:13] zhwikivoyage | Skipped 221 updates that were already applied. [23:25:13] zhwikivoyage | Purging caches... [23:25:13] zhwikivoyage | Done in 8.5 s. [23:25:13] zhwiki | MediaWiki 1.47.0-alpha Updater [23:25:13] zhwiki | [23:25:13] zhwiki | Your composer.lock file is up to date with current dependencies [23:25:13] zhwiki | Going to run database updates for zhwiki [23:25:13] zhwiki | Depending on the size of your database this may take a while! [23:25:13] zhwiki | Modifying gb_id field of table globalblocks...done. [23:25:13] zhwiki | Modifying gb_address field of table globalblocks...done. [23:25:13] zhwiki | Modifying cxl_end_time field of table cx_lists...done. [23:25:13] zhwiki | Modifying cxc_timestamp field of table cx_corpora...done. [23:25:13] zhwiki | Modifying translation_last_updated_timestamp field of table cx_translations...done. [23:25:13] zhwiki | Skipped 249 updates that were already applied. [23:25:13] zhwiki | Purging caches... [23:25:13] zhwiki | Done in 18 s. [23:25:13] Updated 47 wikis.