diff --git a/CHANGELOG.md b/CHANGELOG.md index 8465ad2649..e0288c1961 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,33 @@ # Changelog +## [1.175.0](https://github.com/windmill-labs/windmill/compare/v1.174.0...v1.175.0) (2023-09-19) + + +### Features + +* add batch jobs ([#2306](https://github.com/windmill-labs/windmill/issues/2306)) ([5867e5d](https://github.com/windmill-labs/windmill/commit/5867e5d0f80fd515fab165659831b5ee9a8c3f97)) +* add dediacted worker env var ([#2296](https://github.com/windmill-labs/windmill/issues/2296)) ([e0c6eee](https://github.com/windmill-labs/windmill/commit/e0c6eee16e535b3a7d803a7978e463404f5fec30)) +* dedicated benchmarks ([#2297](https://github.com/windmill-labs/windmill/issues/2297)) ([c549239](https://github.com/windmill-labs/windmill/commit/c5492396843ddd9143ffe890696d0317c970de36)) +* **frontend:** Add component control doc ([#2295](https://github.com/windmill-labs/windmill/issues/2295)) ([26f8863](https://github.com/windmill-labs/windmill/commit/26f88636f0b972d4fe4931ed02135c38b27a56d2)) +* suggest adding openai key on workspace creation ([a6b3b2f](https://github.com/windmill-labs/windmill/commit/a6b3b2f63b317825a3d80218cbb606b9f610c221)) +* support pinned versions for bun in deployed scripts ([03806dc](https://github.com/windmill-labs/windmill/commit/03806dc3907cba724be14acb6aadf5be6e35cdb6)) + + +### Bug Fixes + +* add HOME to bun and deno ([0e3ecc7](https://github.com/windmill-labs/windmill/commit/0e3ecc7d6025c173135f20bacc33a0dc972ec222)) +* add queue_count to metrics ([9ced883](https://github.com/windmill-labs/windmill/commit/9ced8834a45151c6900b1eb33eca2cff4886a065)) +* ai improve prompts ([#2310](https://github.com/windmill-labs/windmill/issues/2310)) ([b647213](https://github.com/windmill-labs/windmill/commit/b647213b2c968b0cb1f90c97d94e8023c415dd55)) +* **frontend:** add missing key ([#2299](https://github.com/windmill-labs/windmill/issues/2299)) ([39d2467](https://github.com/windmill-labs/windmill/commit/39d24672ddd696372e55e9b4566f322a322385a8)) +* **frontend:** Always mount components ([#2309](https://github.com/windmill-labs/windmill/issues/2309)) ([34f94aa](https://github.com/windmill-labs/windmill/commit/34f94aa50e92254114c046fa8b7e900d93807937)) +* **frontend:** fix alignment ([#2307](https://github.com/windmill-labs/windmill/issues/2307)) ([f9fc6f1](https://github.com/windmill-labs/windmill/commit/f9fc6f19482e68c9ccba0014879fd8761662c36a)) +* **frontend:** Fix rich result styling + add title and hideDetails config ([#2294](https://github.com/windmill-labs/windmill/issues/2294)) ([732daef](https://github.com/windmill-labs/windmill/commit/732daef1c3515f7df3e09deac691bb585f9859cd)) +* **frontend:** fix tab styling + component bg ([#2308](https://github.com/windmill-labs/windmill/issues/2308)) ([5e773d3](https://github.com/windmill-labs/windmill/commit/5e773d386343f003425173207c166e3c4eeef956)) +* **frontend:** fix theme make default ([#2304](https://github.com/windmill-labs/windmill/issues/2304)) ([4629819](https://github.com/windmill-labs/windmill/commit/46298197c5333a81b9b8a004027ab9a856bdada4)) +* **frontend:** fix theme UI ([#2305](https://github.com/windmill-labs/windmill/issues/2305)) ([576f76b](https://github.com/windmill-labs/windmill/commit/576f76b1ffe9c50c8ccaca8c5e34d0ec03aebf3f)) +* validate more strongly usernames ([47094bb](https://github.com/windmill-labs/windmill/commit/47094bb8d1c6f4ba621d42515dede061fd04afdd)) + ## [1.174.0](https://github.com/windmill-labs/windmill/compare/v1.173.0...v1.174.0) (2023-09-15) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index c055aca272..730b208ae3 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -64,9 +64,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +checksum = "0f2135563fb5c609d2b2b87c1e8ce7bc41b0b45430fa9661f457981503dd5bf0" dependencies = [ "memchr", ] @@ -204,7 +204,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -334,7 +334,7 @@ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -411,7 +411,7 @@ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -623,7 +623,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.34", + "syn 2.0.37", "which", ] @@ -644,7 +644,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -992,9 +992,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.3" +version = "4.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6" +checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136" dependencies = [ "clap_builder", "clap_derive", @@ -1002,9 +1002,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.2" +version = "4.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" +checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56" dependencies = [ "anstream", "anstyle", @@ -1021,7 +1021,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1328,7 +1328,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1350,7 +1350,7 @@ checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" dependencies = [ "darling_core 0.20.3", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1408,7 +1408,7 @@ checksum = "3c65c2ffdafc1564565200967edc4851c7b55422d3913466688907efd05ea26f" dependencies = [ "deno-proc-macro-rules-macros", "proc-macro2", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1420,7 +1420,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1540,7 +1540,7 @@ dependencies = [ "strum", "strum_macros", "syn 1.0.109", - "syn 2.0.34", + "syn 2.0.37", "thiserror", ] @@ -1761,9 +1761,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfc4744c1b8f2a09adc0e55242f60b1af195d88596bd8700be74418c056c555" +checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" [[package]] name = "dyn-iter" @@ -1950,7 +1950,7 @@ dependencies = [ "pmutil", "proc-macro2", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1978,7 +1978,7 @@ checksum = "b0fa992f1656e1707946bbba340ad244f0814009ef8c0118eb7b658395f19a2e" dependencies = [ "frunk_proc_macro_helpers", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -1990,7 +1990,7 @@ dependencies = [ "frunk_core", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -2002,7 +2002,7 @@ dependencies = [ "frunk_core", "frunk_proc_macro_helpers", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -2103,7 +2103,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -2376,9 +2376,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hex" @@ -2634,7 +2634,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -3162,7 +3162,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", "termcolor", "thiserror", ] @@ -3429,7 +3429,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -3688,7 +3688,7 @@ dependencies = [ "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -3726,7 +3726,7 @@ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -3798,7 +3798,7 @@ checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -3907,7 +3907,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" dependencies = [ "proc-macro2", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -4027,7 +4027,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "syn 2.0.34", + "syn 2.0.37", "thiserror", "typify", "unicode-ident", @@ -4047,7 +4047,7 @@ dependencies = [ "serde_json", "serde_tokenstream", "serde_yaml", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -4494,7 +4494,7 @@ dependencies = [ "proc-macro2", "quote", "rust-embed-utils", - "syn 2.0.34", + "syn 2.0.37", "walkdir", ] @@ -4767,9 +4767,9 @@ dependencies = [ [[package]] name = "schemars" -version = "0.8.13" +version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763f8cd0d4c71ed8389c90cb8100cba87e763bd01a8e614d4f0af97bcd50a161" +checksum = "1f7b0ce13155372a76ee2e1c5ffba1fe61ede73fbea5630d61eee6fac4929c0c" dependencies = [ "chrono", "dyn-clone", @@ -4781,9 +4781,9 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.13" +version = "0.8.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0f696e21e10fa546b7ffb1c9672c6de8fbc7a81acf59524386d8639bf12737" +checksum = "e85e2a16b12bdb763244c69ab79363d71db2b4b918a2def53f80b02e0574b13c" dependencies = [ "proc-macro2", "quote", @@ -4932,7 +4932,7 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5008,7 +5008,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5587,7 +5587,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5626,7 +5626,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5708,7 +5708,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5757,7 +5757,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5840,7 +5840,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5944,7 +5944,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5956,7 +5956,7 @@ dependencies = [ "pmutil", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5980,7 +5980,7 @@ dependencies = [ "proc-macro2", "quote", "swc_macros_common", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -5996,9 +5996,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.34" +version = "2.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88ec6cdb6a4c16306eccf52ccd8d492e4ab64705a15a5016acb205251001bf72" +checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" dependencies = [ "proc-macro2", "quote", @@ -6043,9 +6043,9 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" +checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" dependencies = [ "winapi-util", ] @@ -6076,7 +6076,7 @@ checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -6180,7 +6180,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -6433,7 +6433,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", ] [[package]] @@ -6571,7 +6571,7 @@ dependencies = [ "regress", "schemars", "serde_json", - "syn 2.0.34", + "syn 2.0.37", "thiserror", "unicode-ident", ] @@ -6588,7 +6588,7 @@ dependencies = [ "serde", "serde_json", "serde_tokenstream", - "syn 2.0.34", + "syn 2.0.37", "typify-impl", ] @@ -6716,9 +6716,9 @@ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "unicode-xid" @@ -6906,7 +6906,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", "wasm-bindgen-shared", ] @@ -6940,7 +6940,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.34", + "syn 2.0.37", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -7096,7 +7096,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "axum", @@ -7131,7 +7131,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "argon2", @@ -7190,7 +7190,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.174.0" +version = "1.175.0" dependencies = [ "base64 0.21.4", "chrono", @@ -7208,7 +7208,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.174.0" +version = "1.175.0" dependencies = [ "chrono", "serde", @@ -7221,7 +7221,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "axum", @@ -7249,7 +7249,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.174.0" +version = "1.175.0" dependencies = [ "serde", "serde_json", @@ -7257,7 +7257,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "lazy_static", @@ -7268,7 +7268,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "gosyn", @@ -7280,7 +7280,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "lazy_static", @@ -7291,7 +7291,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7302,7 +7302,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "async-recursion", @@ -7319,7 +7319,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "lazy_static", @@ -7330,7 +7330,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7347,7 +7347,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7365,7 +7365,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "async-recursion", @@ -7395,7 +7395,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.174.0" +version = "1.175.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 008c52a448..516d63f6d6 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.174.0" +version = "1.175.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.174.0" +version = "1.175.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index ff9aa693a1..65ea950432 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.174.0 + version: 1.175.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index c0cdd029ba..e40040c351 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.174.0"; +export const VERSION = "v1.175.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 827113f607..106df7dd78 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.174.0"; +export const VERSION = "v1.175.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index ce9825e067..b433b07487 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.174.0", + "version": "1.175.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.174.0", + "version": "1.175.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 009523a92a..d0d7e50d80 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.174.0", + "version": "1.175.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 3683463ca0..95eecf258e 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.174.0" -wmill_pg = ">=1.174.0" +wmill = ">=1.175.0" +wmill_pg = ">=1.175.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 5c276f7c76..1f418d3b58 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.174.0 + version: 1.175.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 77ac8f64c6..3f92c9b8e7 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.174.0" +version = "1.175.0" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" @@ -16,7 +16,7 @@ include = ["wmill/py.typed"] [tool.poetry.dependencies] python = "^3.7" -windmill-api = "^1.174.0" +windmill-api = "^1.175.0" [build-system] requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"] diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 00d612af31..12d8dd005e 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.174.0" +version = "1.175.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 410f2835b9..2a935ced64 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.174.0", + "version": "1.175.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 5fb8146c5b..05d6f5d6ff 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.174.0 +1.175.0