From 85130dc79167d4619a7b8bf27beef5fb36a01d00 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Tue, 1 Oct 2024 12:38:44 +0200 Subject: [PATCH] chore(main): release 1.403.0 (#4459) * chore(main): release 1.403.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 12 +++ backend/Cargo.lock | 95 +++++++++---------- 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, 76 insertions(+), 65 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 848d9a6f10..ef129eb0c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.403.0](https://github.com/windmill-labs/windmill/compare/v1.402.3...v1.403.0) (2024-10-01) + + +### Features + +* flow step skipping ([#4461](https://github.com/windmill-labs/windmill/issues/4461)) ([0df169e](https://github.com/windmill-labs/windmill/commit/0df169e3f996ed54b91569b13cce15d7d019a213)) + + +### Bug Fixes + +* skip one migration to avoid using md5 for azure support ([630ae5d](https://github.com/windmill-labs/windmill/commit/630ae5d425cd9957d674befd2df96e2befec52a3)) + ## [1.402.3](https://github.com/windmill-labs/windmill/compare/v1.402.2...v1.402.3) (2024-09-30) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 0dfc4ee458..f38c3be406 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -595,7 +595,7 @@ dependencies = [ "bytes", "http 1.1.0", "rand 0.8.5", - "reqwest 0.12.7", + "reqwest 0.12.8", "serde", "serde-aux", "serde_json", @@ -1609,9 +1609,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.22" +version = "1.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9540e661f81799159abee814118cc139a2004b3a3aa3ea37724a1b66530b90e0" +checksum = "3bbb537bb4a30b90362caddba8f360c0a56bc13d3a5570028e7197204cb54a17" dependencies = [ "jobserver", "libc", @@ -2708,7 +2708,7 @@ dependencies = [ "dlopen2_derive", "once_cell", "rustls-native-certs 0.7.3", - "rustls-pemfile 2.1.3", + "rustls-pemfile 2.2.0", ] [[package]] @@ -2790,7 +2790,7 @@ dependencies = [ "deno_core", "deno_native_certs", "rustls 0.23.13", - "rustls-pemfile 2.1.3", + "rustls-pemfile 2.2.0", "rustls-tokio-stream", "rustls-webpki 0.102.8", "serde", @@ -4167,9 +4167,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.9.4" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" +checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" [[package]] name = "httpdate" @@ -5444,7 +5444,7 @@ dependencies = [ "percent-encoding", "quick-xml 0.36.2", "rand 0.8.5", - "reqwest 0.12.7", + "reqwest 0.12.8", "ring 0.17.8", "serde", "serde_json", @@ -6767,9 +6767,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.7" +version = "0.12.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63" +checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b" dependencies = [ "async-compression 0.4.12", "base64 0.22.1", @@ -6795,8 +6795,8 @@ dependencies = [ "pin-project-lite", "quinn", "rustls 0.23.13", - "rustls-native-certs 0.7.3", - "rustls-pemfile 2.1.3", + "rustls-native-certs 0.8.0", + "rustls-pemfile 2.2.0", "rustls-pki-types", "serde", "serde_json", @@ -7126,7 +7126,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.3", + "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", "security-framework", @@ -7139,7 +7139,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.3", + "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", "security-framework", @@ -7156,11 +7156,10 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.3" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "base64 0.22.1", "rustls-pki-types", ] @@ -8042,7 +8041,7 @@ dependencies = [ "paste", "percent-encoding", "rustls 0.23.13", - "rustls-pemfile 2.1.3", + "rustls-pemfile 2.2.0", "serde", "serde_json", "sha2 0.10.8", @@ -9663,7 +9662,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea6023f9fe4b69267ccd3ed7d203d931c43c5f82dbaa0f07202bc17193a5f43" dependencies = [ "loki-api", - "reqwest 0.12.7", + "reqwest 0.12.8", "serde", "serde_json", "snap", @@ -9968,9 +9967,9 @@ dependencies = [ [[package]] name = "unicode-properties" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ea75f83c0137a9b98608359a5f1af8144876eb67bcb1ce837368e906a9f524" +checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" [[package]] name = "unicode-segmentation" @@ -10429,7 +10428,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "axum", @@ -10447,7 +10446,7 @@ dependencies = [ "prometheus", "quote", "rand 0.8.5", - "reqwest 0.12.7", + "reqwest 0.12.8", "rsmq_async", "serde", "serde_json", @@ -10471,7 +10470,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "argon2", @@ -10515,7 +10514,7 @@ dependencies = [ "quick_cache", "rand 0.8.5", "regex", - "reqwest 0.12.7", + "reqwest 0.12.8", "rsa 0.7.2", "rsmq_async", "rust-embed", @@ -10555,7 +10554,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.402.3" +version = "1.403.0" dependencies = [ "base64 0.21.7", "chrono", @@ -10573,7 +10572,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.402.3" +version = "1.403.0" dependencies = [ "chrono", "serde", @@ -10586,7 +10585,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "async-stream", @@ -10613,7 +10612,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest 0.12.7", + "reqwest 0.12.8", "serde", "serde_json", "sha2 0.10.8", @@ -10631,7 +10630,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.402.3" +version = "1.403.0" dependencies = [ "regex", "rsmq_async", @@ -10646,7 +10645,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "bytes", @@ -10667,7 +10666,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.402.3" +version = "1.403.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -10676,7 +10675,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "lazy_static", @@ -10688,7 +10687,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "gosyn", @@ -10700,7 +10699,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "lazy_static", @@ -10712,7 +10711,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10723,7 +10722,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10734,7 +10733,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "async-recursion", @@ -10752,7 +10751,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -10769,7 +10768,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "lazy_static", @@ -10781,7 +10780,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "lazy_static", @@ -10799,7 +10798,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "getrandom 0.2.15", @@ -10820,7 +10819,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "serde_json", @@ -10830,7 +10829,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "async-recursion", @@ -10846,7 +10845,7 @@ dependencies = [ "lazy_static", "prometheus", "regex", - "reqwest 0.12.7", + "reqwest 0.12.8", "rsmq_async", "serde", "serde_json", @@ -10863,7 +10862,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.402.3" +version = "1.403.0" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -10873,7 +10872,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.402.3" +version = "1.403.0" dependencies = [ "anyhow", "async-recursion", @@ -10913,7 +10912,7 @@ dependencies = [ "prometheus", "rand 0.8.5", "regex", - "reqwest 0.12.7", + "reqwest 0.12.8", "rsmq_async", "rust_decimal", "serde", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 9b7a0123c8..ab1927c81f 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.402.3" +version = "1.403.0" authors.workspace = true edition.workspace = true @@ -27,7 +27,7 @@ members = [ ] [workspace.package] -version = "1.402.3" +version = "1.403.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index c8c30a7db1..5d5c3fd1df 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.402.3 + version: 1.403.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 2d88e6abed..c877f27c70 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.402.3"; +export const VERSION = "v1.403.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 c1aa86cf3e..0a3e71b1f9 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -60,7 +60,7 @@ export { // } // }); -export const VERSION = "1.402.3"; +export const VERSION = "1.403.0"; const command = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index fbfe82be4e..091f654742 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.402.3", + "version": "1.403.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.402.3", + "version": "1.403.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index b85fc1caba..06d9dbdb9c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.402.3", + "version": "1.403.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 8487b85565..26b7000d6c 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.402.3" -wmill_pg = ">=1.402.3" +wmill = ">=1.403.0" +wmill_pg = ">=1.403.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index e95266c52f..7407b45e7b 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.402.3 + version: 1.403.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 89445c5e22..8f030752a6 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.402.3' +ModuleVersion = '1.403.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 5746949537..4946f00d1d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.402.3" +version = "1.403.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 5e4f589322..9621e6fd35 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.402.3" +version = "1.403.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 a4dfd07ee9..6d9056ba38 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.402.3", + "version": "1.403.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 c6fbf1c41c..48d7b0cac0 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.402.3", + "version": "1.403.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index cce8c1101e..7b3e7a790c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.402.3 +1.403.0