diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c969a1925..3c09dfc2d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Changelog +## [1.198.0](https://github.com/windmill-labs/windmill/compare/v1.197.1...v1.198.0) (2023-11-03) + + +### Features + +* **frontend:** fix table when seaching with hidden columns ([#2549](https://github.com/windmill-labs/windmill/issues/2549)) ([0aaffad](https://github.com/windmill-labs/windmill/commit/0aaffadf0ca6964539011733b5d4882fdd26588a)) +* **frontend:** update displayed path for treeview ([#2551](https://github.com/windmill-labs/windmill/issues/2551)) ([0349ba5](https://github.com/windmill-labs/windmill/commit/0349ba5d567f2b52ff8058f347e501598ce4c981)) + + +### Bug Fixes + +* **frontend:** fix mobile sidebar opacity ([#2554](https://github.com/windmill-labs/windmill/issues/2554)) ([e1e48cf](https://github.com/windmill-labs/windmill/commit/e1e48cfc5f3cb68aa4bbd18a1a2ad6f0a300c374)) +* make graph rendering uniform across all rem ([#2553](https://github.com/windmill-labs/windmill/issues/2553)) ([0d4fc6a](https://github.com/windmill-labs/windmill/commit/0d4fc6a0bbc9b8e20c20bf2646eab202f795b8bd)) +* make python imports work at any nesting level ([75a5766](https://github.com/windmill-labs/windmill/commit/75a5766f8bf14c3749aff56fb94a8c04b32de4b6)) +* make timeline fit for high number of iterations for flows ([37eac60](https://github.com/windmill-labs/windmill/commit/37eac608666d903504872ce815839a7493fe876a)) +* subflow with cache can not be considered simple ([54f0812](https://github.com/windmill-labs/windmill/commit/54f08122d2837b5ee3d283733e0da403b21fadf0)) +* support results[<x>] + export more metatada for scripts ([0f37439](https://github.com/windmill-labs/windmill/commit/0f37439877ab498a615746357d771703db47a6d2)) + ## [1.197.1](https://github.com/windmill-labs/windmill/compare/v1.197.0...v1.197.1) (2023-11-02) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 6c8627ff9e..4ce354ffdc 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1999,9 +1999,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.14" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd" +checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" [[package]] name = "dyn-iter" @@ -3828,9 +3828,9 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.58" +version = "0.10.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9dfc0783362704e97ef3bd24261995a699468440099ef95d869b4d9732f829a" +checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" dependencies = [ "bitflags 2.4.1", "cfg-if", @@ -3860,9 +3860,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.94" +version = "0.9.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f55da20b29f956fb01f0add8683eb26ee13ebe3ebd935e49898717c6b4b2830" +checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" dependencies = [ "cc", "libc", @@ -7995,7 +7995,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "axum", @@ -8030,7 +8030,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "argon2", @@ -8097,7 +8097,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.197.1" +version = "1.198.0" dependencies = [ "base64 0.21.5", "chrono", @@ -8115,7 +8115,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.197.1" +version = "1.198.0" dependencies = [ "chrono", "serde", @@ -8128,7 +8128,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "axum", @@ -8159,7 +8159,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.197.1" +version = "1.198.0" dependencies = [ "serde", "serde_json", @@ -8167,7 +8167,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "lazy_static", @@ -8178,7 +8178,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "gosyn", @@ -8190,7 +8190,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "lazy_static", @@ -8201,7 +8201,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -8212,7 +8212,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "async-recursion", @@ -8229,7 +8229,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "lazy_static", @@ -8240,7 +8240,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -8257,7 +8257,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -8275,7 +8275,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "async-recursion", @@ -8306,7 +8306,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.197.1" +version = "1.198.0" dependencies = [ "anyhow", "async-recursion", @@ -8577,18 +8577,18 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.23" +version = "0.7.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e50cbb27c30666a6108abd6bc7577556265b44f243e2be89a8bc4e07a528c107" +checksum = "092cd76b01a033a9965b9097da258689d9e17c69ded5dcf41bca001dd20ebc6d" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.23" +version = "0.7.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a25f293fe55f0a48e7010d65552bb63704f6ceb55a1a385da10d41d8f78e4a3d" +checksum = "a13a20a7c6a90e2034bcc65495799da92efcec6a8dd4f3fcb6f7a48988637ead" dependencies = [ "proc-macro2", "quote", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index a14cf87d55..3f18d60005 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.197.1" +version = "1.198.0" authors.workspace = true edition.workspace = true @@ -21,7 +21,7 @@ members = [ ] [workspace.package] -version = "1.197.1" +version = "1.198.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 9582475c6b..17a6525916 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.197.1 + version: 1.198.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 23858e56a2..8f67969829 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.197.1"; +export const VERSION = "v1.198.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 523a8cd7f1..2baed0dc3f 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.197.1"; +export const VERSION = "v1.198.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index daf64fe93c..20b628283b 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.197.1", + "version": "1.198.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.197.1", + "version": "1.198.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 33a050c69c..4d00fc9624 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.197.1", + "version": "1.198.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index b4f3103f4d..f9343ea5bc 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.197.1" -wmill_pg = ">=1.197.1" +wmill = ">=1.198.0" +wmill_pg = ">=1.198.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index cc57b64ccd..3e88f8e6bc 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.197.1 + version: 1.198.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 95952ea083..930a68395e 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.197.1" +version = "1.198.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.197.1" +windmill-api = "^1.198.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 0666297a03..22c969a50e 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.197.1" +version = "1.198.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 8ffdfa6c5e..4f9b32e37a 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.197.1", + "version": "1.198.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 9a836ffb13..e5056a2d3d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.197.1 +1.198.0