From 951fedf740cc3b4edbbb20826764321cfdae024f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 10 Jul 2023 21:14:12 +0200 Subject: [PATCH] chore(main): release 1.127.1 (#1823) * chore(main): release 1.127.1 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 8 ++++++ backend/Cargo.lock | 36 +++++++++++++-------------- 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, 41 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4c6e1469e..73949e2741 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## [1.127.1](https://github.com/windmill-labs/windmill/compare/v1.127.0...v1.127.1) (2023-07-10) + + +### Bug Fixes + +* **frontend:** Fix debug runs zIndex ([#1822](https://github.com/windmill-labs/windmill/issues/1822)) ([ce9088e](https://github.com/windmill-labs/windmill/commit/ce9088e7a847834522890ed53c96794773ced491)) +* **frontend:** Fix graph view when mulitple graphs are displayed ([#1821](https://github.com/windmill-labs/windmill/issues/1821)) ([5e4e52a](https://github.com/windmill-labs/windmill/commit/5e4e52a10941c83b54da730ed51fc982f44f8ac8)) + ## [1.127.0](https://github.com/windmill-labs/windmill/compare/v1.126.0...v1.127.0) (2023-07-10) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index f6f68c8b76..1601c6196f 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -230,9 +230,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" +checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6" dependencies = [ "brotli", "flate2", @@ -3494,7 +3494,7 @@ version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" dependencies = [ - "async-compression 0.4.0", + "async-compression 0.4.1", "base64 0.21.2", "bytes", "encoding_rs", @@ -6026,7 +6026,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "axum", @@ -6061,7 +6061,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "argon2", @@ -6118,7 +6118,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.127.0" +version = "1.127.1" dependencies = [ "base64 0.21.2", "chrono", @@ -6135,7 +6135,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.127.0" +version = "1.127.1" dependencies = [ "chrono", "serde", @@ -6148,7 +6148,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "axum", @@ -6173,7 +6173,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.127.0" +version = "1.127.1" dependencies = [ "serde", "serde_json", @@ -6181,7 +6181,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "lazy_static", @@ -6192,7 +6192,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "gosyn", @@ -6202,7 +6202,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "itertools 0.11.0", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "itertools 0.11.0", @@ -6228,7 +6228,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "lazy_static", @@ -6239,7 +6239,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "async-recursion", @@ -6300,7 +6300,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.127.0" +version = "1.127.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 67540c0720..997d18d245 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.127.0" +version = "1.127.1" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.127.0" +version = "1.127.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index ed45b58b2b..d7bd894aa4 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.127.0 + version: 1.127.1 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index 85bcf66258..d36a57ea31 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.127.0"; +export const VERSION = "v1.127.1"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 171a1e3c51..544fe9e828 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -28,7 +28,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.127.0"; +export const VERSION = "v1.127.1"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 7c42555526..2ef31ab3c6 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.127.0", + "version": "1.127.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.127.0", + "version": "1.127.1", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 7e9fcddbd9..d941ad389a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.127.0", + "version": "1.127.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 5303d4b50c..ac89fc8bb7 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.127.0" -wmill_pg = ">=1.127.0" +wmill = ">=1.127.1" +wmill_pg = ">=1.127.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 994a095dcb..6a42df565c 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.127.0 + version: 1.127.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index b9fe0a6deb..aae3048d5d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.127.0" +version = "1.127.1" 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.127.0" +windmill-api = "^1.127.1" [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 cd1eb0e19d..dad424a371 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.127.0" +version = "1.127.1" 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 a7fd4875b4..4abdbf98dc 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.127.0 +1.127.1