diff --git a/CHANGELOG.md b/CHANGELOG.md index 00a50a2f1e..7152a8c6f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog +## [1.213.0](https://github.com/windmill-labs/windmill/compare/v1.212.0...v1.213.0) (2023-11-21) + + +### Features + +* code completion UI + other nits ([#2657](https://github.com/windmill-labs/windmill/issues/2657)) ([6d426b4](https://github.com/windmill-labs/windmill/commit/6d426b4ec49d4749a89c86dc5eb1f11bf705ca26)) +* Expanding an s3object result now opens the S3 file browser ([#2656](https://github.com/windmill-labs/windmill/issues/2656)) ([baac93f](https://github.com/windmill-labs/windmill/commit/baac93f40140ee37548a273885c028a8e6500b6d)) + + +### Bug Fixes + +* ask to return value ([#2659](https://github.com/windmill-labs/windmill/issues/2659)) ([de1e1f5](https://github.com/windmill-labs/windmill/commit/de1e1f545d4cd42f46d9af9a0349af86acf1901c)) +* fix embedded approval step timeouts ([51ce2f8](https://github.com/windmill-labs/windmill/commit/51ce2f8cb308da285dab0dc433bf596caa5eeed0)) +* fix error handling for list of errors ([c1bb97d](https://github.com/windmill-labs/windmill/commit/c1bb97d990810c9b3d909c9a045f0ce84be6c25e)) +* set session code completion to enabled by default ([#2664](https://github.com/windmill-labs/windmill/issues/2664)) ([ded0bb8](https://github.com/windmill-labs/windmill/commit/ded0bb890bb54ef80c857395474e692865ee4717)) + ## [1.212.0](https://github.com/windmill-labs/windmill/compare/v1.211.0...v1.212.0) (2023-11-20) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 71a43b7d88..cc39fe5c6e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -6246,9 +6246,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86ef35bf3e7fe15a53c4ab08a998e42271eab13eb0db224126bc7bc4c4bad96d" +checksum = "6a3211b01eea83d80687da9eef70e39d65144a3894866a5153a2723e425a157f" dependencies = [ "const-oid", "digest 0.10.7", @@ -6708,9 +6708,9 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" [[package]] name = "serde" -version = "1.0.192" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001" +checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" dependencies = [ "serde_derive", ] @@ -6748,9 +6748,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.192" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1" +checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" dependencies = [ "proc-macro2", "quote", @@ -7408,7 +7408,7 @@ dependencies = [ "once_cell", "percent-encoding", "rand 0.8.5", - "rsa 0.9.3", + "rsa 0.9.4", "serde", "sha1", "sha2 0.10.8", @@ -9331,7 +9331,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "axum", @@ -9366,7 +9366,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "argon2", @@ -9438,7 +9438,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.212.0" +version = "1.213.0" dependencies = [ "base64 0.21.5", "chrono", @@ -9456,7 +9456,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.212.0" +version = "1.213.0" dependencies = [ "chrono", "serde", @@ -9469,7 +9469,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "axum", @@ -9500,7 +9500,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.212.0" +version = "1.213.0" dependencies = [ "serde", "serde_json", @@ -9508,7 +9508,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "lazy_static", @@ -9519,7 +9519,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "gosyn", @@ -9531,7 +9531,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "lazy_static", @@ -9542,7 +9542,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "itertools 0.12.0", @@ -9553,7 +9553,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "async-recursion", @@ -9570,7 +9570,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "lazy_static", @@ -9581,7 +9581,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9598,7 +9598,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "getrandom 0.2.11", @@ -9616,7 +9616,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "async-recursion", @@ -9647,7 +9647,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.212.0" +version = "1.213.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index c6b990870b..c4bfd4a193 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.212.0" +version = "1.213.0" authors.workspace = true edition.workspace = true @@ -21,7 +21,7 @@ members = [ ] [workspace.package] -version = "1.212.0" +version = "1.213.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 8645d1b92f..3d4e695197 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.212.0 + version: 1.213.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 7d8d7e558a..377f5668c1 100644 --- a/benchmarks/lib.ts +++ b/benchmarks/lib.ts @@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/sleep@v1.2.1/mod.ts"; import * as windmill from "https://deno.land/x/windmill@v1.174.0/mod.ts"; import * as api from "https://deno.land/x/windmill@v1.174.0/windmill-api/index.ts"; -export const VERSION = "v1.212.0"; +export const VERSION = "v1.213.0"; export async function login(email: string, password: string): Promise { return await windmill.UserService.login({ diff --git a/cli/main.ts b/cli/main.ts index 8d586f327e..2ea51fe6f4 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.212.0"; +export const VERSION = "v1.213.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index c43b7c4ead..770eb28031 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.212.0", + "version": "1.213.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.212.0", + "version": "1.213.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index cc6bbab21f..72d21a8c6b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.212.0", + "version": "1.213.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index a5dd2c0ed8..add8e6bfa1 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.212.0" -wmill_pg = ">=1.212.0" +wmill = ">=1.213.0" +wmill_pg = ">=1.213.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 4580061f48..d76a0b9d9a 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.212.0 + version: 1.213.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 75a0fbb555..bd36e0e533 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.212.0" +version = "1.213.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.212.0" +windmill-api = "^1.213.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 242d730550..39bb2a39bd 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.212.0" +version = "1.213.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/typescript-client/package.json b/typescript-client/package.json index dfb0b381c5..ba64c5901d 100644 --- a/typescript-client/package.json +++ b/typescript-client/package.json @@ -1,7 +1,7 @@ { "name": "windmill-client", "description": "Windmill SDK client for browsers and Node.js", - "version": "1.212.0", + "version": "1.213.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 0579b9020c..10620e525e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.212.0 +1.213.0