From 7b01f1daa735073b5c9c517c63b7dd082d5a11fc Mon Sep 17 00:00:00 2001 From: jpsc Date: Thu, 17 Oct 2024 11:00:40 +0200 Subject: [PATCH] feat(constants): update version The current version is reaching the 1 year limit of support. --- src/cloudflared/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloudflared/constants.ts b/src/cloudflared/constants.ts index cfebe91..0493961 100644 --- a/src/cloudflared/constants.ts +++ b/src/cloudflared/constants.ts @@ -7,7 +7,7 @@ import { tmpdir } from "node:os"; import path from "pathe"; export const CLOUDFLARED_VERSION = - process.env.CLOUDFLARED_VERSION || "2023.10.0"; + process.env.CLOUDFLARED_VERSION || "2024.10.0"; export const RELEASE_BASE = "https://github.com/cloudflare/cloudflared/releases/";