From 378945560f4f0216dab10fda4edd9d0ea8dc6c14 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 23 Nov 2023 15:07:52 +0100 Subject: [PATCH] chore(main): release 1.215.0 (#2689) * chore(main): release 1.215.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 13 +++++ backend/Cargo.lock | 82 +++++++++++++++++++-------- 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, 86 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1211ab4e5c..d6a49fcf6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog +## [1.215.0](https://github.com/windmill-labs/windmill/compare/v1.214.1...v1.215.0) (2023-11-23) + + +### Features + +* query embeddings from s3 ([#2683](https://github.com/windmill-labs/windmill/issues/2683)) ([e3f2b43](https://github.com/windmill-labs/windmill/commit/e3f2b43748e8e0853dd0dbae87cba37b950dc76e)) + + +### Bug Fixes + +* bigquery schema and date inputs ([#2688](https://github.com/windmill-labs/windmill/issues/2688)) ([f5e098d](https://github.com/windmill-labs/windmill/commit/f5e098d03b467002a8deab4d2c519945c01458d4)) +* improve wmill go client ([cfd3da4](https://github.com/windmill-labs/windmill/commit/cfd3da41efe4e89e5d8672c08433442b05d11f37)) + ## [1.214.1](https://github.com/windmill-labs/windmill/compare/v1.214.0...v1.214.1) (2023-11-23) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index ab0895ac95..34fca7d64e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -319,16 +319,16 @@ dependencies = [ [[package]] name = "async-global-executor" -version = "2.3.1" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" +checksum = "9b4353121d5644cdf2beb5726ab752e79a8db1ebb52031770ec47db31d245526" dependencies = [ - "async-channel 1.9.0", + "async-channel 2.1.0", "async-executor", - "async-io", - "async-lock 2.8.0", + "async-io 2.2.0", + "async-lock 3.1.1", "blocking", - "futures-lite 1.13.0", + "futures-lite 2.0.1", "once_cell", ] @@ -345,13 +345,33 @@ dependencies = [ "futures-lite 1.13.0", "log", "parking", - "polling", + "polling 2.8.0", "rustix 0.37.27", "slab", "socket2 0.4.10", "waker-fn", ] +[[package]] +name = "async-io" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997" +dependencies = [ + "async-lock 3.1.1", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite 2.0.1", + "parking", + "polling 3.3.0", + "rustix 0.38.25", + "slab", + "tracing", + "waker-fn", + "windows-sys 0.48.0", +] + [[package]] name = "async-lock" version = "2.8.0" @@ -410,7 +430,7 @@ checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" dependencies = [ "async-channel 1.9.0", "async-global-executor", - "async-io", + "async-io 1.13.0", "async-lock 2.8.0", "crossbeam-utils", "futures-channel", @@ -5499,6 +5519,20 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "polling" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531" +dependencies = [ + "cfg-if", + "concurrent-queue", + "pin-project-lite", + "rustix 0.38.25", + "tracing", + "windows-sys 0.48.0", +] + [[package]] name = "portable-atomic" version = "1.5.1" @@ -9364,7 +9398,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "axum", @@ -9399,7 +9433,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "argon2", @@ -9471,7 +9505,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.214.1" +version = "1.215.0" dependencies = [ "base64 0.21.5", "chrono", @@ -9489,7 +9523,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.214.1" +version = "1.215.0" dependencies = [ "chrono", "serde", @@ -9502,7 +9536,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "axum", @@ -9533,7 +9567,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.214.1" +version = "1.215.0" dependencies = [ "serde", "serde_json", @@ -9541,7 +9575,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "lazy_static", @@ -9552,7 +9586,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "gosyn", @@ -9564,7 +9598,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "lazy_static", @@ -9575,7 +9609,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "itertools 0.12.0", @@ -9586,7 +9620,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "async-recursion", @@ -9603,7 +9637,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "lazy_static", @@ -9614,7 +9648,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9631,7 +9665,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "getrandom 0.2.11", @@ -9649,7 +9683,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "async-recursion", @@ -9680,7 +9714,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.214.1" +version = "1.215.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 62b6c8deab..05bde89ea1 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.214.1" +version = "1.215.0" authors.workspace = true edition.workspace = true @@ -21,7 +21,7 @@ members = [ ] [workspace.package] -version = "1.214.1" +version = "1.215.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index c3d431ed34..d9cf0c0cdf 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.214.1 + version: 1.215.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index bdeb9c5fa8..57b992a91b 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.214.1"; +export const VERSION = "v1.215.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 13930632ef..6c1abaa92d 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.214.1"; +export const VERSION = "v1.215.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 0ad2d03208..3857a51e6e 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.214.1", + "version": "1.215.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.214.1", + "version": "1.215.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index db2014a8e5..e7dd13c3ca 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.214.1", + "version": "1.215.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 70666cf4dc..fcd87de6a9 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.214.1" -wmill_pg = ">=1.214.1" +wmill = ">=1.215.0" +wmill_pg = ">=1.215.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 92f14e1795..a664710ed6 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.214.1 + version: 1.215.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 160bda2116..bbc0b7a9af 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.214.1" +version = "1.215.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 563b4af84d..c554b53b2c 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.214.1" +version = "1.215.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 12c754092f..ac6f226df5 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.214.1", + "version": "1.215.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 61c15f3eb5..4332d91a8f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.214.1 +1.215.0