chore(main): release 1.504.0 (#6153)

* chore(main): release 1.504.0

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com>
This commit is contained in:
Ruben Fiszel
2025-07-10 14:48:55 +02:00
committed by GitHub
parent d650136388
commit 35c235d056
16 changed files with 96 additions and 83 deletions
+14
View File
@@ -1,5 +1,19 @@
# Changelog
## [1.504.0](https://github.com/windmill-labs/windmill/compare/v1.503.3...v1.504.0) (2025-07-10)
### Features
* **frontend:** run test flow from graph ([#6122](https://github.com/windmill-labs/windmill/issues/6122)) ([6c17a69](https://github.com/windmill-labs/windmill/commit/6c17a6963e100492bb03eb5494d2375f27dbbb9f))
* storage selector in S3 File Picker ([#6154](https://github.com/windmill-labs/windmill/issues/6154)) ([f924a73](https://github.com/windmill-labs/windmill/commit/f924a73c32887a5d67aa4d31b5b25f6046a57134))
* use process groups to improve zombie job handling ([#6157](https://github.com/windmill-labs/windmill/issues/6157)) ([b83aca3](https://github.com/windmill-labs/windmill/commit/b83aca30d23473228e19b10dc8fbecaf1fecc12f))
### Bug Fixes
* improve index migration failure handling ([c7fb066](https://github.com/windmill-labs/windmill/commit/c7fb06630181c9cdd8547139739ef408b4cc4235))
## [1.503.3](https://github.com/windmill-labs/windmill/compare/v1.503.2...v1.503.3) (2025-07-09)
+65 -66
View File
@@ -996,7 +996,7 @@ dependencies = [
"hyper-util",
"pin-project-lite",
"rustls 0.21.12",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-native-certs 0.8.1",
"rustls-pki-types",
"tokio",
@@ -1978,9 +1978,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.5.40"
version = "4.5.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
dependencies = [
"clap_builder",
"clap_derive",
@@ -1988,9 +1988,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.5.40"
version = "4.5.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
dependencies = [
"anstream",
"anstyle",
@@ -2000,9 +2000,9 @@ dependencies = [
[[package]]
name = "clap_derive"
version = "4.5.40"
version = "4.5.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
dependencies = [
"heck 0.5.0",
"proc-macro2",
@@ -2422,15 +2422,15 @@ dependencies = [
[[package]]
name = "curve25519-dalek"
version = "4.1.3"
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
checksum = "373b7c5dbd637569a2cca66e8d66b8c446a1e7bf064ea321d265d7b3dfe7c97e"
dependencies = [
"cfg-if",
"cpufeatures",
"curve25519-dalek-derive",
"digest 0.10.7",
"fiat-crypto 0.2.9",
"fiat-crypto 0.3.0",
"rustc_version 0.4.1",
"subtle",
"zeroize",
@@ -4155,7 +4155,7 @@ dependencies = [
"deno_core",
"deno_error",
"deno_native_certs",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-pemfile 2.2.0",
"rustls-tokio-stream",
"rustls-webpki 0.102.8",
@@ -4672,20 +4672,20 @@ dependencies = [
[[package]]
name = "duckdb"
version = "1.3.1"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bb1ff45dea0ba559e9d25b768631f41a6061b0b76760deef09094659b691c8"
checksum = "07ab83a22530667ffc8cc0e31c0549bb07bea5dba3b957a8e315effc38923701"
dependencies = [
"arrow",
"cast",
"fallible-iterator 0.3.0",
"fallible-streaming-iterator",
"hashlink 0.9.1",
"hashlink 0.10.0",
"libduckdb-sys",
"num-integer",
"rust_decimal",
"smallvec",
"strum 0.25.0",
"strum 0.27.1",
]
[[package]]
@@ -4795,9 +4795,9 @@ dependencies = [
[[package]]
name = "ed25519-dalek"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
dependencies = [
"curve25519-dalek",
"ed25519",
@@ -5101,9 +5101,9 @@ checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77"
[[package]]
name = "fiat-crypto"
version = "0.2.9"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
[[package]]
name = "filetime"
@@ -6456,7 +6456,7 @@ dependencies = [
"http 1.3.1",
"hyper 1.6.0",
"hyper-util",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-native-certs 0.8.1",
"rustls-pki-types",
"tokio",
@@ -7232,11 +7232,10 @@ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
[[package]]
name = "libduckdb-sys"
version = "1.3.1"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce15e3fe359068a9a3a687e074e7e32d2954f0a3dd138a0f529c779176b7e661"
checksum = "4e02f6069513efb67a0743aff3b846090de14763802b0e95c352ebc6e1bdc1da"
dependencies = [
"autocfg",
"cc",
"flate2",
"pkg-config",
@@ -7559,7 +7558,7 @@ dependencies = [
"base64 0.22.1",
"gethostname",
"mail-builder",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-pki-types",
"smtp-proto",
"tokio",
@@ -9857,7 +9856,7 @@ dependencies = [
"quinn-proto",
"quinn-udp",
"rustc-hash 2.1.1",
"rustls 0.23.28",
"rustls 0.23.29",
"socket2",
"thiserror 2.0.12",
"tokio",
@@ -9877,7 +9876,7 @@ dependencies = [
"rand 0.9.0",
"ring 0.17.14",
"rustc-hash 2.1.1",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-pki-types",
"slab",
"thiserror 2.0.12",
@@ -10333,7 +10332,7 @@ dependencies = [
"percent-encoding",
"pin-project-lite",
"quinn",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-native-certs 0.8.1",
"rustls-pki-types",
"serde",
@@ -10752,16 +10751,16 @@ dependencies = [
[[package]]
name = "rustls"
version = "0.23.28"
version = "0.23.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
dependencies = [
"aws-lc-rs",
"log",
"once_cell",
"ring 0.17.14",
"rustls-pki-types",
"rustls-webpki 0.103.3",
"rustls-webpki 0.103.4",
"subtle",
"zeroize",
]
@@ -10838,7 +10837,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22557157d7395bc30727745b365d923f1ecc230c4c80b176545f3f4f08c46e33"
dependencies = [
"futures",
"rustls 0.23.28",
"rustls 0.23.29",
"socket2",
"tokio",
]
@@ -10866,9 +10865,9 @@ dependencies = [
[[package]]
name = "rustls-webpki"
version = "0.103.3"
version = "0.103.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
dependencies = [
"aws-lc-rs",
"ring 0.17.14",
@@ -11858,7 +11857,7 @@ dependencies = [
"memchr",
"once_cell",
"percent-encoding",
"rustls 0.23.28",
"rustls 0.23.29",
"serde",
"serde_json",
"sha2 0.10.9",
@@ -13336,7 +13335,7 @@ version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
dependencies = [
"rustls 0.23.28",
"rustls 0.23.29",
"tokio",
]
@@ -14124,7 +14123,7 @@ dependencies = [
"log",
"native-tls",
"once_cell",
"rustls 0.23.28",
"rustls 0.23.29",
"rustls-pki-types",
"serde",
"serde_json",
@@ -14668,7 +14667,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windmill"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"axum",
@@ -14689,7 +14688,7 @@ dependencies = [
"quote",
"rand 0.9.0",
"reqwest 0.12.22",
"rustls 0.23.28",
"rustls 0.23.29",
"serde",
"serde_json",
"serde_yml",
@@ -14720,7 +14719,7 @@ dependencies = [
[[package]]
name = "windmill-api"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"argon2",
@@ -14831,7 +14830,7 @@ dependencies = [
[[package]]
name = "windmill-api-client"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"base64 0.22.1",
"chrono",
@@ -14846,7 +14845,7 @@ dependencies = [
[[package]]
name = "windmill-audit"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"chrono",
"serde",
@@ -14859,7 +14858,7 @@ dependencies = [
[[package]]
name = "windmill-autoscaling"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"serde",
@@ -14873,7 +14872,7 @@ dependencies = [
[[package]]
name = "windmill-common"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"async-stream",
@@ -14950,7 +14949,7 @@ dependencies = [
[[package]]
name = "windmill-git-sync"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"regex",
"serde",
@@ -14964,7 +14963,7 @@ dependencies = [
[[package]]
name = "windmill-indexer"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"bytes",
@@ -14987,7 +14986,7 @@ dependencies = [
[[package]]
name = "windmill-macros"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"itertools 0.14.0",
"lazy_static",
@@ -14999,7 +14998,7 @@ dependencies = [
[[package]]
name = "windmill-parser"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"convert_case 0.6.0",
"serde",
@@ -15008,7 +15007,7 @@ dependencies = [
[[package]]
name = "windmill-parser-bash"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -15020,7 +15019,7 @@ dependencies = [
[[package]]
name = "windmill-parser-csharp"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"serde_json",
@@ -15032,7 +15031,7 @@ dependencies = [
[[package]]
name = "windmill-parser-go"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"gosyn",
@@ -15044,7 +15043,7 @@ dependencies = [
[[package]]
name = "windmill-parser-graphql"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -15056,7 +15055,7 @@ dependencies = [
[[package]]
name = "windmill-parser-java"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"serde_json",
@@ -15068,7 +15067,7 @@ dependencies = [
[[package]]
name = "windmill-parser-nu"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"nu-parser",
@@ -15079,7 +15078,7 @@ dependencies = [
[[package]]
name = "windmill-parser-php"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"itertools 0.14.0",
@@ -15090,7 +15089,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"itertools 0.14.0",
@@ -15101,7 +15100,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py-imports"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"async-recursion",
@@ -15124,7 +15123,7 @@ dependencies = [
[[package]]
name = "windmill-parser-rust"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"convert_case 0.6.0",
@@ -15141,7 +15140,7 @@ dependencies = [
[[package]]
name = "windmill-parser-sql"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -15153,7 +15152,7 @@ dependencies = [
[[package]]
name = "windmill-parser-ts"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -15171,7 +15170,7 @@ dependencies = [
[[package]]
name = "windmill-parser-wasm"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"getrandom 0.2.16",
@@ -15195,7 +15194,7 @@ dependencies = [
[[package]]
name = "windmill-parser-yaml"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"serde_json",
@@ -15205,7 +15204,7 @@ dependencies = [
[[package]]
name = "windmill-queue"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"async-recursion",
@@ -15238,7 +15237,7 @@ dependencies = [
[[package]]
name = "windmill-sql-datatype-parser-wasm"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"wasm-bindgen",
"wasm-bindgen-test",
@@ -15248,7 +15247,7 @@ dependencies = [
[[package]]
name = "windmill-worker"
version = "1.503.3"
version = "1.504.0"
dependencies = [
"anyhow",
"async-recursion",
@@ -15895,9 +15894,9 @@ dependencies = [
[[package]]
name = "xml-rs"
version = "0.8.26"
version = "0.8.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda"
checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7"
[[package]]
name = "xmlparser"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.503.3"
version = "1.504.0"
authors.workspace = true
edition.workspace = true
@@ -32,7 +32,7 @@ members = [
]
[workspace.package]
version = "1.503.3"
version = "1.504.0"
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.503.3
version: 1.504.0
title: Windmill API
contact:
+1 -1
View File
@@ -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.503.3";
export const VERSION = "v1.504.0";
export async function login(email: string, password: string): Promise<string> {
return await windmill.UserService.login({
+1 -1
View File
@@ -63,7 +63,7 @@ export {
// }
// });
export const VERSION = "1.503.3";
export const VERSION = "1.504.0";
const command = new Command()
.name("wmill")
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "windmill-components",
"version": "1.503.3",
"version": "1.504.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "windmill-components",
"version": "1.503.3",
"version": "1.504.0",
"hasInstallScript": true,
"license": "AGPL-3.0",
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "windmill-components",
"version": "1.503.4",
"version": "1.504.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
+2 -2
View File
@@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"
[packages]
wmill = ">=1.503.3"
wmill_pg = ">=1.503.3"
wmill = ">=1.504.0"
wmill_pg = ">=1.504.0"
sendgrid = "*"
mysql-connector-python = "*"
pymongo = "*"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.503.3
version: 1.504.0
title: OpenFlow Spec
contact:
name: Ruben Fiszel
@@ -12,7 +12,7 @@
RootModule = 'WindmillClient.psm1'
# Version number of this module.
ModuleVersion = '1.503.3'
ModuleVersion = '1.504.0'
# Supported PSEditions
# CompatiblePSEditions = @()
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill"
version = "1.503.3"
version = "1.504.0"
description = "A client library for accessing Windmill server wrapping the Windmill client API"
license = "Apache-2.0"
homepage = "https://windmill.dev"
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill-pg"
version = "1.503.3"
version = "1.504.0"
description = "An extension client for the wmill client library focused on pg"
license = "Apache-2.0"
homepage = "https://windmill.dev"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@windmill/windmill",
"version": "1.503.3",
"version": "1.504.0",
"exports": "./src/index.ts",
"publish": {
"exclude": ["!src", "./s3Types.ts", "./client.ts"]
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "windmill-client",
"description": "Windmill SDK client for browsers and Node.js",
"version": "1.503.3",
"version": "1.504.0",
"author": "Ruben Fiszel",
"license": "Apache 2.0",
"devDependencies": {
+1 -1
View File
@@ -1 +1 @@
1.503.3
1.504.0