diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a898595f5..79f183b3f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.316.2](https://github.com/windmill-labs/windmill/compare/v1.316.0...v1.316.1) (2024-04-24) + + +### Bug Fixes + +* fix get_completed_job with labels ([963fc3d](https://github.com/windmill-labs/windmill/commit/963fc3deccd89a277e6363283f66d1903a35a031)) + ## [1.316.0](https://github.com/windmill-labs/windmill/compare/v1.315.1...v1.316.0) (2024-04-24) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7303c6d0ca..a8aa8fcd47 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -9609,7 +9609,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "axum", @@ -9646,7 +9646,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "argon2", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.316.0" +version = "1.316.2" dependencies = [ "base64 0.21.7", "chrono", @@ -9741,7 +9741,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.316.0" +version = "1.316.2" dependencies = [ "chrono", "serde", @@ -9754,7 +9754,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "aws-config", @@ -9790,7 +9790,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.316.0" +version = "1.316.2" dependencies = [ "regex", "rsmq_async", @@ -9805,7 +9805,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.316.0" +version = "1.316.2" dependencies = [ "serde", "serde_json", @@ -9813,7 +9813,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "lazy_static", @@ -9824,7 +9824,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "gosyn", @@ -9836,7 +9836,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "lazy_static", @@ -9847,7 +9847,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "itertools 0.12.1", @@ -9858,7 +9858,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "async-recursion", @@ -9875,7 +9875,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "lazy_static", @@ -9886,7 +9886,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9904,7 +9904,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "getrandom 0.2.14", @@ -9922,7 +9922,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "async-recursion", @@ -9955,7 +9955,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.316.0" +version = "1.316.2" dependencies = [ "serde", "wasm-bindgen", @@ -9966,7 +9966,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.316.0" +version = "1.316.2" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 9c25ef7ee6..241691c928 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.316.0" +version = "1.316.2" authors.workspace = true edition.workspace = true @@ -24,7 +24,7 @@ members = [ ] [workspace.package] -version = "1.316.0" +version = "1.316.2" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 471e90f2e4..e8c7a38ead 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.316.0 + version: 1.316.2 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 33bd9313a1..71b51ad436 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.316.0"; +export const VERSION = "v1.316.2"; 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 e7889c6bb2..613ae8a7ca 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.316.0"; +export const VERSION = "v1.316.2"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index cc8f8c4547..09df5c309c 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.316.0", + "version": "1.316.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.316.0", + "version": "1.316.2", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 2e837d0445..1d178effd6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.316.0", + "version": "1.316.2", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 806c281d1d..42afe66d5f 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.316.0" -wmill_pg = ">=1.316.0" +wmill = ">=1.316.2" +wmill_pg = ">=1.316.2" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 230e83feee..f17c4acee7 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.316.0 + version: 1.316.2 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 734606248d..38499ddf9b 100644 --- a/powershell-client/WindmillClient/WindmillClient.psd1 +++ b/powershell-client/WindmillClient/WindmillClient.psd1 @@ -12,7 +12,7 @@ RootModule = 'WindmillClient.psm1' # Version number of this module. -ModuleVersion = '1.316.0' +ModuleVersion = '1.316.2' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 7e481c1baa..675ac0806d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.316.0" +version = "1.316.2" 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 6753f8adb8..501714236d 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.316.0" +version = "1.316.2" 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 52c89c3af1..62d263e20d 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.316.0", + "version": "1.316.2", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index efa7677407..f73c8c67a5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.316.0 +1.316.2