diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d18a8f798..0eed2e165e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog +## [1.73.1](https://github.com/windmill-labs/windmill/compare/v1.73.0...v1.73.1) (2023-03-07) + + +### Bug Fixes + +* **frontend:** load flow is not initialized ([719d475](https://github.com/windmill-labs/windmill/commit/719d4752621d462b1cfaa0d27930fba7586be779)) + ## [1.73.0](https://github.com/windmill-labs/windmill/compare/v1.72.0...v1.73.0) (2023-03-07) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7a928af259..0d00cb7bf5 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -2953,7 +2953,7 @@ dependencies = [ [[package]] name = "rustpython-ast" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#01512e27a0c8c95d28e134e196b06530e3372540" +source = "git+https://github.com/RustPython/RustPython#5a74f08c842c893890882a6ec7e4c85cadf70840" dependencies = [ "num-bigint", "rustpython-compiler-core", @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "rustpython-compiler-core" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#01512e27a0c8c95d28e134e196b06530e3372540" +source = "git+https://github.com/RustPython/RustPython#5a74f08c842c893890882a6ec7e4c85cadf70840" dependencies = [ "bitflags", "bstr", @@ -2975,7 +2975,7 @@ dependencies = [ [[package]] name = "rustpython-parser" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#01512e27a0c8c95d28e134e196b06530e3372540" +source = "git+https://github.com/RustPython/RustPython#5a74f08c842c893890882a6ec7e4c85cadf70840" dependencies = [ "ahash", "anyhow", @@ -3147,9 +3147,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.152" +version = "1.0.153" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +checksum = "3a382c72b4ba118526e187430bb4963cd6d55051ebf13d9b25574d379cc98d20" dependencies = [ "serde_derive", ] @@ -3176,9 +3176,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.152" +version = "1.0.153" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +checksum = "1ef476a5790f0f6decbc66726b6e5d63680ed518283e64c7df415989d880954f" dependencies = [ "proc-macro2", "quote", @@ -4730,7 +4730,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "axum", @@ -4757,7 +4757,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "argon2", @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.73.0" +version = "1.73.1" dependencies = [ "base64 0.21.0", "chrono", @@ -4827,7 +4827,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.73.0" +version = "1.73.1" dependencies = [ "chrono", "serde", @@ -4840,7 +4840,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "axum", @@ -4865,7 +4865,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.73.0" +version = "1.73.1" dependencies = [ "serde", "serde_json", @@ -4873,7 +4873,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "itertools", @@ -4887,7 +4887,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "itertools", @@ -4899,7 +4899,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "itertools", @@ -4914,7 +4914,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "deno_core", @@ -4928,7 +4928,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "chrono", @@ -4951,7 +4951,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.73.0" +version = "1.73.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 6109d672a6..38b61cb190 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.73.0" +version = "1.73.1" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.73.0" +version = "1.73.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 3257e15ca3..e2d8a17976 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.73.0 + version: 1.73.1 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index 782bb35376..e85fbc4a95 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -13,7 +13,7 @@ import sync from "./sync.ts"; import { tryResolveVersion } from "./context.ts"; import { GlobalOptions } from "./types.ts"; -const VERSION = "v1.73.0"; +const VERSION = "v1.73.1"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 43f8ab77ed..91f66f2894 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.73.0", + "version": "1.73.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.73.0", + "version": "1.73.1", "dependencies": { "@fortawesome/free-brands-svg-icons": "^6.2.1", "@fortawesome/free-solid-svg-icons": "^6.2.1", diff --git a/frontend/package.json b/frontend/package.json index 6df4b1997c..b405c4b871 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.73.0", + "version": "1.73.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index ce4d3c97dc..0c8c31aecb 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.73.0" -wmill_pg = ">=1.73.0" +wmill = ">=1.73.1" +wmill_pg = ">=1.73.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index f7b0c602bc..d68a458116 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.73.0 + version: 1.73.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 5537ddc5c2..c6b2da1448 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.73.0" +version = "1.73.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.73.0" +windmill-api = "^1.73.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 20e09ec3a9..4633ed54f8 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.73.0" +version = "1.73.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 5e3a425662..d3de22ef2f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.73.0 +1.73.1