Skip to content
Open
Changes from all commits
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
3 changes: 1 addition & 2 deletions scripts/resolve-fork-stable-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ export function resolveForkStableReleaseMetadata(
const month = Number(date.slice(4, 6));
const day = Number(date.slice(6, 8));
const daySlot = day * 100;
// TODO: Remove +tarik02 matching after the 2026-07-29 release transition.
const tagPattern = new RegExp(`^v?${year}\\.${month}\\.([0-9]+)(?:\\+tarik02(?:\\.[0-9]+)?)?$`);
const tagPattern = new RegExp(`^v?${year}\\.${month}\\.([0-9]+)$`);
let maxSequence = 0;

for (const tag of tags) {
Expand Down
Loading