From 71b4043fa3e11a59a2540f5a5e242cb0f1bd188c Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 8 Feb 2024 19:11:19 +0100 Subject: [PATCH] chore(main): release 1.265.2 (#3180) * chore(main): release 1.265.2 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 10 +++ backend/Cargo.lock | 97 +++++++++++++++++---------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 2 +- benchmarks/lib.ts | 2 +- cli/main.ts | 2 +- frontend/package-lock.json | 4 +- frontend/package.json | 2 +- lsp/Pipfile | 4 +- openflow.openapi.yaml | 2 +- python-client/wmill/pyproject.toml | 2 +- python-client/wmill_pg/pyproject.toml | 2 +- typescript-client/package.json | 2 +- version.txt | 2 +- 14 files changed, 87 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8239b58512..7b678fc3f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog +## [1.265.2](https://github.com/windmill-labs/windmill/compare/v1.265.1...v1.265.2) (2024-02-08) + + +### Bug Fixes + +* Cuda image building ([#3179](https://github.com/windmill-labs/windmill/issues/3179)) ([29be502](https://github.com/windmill-labs/windmill/commit/29be5021ff9603d6cc7e302c46fb44c573967b80)) +* **frontend:** Fix tutorials + Move into itself + Disable app history… ([#3181](https://github.com/windmill-labs/windmill/issues/3181)) ([9f98caa](https://github.com/windmill-labs/windmill/commit/9f98caa072b3ac83b60e9c9b0f31d39ae072b08a)) +* handle better \u0000 in python result ([e4dc972](https://github.com/windmill-labs/windmill/commit/e4dc972d40770e5d0ffb2c2726b0053cdff7e407)) +* Improve python writeS3File perf ([#3182](https://github.com/windmill-labs/windmill/issues/3182)) ([e00e3f9](https://github.com/windmill-labs/windmill/commit/e00e3f9d2d65b81cdf8abf7500deb5b4f5ecf607)) + ## [1.265.1](https://github.com/windmill-labs/windmill/compare/v1.265.0...v1.265.1) (2024-02-07) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 33479baf25..b4cbd054d5 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -261,13 +261,13 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" +checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" dependencies = [ "concurrent-queue", - "event-listener 4.0.3", - "event-listener-strategy", + "event-listener 5.0.0", + "event-listener-strategy 0.5.0", "futures-core", "pin-project-lite", ] @@ -323,7 +323,7 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" dependencies = [ - "async-channel 2.1.1", + "async-channel 2.2.0", "async-executor", "async-io 2.3.1", "async-lock 3.3.0", @@ -387,7 +387,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" dependencies = [ "event-listener 4.0.3", - "event-listener-strategy", + "event-listener-strategy 0.4.0", "pin-project-lite", ] @@ -830,7 +830,7 @@ version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118" dependencies = [ - "async-channel 2.1.1", + "async-channel 2.2.0", "async-lock 3.3.0", "async-task", "fastrand 2.0.1", @@ -1152,9 +1152,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.18" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" +checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" dependencies = [ "clap_builder", "clap_derive", @@ -1162,21 +1162,21 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.18" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" +checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim", + "strsim 0.11.0", ] [[package]] name = "clap_derive" -version = "4.4.7" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" +checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" dependencies = [ "heck", "proc-macro2", @@ -1186,9 +1186,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" +checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" [[package]] name = "cmake" @@ -1561,7 +1561,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "strsim", + "strsim 0.10.0", "syn 1.0.109", ] @@ -1575,7 +1575,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "strsim", + "strsim 0.10.0", "syn 2.0.48", ] @@ -2313,6 +2313,17 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "event-listener" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + [[package]] name = "event-listener-strategy" version = "0.4.0" @@ -2323,6 +2334,16 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "event-listener-strategy" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" +dependencies = [ + "event-listener 5.0.0", + "pin-project-lite", +] + [[package]] name = "fallible-iterator" version = "0.2.0" @@ -7322,6 +7343,12 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +[[package]] +name = "strsim" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" + [[package]] name = "strum" version = "0.25.0" @@ -9090,7 +9117,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "axum", @@ -9126,7 +9153,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "argon2", @@ -9200,7 +9227,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.265.1" +version = "1.265.2" dependencies = [ "base64 0.21.7", "chrono", @@ -9218,7 +9245,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.265.1" +version = "1.265.2" dependencies = [ "chrono", "serde", @@ -9231,7 +9258,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "axum", @@ -9264,7 +9291,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.265.1" +version = "1.265.2" dependencies = [ "rsmq_async", "serde", @@ -9278,7 +9305,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.265.1" +version = "1.265.2" dependencies = [ "serde", "serde_json", @@ -9286,7 +9313,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "lazy_static", @@ -9297,7 +9324,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "gosyn", @@ -9309,7 +9336,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "lazy_static", @@ -9320,7 +9347,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "itertools 0.12.1", @@ -9331,7 +9358,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "async-recursion", @@ -9348,7 +9375,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "lazy_static", @@ -9359,7 +9386,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9377,7 +9404,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "getrandom 0.2.12", @@ -9395,7 +9422,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "async-recursion", @@ -9428,7 +9455,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.265.1" +version = "1.265.2" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 72e32d6885..a5a1d720e4 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.265.1" +version = "1.265.2" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.265.1" +version = "1.265.2" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index b971a03e2e..5c79bde450 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.265.1 + version: 1.265.2 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 1fb65ca8b3..4c1bf7031b 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.265.1"; +export const VERSION = "v1.265.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 4e8e55dd36..fc2395b6e5 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.265.1"; +export const VERSION = "v1.265.2"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d1dd8fbac1..22d422c90f 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.265.1", + "version": "1.265.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.265.1", + "version": "1.265.2", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 9bdc2c4e9d..0154f1ae3c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.265.1", + "version": "1.265.2", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 40477e0cf9..51bb28caeb 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.265.1" -wmill_pg = ">=1.265.1" +wmill = ">=1.265.2" +wmill_pg = ">=1.265.2" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 37ccb8d0b7..03cffcd853 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.265.1 + version: 1.265.2 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index bc671b2f14..2ffb37104b 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.265.1" +version = "1.265.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 b400218996..9bd604cc95 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.265.1" +version = "1.265.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 c22f3a86fc..c30735c390 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.265.1", + "version": "1.265.2", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 7ad2fe7ad9..9589a9ba93 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.265.1 +1.265.2