From c65b00dddfbac10ee3612b88b62161c8d375aa0b Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 21 Mar 2024 10:45:40 +0100 Subject: [PATCH] chore(main): release 1.293.0 (#3446) * chore(main): release 1.293.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 12 + backend/Cargo.lock | 311 +++++++++++++++++++------- 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 +- python-client/wmill/pyproject.toml | 2 +- python-client/wmill_pg/pyproject.toml | 2 +- typescript-client/package.json | 2 +- version.txt | 2 +- 14 files changed, 263 insertions(+), 90 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 737752d2c2..c2bf6ac357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.293.0](https://github.com/windmill-labs/windmill/compare/v1.292.4...v1.293.0) (2024-03-21) + + +### Features + +* s3 cache config added to instance settings + parallelized tar pulling ([174ead0](https://github.com/windmill-labs/windmill/commit/174ead04739359fa250d43397fe3e3548dde71d4)) + + +### Bug Fixes + +* **frontend:** datetime input date timezone ([#3445](https://github.com/windmill-labs/windmill/issues/3445)) ([458c476](https://github.com/windmill-labs/windmill/commit/458c476f0812e7514430fa56268a6958d1dc419a)) + ## [1.292.4](https://github.com/windmill-labs/windmill/compare/v1.292.3...v1.292.4) (2024-03-19) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index a61ad3a560..8100a8b52d 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -76,9 +76,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] @@ -364,7 +364,7 @@ dependencies = [ "futures-lite 2.3.0", "parking", "polling 3.5.0", - "rustix 0.38.31", + "rustix 0.38.32", "slab", "tracing", "windows-sys 0.52.0", @@ -400,7 +400,7 @@ dependencies = [ "bytes", "http 0.2.12", "rand 0.8.5", - "reqwest", + "reqwest 0.11.20", "serde", "serde-aux", "serde_json", @@ -479,8 +479,8 @@ dependencies = [ "hex", "hmac", "http-types", - "hyper", - "hyper-tls", + "hyper 0.14.28", + "hyper-tls 0.5.0", "serde", "serde_json", "serde_path_to_error", @@ -587,7 +587,7 @@ dependencies = [ "fastrand 2.0.1", "hex", "http 0.2.12", - "hyper", + "hyper 0.14.28", "ring 0.17.8", "time", "tokio", @@ -623,7 +623,7 @@ dependencies = [ "bytes", "fastrand 2.0.1", "http 0.2.12", - "http-body", + "http-body 0.4.6", "percent-encoding", "pin-project-lite", "tracing", @@ -743,7 +743,7 @@ dependencies = [ "bytes-utils", "futures-core", "http 0.2.12", - "http-body", + "http-body 0.4.6", "once_cell", "percent-encoding", "pin-project-lite", @@ -782,10 +782,10 @@ dependencies = [ "aws-smithy-types", "bytes", "fastrand 2.0.1", - "h2", + "h2 0.3.25", "http 0.2.12", - "http-body", - "hyper", + "http-body 0.4.6", + "hyper 0.14.28", "hyper-rustls", "once_cell", "pin-project-lite", @@ -823,7 +823,7 @@ dependencies = [ "bytes-utils", "futures-core", "http 0.2.12", - "http-body", + "http-body 0.4.6", "itoa", "num-integer", "pin-project-lite", @@ -872,8 +872,8 @@ dependencies = [ "futures-util", "headers", "http 0.2.12", - "http-body", - "hyper", + "http-body 0.4.6", + "hyper 0.14.28", "itoa", "matchit", "memchr", @@ -902,7 +902,7 @@ dependencies = [ "bytes", "futures-util", "http 0.2.12", - "http-body", + "http-body 0.4.6", "mime", "rustversion", "tower-layer", @@ -2064,7 +2064,7 @@ dependencies = [ "dyn-clone", "http 0.2.12", "pin-project", - "reqwest", + "reqwest 0.11.20", "serde", "serde_json", "tokio", @@ -2740,9 +2740,9 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" +checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f" [[package]] name = "filetime" @@ -3036,7 +3036,7 @@ dependencies = [ "async-trait", "base64 0.21.7", "dirs-next", - "hyper", + "hyper 0.14.28", "hyper-rustls", "ring 0.16.20", "rustls 0.21.10", @@ -3323,6 +3323,25 @@ dependencies = [ "tracing", ] +[[package]] +name = "h2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51ee2dd2e4f378392eeff5d51618cd9a63166a2513846bbc55f21cfacd9199d4" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 1.1.0", + "indexmap 2.2.5", + "slab", + "tokio", + "tokio-util", + "tracing", +] + [[package]] name = "half" version = "2.4.0" @@ -3516,6 +3535,29 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" +dependencies = [ + "bytes", + "http 1.1.0", +] + +[[package]] +name = "http-body-util" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" +dependencies = [ + "bytes", + "futures-core", + "http 1.1.0", + "http-body 1.0.0", + "pin-project-lite", +] + [[package]] name = "http-range-header" version = "0.3.1" @@ -3571,9 +3613,9 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2", + "h2 0.3.25", "http 0.2.12", - "http-body", + "http-body 0.4.6", "httparse", "httpdate", "itoa", @@ -3585,6 +3627,26 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "h2 0.4.3", + "http 1.1.0", + "http-body 1.0.0", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + [[package]] name = "hyper-rustls" version = "0.24.2" @@ -3593,7 +3655,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper", + "hyper 0.14.28", "log", "rustls 0.21.10", "rustls-native-certs", @@ -3608,12 +3670,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper", + "hyper 0.14.28", "native-tls", "tokio", "tokio-native-tls", ] +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper 1.2.0", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.0", + "hyper 1.2.0", + "pin-project-lite", + "socket2 0.5.6", + "tokio", + "tower", + "tower-service", + "tracing", +] + [[package]] name = "iana-time-zone" version = "0.1.60" @@ -4331,9 +4429,9 @@ dependencies = [ [[package]] name = "mysql_async" -version = "0.34.0" +version = "0.34.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c00d5e2fdfe3f52a7b3160d9ddde95022d316e644611994866e6a473295a7b2f" +checksum = "fbfe87d7e35cb72363326216cc1712b865d8d4f70abf3b2d2e6b251fb6b2f427" dependencies = [ "bytes", "crossbeam", @@ -4578,7 +4676,7 @@ dependencies = [ "getrandom 0.2.12", "http 0.2.12", "rand 0.8.5", - "reqwest", + "reqwest 0.11.20", "serde", "serde_json", "serde_path_to_error", @@ -4608,13 +4706,13 @@ dependencies = [ "chrono", "futures", "humantime", - "hyper", + "hyper 0.14.28", "itertools 0.11.0", "parking_lot", "percent-encoding", "quick-xml 0.31.0", "rand 0.8.5", - "reqwest", + "reqwest 0.11.20", "ring 0.17.8", "serde", "serde_json", @@ -4952,7 +5050,7 @@ dependencies = [ "futures", "lazy_static", "log", - "reqwest", + "reqwest 0.11.20", "thiserror", "tokio", "zip", @@ -5253,7 +5351,7 @@ dependencies = [ "polars-utils", "rayon", "regex", - "reqwest", + "reqwest 0.11.20", "ryu", "simdutf8", "smartstring", @@ -5478,7 +5576,7 @@ dependencies = [ "cfg-if", "concurrent-queue", "pin-project-lite", - "rustix 0.38.31", + "rustix 0.38.32", "tracing", "windows-sys 0.52.0", ] @@ -5690,7 +5788,7 @@ dependencies = [ "bytes", "futures-core", "percent-encoding", - "reqwest", + "reqwest 0.11.20", "serde", "serde_json", "serde_urlencoded", @@ -6146,12 +6244,12 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2", + "h2 0.3.25", "http 0.2.12", - "http-body", - "hyper", + "http-body 0.4.6", + "hyper 0.14.28", "hyper-rustls", - "hyper-tls", + "hyper-tls 0.5.0", "ipnet", "js-sys", "log", @@ -6180,6 +6278,48 @@ dependencies = [ "winreg", ] +[[package]] +name = "reqwest" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58b48d98d932f4ee75e541614d32a7f44c889b72bd9c2e04d95edd135989df88" +dependencies = [ + "base64 0.21.7", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2 0.4.3", + "http 1.1.0", + "http-body 1.0.0", + "http-body-util", + "hyper 1.2.0", + "hyper-tls 0.6.0", + "hyper-util", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "system-configuration", + "tokio", + "tokio-native-tls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + [[package]] name = "rfc6979" version = "0.4.0" @@ -6421,9 +6561,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.31" +version = "0.38.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" +checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" dependencies = [ "bitflags 2.5.0", "errno", @@ -7130,9 +7270,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.13.1" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "smart-default" @@ -8088,6 +8228,27 @@ dependencies = [ "winapi", ] +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "tap" version = "1.0.1" @@ -8119,7 +8280,7 @@ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", "fastrand 2.0.1", - "rustix 0.38.31", + "rustix 0.38.32", "windows-sys 0.52.0", ] @@ -8498,7 +8659,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.8", + "toml_edit 0.22.9", ] [[package]] @@ -8536,9 +8697,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.8" +version = "0.22.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c12219811e0c1ba077867254e5ad62ee2c9c190b0d957110750ac0cda1ae96cd" +checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" dependencies = [ "indexmap 2.2.5", "serde", @@ -8604,7 +8765,7 @@ dependencies = [ "futures-core", "futures-util", "http 0.2.12", - "http-body", + "http-body 0.4.6", "http-range-header", "pin-project-lite", "tower-layer", @@ -8707,7 +8868,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49bbc87d08020d7c2a9f4bb0b7d10da5381d3867f8ae57fcc54621b34567e963" dependencies = [ "loki-api", - "reqwest", + "reqwest 0.11.20", "serde", "serde_json", "snap", @@ -9344,7 +9505,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.31", + "rustix 0.38.32", ] [[package]] @@ -9356,7 +9517,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.31", + "rustix 0.38.32", "windows-sys 0.48.0", ] @@ -9404,7 +9565,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "axum", @@ -9420,7 +9581,7 @@ dependencies = [ "pg-embed", "prometheus", "rand 0.8.5", - "reqwest", + "reqwest 0.12.0", "rsmq_async", "serde", "serde_json", @@ -9441,7 +9602,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "argon2", @@ -9465,7 +9626,7 @@ dependencies = [ "hex", "hf-hub", "hmac", - "hyper", + "hyper 0.14.28", "itertools 0.12.1", "lazy_static", "magic-crypt", @@ -9480,7 +9641,7 @@ dependencies = [ "quick_cache", "rand 0.8.5", "regex", - "reqwest", + "reqwest 0.12.0", "rsa 0.7.2", "rsmq_async", "rust-embed", @@ -9516,7 +9677,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.292.4" +version = "1.293.0" dependencies = [ "base64 0.21.7", "chrono", @@ -9525,7 +9686,7 @@ dependencies = [ "progenitor", "progenitor-client", "rand 0.8.5", - "reqwest", + "reqwest 0.11.20", "serde", "serde_json", "syn 1.0.109", @@ -9534,7 +9695,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.292.4" +version = "1.293.0" dependencies = [ "chrono", "serde", @@ -9547,7 +9708,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "aws-config", @@ -9558,7 +9719,7 @@ dependencies = [ "git-version", "hex", "hmac", - "hyper", + "hyper 0.14.28", "itertools 0.12.1", "lazy_static", "magic-crypt", @@ -9566,7 +9727,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest", + "reqwest 0.12.0", "serde", "serde_json", "sha2 0.10.8", @@ -9582,7 +9743,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.292.4" +version = "1.293.0" dependencies = [ "regex", "rsmq_async", @@ -9597,7 +9758,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.292.4" +version = "1.293.0" dependencies = [ "serde", "serde_json", @@ -9605,7 +9766,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "lazy_static", @@ -9616,7 +9777,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "gosyn", @@ -9628,7 +9789,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "lazy_static", @@ -9639,7 +9800,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "itertools 0.12.1", @@ -9650,7 +9811,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "async-recursion", @@ -9667,7 +9828,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "lazy_static", @@ -9678,7 +9839,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9696,7 +9857,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "getrandom 0.2.12", @@ -9714,7 +9875,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "async-recursion", @@ -9730,7 +9891,7 @@ dependencies = [ "lazy_static", "prometheus", "regex", - "reqwest", + "reqwest 0.12.0", "rsmq_async", "serde", "serde_json", @@ -9747,7 +9908,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.292.4" +version = "1.293.0" dependencies = [ "anyhow", "async-recursion", @@ -9784,7 +9945,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest", + "reqwest 0.12.0", "rsmq_async", "rust_decimal", "serde", @@ -9999,7 +10160,7 @@ checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" dependencies = [ "libc", "linux-raw-sys 0.4.13", - "rustix 0.38.31", + "rustix 0.38.32", ] [[package]] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index d786613e44..2260fe60e5 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.292.4" +version = "1.293.0" authors.workspace = true edition.workspace = true @@ -23,7 +23,7 @@ members = [ ] [workspace.package] -version = "1.292.4" +version = "1.293.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 97916049c8..bbd3f29b0b 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.292.4 + version: 1.293.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 8b5fa8580c..8960dc0e8d 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.292.4"; +export const VERSION = "v1.293.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 3fa49cb706..fca23bab9d 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.292.4"; +export const VERSION = "v1.293.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index e16c7a1d9a..43a28455a3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.292.4", + "version": "1.293.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.292.4", + "version": "1.293.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 0da632d18f..455c84c1af 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.292.4", + "version": "1.293.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index e9a7ebaaf1..0623dcf334 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.292.4" -wmill_pg = ">=1.292.4" +wmill = ">=1.293.0" +wmill_pg = ">=1.293.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 5d1ce8ddcb..d1ab4e041f 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.292.4 + version: 1.293.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index da921ad914..b43af3ddb2 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.292.4" +version = "1.293.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 884f4d54b9..1894ef5582 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.292.4" +version = "1.293.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/package.json b/typescript-client/package.json index 22561acb9b..4d6bb04016 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.292.4", + "version": "1.293.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index cc45675980..12b80d3d00 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.292.4 +1.293.0