diff options
author | Timo Tijhof <krinkle@fastmail.com> | 2023-10-03 10:58:00 -0700 |
---|---|---|
committer | Timo Tijhof <krinkle@fastmail.com> | 2023-10-03 10:58:00 -0700 |
commit | eadbde08c7bc9cdf6a682df4ebec92a478f1f15c (patch) | |
tree | fc0fc87cc5ec8839cb92393647f9c34399bae2b0 | |
parent | ff3308bf97fe8f4ce2b9fd6d0ca5afbd6aae62f1 (diff) | |
download | mediawikicore-eadbde08c7bc9cdf6a682df4ebec92a478f1f15c.tar.gz mediawikicore-eadbde08c7bc9cdf6a682df4ebec92a478f1f15c.zip |
ResourceLoader: Bump STORAGE_VERSION
Follow-up to enabling of wgResourceLoaderEnableSourceMapLinks by
default, to ensure local storage rolls over, which prevents cases
where modules that rarely change appear unmapped due to stale
cache entries.
Bug: T47514
Change-Id: I1956fc28a1eece28ca579f853bc1538927b0a497
-rw-r--r-- | includes/ResourceLoader/StartUpModule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/ResourceLoader/StartUpModule.php b/includes/ResourceLoader/StartUpModule.php index b19049384fea..a11b7805a8bc 100644 --- a/includes/ResourceLoader/StartUpModule.php +++ b/includes/ResourceLoader/StartUpModule.php @@ -51,7 +51,7 @@ class StartUpModule extends Module { * Cache version for client-side ResourceLoader module storage. * Like ResourceLoaderStorageVersion but not configurable. */ - private const STORAGE_VERSION = '1.41'; + private const STORAGE_VERSION = '2'; private $groupIds = [ // These reserved numbers MUST start at 0 and not skip any. These are preset |