diff --git a/CHANGELOG.md b/CHANGELOG.md index 662b9d49f0..d4daec2455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## [1.70.1](https://github.com/windmill-labs/windmill/compare/v1.70.0...v1.70.1) (2023-02-27) + + +### Bug Fixes + +* **cli:** make cli resilient to systems without openable browsers ([c051ffe](https://github.com/windmill-labs/windmill/commit/c051ffeb42c1cff609f93da7745036ea722e17d4)) +* **frontend:** Disable move in nested subgrid ([#1238](https://github.com/windmill-labs/windmill/issues/1238)) ([70eab30](https://github.com/windmill-labs/windmill/commit/70eab303bd45111ae198d9b710bfd6f9f59e53b0)) +* **frontend:** Fix subgrid lock ([#1232](https://github.com/windmill-labs/windmill/issues/1232)) ([8ee9d67](https://github.com/windmill-labs/windmill/commit/8ee9d67f4faa91446338b41c664ef91913eb8b81)) + ## [1.70.0](https://github.com/windmill-labs/windmill/compare/v1.69.3...v1.70.0) (2023-02-27) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index b0309d4a0e..542fafb824 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -255,9 +255,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bd379e511536bad07447f899300aa526e9bae8e6f66dc5e5ca45d7587b7c1ec" +checksum = "6137c6234afb339e75e764c866e3594900f0211e1315d33779f269bbe2ec6967" dependencies = [ "async-trait", "axum-core", @@ -282,7 +282,7 @@ dependencies = [ "sync_wrapper", "tokio", "tower", - "tower-http 0.3.5", + "tower-http", "tower-layer", "tower-service", ] @@ -4141,25 +4141,6 @@ dependencies = [ "tower-service", ] -[[package]] -name = "tower-http" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" -dependencies = [ - "bitflags", - "bytes", - "futures-core", - "futures-util", - "http", - "http-body", - "http-range-header", - "pin-project-lite", - "tower", - "tower-layer", - "tower-service", -] - [[package]] name = "tower-http" version = "0.4.0" @@ -4174,6 +4155,7 @@ dependencies = [ "http-body", "http-range-header", "pin-project-lite", + "tower", "tower-layer", "tower-service", "tracing", @@ -4774,7 +4756,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "axum", @@ -4801,7 +4783,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "argon2", @@ -4840,7 +4822,7 @@ dependencies = [ "tokio-util", "tower", "tower-cookies", - "tower-http 0.4.0", + "tower-http", "tracing", "tracing-subscriber", "urlencoding", @@ -4856,7 +4838,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.70.0" +version = "1.70.1" dependencies = [ "base64 0.21.0", "chrono", @@ -4871,7 +4853,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.70.0" +version = "1.70.1" dependencies = [ "chrono", "serde", @@ -4884,7 +4866,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "axum", @@ -4909,7 +4891,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.70.0" +version = "1.70.1" dependencies = [ "serde", "serde_json", @@ -4917,7 +4899,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "itertools", @@ -4931,7 +4913,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "itertools", @@ -4943,7 +4925,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "itertools", @@ -4958,7 +4940,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "deno_core", @@ -4972,7 +4954,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "chrono", @@ -4995,7 +4977,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.70.0" +version = "1.70.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index e96728b583..525c80816b 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.70.0" +version = "1.70.1" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.70.0" +version = "1.70.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 7012b06e6a..ea79da331e 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.70.0 + version: 1.70.1 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index 3e7f46c4f1..202484170e 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.70.0"; +const VERSION = "v1.70.1"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index de1ec6825c..e542549a27 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.70.0", + "version": "1.70.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.70.0", + "version": "1.70.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 82268f986f..90e68a8c3e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.70.0", + "version": "1.70.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 2612315b5c..8f229456c0 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.70.0" -wmill_pg = ">=1.70.0" +wmill = ">=1.70.1" +wmill_pg = ">=1.70.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 03cc23fad3..e00b9d3c3a 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.70.0 + version: 1.70.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index d89846603e..5487e9abde 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.70.0" +version = "1.70.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.70.0" +windmill-api = "^1.70.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 40b3787ad6..87cf2a3bad 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.70.0" +version = "1.70.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 832e9afb6c..29a47f973d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.70.0 +1.70.1