diff --git a/CHANGELOG.md b/CHANGELOG.md index da2f5bd6a0..6d39fb7dae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.488.0](https://github.com/windmill-labs/windmill/compare/v1.487.0...v1.488.0) (2025-05-07) + + +### Features + +* handle . in interpolated args ([0ac8e47](https://github.com/windmill-labs/windmill/commit/0ac8e477d6fb7c5a7699a198fce9d18a08aff68c)) + + +### Bug Fixes + +* fix azure object storage regression due to object_store regression ([df9f827](https://github.com/windmill-labs/windmill/commit/df9f827d103def27166a767044373bd0754285e2)) +* performance and stability improvement to fetch last deployed script ([75d9924](https://github.com/windmill-labs/windmill/commit/75d992449c845fd11c9a317d401c405e7d78e1ec)) + ## [1.487.0](https://github.com/windmill-labs/windmill/compare/v1.486.1...v1.487.0) (2025-05-06) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 77d2170699..9e6d454605 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1198,9 +1198,9 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" dependencies = [ "addr2line", "cfg-if", @@ -3804,7 +3804,7 @@ dependencies = [ "tokio", "tokio-eld", "url", - "webpki-root-certs", + "webpki-root-certs 0.26.11", "winapi", "windows-sys 0.59.0", "x25519-dalek", @@ -4126,7 +4126,7 @@ dependencies = [ "serde", "thiserror 2.0.12", "tokio", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -6380,7 +6380,7 @@ dependencies = [ "tokio", "tokio-rustls 0.26.2", "tower-service", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -7015,9 +7015,9 @@ checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" [[package]] name = "kqueue" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cf0c5a3f977f1cebd92cf05ebb14e1c941c642fb57c9a7d4302455b33ba326f" +checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" dependencies = [ "kqueue-sys", "libc", @@ -7194,9 +7194,9 @@ dependencies = [ [[package]] name = "libm" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a25169bd5913a4b437588a7e3d127cd6e90127b60e0ffbd834a38f1599e016b8" +checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] name = "libproc" @@ -7455,7 +7455,7 @@ dependencies = [ "smtp-proto", "tokio", "tokio-rustls 0.26.2", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -10179,7 +10179,7 @@ dependencies = [ "wasm-bindgen-futures", "wasm-streams", "web-sys", - "webpki-roots", + "webpki-roots 0.26.11", "windows-registry", ] @@ -11639,7 +11639,7 @@ dependencies = [ "tracing", "url", "uuid", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -13207,7 +13207,7 @@ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" dependencies = [ "indexmap 2.9.0", "toml_datetime", - "winnow 0.7.9", + "winnow 0.7.10", ] [[package]] @@ -13242,7 +13242,7 @@ dependencies = [ "tower-layer", "tower-service", "tracing", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -13856,7 +13856,7 @@ dependencies = [ "serde", "serde_json", "url", - "webpki-roots", + "webpki-roots 0.26.11", ] [[package]] @@ -14209,18 +14209,36 @@ dependencies = [ [[package]] name = "webpki-root-certs" -version = "0.26.10" +version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c99403924bc5f23afefc319b8ac67ed0e50669f6e52a413314cccb1fdbc93ba0" +checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" +dependencies = [ + "webpki-root-certs 1.0.0", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01a83f7e1a9f8712695c03eabe9ed3fbca0feff0152f33f12593e5a6303cb1a4" dependencies = [ "rustls-pki-types", ] [[package]] name = "webpki-roots" -version = "0.26.10" +version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37493cadf42a2a939ed404698ded7fb378bf301b5011f973361779a3a74f8c93" +checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" +dependencies = [ + "webpki-roots 1.0.0", +] + +[[package]] +name = "webpki-roots" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" dependencies = [ "rustls-pki-types", ] @@ -14382,7 +14400,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "axum", @@ -14431,7 +14449,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "argon2", @@ -14540,7 +14558,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.487.0" +version = "1.488.0" dependencies = [ "base64 0.22.1", "chrono", @@ -14555,7 +14573,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.487.0" +version = "1.488.0" dependencies = [ "chrono", "serde", @@ -14568,7 +14586,7 @@ dependencies = [ [[package]] name = "windmill-autoscaling" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "serde", @@ -14582,7 +14600,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "async-stream", @@ -14648,7 +14666,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.487.0" +version = "1.488.0" dependencies = [ "regex", "serde", @@ -14662,7 +14680,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "bytes", @@ -14685,7 +14703,7 @@ dependencies = [ [[package]] name = "windmill-macros" -version = "1.487.0" +version = "1.488.0" dependencies = [ "itertools 0.14.0", "lazy_static", @@ -14697,7 +14715,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.487.0" +version = "1.488.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -14706,7 +14724,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "lazy_static", @@ -14718,7 +14736,7 @@ dependencies = [ [[package]] name = "windmill-parser-csharp" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "serde_json", @@ -14730,7 +14748,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "gosyn", @@ -14742,7 +14760,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "lazy_static", @@ -14754,7 +14772,7 @@ dependencies = [ [[package]] name = "windmill-parser-java" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "serde_json", @@ -14766,7 +14784,7 @@ dependencies = [ [[package]] name = "windmill-parser-nu" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "nu-parser", @@ -14777,7 +14795,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -14788,7 +14806,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -14799,7 +14817,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "async-recursion", @@ -14819,7 +14837,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -14836,7 +14854,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "lazy_static", @@ -14848,7 +14866,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "lazy_static", @@ -14866,7 +14884,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "getrandom 0.2.16", @@ -14890,7 +14908,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "serde_json", @@ -14900,7 +14918,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "async-recursion", @@ -14933,7 +14951,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.487.0" +version = "1.488.0" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -14943,7 +14961,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.487.0" +version = "1.488.0" dependencies = [ "anyhow", "async-recursion", @@ -15503,9 +15521,9 @@ dependencies = [ [[package]] name = "winnow" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3" +checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec" dependencies = [ "memchr", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index a457343a1c..ffe4a8ee1b 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.487.0" +version = "1.488.0" authors.workspace = true edition.workspace = true @@ -32,7 +32,7 @@ members = [ ] [workspace.package] -version = "1.487.0" +version = "1.488.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index f3426a9566..961a4a9209 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.487.0 + version: 1.488.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 41d070e754..cc627194ca 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.487.0"; +export const VERSION = "v1.488.0"; 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 2890e1e35b..6b4dc66d19 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -63,7 +63,7 @@ export { // } // }); -export const VERSION = "1.487.0"; +export const VERSION = "1.488.0"; const command = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 93d599d681..cef171497d 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.487.0", + "version": "1.488.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.487.0", + "version": "1.488.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index 67da8a0a99..314bde7309 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.487.0", + "version": "1.488.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 391601da0f..6b9ea07776 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.487.0" -wmill_pg = ">=1.487.0" +wmill = ">=1.488.0" +wmill_pg = ">=1.488.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 1f01ed7f3e..1ba95be9f5 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.487.0 + version: 1.488.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 3a352ceccd..fc98395286 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.487.0' + ModuleVersion = '1.488.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 5bc837e92d..3020a1c54d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.487.0" +version = "1.488.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 7e31934481..7406ae251c 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.487.0" +version = "1.488.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 69215648d2..ec281c0a1d 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.487.0", + "version": "1.488.0", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index 76021fd576..09afc0282b 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.487.0", + "version": "1.488.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 9b4cb9226d..e7aea43065 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.487.0 +1.488.0