From 8e94c3aa630b3ef9f30de4e3fe505cdfba4dd2ab Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 27 Jul 2023 10:03:51 +0200 Subject: [PATCH] chore(main): release 1.137.0 (#1929) * chore(main): release 1.137.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 24 +++ backend/Cargo.lock | 250 +++++++++++++++++++------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 2 +- benchmarks/main.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 | 4 +- python-client/wmill_pg/pyproject.toml | 2 +- version.txt | 2 +- 13 files changed, 220 insertions(+), 84 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63d86e7779..ce798a368c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ # Changelog +## [1.137.0](https://github.com/windmill-labs/windmill/compare/v1.136.0...v1.137.0) (2023-07-27) + + +### Features + +* add workspace specific tags ([52f28b5](https://github.com/windmill-labs/windmill/commit/52f28b5173daffdbffeb45dbe94574fe54c73f4b)) +* extra_requirements ([93ac794](https://github.com/windmill-labs/windmill/commit/93ac7944b04b0e39043ed149df0dd3f50ff0e02a)) +* **frontend:** Add an output format ([#1939](https://github.com/windmill-labs/windmill/issues/1939)) ([e4506fe](https://github.com/windmill-labs/windmill/commit/e4506fef0ed3ece7702d677d4a82c87e8e7616a4)) +* **frontend:** AI edit / fix improvements ([#1923](https://github.com/windmill-labs/windmill/issues/1923)) ([0aa81e3](https://github.com/windmill-labs/windmill/commit/0aa81e39705d8c2109c8ec30855bb5f68eae133b)) +* **frontend:** App components dark mode ([#1937](https://github.com/windmill-labs/windmill/issues/1937)) ([71502c2](https://github.com/windmill-labs/windmill/commit/71502c2e0eced308fec3783450466c37007292e4)) +* **frontend:** Make Plotly layout dynamic ([#1942](https://github.com/windmill-labs/windmill/issues/1942)) ([9a539f9](https://github.com/windmill-labs/windmill/commit/9a539f909dd9e960f29901861dff674c416b4601)) +* handle worker groups with redis ([6f47bf9](https://github.com/windmill-labs/windmill/commit/6f47bf98065ff42d35078b9376fc670dbc868ea6)) +* lock depedency for the entire flow + dependency job depend on script/flow's tag ([90d57e2](https://github.com/windmill-labs/windmill/commit/90d57e2fadd9459d7fda6fad35aeb603e5074a65)) +* resolve dependencies across relative imports for python ([0f31ffe](https://github.com/windmill-labs/windmill/commit/0f31ffe174a8414393f8a2c3d0d9a0b4256667b6)) +* resolve dependencies across relative imports for python ([31141ce](https://github.com/windmill-labs/windmill/commit/31141ce52a73cdfa89127b9c4a03428bab6029cc)) +* use flock to avoid concurrency issues on pip and shared volume ([c22d2b9](https://github.com/windmill-labs/windmill/commit/c22d2b91a1d4257a6daeae1e29d77e9cc7fd3be5)) +* worker group for flows ([a099791](https://github.com/windmill-labs/windmill/commit/a0997911bf9da8651ddb830e9e09f2d3f82c73e4)) + + +### Bug Fixes + +* add property while viewing as JSON (+ ui tweaks) ([#1941](https://github.com/windmill-labs/windmill/issues/1941)) ([4f3b483](https://github.com/windmill-labs/windmill/commit/4f3b4836c2834d1f9975b92d8605bc6b046319fa)) +* respect FIFO order for concurrency limit ([601da7f](https://github.com/windmill-labs/windmill/commit/601da7f878ca039729e2ba1be734530b63bd773f)) + ## [1.136.0](https://github.com/windmill-labs/windmill/compare/v1.135.1...v1.136.0) (2023-07-24) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index f679588f2f..c46d975f43 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -201,7 +201,7 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c704e2f6ee1a98223f5a7629a6ef0f3decb3b552ed282889dc957edff98ce1e6" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -1393,6 +1393,29 @@ dependencies = [ "uuid 1.4.1", ] +[[package]] +name = "deno-proc-macro-rules" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c65c2ffdafc1564565200967edc4851c7b55422d3913466688907efd05ea26f" +dependencies = [ + "deno-proc-macro-rules-macros", + "proc-macro2", + "syn 2.0.27", +] + +[[package]] +name = "deno-proc-macro-rules-macros" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3047b312b7451e3190865713a4dd6e1f821aed614ada219766ebc3024a690435" +dependencies = [ + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.27", +] + [[package]] name = "deno_ast" version = "0.27.3" @@ -1431,11 +1454,11 @@ dependencies = [ [[package]] name = "deno_console" -version = "0.109.0" +version = "0.113.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04eb3b6a0337c1f2122d6d859586e6d011925a183ae6f588e08f42f3a4affecf" +checksum = "d031160f65cf55b6e12b19c36e176d5c6fc0004b1a19772a1537b4bd078493ad" dependencies = [ - "deno_core", + "deno_core 0.197.0", ] [[package]] @@ -1446,7 +1469,7 @@ checksum = "495704f95457631b366e8cbf427f817db8cdaf4b17832c69faa6b5b91e58fa2a" dependencies = [ "anyhow", "bytes", - "deno_ops", + "deno_ops 0.69.0", "futures", "indexmap 1.9.3", "libc", @@ -1456,23 +1479,49 @@ dependencies = [ "pin-project", "serde", "serde_json", - "serde_v8", + "serde_v8 0.102.0", "smallvec", "sourcemap", "tokio", "url", - "v8", + "v8 0.73.0", +] + +[[package]] +name = "deno_core" +version = "0.197.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efdf066ffb540f889e481c4f1cdbb7bc202a7af937e7c435234586395e533976" +dependencies = [ + "anyhow", + "bytes", + "deno_ops 0.75.0", + "futures", + "indexmap 1.9.3", + "libc", + "log", + "once_cell", + "parking_lot", + "pin-project", + "serde", + "serde_json", + "serde_v8 0.108.0", + "smallvec", + "sourcemap", + "tokio", + "url", + "v8 0.74.3", ] [[package]] name = "deno_fetch" -version = "0.133.0" +version = "0.137.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60389ff20e9eda3f75ab253f3e46b2d4de9c0e462bfd4144d125f4f1433cc12d" +checksum = "78e6f14059ac00b69cfb82f1a0a15af3272390b289ba3fa7a70bdeaa1d36ac6f" dependencies = [ "bytes", "data-url", - "deno_core", + "deno_core 0.197.0", "deno_tls", "dyn-clone", "http", @@ -1502,7 +1551,7 @@ checksum = "511999e75fa5712d483a40811e8b600964893ddf3948d20e0aecf7dac6a1969f" dependencies = [ "lazy-regex", "once_cell", - "pmutil", + "pmutil 0.5.3", "proc-macro-crate 1.3.1", "proc-macro2", "quote", @@ -1511,12 +1560,34 @@ dependencies = [ ] [[package]] -name = "deno_tls" -version = "0.96.0" +name = "deno_ops" +version = "0.75.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b35acb8674e9473f44b8b061a584508eee6fda01e195e59395d112da0428ded" +checksum = "ba2d2ca95637f48ba885bfa78cf3b962aa6752e4bb0bacda438e024a4b6b3b69" dependencies = [ - "deno_core", + "deno-proc-macro-rules", + "lazy-regex", + "once_cell", + "pmutil 0.6.1", + "proc-macro-crate 1.3.1", + "proc-macro2", + "quote", + "regex", + "strum", + "strum_macros", + "syn 1.0.109", + "syn 2.0.27", + "thiserror", + "v8 0.74.3", +] + +[[package]] +name = "deno_tls" +version = "0.100.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "266a8bf6ebd913f1860eda28989dcff6ad5f69e056024d6d0af2efb5f7356630" +dependencies = [ + "deno_core 0.197.0", "once_cell", "rustls", "rustls-native-certs", @@ -1528,11 +1599,11 @@ dependencies = [ [[package]] name = "deno_url" -version = "0.109.0" +version = "0.113.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "429e44733a4e59af6c1db8ea5215b86665a6f7b2022c2d7e968529af920884a4" +checksum = "63c6c209176b313a162afe6e711a89933dd401361f54a7d8594897c151f47ecb" dependencies = [ - "deno_core", + "deno_core 0.197.0", "serde", "serde_repr", "urlpattern", @@ -1546,7 +1617,7 @@ checksum = "d5db59bdc78f43d2bc31ad448b1bc75369aa48f1c68ae330f9b3e3a48b9d37b6" dependencies = [ "async-trait", "base64-simd", - "deno_core", + "deno_core 0.191.0", "encoding_rs", "flate2", "serde", @@ -1557,11 +1628,11 @@ dependencies = [ [[package]] name = "deno_webidl" -version = "0.109.0" +version = "0.113.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35e30dc4f727a4ca397528c944dbc74087df86b2268171995949031f1fbc663b" +checksum = "9be2ec2778676fbe8c5958cbce126fb72eb34f5d8d91fb5748bee6c6590355d8" dependencies = [ - "deno_core", + "deno_core 0.197.0", ] [[package]] @@ -1898,7 +1969,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "swc_macros_common", "syn 1.0.109", @@ -2201,11 +2272,13 @@ dependencies = [ [[package]] name = "gosyn" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "248a4b26b282ec2e90272f7e7bd4764eaa6378dee13497ef09aa0efebd80cc85" +checksum = "70b93546d5d444f37319802767121681f21309d5a16854513ba50ad8d761f362" dependencies = [ + "anyhow", "strum", + "thiserror", "unic-ucd-category", ] @@ -2555,7 +2628,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20" dependencies = [ "Inflector", - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "syn 1.0.109", @@ -2838,9 +2911,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.10" +version = "1.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e6ab01971eb092ffe6a7d42f49f9ff42662f17604681e2843ad65077ba47dc" +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" dependencies = [ "cc", "libc", @@ -3680,6 +3753,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "pmutil" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + [[package]] name = "polling" version = "2.8.0" @@ -4468,7 +4552,7 @@ checksum = "79ea77c539259495ce8ca47f53e66ae0330a8819f67e23ac96ca02f50e7b7d36" dependencies = [ "log", "ring", - "rustls-webpki 0.101.1", + "rustls-webpki 0.101.2", "sct", ] @@ -4505,9 +4589,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.101.1" +version = "0.101.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15f36a6828982f422756984e47912a7a51dcbc2a197aa791158f8ca61cd8204e" +checksum = "513722fd73ad80a71f72b61009ea1b584bcfa1483ca93949c8f290298837fa59" dependencies = [ "ring", "untrusted", @@ -4751,9 +4835,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.175" +version = "1.0.176" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b" +checksum = "76dc28c9523c5d70816e393136b86d48909cfb27cecaa902d338c19ed47164dc" dependencies = [ "serde_derive", ] @@ -4791,9 +4875,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.175" +version = "1.0.176" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4" +checksum = "a4e7b8c5dc823e3b90651ff1d3808419cd14e5ad76de04feaf37da114e7a306f" dependencies = [ "proc-macro2", "quote", @@ -4813,9 +4897,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.103" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" dependencies = [ "indexmap 2.0.0", "itoa", @@ -4912,7 +4996,23 @@ dependencies = [ "serde_bytes", "smallvec", "thiserror", - "v8", + "v8 0.73.0", +] + +[[package]] +name = "serde_v8" +version = "0.108.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a1a26c89d56d8607d220c639e971e3e3901138fcc5dd0f619cee0868e1cc89e" +dependencies = [ + "bytes", + "derive_more", + "num-bigint", + "serde", + "serde_bytes", + "smallvec", + "thiserror", + "v8 0.74.3", ] [[package]] @@ -5443,7 +5543,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0090512bdfee4b56d82480d66c0fd8a6f53f0fe0f97e075e949b252acdd482e0" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -5468,24 +5568,24 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "strum" -version = "0.24.1" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" dependencies = [ "strum_macros", ] [[package]] name = "strum_macros" -version = "0.24.3" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" +checksum = "6069ca09d878a33f883cc06aaa9718ede171841d3832450354410b718b097232" dependencies = [ "heck", "proc-macro2", "quote", "rustversion", - "syn 1.0.109", + "syn 2.0.27", ] [[package]] @@ -5564,7 +5664,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dadb9998d4f5fc36ef558ed5a092579441579ee8c6fcce84a5228cca9df4004" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -5629,7 +5729,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ee0caee1018808d94ecd09490cb7affd3d504b19aa11c49238f5fc4b54901" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -5733,7 +5833,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "984d5ac69b681fc5438f9abf82b0fda34fe04e119bc75f8213b7e01128c7c9a2" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -5839,7 +5939,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "syn 1.0.109", @@ -5851,7 +5951,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6" dependencies = [ - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "syn 1.0.109", @@ -5874,7 +5974,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfc226380ba54a5feed2c12f3ccd33f1ae8e959160290e5d2d9b4e918b6472a" dependencies = [ "Inflector", - "pmutil", + "pmutil 0.5.3", "proc-macro2", "quote", "swc_macros_common", @@ -6704,6 +6804,18 @@ dependencies = [ "which", ] +[[package]] +name = "v8" +version = "0.74.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eedac634b8dd39b889c5b62349cbc55913780226239166435c5cf66771792ea" +dependencies = [ + "bitflags 1.3.2", + "fslock", + "once_cell", + "which", +] + [[package]] name = "valuable" version = "0.1.0" @@ -6928,7 +7040,7 @@ version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888" dependencies = [ - "rustls-webpki 0.101.1", + "rustls-webpki 0.101.2", ] [[package]] @@ -6981,7 +7093,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "axum", @@ -7016,7 +7128,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "argon2", @@ -7074,7 +7186,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.136.0" +version = "1.137.0" dependencies = [ "base64 0.21.2", "chrono", @@ -7091,7 +7203,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.136.0" +version = "1.137.0" dependencies = [ "chrono", "serde", @@ -7104,7 +7216,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "axum", @@ -7129,7 +7241,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.136.0" +version = "1.137.0" dependencies = [ "serde", "serde_json", @@ -7137,7 +7249,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "lazy_static", @@ -7148,7 +7260,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "gosyn", @@ -7158,7 +7270,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7169,7 +7281,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "async-recursion", @@ -7186,7 +7298,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "lazy_static", @@ -7197,7 +7309,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7212,7 +7324,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7229,7 +7341,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "async-recursion", @@ -7258,7 +7370,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.136.0" +version = "1.137.0" dependencies = [ "anyhow", "async-recursion", @@ -7267,7 +7379,7 @@ dependencies = [ "const_format", "deno_ast", "deno_console", - "deno_core", + "deno_core 0.191.0", "deno_fetch", "deno_url", "deno_web", @@ -7383,9 +7495,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" +checksum = "25b5872fa2e10bd067ae946f927e726d7d603eaeb6e02fa6a350e0722d2b8c11" dependencies = [ "memchr", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 5c873d45a7..f7fe3dd2d8 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.136.0" +version = "1.137.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.136.0" +version = "1.137.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 5d411335fe..123191fbba 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.136.0 + version: 1.137.0 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index 3b902b6dab..c2dd0a6fd1 100644 --- a/benchmarks/main.ts +++ b/benchmarks/main.ts @@ -21,7 +21,7 @@ async function login(email: string, password: string): Promise { }); } -export const VERSION = "v1.136.0"; +export const VERSION = "v1.137.0"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 800f3ef351..598c21f3e3 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -30,7 +30,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.136.0"; +export const VERSION = "v1.137.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index dec0af1e4a..60c9d5d61d 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.136.0", + "version": "1.137.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.136.0", + "version": "1.137.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index a95fb1f05b..971a242fca 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.136.0", + "version": "1.137.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index f01253285a..cefea7ab9e 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.136.0" -wmill_pg = ">=1.136.0" +wmill = ">=1.137.0" +wmill_pg = ">=1.137.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index c7b031081a..416e0862d5 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.136.0 + version: 1.137.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index d5f16cd8af..ae444887a0 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.136.0" +version = "1.137.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.136.0" +windmill-api = "^1.137.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 8c5c182f2a..14521f29ed 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.136.0" +version = "1.137.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/version.txt b/version.txt index f69bce49e8..b4efaaa6cf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.136.0 +1.137.0