diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d95916b3..cfb01eb079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ # Changelog +## [1.138.0](https://github.com/windmill-labs/windmill/compare/v1.137.1...v1.138.0) (2023-07-28) + + +### Features + +* add bigquery ([#1934](https://github.com/windmill-labs/windmill/issues/1934)) ([fd4c978](https://github.com/windmill-labs/windmill/commit/fd4c978874e6020d59e85b209d418435a0bcda1b)) +* add supabaze wizard ([24b0658](https://github.com/windmill-labs/windmill/commit/24b0658460453b6e8d241be3be9f11946c3cf84b)) +* **frontend:** Make app from scripts and flows ([#1938](https://github.com/windmill-labs/windmill/issues/1938)) ([9f9498d](https://github.com/windmill-labs/windmill/commit/9f9498dbd90349ad641487824d4d85ed73c43260)) +* **frontend:** schema explorer, autocomplete and db aware AI for mysql ([#1944](https://github.com/windmill-labs/windmill/issues/1944)) ([5061a87](https://github.com/windmill-labs/windmill/commit/5061a873760f232d7824f407d2d0fad5ee6891db)) + + +### Bug Fixes + +* add sync method for flows ([e03da23](https://github.com/windmill-labs/windmill/commit/e03da23f17a63dea30a93607a2986d9ddeb6c213)) +* **frontend:** AI gen popup ([#1950](https://github.com/windmill-labs/windmill/issues/1950)) ([029d017](https://github.com/windmill-labs/windmill/commit/029d0170995f3bc1f0fe43f3e5991b7513121439)) +* **frontend:** Fix Account settings unreadable texts ([#1958](https://github.com/windmill-labs/windmill/issues/1958)) ([3b90580](https://github.com/windmill-labs/windmill/commit/3b905800bff45eaa23dd69e5b60619bf1d289e3d)) +* **frontend:** Fix App Table select ([#1955](https://github.com/windmill-labs/windmill/issues/1955)) ([16d6815](https://github.com/windmill-labs/windmill/commit/16d6815945eccd1c671b73ffd2163973874bea5c)) +* **frontend:** Fix build app from flow ([#1954](https://github.com/windmill-labs/windmill/issues/1954)) ([5c66afe](https://github.com/windmill-labs/windmill/commit/5c66afeb8fec3829e1fcdc95afcc4c4050470793)) +* **frontend:** Fix dark mode issues ([#1953](https://github.com/windmill-labs/windmill/issues/1953)) ([4f0c94a](https://github.com/windmill-labs/windmill/commit/4f0c94aafbef08b7c5f44f4073a3adfb17956a95)) +* **frontend:** reset btn for all langs ([#1949](https://github.com/windmill-labs/windmill/issues/1949)) ([265b7d7](https://github.com/windmill-labs/windmill/commit/265b7d7fbe1402986492c02d200342596925bcab)) +* improve webhooks panel correctness ([adea8ff](https://github.com/windmill-labs/windmill/commit/adea8ff1b484e8653ae189312775cd0f34e321dd)) +* prevent error if json editor not mounted ([#1945](https://github.com/windmill-labs/windmill/issues/1945)) ([bdde59d](https://github.com/windmill-labs/windmill/commit/bdde59d7b385fbdbbac722f918672c7e3d601d56)) +* schema modal behavior when pressing enter ([#1947](https://github.com/windmill-labs/windmill/issues/1947)) ([3d54790](https://github.com/windmill-labs/windmill/commit/3d5479000a3732f7299ba79a57bd06303a359d90)) + ## [1.137.1](https://github.com/windmill-labs/windmill/compare/v1.137.0...v1.137.1) (2023-07-27) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 763a0354fa..630c7026ab 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4096,9 +4096,9 @@ dependencies = [ [[package]] name = "redis" -version = "0.23.0" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f" +checksum = "ff5d95dd18a4d76650f0c2607ed8ebdbf63baf9cb934e1c233cd220c694db1d7" dependencies = [ "async-std", "async-trait", @@ -4110,6 +4110,7 @@ dependencies = [ "pin-project-lite", "ryu", "sha1_smol", + "socket2 0.4.9", "tokio", "tokio-util", "url", @@ -4779,9 +4780,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.176" +version = "1.0.177" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76dc28c9523c5d70816e393136b86d48909cfb27cecaa902d338c19ed47164dc" +checksum = "63ba2516aa6bf82e0b19ca8b50019d52df58455d3cf9bdaf6315225fdd0c560a" dependencies = [ "serde_derive", ] @@ -4819,9 +4820,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.176" +version = "1.0.177" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e7b8c5dc823e3b90651ff1d3808419cd14e5ad76de04feaf37da114e7a306f" +checksum = "401797fe7833d72109fedec6bfcbe67c0eed9b99772f26eb8afd261f0abc6fd3" dependencies = [ "proc-macro2", "quote", @@ -7019,7 +7020,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "axum", @@ -7054,7 +7055,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "argon2", @@ -7112,7 +7113,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.137.1" +version = "1.138.0" dependencies = [ "base64 0.21.2", "chrono", @@ -7129,7 +7130,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.137.1" +version = "1.138.0" dependencies = [ "chrono", "serde", @@ -7142,7 +7143,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "axum", @@ -7167,7 +7168,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.137.1" +version = "1.138.0" dependencies = [ "serde", "serde_json", @@ -7175,7 +7176,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "lazy_static", @@ -7186,7 +7187,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "gosyn", @@ -7196,7 +7197,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7207,7 +7208,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "async-recursion", @@ -7224,7 +7225,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "lazy_static", @@ -7235,7 +7236,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7250,7 +7251,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7267,7 +7268,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "async-recursion", @@ -7296,7 +7297,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.137.1" +version = "1.138.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index ec171c41e2..a777b2b327 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.137.1" +version = "1.138.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.137.1" +version = "1.138.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 764f556ceb..5e6ba63bd2 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.137.1 + version: 1.138.0 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index 539d345fae..a47fd099c7 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.137.1"; +export const VERSION = "v1.138.0"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 52516c1c2d..dea84793ca 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -30,7 +30,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.137.1"; +export const VERSION = "v1.138.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index c26fdc7c52..f3dae29c43 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.137.1", + "version": "1.138.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.137.1", + "version": "1.138.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index a6d62e6984..5db8a45aff 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.137.1", + "version": "1.138.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 4534f3d17d..62c568821e 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.137.1" -wmill_pg = ">=1.137.1" +wmill = ">=1.138.0" +wmill_pg = ">=1.138.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 3b3b57acd3..08813a3ba9 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.137.1 + version: 1.138.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 27212e784f..cea6ae217a 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.137.1" +version = "1.138.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.137.1" +windmill-api = "^1.138.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 0805bc292f..8815ee0d56 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.137.1" +version = "1.138.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 62febc7ccd..9b56457965 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.137.1 +1.138.0