diff --git a/CHANGELOG.md b/CHANGELOG.md index d5b943d7f315d..2904c018032cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.590.0](https://github.com/windmill-labs/windmill/compare/v1.589.3...v1.590.0) (2025-12-08) + + +### Features + +* add query arg for oidc expiration ([#7312](https://github.com/windmill-labs/windmill/issues/7312)) ([e6adf16](https://github.com/windmill-labs/windmill/commit/e6adf16fc9e8efb145d7dfe9d48e78ece9bc0fce)) +* **aichat:** simplify flow mode edits ([#6981](https://github.com/windmill-labs/windmill/issues/6981)) ([3d5b79c](https://github.com/windmill-labs/windmill/commit/3d5b79c154c9b9c1ec6e4fd1b35556ea5c3cb457)) +* **cli:** new command to generate RT namespace + on init ([#7317](https://github.com/windmill-labs/windmill/issues/7317)) ([e8ca7c5](https://github.com/windmill-labs/windmill/commit/e8ca7c5f952676b653e97362fab43a57a6b79237)) +* configurable max ai agent iterations ([#7302](https://github.com/windmill-labs/windmill/issues/7302)) ([8897dab](https://github.com/windmill-labs/windmill/commit/8897dab282f58e38b103dcff7ba4eaad896b6995)) +* Data tables ([#7226](https://github.com/windmill-labs/windmill/issues/7226)) ([9bbab33](https://github.com/windmill-labs/windmill/commit/9bbab3321e064dc00c5734990949ce9515f46de7)) +* **frontend:** add wildcard pattern support to MCP token custom scope ([#7306](https://github.com/windmill-labs/windmill/issues/7306)) ([2f0e00f](https://github.com/windmill-labs/windmill/commit/2f0e00f9cf4aac717b5a2c441e1c8bbc945c1dd1)) +* new live onboarding for flows ([#7194](https://github.com/windmill-labs/windmill/issues/7194)) ([3699ce7](https://github.com/windmill-labs/windmill/commit/3699ce7a8fd4e0c58a1b715597ff7284c6c66fab)) +* triggers suspended mode ([#7297](https://github.com/windmill-labs/windmill/issues/7297)) ([eb284df](https://github.com/windmill-labs/windmill/commit/eb284dfabd7fce3c12ca8e9bf2f3e861db5bc602)) + + +### Bug Fixes + +* **frontend:** add missing docs link for json schema resource in error ([#7315](https://github.com/windmill-labs/windmill/issues/7315)) ([bfe95a3](https://github.com/windmill-labs/windmill/commit/bfe95a3d61f0c2d42bd47518ac456dc5a69c03a0)) +* **frontend:** use right workspace script version in flow status ([#7308](https://github.com/windmill-labs/windmill/issues/7308)) ([a8d4073](https://github.com/windmill-labs/windmill/commit/a8d40733f48f01e08f8e5134d5d8bf5562c2774e)) +* improve S3 etag caching ([#7301](https://github.com/windmill-labs/windmill/issues/7301)) ([7b1a8b0](https://github.com/windmill-labs/windmill/commit/7b1a8b0dce482452d1a99d6a536aaa1dd51de2e9)) +* raw app v0.5 ([#7310](https://github.com/windmill-labs/windmill/issues/7310)) ([0e63dd3](https://github.com/windmill-labs/windmill/commit/0e63dd301f2b2b258225d19a2830ec35c325716a)) + ## [1.589.3](https://github.com/windmill-labs/windmill/compare/v1.589.2...v1.589.3) (2025-12-05) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 5e91858d78ffb..19c4e7a2b5dd6 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1383,9 +1383,9 @@ dependencies = [ [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" [[package]] name = "better_scoped_tls" @@ -2008,9 +2008,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.48" +version = "1.2.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a" +checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215" dependencies = [ "find-msvc-tools", "jobserver", @@ -4798,9 +4798,9 @@ dependencies = [ [[package]] name = "dlopen2_derive" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95f4a04e1bfbfa4835a6073177aafb95ead4de0722dbb339195fdc7e0a09599b" +checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" dependencies = [ "proc-macro2", "quote", @@ -5378,14 +5378,14 @@ dependencies = [ [[package]] name = "flate2" -version = "1.1.7" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2152dbcb980c05735e2a651d96011320a949eb31a0c8b38b72645ce97dec676" +checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" dependencies = [ "crc32fast", + "libz-rs-sys", "libz-sys", "miniz_oxide 0.8.9", - "zlib-rs", ] [[package]] @@ -7764,6 +7764,15 @@ dependencies = [ "version_check", ] +[[package]] +name = "libz-rs-sys" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b484ba8d4f775eeca644c452a56650e544bf7e617f1d170fe7298122ead5222" +dependencies = [ + "zlib-rs", +] + [[package]] name = "libz-sys" version = "1.1.23" @@ -11994,9 +12003,9 @@ dependencies = [ [[package]] name = "simd-adler32" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" [[package]] name = "simd-json" @@ -12066,9 +12075,9 @@ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" [[package]] name = "slotmap" -version = "1.0.7" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" dependencies = [ "version_check", ] @@ -14027,9 +14036,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.7" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "async-compression", "base64 0.22.1", @@ -15154,7 +15163,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "aws-sdk-config", @@ -15217,7 +15226,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "argon2", @@ -15338,7 +15347,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.589.3" +version = "1.590.0" dependencies = [ "base64 0.22.1", "chrono", @@ -15353,7 +15362,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.589.3" +version = "1.590.0" dependencies = [ "chrono", "lazy_static", @@ -15367,7 +15376,7 @@ dependencies = [ [[package]] name = "windmill-autoscaling" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "axum", @@ -15386,7 +15395,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "async-recursion", @@ -15479,7 +15488,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.589.3" +version = "1.590.0" dependencies = [ "regex", "serde", @@ -15494,7 +15503,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "bytes", @@ -15518,7 +15527,7 @@ dependencies = [ [[package]] name = "windmill-macros" -version = "1.589.3" +version = "1.590.0" dependencies = [ "itertools 0.14.0", "lazy_static", @@ -15534,7 +15543,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.589.3" +version = "1.590.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -15543,7 +15552,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "lazy_static", @@ -15555,7 +15564,7 @@ dependencies = [ [[package]] name = "windmill-parser-csharp" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "serde_json", @@ -15567,7 +15576,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "gosyn", @@ -15579,7 +15588,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "lazy_static", @@ -15591,7 +15600,7 @@ dependencies = [ [[package]] name = "windmill-parser-java" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "serde_json", @@ -15603,7 +15612,7 @@ dependencies = [ [[package]] name = "windmill-parser-nu" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "nu-parser", @@ -15614,7 +15623,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15625,7 +15634,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15637,7 +15646,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "async-recursion", @@ -15661,7 +15670,7 @@ dependencies = [ [[package]] name = "windmill-parser-ruby" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "lazy_static", @@ -15675,7 +15684,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -15692,7 +15701,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "lazy_static", @@ -15706,7 +15715,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "lazy_static", @@ -15724,7 +15733,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "serde", @@ -15735,7 +15744,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "async-recursion", @@ -15772,7 +15781,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.589.3" +version = "1.590.0" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -15782,7 +15791,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.589.3" +version = "1.590.0" dependencies = [ "anyhow", "async-once-cell", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 1cf7bdc6530ba..322c61c61791c 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.589.3" +version = "1.590.0" authors.workspace = true edition.workspace = true @@ -33,7 +33,7 @@ members = [ exclude = ["./windmill-duckdb-ffi-internal"] [workspace.package] -version = "1.589.3" +version = "1.590.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 0a151b0e73a28..6a5c91b598b35 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.589.3 + version: 1.590.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index ccffd57d42a04..e312f6fc41345 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.589.3"; +export const VERSION = "v1.590.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 b9366e6130f63..bcafb66ce6e4c 100644 --- a/cli/src/main.ts +++ b/cli/src/main.ts @@ -70,7 +70,7 @@ export { // } // }); -export const VERSION = "1.589.3"; +export const VERSION = "1.590.0"; export const WM_FORK_PREFIX = "wm-fork"; diff --git a/frontend/package-lock.json b/frontend/package-lock.json index be9801e09f671..b63272bd99d41 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.589.3", + "version": "1.590.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.589.3", + "version": "1.590.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index 2c43097b832a6..337ea6f5ecc8d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.589.3", + "version": "1.590.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 2b88c672fee04..75e8a16462da0 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.589.3" -wmill_pg = ">=1.589.3" +wmill = ">=1.590.0" +wmill_pg = ">=1.590.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index e9e41de52678e..c6e4f8861cfc6 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.589.3 + version: 1.590.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 673c7c4b5932c..b710aa257f457 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.589.3' + ModuleVersion = '1.590.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index f63bb9d2f1b6f..650ffd9f61034 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.589.3" +version = "1.590.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/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 36c327f1449b5..78f4266f4390a 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.589.3" +version = "1.590.0" 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 08930756733fc..ea2ce5bb93016 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.589.3", + "version": "1.590.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 ed061d058b75c..f6dbfd7d86edc 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.589.3", + "version": "1.590.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index ed16d3614aa13..6a763c17d76fd 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.589.3 +1.590.0