From d703dcc73825553168f77d515cccbe9c0253b15a Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 12 Jun 2023 04:15:58 +0200 Subject: [PATCH] chore(main): release 1.113.0 (#1705) * chore(main): release 1.113.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 8 ++++ backend/Cargo.lock | 56 +++++++++++++++++---------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 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 | 4 +- python-client/wmill_pg/pyproject.toml | 2 +- version.txt | 2 +- 12 files changed, 58 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e453142ca..852dec5de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## [1.113.0](https://github.com/windmill-labs/windmill/compare/v1.112.0...v1.113.0) (2023-06-12) + + +### Features + +* add rich text editor as component to apps (quill) ([1a7aa4c](https://github.com/windmill-labs/windmill/commit/1a7aa4cda31426f0a960cc243c8c5d0da7065e8d)) +* rework schedule page entirely to display jobs informations ([4963286](https://github.com/windmill-labs/windmill/commit/4963286edde771a9e6aa17b1f105060828cb1ebc)) + ## [1.112.0](https://github.com/windmill-labs/windmill/compare/v1.111.3...v1.112.0) (2023-06-10) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 2e0ffa2049..482d232e7c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -61,6 +61,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "allocator-api2" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4f263788a35611fba42eb41ff811c5d0360c58b97402570312a350736e2542e" + [[package]] name = "android-tzdata" version = "0.1.1" @@ -1575,12 +1581,22 @@ dependencies = [ ] [[package]] -name = "hashlink" -version = "0.8.2" +name = "hashbrown" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" dependencies = [ - "hashbrown 0.13.2", + "ahash 0.8.3", + "allocator-api2", +] + +[[package]] +name = "hashlink" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f" +dependencies = [ + "hashbrown 0.14.0", ] [[package]] @@ -3248,9 +3264,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.19" +version = "0.37.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" +checksum = "b96e891d04aa506a6d1f318d2771bcb1c7dfda84e126660ace067c9b474bb2c0" dependencies = [ "bitflags", "errno", @@ -5143,7 +5159,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "axum", @@ -5178,7 +5194,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "argon2", @@ -5234,7 +5250,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.112.0" +version = "1.113.0" dependencies = [ "base64 0.21.2", "chrono", @@ -5251,7 +5267,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.112.0" +version = "1.113.0" dependencies = [ "chrono", "serde", @@ -5264,7 +5280,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "axum", @@ -5289,7 +5305,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.112.0" +version = "1.113.0" dependencies = [ "serde", "serde_json", @@ -5297,7 +5313,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "lazy_static", @@ -5308,7 +5324,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "gosyn", @@ -5318,7 +5334,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "itertools", @@ -5329,7 +5345,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "itertools", @@ -5344,7 +5360,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "serde-wasm-bindgen", @@ -5358,7 +5374,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "serde_json", @@ -5373,7 +5389,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "chrono", @@ -5401,7 +5417,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.112.0" +version = "1.113.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 24db4c9517..3aec1cf533 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.112.0" +version = "1.113.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.112.0" +version = "1.113.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 39ff029de1..388d4ba3bf 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.112.0 + version: 1.113.0 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index 729719c9c7..03c04c801c 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -28,7 +28,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.112.0"; +export const VERSION = "v1.113.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index f1b19796cf..4589eea788 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.112.0", + "version": "1.113.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.112.0", + "version": "1.113.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 3ca45b2ede..611847f0e4 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.112.0", + "version": "1.113.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 0694993c08..7021e1f127 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.112.0" -wmill_pg = ">=1.112.0" +wmill = ">=1.113.0" +wmill_pg = ">=1.113.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 603e9051f4..f59d2d98aa 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.112.0 + version: 1.113.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 9fae676677..602e08f8c5 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.112.0" +version = "1.113.0" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" @@ -16,7 +16,7 @@ include = ["wmill/py.typed"] [tool.poetry.dependencies] python = "^3.7" -windmill-api = "^1.112.0" +windmill-api = "^1.113.0" [build-system] requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"] diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 7452250093..026955298f 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.112.0" +version = "1.113.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/version.txt b/version.txt index 628cac6f07..7bd0f252f6 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.112.0 +1.113.0