From 81ab777cbb12152d4584679fd5c175edb0d50a64 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 2 Apr 2026 23:41:12 +0000 Subject: [PATCH] chore(main): release 1.673.0 (#8660) * chore(main): release 1.673.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com> --- CHANGELOG.md | 27 +++ backend/Cargo.lock | 164 +++++++++--------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 2 +- benchmarks/lib.ts | 2 +- cli/src/main.ts | 2 +- frontend/package-lock.json | 4 +- frontend/package.json | 2 +- lsp/Pipfile | 2 +- openflow.openapi.yaml | 2 +- .../WindmillClient/WindmillClient.psd1 | 2 +- python-client/wmill/pyproject.toml | 2 +- typescript-client/jsr.json | 2 +- typescript-client/package.json | 2 +- version.txt | 2 +- 15 files changed, 124 insertions(+), 97 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e47211680..c4c73d26ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [1.673.0](https://github.com/windmill-labs/windmill/compare/v1.672.0...v1.673.0) (2026-04-02) + + +### Features + +* add endpoint to restart workers in a worker group ([#8659](https://github.com/windmill-labs/windmill/issues/8659)) ([f0437eb](https://github.com/windmill-labs/windmill/commit/f0437eba1925a9aa4c430008027d637a0c89ee39)) +* add Entra ID (Azure Workload Identity) database auth ([#8526](https://github.com/windmill-labs/windmill/issues/8526)) ([6a5cfbc](https://github.com/windmill-labs/windmill/commit/6a5cfbc159a0ad7925fd7ce5eefc8eaa21bbb70b)) +* add LIMIT_WINDOWS_TO_1CU env var for Windows worker memory limits ([#8681](https://github.com/windmill-labs/windmill/issues/8681)) ([d2d6810](https://github.com/windmill-labs/windmill/commit/d2d6810db954114f3333853bd3476cb8fc735f92)) +* restore bun for dedicated workers, fix dispatch & serialization, cross-workspace deps ([#8645](https://github.com/windmill-labs/windmill/issues/8645)) ([619ebb6](https://github.com/windmill-labs/windmill/commit/619ebb65ce8dce8264add31c3147919802a8286a)) + + +### Bug Fixes + +* add HMAC signature verification to Slack interactive callback endpoint ([#8611](https://github.com/windmill-labs/windmill/issues/8611)) ([55e8a5c](https://github.com/windmill-labs/windmill/commit/55e8a5cff1f185b1dbd332d37b877972efa1ed7d)) +* correct raw app flow inputs ([#8667](https://github.com/windmill-labs/windmill/issues/8667)) ([28c0730](https://github.com/windmill-labs/windmill/commit/28c073056c65d4ed1600e39679497e5af964347f)) +* pass selected language to AI agent when generating flow scripts ([#8680](https://github.com/windmill-labs/windmill/issues/8680)) ([381011a](https://github.com/windmill-labs/windmill/commit/381011a4a8e48454e9c146c64db502293e646b99)) +* poll for preview results to avoid undici headers timeout ([#8682](https://github.com/windmill-labs/windmill/issues/8682)) ([ff5fa9f](https://github.com/windmill-labs/windmill/commit/ff5fa9f64fe4aaf33e06b20f02373894b5df0f95)) +* pre-fix trigger edited_by for superadmins not in workspace ([#8669](https://github.com/windmill-labs/windmill/issues/8669)) ([350ffdc](https://github.com/windmill-labs/windmill/commit/350ffdce297ba5b84f9dd247eede6da0c6b0956c)) +* resolve race condition where flow sync push reverts to stale version ([#8673](https://github.com/windmill-labs/windmill/issues/8673)) ([d569e9e](https://github.com/windmill-labs/windmill/commit/d569e9e29c588243a90b1cd25f866efb0d178640)) +* respect disabled fields in JSON input mode ([#8663](https://github.com/windmill-labs/windmill/issues/8663)) ([7fd0bf9](https://github.com/windmill-labs/windmill/commit/7fd0bf974d2ba2644bb01dd5e9ddc84749e166f5)) +* Run typed pg queries in a single protocol conversation ([#8679](https://github.com/windmill-labs/windmill/issues/8679)) ([8581a33](https://github.com/windmill-labs/windmill/commit/8581a3300d056040b7e3ab77d629c74f034c9c97)) +* sanitize MCP tool schemas for JSON Schema draft 2020-12 compliance ([#8666](https://github.com/windmill-labs/windmill/issues/8666)) ([8c3c97f](https://github.com/windmill-labs/windmill/commit/8c3c97f7a670d47019cc666219f8187f48499672)) +* skip generate-metadata confirmation prompt in non-interactive CI ([#8678](https://github.com/windmill-labs/windmill/issues/8678)) ([39af1b7](https://github.com/windmill-labs/windmill/commit/39af1b75afc8458f85dec4fe51dfaed3d0cb000d)) +* strip f/ prefix from folder paths when deploying from workspace forks ([#8662](https://github.com/windmill-labs/windmill/issues/8662)) ([7ab0ea5](https://github.com/windmill-labs/windmill/commit/7ab0ea581d349fbfdb56d22cf9903a90efa045bb)) +* support branch-specific folder.meta.yaml in missing-meta check ([#8661](https://github.com/windmill-labs/windmill/issues/8661)) ([c87a6a0](https://github.com/windmill-labs/windmill/commit/c87a6a0f2c1346bf5e21f128d32d89bdca039243)) +* validate rd redirect on login with same rules as logout ([#8655](https://github.com/windmill-labs/windmill/issues/8655)) ([bcce627](https://github.com/windmill-labs/windmill/commit/bcce62738791a4e9b9f4dbc64731eef163230172)) + ## [1.672.0](https://github.com/windmill-labs/windmill/compare/v1.671.0...v1.672.0) (2026-04-01) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 93b18d6daf..3567cc5560 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -2373,9 +2373,9 @@ dependencies = [ [[package]] name = "cmov" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de0758edba32d61d1fd9f4d69491b47604b91ee2f7e6b33de7e54ca4ebe55dc3" +checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746" [[package]] name = "codespan-reporting" @@ -2805,9 +2805,9 @@ dependencies = [ [[package]] name = "ctutils" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1005a6d4446f5120ef475ad3d2af2b30c49c2c9c6904258e3bb30219bebed5e4" +checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e" dependencies = [ "cmov", ] @@ -15983,7 +15983,7 @@ dependencies = [ [[package]] name = "windmill" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-nats", @@ -16062,7 +16062,7 @@ dependencies = [ [[package]] name = "windmill-alerting" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16075,7 +16075,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "argon2", @@ -16216,7 +16216,7 @@ dependencies = [ [[package]] name = "windmill-api-agent-workers" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16239,7 +16239,7 @@ dependencies = [ [[package]] name = "windmill-api-assets" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16252,7 +16252,7 @@ dependencies = [ [[package]] name = "windmill-api-auth" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16278,7 +16278,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.672.0" +version = "1.673.0" dependencies = [ "reqwest 0.12.28", "serde", @@ -16288,7 +16288,7 @@ dependencies = [ [[package]] name = "windmill-api-configs" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16305,7 +16305,7 @@ dependencies = [ [[package]] name = "windmill-api-debug" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "base64 0.22.1", @@ -16328,7 +16328,7 @@ dependencies = [ [[package]] name = "windmill-api-embeddings" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16351,7 +16351,7 @@ dependencies = [ [[package]] name = "windmill-api-flow-conversations" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16367,7 +16367,7 @@ dependencies = [ [[package]] name = "windmill-api-flows" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16387,7 +16387,7 @@ dependencies = [ [[package]] name = "windmill-api-groups" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16407,7 +16407,7 @@ dependencies = [ [[package]] name = "windmill-api-inputs" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16421,7 +16421,7 @@ dependencies = [ [[package]] name = "windmill-api-integration-tests" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-nats", @@ -16452,7 +16452,7 @@ dependencies = [ [[package]] name = "windmill-api-jobs" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16477,7 +16477,7 @@ dependencies = [ [[package]] name = "windmill-api-npm-proxy" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "flate2", @@ -16495,7 +16495,7 @@ dependencies = [ [[package]] name = "windmill-api-openapi" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16517,7 +16517,7 @@ dependencies = [ [[package]] name = "windmill-api-schedule" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16537,7 +16537,7 @@ dependencies = [ [[package]] name = "windmill-api-scripts" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16567,7 +16567,7 @@ dependencies = [ [[package]] name = "windmill-api-settings" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16594,7 +16594,7 @@ dependencies = [ [[package]] name = "windmill-api-sse" -version = "1.672.0" +version = "1.673.0" dependencies = [ "lazy_static", "serde", @@ -16606,7 +16606,7 @@ dependencies = [ [[package]] name = "windmill-api-users" -version = "1.672.0" +version = "1.673.0" dependencies = [ "argon2", "axum 0.8.4", @@ -16631,7 +16631,7 @@ dependencies = [ [[package]] name = "windmill-api-workers" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16645,7 +16645,7 @@ dependencies = [ [[package]] name = "windmill-api-workspaces" -version = "1.672.0" +version = "1.673.0" dependencies = [ "axum 0.8.4", "chrono", @@ -16677,7 +16677,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.672.0" +version = "1.673.0" dependencies = [ "chrono", "lazy_static", @@ -16691,7 +16691,7 @@ dependencies = [ [[package]] name = "windmill-autoscaling" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "axum 0.8.4", @@ -16710,7 +16710,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.672.0" +version = "1.673.0" dependencies = [ "aes-gcm", "aho-corasick", @@ -16812,7 +16812,7 @@ dependencies = [ [[package]] name = "windmill-dep-map" -version = "1.672.0" +version = "1.673.0" dependencies = [ "chrono", "itertools 0.14.0", @@ -16831,7 +16831,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.672.0" +version = "1.673.0" dependencies = [ "regex", "serde", @@ -16846,7 +16846,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "astral-tokio-tar", @@ -16870,7 +16870,7 @@ dependencies = [ [[package]] name = "windmill-jseval" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "futures", @@ -16887,7 +16887,7 @@ dependencies = [ [[package]] name = "windmill-macros" -version = "1.672.0" +version = "1.673.0" dependencies = [ "itertools 0.14.0", "lazy_static", @@ -16903,7 +16903,7 @@ dependencies = [ [[package]] name = "windmill-mcp" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -16924,7 +16924,7 @@ dependencies = [ [[package]] name = "windmill-native-triggers" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -16955,7 +16955,7 @@ dependencies = [ [[package]] name = "windmill-oauth" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-oauth2", @@ -16979,7 +16979,7 @@ dependencies = [ [[package]] name = "windmill-object-store" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-stream", @@ -17013,7 +17013,7 @@ dependencies = [ [[package]] name = "windmill-operator" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "futures", @@ -17031,7 +17031,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.672.0" +version = "1.673.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -17040,7 +17040,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "lazy_static", @@ -17052,7 +17052,7 @@ dependencies = [ [[package]] name = "windmill-parser-csharp" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde_json", @@ -17064,7 +17064,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "gosyn", @@ -17076,7 +17076,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "lazy_static", @@ -17088,7 +17088,7 @@ dependencies = [ [[package]] name = "windmill-parser-java" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde_json", @@ -17100,7 +17100,7 @@ dependencies = [ [[package]] name = "windmill-parser-nu" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "nu-parser", @@ -17111,7 +17111,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -17122,7 +17122,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -17134,7 +17134,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-asset" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "rustpython-ast", @@ -17145,7 +17145,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-recursion", @@ -17167,7 +17167,7 @@ dependencies = [ [[package]] name = "windmill-parser-r" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde_json", @@ -17179,7 +17179,7 @@ dependencies = [ [[package]] name = "windmill-parser-ruby" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "lazy_static", @@ -17193,7 +17193,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -17210,7 +17210,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "lazy_static", @@ -17223,7 +17223,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql-asset" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde", @@ -17235,7 +17235,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "lazy_static", @@ -17253,7 +17253,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts-asset" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde-wasm-bindgen", @@ -17269,7 +17269,7 @@ dependencies = [ [[package]] name = "windmill-parser-wac" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "rustpython-ast", @@ -17285,7 +17285,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "serde", @@ -17296,7 +17296,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-recursion", @@ -17333,7 +17333,7 @@ dependencies = [ [[package]] name = "windmill-runtime-nativets" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "const_format", @@ -17371,7 +17371,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.672.0" +version = "1.673.0" dependencies = [ "getrandom 0.3.4", "wasm-bindgen", @@ -17382,7 +17382,7 @@ dependencies = [ [[package]] name = "windmill-store" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-recursion", @@ -17411,7 +17411,7 @@ dependencies = [ [[package]] name = "windmill-test-utils" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17435,7 +17435,7 @@ dependencies = [ [[package]] name = "windmill-trigger" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17468,7 +17468,7 @@ dependencies = [ [[package]] name = "windmill-trigger-email" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17488,7 +17488,7 @@ dependencies = [ [[package]] name = "windmill-trigger-gcp" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17522,7 +17522,7 @@ dependencies = [ [[package]] name = "windmill-trigger-http" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17558,7 +17558,7 @@ dependencies = [ [[package]] name = "windmill-trigger-kafka" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17581,7 +17581,7 @@ dependencies = [ [[package]] name = "windmill-trigger-mqtt" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17605,7 +17605,7 @@ dependencies = [ [[package]] name = "windmill-trigger-nats" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-nats", @@ -17629,7 +17629,7 @@ dependencies = [ [[package]] name = "windmill-trigger-postgres" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17664,7 +17664,7 @@ dependencies = [ [[package]] name = "windmill-trigger-sqs" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17692,7 +17692,7 @@ dependencies = [ [[package]] name = "windmill-trigger-websocket" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-trait", @@ -17715,7 +17715,7 @@ dependencies = [ [[package]] name = "windmill-types" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "bitflags 2.9.4", @@ -17734,7 +17734,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.672.0" +version = "1.673.0" dependencies = [ "anyhow", "async-once-cell", @@ -17845,7 +17845,7 @@ dependencies = [ [[package]] name = "windmill-worker-volumes" -version = "1.672.0" +version = "1.673.0" dependencies = [ "bytes", "futures", @@ -18545,9 +18545,9 @@ dependencies = [ [[package]] name = "writeable" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "wtf8" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index d636d4e6f4..4b6444b413 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.672.0" +version = "1.673.0" authors.workspace = true edition.workspace = true @@ -85,7 +85,7 @@ members = [ exclude = ["./windmill-duckdb-ffi-internal", "./parsers/windmill-parser-wasm"] [workspace.package] -version = "1.672.0" +version = "1.673.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index f33ca19888..1e3a3a2fba 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.672.0 + version: 1.673.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 3b9863c17e..896640e74a 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.672.0"; +export const VERSION = "v1.673.0"; export async function login(email: string, password: string): Promise { return await windmill.UserService.login({ diff --git a/cli/src/main.ts b/cli/src/main.ts index 22022acfe6..634f46b573 100755 --- a/cli/src/main.ts +++ b/cli/src/main.ts @@ -78,7 +78,7 @@ export { token, }; -export const VERSION = "1.672.0"; +export const VERSION = "1.673.0"; // Re-exported from constants.ts to maintain backwards compatibility export { WM_FORK_PREFIX } from "./core/constants.ts"; diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 649bba1bef..64f640a1e3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.672.0", + "version": "1.673.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.672.0", + "version": "1.673.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index dc9f9e0177..1c15acc3bf 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.672.0", + "version": "1.673.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index a78a53e1f2..d39ca6c559 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,7 +4,7 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.672.0" +wmill = ">=1.673.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 83dd259106..82de950d90 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: '3.0.3' info: - version: 1.672.0 + version: 1.673.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index eae9a9e554..ba9056a23d 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.672.0' + ModuleVersion = '1.673.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index cf60544b46..734703088e 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.672.0" +version = "1.673.0" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/typescript-client/jsr.json b/typescript-client/jsr.json index 2060ec31b8..77cf189114 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.672.0", + "version": "1.673.0", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./sqlUtils.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index 2875406339..7e84935c71 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.672.0", + "version": "1.673.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "sideEffects": false, diff --git a/version.txt b/version.txt index 9fed74a231..6d1ec02bc1 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.672.0 +1.673.0