diff --git a/CHANGELOG.md b/CHANGELOG.md index b31a26cbce..0d779c2f94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## [1.134.2](https://github.com/windmill-labs/windmill/compare/v1.134.1...v1.134.2) (2023-07-20) + + +### Bug Fixes + +* **frontend:** Prevent options from closing when an option is selected ([#1912](https://github.com/windmill-labs/windmill/issues/1912)) ([b2b3249](https://github.com/windmill-labs/windmill/commit/b2b3249e51c3340b8a819e037ba68984a35d90a8)) +* remove lockfile on any rawinput change in flows ([8c58752](https://github.com/windmill-labs/windmill/commit/8c58752a16e66d74981eb5eab4763198d4775905)) +* remove lockfile on any rawinput change in flows ([dfb1d8f](https://github.com/windmill-labs/windmill/commit/dfb1d8fa44222f52b285a37d867a42cb1f27450d)) + ## [1.134.1](https://github.com/windmill-labs/windmill/compare/v1.134.0...v1.134.1) (2023-07-20) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index ce9c52ee13..c60e3382eb 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -259,7 +259,7 @@ dependencies = [ "async-lock", "async-task", "concurrent-queue", - "fastrand", + "fastrand 1.9.0", "futures-lite", "slab", ] @@ -731,7 +731,7 @@ dependencies = [ "async-lock", "async-task", "atomic-waker", - "fastrand", + "fastrand 1.9.0", "futures-lite", "log", ] @@ -1395,9 +1395,9 @@ dependencies = [ [[package]] name = "deno_ast" -version = "0.27.2" +version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a39dc5554b1c835c62914b545f8b378563a997521e39a8f03450b37b216143ef" +checksum = "6b17e25531279d9795aeb076909c91c9b369fa63fd4d801486950577d0457d22" dependencies = [ "anyhow", "base64 0.13.1", @@ -1815,6 +1815,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "filetime" version = "0.2.21" @@ -2031,7 +2037,7 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "futures-io", "memchr", @@ -5911,15 +5917,14 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tempfile" -version = "3.6.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" +checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" dependencies = [ - "autocfg", "cfg-if", - "fastrand", + "fastrand 2.0.0", "redox_syscall 0.3.5", - "rustix 0.37.23", + "rustix 0.38.4", "windows-sys", ] @@ -6285,9 +6290,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ac8060a61f8758a61562f6fb53ba3cbe1ca906f001df2e53cccddcdbee91e7c" +checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82" dependencies = [ "bitflags 2.3.3", "bytes", @@ -6976,7 +6981,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "axum", @@ -7011,7 +7016,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "argon2", @@ -7069,7 +7074,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.134.1" +version = "1.134.2" dependencies = [ "base64 0.21.2", "chrono", @@ -7086,7 +7091,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.134.1" +version = "1.134.2" dependencies = [ "chrono", "serde", @@ -7099,7 +7104,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "axum", @@ -7124,7 +7129,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.134.1" +version = "1.134.2" dependencies = [ "serde", "serde_json", @@ -7132,7 +7137,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "lazy_static", @@ -7143,7 +7148,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "gosyn", @@ -7153,7 +7158,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7164,7 +7169,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7179,7 +7184,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "lazy_static", @@ -7190,7 +7195,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7205,7 +7210,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7222,7 +7227,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "async-recursion", @@ -7251,7 +7256,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.134.1" +version = "1.134.2" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 3b18217ae9..9409fd916a 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.134.1" +version = "1.134.2" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.134.1" +version = "1.134.2" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index b1bb5a6755..76db175218 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.134.1 + version: 1.134.2 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index 96c00e4065..07d6f68c92 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.134.1"; +export const VERSION = "v1.134.2"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index f9f0ac6e15..0a8e6d7f27 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -30,7 +30,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.134.1"; +export const VERSION = "v1.134.2"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index f583a284ba..b2e6824655 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.134.1", + "version": "1.134.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.134.1", + "version": "1.134.2", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 0448adbdc0..accfc5e9c3 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.134.1", + "version": "1.134.2", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 167cd71afa..29a7757cff 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.134.1" -wmill_pg = ">=1.134.1" +wmill = ">=1.134.2" +wmill_pg = ">=1.134.2" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 29ede7a8c0..618bd8cd92 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.134.1 + version: 1.134.2 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 584697cd8b..91430ac9d5 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.134.1" +version = "1.134.2" 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.134.1" +windmill-api = "^1.134.2" [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 c8225d5226..8d6cbd5b32 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.134.1" +version = "1.134.2" 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 c950869b15..de3a10f5aa 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.134.1 +1.134.2