diff --git a/CHANGELOG.md b/CHANGELOG.md index 50c70bcc5b..4b2e28e138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Changelog +## [1.218.0](https://github.com/windmill-labs/windmill/compare/v1.217.0...v1.218.0) (2023-11-30) + + +### Features + +* **frontend:** add menu component ([#2721](https://github.com/windmill-labs/windmill/issues/2721)) ([0665692](https://github.com/windmill-labs/windmill/commit/06656924ae8173e906a243aab2af658a1689af01)) +* **frontend:** resource rework ([#2725](https://github.com/windmill-labs/windmill/issues/2725)) ([ec25856](https://github.com/windmill-labs/windmill/commit/ec25856b7c8a7d33a50d1beb5f3e99c7b912e1ca)) + + +### Bug Fixes + +* make REST language support URLSearchParams, headers, FormData ([830dec0](https://github.com/windmill-labs/windmill/commit/830dec0f90e0189b4dea4de8c44a03e437acf440)) +* Pull patched version of gosyn ([#2734](https://github.com/windmill-labs/windmill/issues/2734)) ([0bf3685](https://github.com/windmill-labs/windmill/commit/0bf3685cbdecae0a8e7a24a5198ae2fed98fe340)) +* s3 resource openapi spec ([#2730](https://github.com/windmill-labs/windmill/issues/2730)) ([16d10ae](https://github.com/windmill-labs/windmill/commit/16d10aedf79cddf7cdc15d55c42c72f4948b3ee2)) +* update deployed even when draft only ([#2694](https://github.com/windmill-labs/windmill/issues/2694)) ([1f99fcd](https://github.com/windmill-labs/windmill/commit/1f99fcd3af21208676aa90015559359740b0534a)) +* Using latest gosyn ([#2737](https://github.com/windmill-labs/windmill/issues/2737)) ([920cc9a](https://github.com/windmill-labs/windmill/commit/920cc9a576db0112ffd9572480c3d0a8aa08055b)) +* Workspace error handler creation was not adding the slack resource ([#2733](https://github.com/windmill-labs/windmill/issues/2733)) ([70c504e](https://github.com/windmill-labs/windmill/commit/70c504edfaf7c114c91af2b3ca39dfee073f04f2)) + ## [1.217.0](https://github.com/windmill-labs/windmill/compare/v1.216.0...v1.217.0) (2023-11-29) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7d7f057f9e..79ac8d9d7e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -9387,7 +9387,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "axum", @@ -9422,7 +9422,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "argon2", @@ -9494,7 +9494,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.217.0" +version = "1.218.0" dependencies = [ "base64 0.21.5", "chrono", @@ -9512,7 +9512,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.217.0" +version = "1.218.0" dependencies = [ "chrono", "serde", @@ -9525,7 +9525,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "axum", @@ -9556,7 +9556,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.217.0" +version = "1.218.0" dependencies = [ "serde", "serde_json", @@ -9564,7 +9564,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "lazy_static", @@ -9575,7 +9575,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "gosyn", @@ -9587,7 +9587,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "lazy_static", @@ -9598,7 +9598,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "itertools 0.12.0", @@ -9609,7 +9609,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "async-recursion", @@ -9626,7 +9626,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "lazy_static", @@ -9637,7 +9637,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9654,7 +9654,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "getrandom 0.2.11", @@ -9672,7 +9672,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "async-recursion", @@ -9704,7 +9704,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.217.0" +version = "1.218.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 68958ed738..d284ae416d 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.217.0" +version = "1.218.0" authors.workspace = true edition.workspace = true @@ -21,7 +21,7 @@ members = [ ] [workspace.package] -version = "1.217.0" +version = "1.218.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index b518f31648..cd296a872b 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.217.0 + version: 1.218.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 34cd88e5c3..c2fefa3e3a 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.217.0"; +export const VERSION = "v1.218.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 2f96d15511..412285795f 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.217.0"; +export const VERSION = "v1.218.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 51b564c947..6853e9e8db 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.217.0", + "version": "1.218.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.217.0", + "version": "1.218.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 53d020a80e..aff7f819f8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.217.0", + "version": "1.218.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index f05fb4c310..9f8d9b5923 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.217.0" -wmill_pg = ">=1.217.0" +wmill = ">=1.218.0" +wmill_pg = ">=1.218.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 6171113e10..3d77461fa5 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.217.0 + version: 1.218.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 5de3113fbc..b00d92c7fd 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.217.0" +version = "1.218.0" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 26eaed0200..a212cd41a2 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.217.0" +version = "1.218.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 91bf30d2aa..f391c2f5f4 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.217.0", + "version": "1.218.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index b6f43969a7..aaf66f1530 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.217.0 +1.218.0