From 5dcfc156e71faf597a3932ceca3c4fabcf082da5 Mon Sep 17 00:00:00 2001 From: Petr Vecera Date: Thu, 26 Sep 2024 18:55:12 +0200 Subject: [PATCH] Update to patch 181 --- config.ts | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/config.ts b/config.ts index 5a9a6086..69a21cca 100644 --- a/config.ts +++ b/config.ts @@ -42,7 +42,7 @@ const getEdgioEnvName = (): string | null => { }; // This controls the default patch selector in the stats page // this needs to be key statsPatchSelector object -const defaultStatsPatchSelector = "1.8.0"; +const defaultStatsPatchSelector = "1.8.1"; // This controls the patch selector in the stats page const statsPatchSelector: Record< @@ -55,9 +55,16 @@ const statsPatchSelector: Record< group: string; } > = { + "1.8.1": { + from: "2024-09-26", + to: "now", + value: "1.8.1", + label: "1.8.1", + group: "Patch 1.8.x", + }, "1.8.0": { from: "2024-09-17", - to: "now", + to: "2024-09-25", value: "1.8.0", label: "1.8.0", group: "Patch 1.8.x", @@ -173,11 +180,15 @@ const statsPatchSelector: Record< }; // Latest patch needs to be a key to patches object -const latestPatch = "1.8.0"; +const latestPatch = "1.8.1"; // Get patchTimeSeconds here https://www.unixtimestamp.com/ const patches: Record = { + "1.8.1": { + dataTag: "v1.8.1-1", + dataTime: "25/Sep/2024", + }, "1.8.0": { dataTag: "v1.8.0-1", dataTime: "17/Sep/2024",