diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c77ee83b2..d486a4e186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # Changelog +## [1.191.0](https://github.com/windmill-labs/windmill/compare/v1.190.3...v1.191.0) (2023-10-24) + + +### Features + +* Priority worker tags ([#2504](https://github.com/windmill-labs/windmill/issues/2504)) ([51f2198](https://github.com/windmill-labs/windmill/commit/51f2198c3403a424787b8dee51bc7eddc13c31b8)) + + +### Bug Fixes + +* concurrency limit EE feature warning ([#2505](https://github.com/windmill-labs/windmill/issues/2505)) ([927cbbe](https://github.com/windmill-labs/windmill/commit/927cbbe23090b212b13c106b65ad65668baf2f04)) +* improve concurrency limit lock ([d44b078](https://github.com/windmill-labs/windmill/commit/d44b078e70a5782f1a1c88a4546d369a547e966a)) +* improve runs to display flow informations ([9eaffa5](https://github.com/windmill-labs/windmill/commit/9eaffa5b5fe59ed9e0e7e2cea0721eea75b3d1b3)) + ## [1.190.3](https://github.com/windmill-labs/windmill/compare/v1.190.2...v1.190.3) (2023-10-24) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 69af15819a..2fb7616646 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1132,9 +1132,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" +checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" dependencies = [ "clap_builder", "clap_derive", @@ -1142,9 +1142,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" +checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" dependencies = [ "anstream", "anstyle", @@ -1154,9 +1154,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.4.2" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" dependencies = [ "heck", "proc-macro2", @@ -1166,9 +1166,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "cmake" @@ -5040,12 +5040,12 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.7" +version = "0.21.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" +checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" dependencies = [ "log", - "ring 0.16.20", + "ring 0.17.5", "rustls-webpki", "sct", ] @@ -5073,12 +5073,12 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.101.6" +version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.5", + "untrusted 0.9.0", ] [[package]] @@ -5251,12 +5251,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "sct" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.5", + "untrusted 0.9.0", ] [[package]] @@ -7677,7 +7677,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "axum", @@ -7711,7 +7711,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "argon2", @@ -7778,7 +7778,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.190.3" +version = "1.191.0" dependencies = [ "base64 0.21.5", "chrono", @@ -7796,7 +7796,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.190.3" +version = "1.191.0" dependencies = [ "chrono", "serde", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "axum", @@ -7839,7 +7839,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.190.3" +version = "1.191.0" dependencies = [ "serde", "serde_json", @@ -7847,7 +7847,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "lazy_static", @@ -7858,7 +7858,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "gosyn", @@ -7870,7 +7870,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "lazy_static", @@ -7881,7 +7881,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7892,7 +7892,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "async-recursion", @@ -7909,7 +7909,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "lazy_static", @@ -7920,7 +7920,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7937,7 +7937,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7955,7 +7955,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "async-recursion", @@ -7986,7 +7986,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.190.3" +version = "1.191.0" dependencies = [ "anyhow", "async-recursion", @@ -8256,18 +8256,18 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.11" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c19fae0c8a9efc6a8281f2e623db8af1db9e57852e04cde3e754dd2dc29340f" +checksum = "9ffc046c9f849405a42c87e82e2f2f861d1f0a06b855910c76c2bd1e87be900c" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.11" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc56589e9ddd1f1c28d4b4b5c773ce232910a6bb67a70133d61c9e347585efe9" +checksum = "246c000cfc5f942bac7ff99fde24a9ebb589d92e024bc758c6c733c15a02a73e" dependencies = [ "proc-macro2", "quote", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 270c246021..a7d123ace3 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.190.3" +version = "1.191.0" authors.workspace = true edition.workspace = true @@ -21,7 +21,7 @@ members = [ ] [workspace.package] -version = "1.190.3" +version = "1.191.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 5c8f732c1a..db1caf8e56 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.190.3 + version: 1.191.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 31bb68dfe8..682184864b 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.190.3"; +export const VERSION = "v1.191.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 35862f6a20..8b509fa90a 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.190.3"; +export const VERSION = "v1.191.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d524dc8fee..732e391cc2 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.190.3", + "version": "1.191.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.190.3", + "version": "1.191.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index d89f2c3746..7f848121cc 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.190.3", + "version": "1.191.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 076839b100..9afd46bb38 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.190.3" -wmill_pg = ">=1.190.3" +wmill = ">=1.191.0" +wmill_pg = ">=1.191.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 15b8405252..440842eda3 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.190.3 + version: 1.191.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 1c2925fcac..7a099a69d1 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.190.3" +version = "1.191.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.190.3" +windmill-api = "^1.191.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 57d644cff7..9cee528ab0 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.190.3" +version = "1.191.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 0769e6a15c..df5f2818f6 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.190.3", + "version": "1.191.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 4eac4d4e60..51b0c3b6d8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.190.3 +1.191.0