Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ AppEngine version, listed here to ease deployment and troubleshooting.

## Next Release (replace with git tag when deployed)
* Note: `search` increased `description` weight from `0.9` to `1.0`.
* Bump runtimeVersion to `2024.11.08`.

## `20241107t132800-all`
* `search` uses the `IndexedScore` to reduce memory allocations.
Expand Down
3 changes: 2 additions & 1 deletion app/lib/shared/versions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
/// when the version switch happens.
const _acceptedRuntimeVersions = <String>[
// The current [runtimeVersion].
'2024.10.29',
'2024.11.08',
// Fallback runtime versions.
'2024.10.29',
'2024.10.21',
'2024.10.15',
];
Expand Down
Loading