diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e4ba1f1e..4e4721ad89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog +## [1.103.0](https://github.com/windmill-labs/windmill/compare/v1.102.1...v1.103.0) (2023-05-22) + + +### Features + +* docker as a new supported language ([b8da43d](https://github.com/windmill-labs/windmill/commit/b8da43db2c31225b0ade8cd9995aeacf2c0eae86)) +* **frontend:** add flowstatus and log component for apps ([11a52f2](https://github.com/windmill-labs/windmill/commit/11a52f2d593a9b233fd138c7af52fc34fa1e6173)) +* **frontend:** add plain chartjs component ([#1621](https://github.com/windmill-labs/windmill/issues/1621)) ([eb99b73](https://github.com/windmill-labs/windmill/commit/eb99b73346a02993fcaeb6df906fcaf663db259d)) +* **frontend:** disable tabs ([#1623](https://github.com/windmill-labs/windmill/issues/1623)) ([5905d3b](https://github.com/windmill-labs/windmill/commit/5905d3b103b0d1466c4d11b248aec9adbe3bfaad)) + ## [1.102.1](https://github.com/windmill-labs/windmill/compare/v1.102.0...v1.102.1) (2023-05-21) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 464f99acea..910d630b4f 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -251,7 +251,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "beec3f8fb8f710b7be84ccd1716e17f38f2868168355cab5f2f168ae988e767e" dependencies = [ - "base64 0.21.0", + "base64 0.21.1", "bytes", "http", "rand 0.8.5", @@ -446,9 +446,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" +checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105" [[package]] name = "base64ct" @@ -3054,7 +3054,7 @@ version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" dependencies = [ - "base64 0.21.0", + "base64 0.21.1", "bytes", "encoding_rs", "futures-core", @@ -3253,7 +3253,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" dependencies = [ - "base64 0.21.0", + "base64 0.21.1", ] [[package]] @@ -5088,11 +5088,11 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "axum", - "base64 0.21.0", + "base64 0.21.1", "chrono", "dotenv", "futures", @@ -5122,7 +5122,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "argon2", @@ -5130,7 +5130,7 @@ dependencies = [ "async-stripe", "async_zip", "axum", - "base64 0.21.0", + "base64 0.21.1", "bytes", "chrono", "chrono-tz", @@ -5181,9 +5181,9 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.102.1" +version = "1.103.0" dependencies = [ - "base64 0.21.0", + "base64 0.21.1", "chrono", "prettyplease", "progenitor", @@ -5198,7 +5198,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.102.1" +version = "1.103.0" dependencies = [ "chrono", "serde", @@ -5211,7 +5211,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "axum", @@ -5236,7 +5236,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.102.1" +version = "1.103.0" dependencies = [ "serde", "serde_json", @@ -5244,7 +5244,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "itertools", @@ -5259,7 +5259,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "gosyn", @@ -5272,7 +5272,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "itertools", @@ -5287,7 +5287,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "deno_core", @@ -5301,7 +5301,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "chrono", @@ -5329,7 +5329,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.102.1" +version = "1.103.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index b6e8f41adf..ac7e2b94e8 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.102.1" +version = "1.103.0" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.102.1" +version = "1.103.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 8b67c4fb06..d2aede7152 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.102.1 + version: 1.103.0 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index e5bf4fc00e..4bc059fd1f 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -27,7 +27,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.102.1"; +export const VERSION = "v1.103.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 2af089751f..b609076560 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.102.1", + "version": "1.103.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.102.1", + "version": "1.103.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index bee3d33d29..08f19ca63d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.102.1", + "version": "1.103.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index a900fe1fc1..b22f50c878 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.102.1" -wmill_pg = ">=1.102.1" +wmill = ">=1.103.0" +wmill_pg = ">=1.103.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index f9ef2f5788..9f2faa08f3 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.102.1 + version: 1.103.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 02f88d1b54..3c773a4bbd 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.102.1" +version = "1.103.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.102.1" +windmill-api = "^1.103.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 54f8a0642b..d95af491d2 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.102.1" +version = "1.103.0" 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 900a09bc83..e402df2ddc 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.102.1 +1.103.0