From 213f3a45e11ca047d9f76ee772beb9af61c03f46 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 28 Mar 2025 17:16:56 +0100 Subject: [PATCH] fix(cli): pin encodeHex to 1.0.4 to work with dnt --- cli/deno.lock | 1 + cli/deps.ts | 2 +- cli/gen/core/OpenAPI.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/deno.lock b/cli/deno.lock index b1ff9b9a2b..a0a4c6ce2e 100644 --- a/cli/deno.lock +++ b/cli/deno.lock @@ -14,6 +14,7 @@ "jsr:@std/cli@1.0.0-rc.2": "1.0.0-rc.2", "jsr:@std/encoding@*": "1.0.4", "jsr:@std/encoding@1.0.0-rc.2": "1.0.0-rc.2", + "jsr:@std/encoding@1.0.4": "1.0.4", "jsr:@std/encoding@^1.0.4": "1.0.4", "jsr:@std/fmt@0.223": "0.223.0", "jsr:@std/fmt@1": "1.0.2", diff --git a/cli/deps.ts b/cli/deps.ts index 53e96a4f9c..23fd292365 100644 --- a/cli/deps.ts +++ b/cli/deps.ts @@ -15,7 +15,7 @@ export { CompletionsCommand } from "jsr:@windmill-labs/cliffy-command@1.0.0-rc.5 export { ensureDir } from "jsr:@std/fs"; export { SEPARATOR as SEP } from "jsr:@std/path"; export * as path from "jsr:@std/path"; -export { encodeHex } from "jsr:@std/encoding"; +export { encodeHex } from "jsr:@std/encoding@1.0.4"; export { writeAllSync } from "jsr:@std/io/write-all"; export { copy } from "jsr:@std/io/copy"; export { readAll } from "jsr:@std/io/read-all"; diff --git a/cli/gen/core/OpenAPI.ts b/cli/gen/core/OpenAPI.ts index fca29e4c1b..86dbabed40 100644 --- a/cli/gen/core/OpenAPI.ts +++ b/cli/gen/core/OpenAPI.ts @@ -54,7 +54,7 @@ export const OpenAPI: OpenAPIConfig = { PASSWORD: undefined, TOKEN: getEnv("WM_TOKEN"), USERNAME: undefined, - VERSION: '1.479.0', + VERSION: '1.479.2', WITH_CREDENTIALS: true, interceptors: { request: new Interceptors(),