From 71ff9f28733814bdc7c2aa315ebf85e7660bc103 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 21 Feb 2024 13:13:18 +0100 Subject: [PATCH] chore(main): release 1.275.0 (#3259) * chore(main): release 1.275.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 13 ++++++++ backend/Cargo.lock | 48 +++++++++++---------------- 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, 47 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f472532f..69969d1261 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.275.0](https://github.com/windmill-labs/windmill/compare/v1.274.1...v1.275.0) (2024-02-21) + + +### Features + +* **frontend:** add support for datetime and time ([#3256](https://github.com/windmill-labs/windmill/issues/3256)) ([464604d](https://github.com/windmill-labs/windmill/commit/464604d939b419b3a2ac9f1a9d6b3e09f3bf803f)) + + +### Bug Fixes + +* add default time to datetime picker ([a09a487](https://github.com/windmill-labs/windmill/commit/a09a487b8442e69d32198aeddc9974e1d503d3a3)) +* **frontend:** improve handling of optional enums ([77d66ef](https://github.com/windmill-labs/windmill/commit/77d66efa45b1d40d5f2ede38e17d121676896bad)) + ## [1.274.1](https://github.com/windmill-labs/windmill/compare/v1.274.0...v1.274.1) (2024-02-20) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 6de91e0078..58b55bca17 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1068,11 +1068,10 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.83" +version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +checksum = "7f9fa1897e4325be0d68d48df6aa1a71ac2ed4d27723887e7754192705350730" dependencies = [ - "jobserver", "libc", ] @@ -3455,15 +3454,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8" -[[package]] -name = "jobserver" -version = "0.1.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" -dependencies = [ - "libc", -] - [[package]] name = "js-sys" version = "0.3.66" @@ -9035,7 +9025,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "axum", @@ -9072,7 +9062,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "argon2", @@ -9146,7 +9136,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.274.1" +version = "1.275.0" dependencies = [ "base64 0.21.7", "chrono", @@ -9164,7 +9154,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.274.1" +version = "1.275.0" dependencies = [ "chrono", "serde", @@ -9177,7 +9167,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "axum", @@ -9210,7 +9200,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.274.1" +version = "1.275.0" dependencies = [ "regex", "rsmq_async", @@ -9225,7 +9215,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.274.1" +version = "1.275.0" dependencies = [ "serde", "serde_json", @@ -9233,7 +9223,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "lazy_static", @@ -9244,7 +9234,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "gosyn", @@ -9256,7 +9246,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "lazy_static", @@ -9267,7 +9257,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "itertools 0.12.1", @@ -9278,7 +9268,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "async-recursion", @@ -9295,7 +9285,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "lazy_static", @@ -9306,7 +9296,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -9324,7 +9314,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "getrandom 0.2.12", @@ -9342,7 +9332,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "async-recursion", @@ -9375,7 +9365,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.274.1" +version = "1.275.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index d92a96bca3..1b1be1643a 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.274.1" +version = "1.275.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.274.1" +version = "1.275.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 2fc0a51f42..390597064b 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.274.1 + version: 1.275.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index e853bd768b..2d6f859258 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.274.1"; +export const VERSION = "v1.275.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 4c6283c14e..7ba50b90b1 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.274.1"; +export const VERSION = "v1.275.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 283da26bce..b914d3756c 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.274.1", + "version": "1.275.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.274.1", + "version": "1.275.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 2530929480..732da3bd0e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.274.1", + "version": "1.275.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index ee22cc5fb0..cf23a08bbd 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.274.1" -wmill_pg = ">=1.274.1" +wmill = ">=1.275.0" +wmill_pg = ">=1.275.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 81c4eb9de1..37a53b9e54 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.274.1 + version: 1.275.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 9d86149a95..bf1613c02e 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.274.1" +version = "1.275.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 debd0457bf..9118b264b4 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.274.1" +version = "1.275.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 25cc78a06d..ec8b9fb71a 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.274.1", + "version": "1.275.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 0487f6c207..c20924cccd 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.274.1 +1.275.0