From b8cb93c41d2bc578315d4b8fed706f37f536a477 Mon Sep 17 00:00:00 2001 From: Istvan Soos Date: Tue, 1 Apr 2025 13:31:36 +0200 Subject: [PATCH] Bump runtimeVersion + changelog note on text match search --- CHANGELOG.md | 2 ++ app/lib/shared/versions.dart | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed6992c3b..b2c4a026c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ Important changes to data models, configuration, and migrations between each AppEngine version, listed here to ease deployment and troubleshooting. ## Next Release (replace with git tag when deployed) + * Bump runtimeVersion to `2025.04.01`. + * Note: search latency influences text match scope. This is limited to the local index, and thresholds apply only API matching - the other levels are log-only for now. ## `20250327t095100-all` * Bump runtimeVersion to `2025.03.27`. diff --git a/app/lib/shared/versions.dart b/app/lib/shared/versions.dart index f5fd813def..aba85b82c3 100644 --- a/app/lib/shared/versions.dart +++ b/app/lib/shared/versions.dart @@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$'); /// when the version switch happens. const _acceptedRuntimeVersions = [ // The current [runtimeVersion]. - '2025.03.27', + '2025.04.01', // Fallback runtime versions. + '2025.03.27', '2025.03.18', - '2025.03.10', ]; /// Sets the current runtime versions.