From d4a77f5719aac3a51052fdfd563ba6fc8f9b9073 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 23 Sep 2024 17:28:18 +0200 Subject: [PATCH] chore(main): release 1.398.0 (#4412) * chore(main): release 1.398.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 18 ++ backend/Cargo.lock | 190 +++++++++++------- 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 +- .../WindmillClient/WindmillClient.psd1 | 2 +- python-client/wmill/pyproject.toml | 2 +- python-client/wmill_pg/pyproject.toml | 2 +- typescript-client/jsr.json | 2 +- typescript-client/package.json | 2 +- version.txt | 2 +- 16 files changed, 148 insertions(+), 94 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f873cf9f09..06025b5d91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [1.398.0](https://github.com/windmill-labs/windmill/compare/v1.397.4...v1.398.0) (2024-09-23) + + +### Features + +* **frontend:** add http routing templates ([#4421](https://github.com/windmill-labs/windmill/issues/4421)) ([e99e7b2](https://github.com/windmill-labs/windmill/commit/e99e7b2b0bb1bc63d1253d147b80bac06eaff103)) +* http routing ([#4339](https://github.com/windmill-labs/windmill/issues/4339)) ([304dac3](https://github.com/windmill-labs/windmill/commit/304dac34475b8871621c54a768275fae1e9f845e)) + + +### Bug Fixes + +* allow no body in job requests ([#4413](https://github.com/windmill-labs/windmill/issues/4413)) ([70fa78c](https://github.com/windmill-labs/windmill/commit/70fa78c10d8afb3e06be84e3449fdfdeb2673765)) +* **frontend:** Fix delete branch one index ([#4418](https://github.com/windmill-labs/windmill/issues/4418)) ([30017cc](https://github.com/windmill-labs/windmill/commit/30017cc2b1401ea439e3fbec5d7764b206100a38)) +* migrate smtp instance settings to global settings ([#4416](https://github.com/windmill-labs/windmill/issues/4416)) ([50a6f78](https://github.com/windmill-labs/windmill/commit/50a6f789fa8a03d70407b0429da049cc0740b6fa)) +* no failed renewal alert if trial ([#4414](https://github.com/windmill-labs/windmill/issues/4414)) ([5be7be0](https://github.com/windmill-labs/windmill/commit/5be7be03a6df34a9fae96ed7f844d693f7cfce3e)) +* update pip to 24.2 and python 3.11.8->3.11.10 ([a17195d](https://github.com/windmill-labs/windmill/commit/a17195d88ff52b72f0c2cdd95c6218df8ef6d7cf)) +* various improvements for ansible ([#4419](https://github.com/windmill-labs/windmill/issues/4419)) ([a500994](https://github.com/windmill-labs/windmill/commit/a500994cc2cd9cc6cbad722059cebd0bf74a8850)) + ## [1.397.4](https://github.com/windmill-labs/windmill/compare/v1.397.3...v1.397.4) (2024-09-20) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index bc523bdd5e..f0a63f1d7c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -286,7 +286,7 @@ dependencies = [ "arrow-data", "arrow-schema", "chrono", - "chrono-tz", + "chrono-tz 0.9.0", "half", "hashbrown 0.14.5", "num", @@ -1056,9 +1056,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.7.5" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" +checksum = "8f43644eed690f5374f1af436ecd6aea01cd201f6fbdf0178adaf6907afb2cec" dependencies = [ "async-trait", "axum-core", @@ -1083,7 +1083,7 @@ dependencies = [ "serde_urlencoded", "sync_wrapper 1.0.1", "tokio", - "tower", + "tower 0.5.1", "tower-layer", "tower-service", "tracing", @@ -1091,9 +1091,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" +checksum = "5e6b8ba012a258d63c9adfa28b9ddcf66149da6f986c5b5452e629d5ee64bf00" dependencies = [ "async-trait", "bytes", @@ -1104,7 +1104,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper 0.1.2", + "sync_wrapper 1.0.1", "tower-layer", "tower-service", "tracing", @@ -1667,7 +1667,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" dependencies = [ "chrono", - "chrono-tz-build", + "chrono-tz-build 0.3.0", + "phf", +] + +[[package]] +name = "chrono-tz" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6" +dependencies = [ + "chrono", + "chrono-tz-build 0.4.0", "phf", ] @@ -1682,6 +1693,16 @@ dependencies = [ "phf_codegen", ] +[[package]] +name = "chrono-tz-build" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7" +dependencies = [ + "parse-zoneinfo", + "phf_codegen", +] + [[package]] name = "cipher" version = "0.3.0" @@ -1714,9 +1735,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.17" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac" +checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" dependencies = [ "clap_builder", "clap_derive", @@ -1724,9 +1745,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.17" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73" +checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" dependencies = [ "anstream", "anstyle", @@ -1736,9 +1757,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.13" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -2661,7 +2682,7 @@ dependencies = [ "tokio-rustls 0.26.0", "tokio-socks", "tokio-util", - "tower", + "tower 0.4.13", "tower-http", "tower-service", ] @@ -2774,7 +2795,7 @@ dependencies = [ "rustls-webpki 0.102.8", "serde", "tokio", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", ] [[package]] @@ -4285,7 +4306,7 @@ dependencies = [ "pin-project-lite", "socket2 0.5.7", "tokio", - "tower", + "tower 0.4.13", "tower-service", "tracing", ] @@ -4871,7 +4892,7 @@ dependencies = [ "smtp-proto", "tokio", "tokio-rustls 0.26.0", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", ] [[package]] @@ -5421,7 +5442,7 @@ dependencies = [ "md-5 0.10.6", "parking_lot", "percent-encoding", - "quick-xml 0.36.1", + "quick-xml 0.36.2", "rand 0.8.5", "reqwest 0.12.7", "ring 0.17.8", @@ -5970,9 +5991,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" +checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "polling" @@ -5991,9 +6012,9 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265" +checksum = "d30538d42559de6b034bc76fd6dd4c38961b1ee5c6c56e3808c50128fdbc22ce" [[package]] name = "postgres-native-tls" @@ -6353,9 +6374,9 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.36.1" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc" +checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" dependencies = [ "memchr", "serde", @@ -7394,9 +7415,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.11.1" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" +checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" dependencies = [ "core-foundation-sys", "libc", @@ -7734,9 +7755,9 @@ dependencies = [ [[package]] name = "simdutf8" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "simple_asn1" @@ -8030,7 +8051,7 @@ dependencies = [ "tracing", "url", "uuid 1.10.0", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", ] [[package]] @@ -9040,18 +9061,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" dependencies = [ "proc-macro2", "quote", @@ -9476,6 +9497,21 @@ dependencies = [ "tokio", "tower-layer", "tower-service", +] + +[[package]] +name = "tower" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 0.1.2", + "tokio", + "tower-layer", + "tower-service", "tracing", ] @@ -9893,9 +9929,9 @@ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" [[package]] name = "unicode-id" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f" +checksum = "10103c57044730945224467c09f71a4db0071c123a0648cc3e818913bde6b561" [[package]] name = "unicode-id-start" @@ -9941,15 +9977,15 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" [[package]] name = "unicode-width" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "unicode-xid" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "unicode_categories" @@ -10013,7 +10049,7 @@ dependencies = [ "serde", "serde_json", "url", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", ] [[package]] @@ -10309,9 +10345,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.5" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bd24728e5af82c6c4ec1b66ac4844bdf8156257fccda846ec58b42cd0cdbe6a" +checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" dependencies = [ "rustls-pki-types", ] @@ -10390,7 +10426,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "axum", @@ -10432,7 +10468,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "argon2", @@ -10449,7 +10485,7 @@ dependencies = [ "candle-nn", "candle-transformers", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "cookie 0.17.0", "crc", "cron", @@ -10461,7 +10497,7 @@ dependencies = [ "hmac", "http 1.1.0", "hyper 1.4.1", - "itertools 0.10.5", + "itertools 0.13.0", "jsonwebtoken", "lazy_static", "magic-crypt", @@ -10496,7 +10532,7 @@ dependencies = [ "tokio-native-tls", "tokio-tar", "tokio-util", - "tower", + "tower 0.5.1", "tower-cookies", "tower-http", "tracing", @@ -10517,7 +10553,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.397.4" +version = "1.398.0" dependencies = [ "base64 0.21.7", "chrono", @@ -10535,7 +10571,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.397.4" +version = "1.398.0" dependencies = [ "chrono", "serde", @@ -10548,7 +10584,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "async-stream", @@ -10566,7 +10602,7 @@ dependencies = [ "hmac", "hyper 1.4.1", "indexmap 2.5.0", - "itertools 0.10.5", + "itertools 0.13.0", "lazy_static", "magic-crypt", "mail-send", @@ -10592,7 +10628,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.397.4" +version = "1.398.0" dependencies = [ "regex", "rsmq_async", @@ -10607,7 +10643,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "bytes", @@ -10628,7 +10664,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.397.4" +version = "1.398.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -10637,7 +10673,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "lazy_static", @@ -10649,11 +10685,11 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "gosyn", - "itertools 0.10.5", + "itertools 0.13.0", "lazy_static", "regex", "windmill-parser", @@ -10661,7 +10697,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "lazy_static", @@ -10673,10 +10709,10 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.13.0", "php-parser-rs", "serde_json", "windmill-parser", @@ -10684,10 +10720,10 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.13.0", "rustpython-parser", "serde_json", "windmill-parser", @@ -10695,11 +10731,11 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "async-recursion", - "itertools 0.10.5", + "itertools 0.13.0", "lazy_static", "phf", "regex", @@ -10713,11 +10749,11 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "convert_case 0.6.0", - "itertools 0.10.5", + "itertools 0.13.0", "lazy_static", "pulldown-cmark", "quote", @@ -10730,7 +10766,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "lazy_static", @@ -10742,7 +10778,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "lazy_static", @@ -10760,7 +10796,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "getrandom 0.2.15", @@ -10781,7 +10817,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "serde_json", @@ -10791,19 +10827,19 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "async-recursion", "axum", "bigdecimal", "chrono", - "chrono-tz", + "chrono-tz 0.10.0", "cron", "futures-core", "hex", "hmac", - "itertools 0.10.5", + "itertools 0.13.0", "lazy_static", "prometheus", "regex", @@ -10824,7 +10860,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.397.4" +version = "1.398.0" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -10834,7 +10870,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.397.4" +version = "1.398.0" dependencies = [ "anyhow", "async-recursion", @@ -10859,7 +10895,7 @@ dependencies = [ "gcp_auth", "git-version", "hex", - "itertools 0.10.5", + "itertools 0.13.0", "jsonwebtoken", "lazy_static", "mappable-rc", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index b7e333fc8e..d3cce964ab 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.397.4" +version = "1.398.0" authors.workspace = true edition.workspace = true @@ -27,7 +27,7 @@ members = [ ] [workspace.package] -version = "1.397.4" +version = "1.398.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 6e6c91d42f..0647740832 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.397.4 + version: 1.398.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index dbd0e8c9c3..302aabedda 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.397.4"; +export const VERSION = "v1.398.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 d7b9222f1e..fef671f7bb 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -56,7 +56,7 @@ export { // } // }); -export const VERSION = "1.397.4"; +export const VERSION = "1.398.0"; const command = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 712eac83c6..c8ac42d138 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.397.4", + "version": "1.398.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.397.4", + "version": "1.398.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index a66c1c06f8..93d8de4957 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.397.4", + "version": "1.398.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 18b8e073bc..e2bee8dbf4 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.397.4" -wmill_pg = ">=1.397.4" +wmill = ">=1.398.0" +wmill_pg = ">=1.398.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 9d5add0348..68d1ca833e 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.397.4 + version: 1.398.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 0f35530a67..c43c197513 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.397.4' +ModuleVersion = '1.398.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index fd9e288efc..a20968d60f 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.397.4" +version = "1.398.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 5309ddbbe7..5d34fd9888 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.397.4" +version = "1.398.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 fcfe0fbc2e..d018c0709d 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.397.4", + "version": "1.398.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 a416403aaf..5c2a14227f 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.397.4", + "version": "1.398.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 959b80f80c..b9e0df398a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.397.4 +1.398.0