From 688129051d7bc5f94fa3479c210b20a480f9da9a Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sun, 13 Jul 2025 13:14:25 +0200 Subject: [PATCH] chore(main): release 1.505.1 (#6168) * chore(main): release 1.505.1 * Apply automatic changes --------- Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com> --- CHANGELOG.md | 9 ++ backend/Cargo.lock | 140 +++++++++--------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 2 +- benchmarks/lib.ts | 2 +- cli/main.ts | 2 +- frontend/package-lock.json | 4 +- frontend/package.json | 2 +- lsp/Pipfile | 4 +- openflow.openapi.yaml | 2 +- .../WindmillClient/WindmillClient.psd1 | 2 +- python-client/wmill/pyproject.toml | 2 +- python-client/wmill_pg/pyproject.toml | 2 +- typescript-client/jsr.json | 2 +- typescript-client/package.json | 2 +- version.txt | 2 +- 16 files changed, 95 insertions(+), 88 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d26a3eb59..2f112c3781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.505.1](https://github.com/windmill-labs/windmill/compare/v1.505.0...v1.505.1) (2025-07-13) + + +### Bug Fixes + +* prevent workers from being stuck on kill signal ([e630170](https://github.com/windmill-labs/windmill/commit/e6301702f5b48d642ff0ce087242d1e6b184d03c)) +* set urllib user-agent header in loader.py (cloudflare block) ([#6169](https://github.com/windmill-labs/windmill/issues/6169)) ([d93ef6a](https://github.com/windmill-labs/windmill/commit/d93ef6acfaf39138e023f77b9fd5d744382f48e0)) +* worker symlink dir + path fixes + npm postinstall on windows ([#6167](https://github.com/windmill-labs/windmill/issues/6167)) ([9a8bed1](https://github.com/windmill-labs/windmill/commit/9a8bed128f21c31648cbb48a74892c2de59e4b24)) + ## [1.505.0](https://github.com/windmill-labs/windmill/compare/v1.504.0...v1.505.0) (2025-07-11) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index aaabae3f3d..20522cba61 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1763,7 +1763,7 @@ dependencies = [ "byteorder", "gemm 0.17.1", "half", - "memmap2 0.9.5", + "memmap2 0.9.7", "num-traits", "num_cpus", "rand 0.9.0", @@ -1927,23 +1927,12 @@ dependencies = [ [[package]] name = "chrono-tz" -version = "0.10.3" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3" +checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" dependencies = [ "chrono", - "chrono-tz-build", - "phf", -] - -[[package]] -name = "chrono-tz-build" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402" -dependencies = [ - "parse-zoneinfo", - "phf_codegen", + "phf 0.12.1", ] [[package]] @@ -3350,7 +3339,7 @@ dependencies = [ "jsonc-parser", "log", "percent-encoding", - "phf", + "phf 0.11.3", "serde", "serde_json", "sys_traits", @@ -3609,7 +3598,7 @@ dependencies = [ "mime", "once_cell", "percent-encoding", - "phf", + "phf 0.11.3", "pin-project", "ring 0.17.14", "scopeguard", @@ -6286,7 +6275,7 @@ dependencies = [ "hashbrown 0.14.5", "new_debug_unreachable", "once_cell", - "phf", + "phf 0.11.3", "rustc-hash 1.1.0", "triomphe", ] @@ -7717,9 +7706,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.5" +version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28" dependencies = [ "libc", "stable_deref_trait", @@ -9108,15 +9097,6 @@ dependencies = [ "zstd", ] -[[package]] -name = "parse-zoneinfo" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" -dependencies = [ - "regex", -] - [[package]] name = "password-hash" version = "0.5.0" @@ -9218,7 +9198,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c7bc82ccbe2c7ef7ceed38dcac90d7ff46681e061e9d7310cbcd409113e303" dependencies = [ - "phf", + "phf 0.11.3", ] [[package]] @@ -9228,7 +9208,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" +dependencies = [ + "phf_shared 0.12.1", ] [[package]] @@ -9238,7 +9227,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.11.3", ] [[package]] @@ -9247,7 +9236,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared", + "phf_shared 0.11.3", "rand 0.8.5", ] @@ -9258,7 +9247,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.11.3", "proc-macro2", "quote", "syn 2.0.104", @@ -9273,6 +9262,15 @@ dependencies = [ "siphasher 1.0.1", ] +[[package]] +name = "phf_shared" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" +dependencies = [ + "siphasher 1.0.1", +] + [[package]] name = "php-parser-rs" version = "0.1.3" @@ -10909,7 +10907,7 @@ dependencies = [ "log", "malachite-bigint", "num-traits", - "phf", + "phf 0.11.3", "phf_codegen", "rustc-hash 1.1.0", "rustpython-ast", @@ -12290,7 +12288,7 @@ dependencies = [ "bitflags 2.9.1", "is-macro", "num-bigint", - "phf", + "phf 0.11.3", "scoped-tls", "serde", "string_enum", @@ -12354,7 +12352,7 @@ dependencies = [ "new_debug_unreachable", "num-bigint", "num-traits", - "phf", + "phf 0.11.3", "serde", "smallvec", "smartstring", @@ -12376,7 +12374,7 @@ dependencies = [ "bitflags 2.9.1", "indexmap 2.10.0", "once_cell", - "phf", + "phf 0.11.3", "rustc-hash 1.1.0", "serde", "smallvec", @@ -12764,7 +12762,7 @@ dependencies = [ "lru 0.12.5", "lz4_flex", "measure_time", - "memmap2 0.9.5", + "memmap2 0.9.7", "num_cpus", "once_cell", "oneshot", @@ -13270,7 +13268,7 @@ dependencies = [ "log", "parking_lot 0.12.4", "percent-encoding", - "phf", + "phf 0.11.3", "pin-project-lite", "postgres-protocol 0.6.7", "postgres-types 0.2.7", @@ -13296,7 +13294,7 @@ dependencies = [ "log", "parking_lot 0.12.4", "percent-encoding", - "phf", + "phf 0.11.3", "pin-project-lite", "postgres-protocol 0.6.8", "postgres-types 0.2.9", @@ -13894,7 +13892,7 @@ dependencies = [ "gemm 0.18.2", "half", "libloading 0.8.8", - "memmap2 0.9.5", + "memmap2 0.9.7", "num", "num-traits", "num_cpus", @@ -14077,7 +14075,7 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd" dependencies = [ - "phf", + "phf 0.11.3", "unicode_names2_generator", ] @@ -14676,7 +14674,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "axum", @@ -14728,7 +14726,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "argon2", @@ -14839,7 +14837,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.505.0" +version = "1.505.1" dependencies = [ "base64 0.22.1", "chrono", @@ -14854,7 +14852,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.505.0" +version = "1.505.1" dependencies = [ "chrono", "serde", @@ -14867,7 +14865,7 @@ dependencies = [ [[package]] name = "windmill-autoscaling" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "serde", @@ -14881,7 +14879,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "async-stream", @@ -14959,7 +14957,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.505.0" +version = "1.505.1" dependencies = [ "regex", "serde", @@ -14973,7 +14971,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "bytes", @@ -14996,7 +14994,7 @@ dependencies = [ [[package]] name = "windmill-macros" -version = "1.505.0" +version = "1.505.1" dependencies = [ "itertools 0.14.0", "lazy_static", @@ -15008,7 +15006,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.505.0" +version = "1.505.1" dependencies = [ "convert_case 0.6.0", "serde", @@ -15017,7 +15015,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "lazy_static", @@ -15029,7 +15027,7 @@ dependencies = [ [[package]] name = "windmill-parser-csharp" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "serde_json", @@ -15041,7 +15039,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "gosyn", @@ -15053,7 +15051,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "lazy_static", @@ -15065,7 +15063,7 @@ dependencies = [ [[package]] name = "windmill-parser-java" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "serde_json", @@ -15077,7 +15075,7 @@ dependencies = [ [[package]] name = "windmill-parser-nu" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "nu-parser", @@ -15088,7 +15086,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15099,7 +15097,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15111,7 +15109,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "async-recursion", @@ -15120,7 +15118,7 @@ dependencies = [ "malachite", "malachite-bigint", "pep440_rs", - "phf", + "phf 0.11.3", "regex", "regex-lite", "rustpython-parser", @@ -15134,7 +15132,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -15151,7 +15149,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "lazy_static", @@ -15165,7 +15163,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "lazy_static", @@ -15183,7 +15181,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "getrandom 0.2.16", @@ -15207,7 +15205,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "serde_json", @@ -15217,7 +15215,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "async-recursion", @@ -15250,7 +15248,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.505.0" +version = "1.505.1" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -15260,7 +15258,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.505.0" +version = "1.505.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 74a06e9c23..73cd15eb1e 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.505.0" +version = "1.505.1" authors.workspace = true edition.workspace = true @@ -32,7 +32,7 @@ members = [ ] [workspace.package] -version = "1.505.0" +version = "1.505.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 0d3d9a8d93..c2d3666368 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.505.0 + version: 1.505.1 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 00f4a4f872..52dbfcb16e 100644 --- a/benchmarks/lib.ts +++ b/benchmarks/lib.ts @@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/sleep@v1.2.1/mod.ts"; import * as windmill from "https://deno.land/x/windmill@v1.174.0/mod.ts"; import * as api from "https://deno.land/x/windmill@v1.174.0/windmill-api/index.ts"; -export const VERSION = "v1.505.0"; +export const VERSION = "v1.505.1"; export async function login(email: string, password: string): Promise { return await windmill.UserService.login({ diff --git a/cli/main.ts b/cli/main.ts index a8c5176bb0..6ea1805fbb 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -63,7 +63,7 @@ export { // } // }); -export const VERSION = "1.505.0"; +export const VERSION = "1.505.1"; const command = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 39247a4b44..6392e11892 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.505.0", + "version": "1.505.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.505.0", + "version": "1.505.1", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index 642a46a19b..3dd6ada6c1 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.505.0", + "version": "1.505.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index bfc86dab70..efb2160b5f 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.505.0" -wmill_pg = ">=1.505.0" +wmill = ">=1.505.1" +wmill_pg = ">=1.505.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 39f49dc0ad..7fef472cee 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.505.0 + version: 1.505.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 6f575f5b3e..e95e21eb82 100644 --- a/powershell-client/WindmillClient/WindmillClient.psd1 +++ b/powershell-client/WindmillClient/WindmillClient.psd1 @@ -12,7 +12,7 @@ RootModule = 'WindmillClient.psm1' # Version number of this module. - ModuleVersion = '1.505.0' + ModuleVersion = '1.505.1' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 1fe6618151..24525c19d4 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.505.0" +version = "1.505.1" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index a616508d1c..4ded13b08b 100644 --- a/python-client/wmill_pg/pyproject.toml +++ b/python-client/wmill_pg/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill-pg" -version = "1.505.0" +version = "1.505.1" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/typescript-client/jsr.json b/typescript-client/jsr.json index 2dc3dcc542..987bda3703 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.505.0", + "version": "1.505.1", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index 0e27c5e0be..7e6f461d73 100644 --- a/typescript-client/package.json +++ b/typescript-client/package.json @@ -1,7 +1,7 @@ { "name": "windmill-client", "description": "Windmill SDK client for browsers and Node.js", - "version": "1.505.0", + "version": "1.505.1", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index c2f44c4679..4bb37e67eb 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.505.0 +1.505.1