From 94c1c14a91cbfc0ee17f98ea89638fae941b8c3f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 3 Apr 2023 13:30:18 +0200 Subject: [PATCH] chore(main): release 1.85.0 (#1348) * chore(main): release 1.85.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 16 ++++ backend/Cargo.lock | 106 +++++++++++++------------- 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, 83 insertions(+), 67 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2c73f8fe0..0cb1bca932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog +## [1.85.0](https://github.com/windmill-labs/windmill/compare/v1.84.1...v1.85.0) (2023-04-03) + + +### Features + +* add local cache for folder path used + invalidate cache on folder creation ([018b051](https://github.com/windmill-labs/windmill/commit/018b051781e3f40b9d1da8ccdd5edb1cd49877ba)) +* **frontend:** add agGrid api hooks + ready ([de1e294](https://github.com/windmill-labs/windmill/commit/de1e29492c9aefdfc59f605ba81f7c51a96bf2f3)) +* **frontend:** Add ID renaming popup ([#1344](https://github.com/windmill-labs/windmill/issues/1344)) ([0b8a08c](https://github.com/windmill-labs/windmill/commit/0b8a08cb49644da7c354c3631751e925ac5353b9)) + + +### Bug Fixes + +* **backend:** improve handling subflow with many depth using tailrec ([8c53598](https://github.com/windmill-labs/windmill/commit/8c53598aba3fb89f4174d1c0ab3912096ac07c96)) +* **backend:** improve subflow processing ([390a988](https://github.com/windmill-labs/windmill/commit/390a988d4c96256a4fbd6a9302fc47a5648c2c43)) +* **frontend:** PDF reader header positioning ([#1350](https://github.com/windmill-labs/windmill/issues/1350)) ([daf8276](https://github.com/windmill-labs/windmill/commit/daf827666b13917f8c9abeab5bb2b072bd0fef0b)) + ## [1.84.1](https://github.com/windmill-labs/windmill/compare/v1.84.0...v1.84.1) (2023-03-31) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 561102d42a..8cdf57b764 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -214,7 +214,7 @@ checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -259,7 +259,7 @@ checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -579,7 +579,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -678,9 +678,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cpufeatures" @@ -794,7 +794,7 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -811,7 +811,7 @@ checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -863,9 +863,9 @@ checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e" [[package]] name = "deno_core" -version = "0.177.0" +version = "0.179.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1563a04f319904eb5c4c981b0a5475a4258aa72d4576296f097a4f23b20f8428" +checksum = "8c9307ca2299cb7b0bdaa345cbdc82a252a8e4e5a4463e28f44c715d55e460fb" dependencies = [ "anyhow", "bytes", @@ -888,9 +888,9 @@ dependencies = [ [[package]] name = "deno_ops" -version = "0.55.0" +version = "0.57.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "769968c69c652009e43cb9e63f610a1cc3d0316c3fc59d7327f51089f65a70f4" +checksum = "04610f07342fbb33a2b7ea7aa16a95ab71adb13a0ce858a8d1a1414660a83e3e" dependencies = [ "once_cell", "pmutil", @@ -1265,7 +1265,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -2120,6 +2120,7 @@ dependencies = [ "autocfg", "num-integer", "num-traits", + "rand 0.8.5", "serde", ] @@ -2215,9 +2216,9 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.48" +version = "0.10.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "518915b97df115dd36109bfa429a48b8f737bd05508cf9588977b599648926d2" +checksum = "4d2f106ab837a24e03672c59b1239669a0596406ff657c3c0835b6b7f0f35a33" dependencies = [ "bitflags", "cfg-if", @@ -2230,13 +2231,13 @@ dependencies = [ [[package]] name = "openssl-macros" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.13", ] [[package]] @@ -2247,11 +2248,10 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.83" +version = "0.9.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b" +checksum = "3a20eace9dc2d82904039cb76dcf50fb1a0bba071cfd1629720b5d6f1ddba0fa" dependencies = [ - "autocfg", "cc", "libc", "pkg-config", @@ -2548,9 +2548,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.54" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534" +checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" dependencies = [ "unicode-ident", ] @@ -2603,7 +2603,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "syn 2.0.12", + "syn 2.0.13", "thiserror", "typify", "unicode-ident", @@ -2623,7 +2623,7 @@ dependencies = [ "serde_json", "serde_tokenstream", "serde_yaml", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -2960,9 +2960,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.5" +version = "0.37.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e78cc525325c06b4a7ff02db283472f3c042b7ff0c391f96c6d5ac6f4f91b75" +checksum = "d097081ed288dfe45699b72f5b5d648e5f15d64d900c7080273baa20c16a6849" dependencies = [ "bitflags", "errno", @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "rustpython-ast" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#07bad48dbc47a910e853723c33183874f390e969" +source = "git+https://github.com/RustPython/RustPython#707fbcf6496b69a7f7131196c7cae26ba1887c4d" dependencies = [ "num-bigint", "rustpython-compiler-core", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "rustpython-compiler-core" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#07bad48dbc47a910e853723c33183874f390e969" +source = "git+https://github.com/RustPython/RustPython#707fbcf6496b69a7f7131196c7cae26ba1887c4d" dependencies = [ "bitflags", "bstr", @@ -3018,7 +3018,7 @@ dependencies = [ [[package]] name = "rustpython-parser" version = "0.2.0" -source = "git+https://github.com/RustPython/RustPython#07bad48dbc47a910e853723c33183874f390e969" +source = "git+https://github.com/RustPython/RustPython#707fbcf6496b69a7f7131196c7cae26ba1887c4d" dependencies = [ "ahash 0.7.6", "anyhow", @@ -3225,7 +3225,7 @@ checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -3291,7 +3291,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -3308,9 +3308,9 @@ dependencies = [ [[package]] name = "serde_v8" -version = "0.88.0" +version = "0.90.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b163edac8a2f2536ae7b52f839a33aba7892c04d0cf21e1bf8213ecfc905ebcc" +checksum = "916ca7852a4c5f0ba59ce4a46301bf7c7ad573c2c89a0fe67e90fe30dcbd6f7d" dependencies = [ "bytes", "derive_more", @@ -3835,9 +3835,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.12" +version = "2.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79d9531f94112cfc3e4c8f5f02cb2b58f72c97b7efd85f70203cc6d8efda5927" +checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec" dependencies = [ "proc-macro2", "quote", @@ -3900,7 +3900,7 @@ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -4014,7 +4014,7 @@ checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce" dependencies = [ "proc-macro2", "quote", - "syn 2.0.12", + "syn 2.0.13", ] [[package]] @@ -4327,7 +4327,7 @@ dependencies = [ "regress", "schemars", "serde_json", - "syn 2.0.12", + "syn 2.0.13", "thiserror", "unicode-ident", ] @@ -4343,7 +4343,7 @@ dependencies = [ "serde", "serde_json", "serde_tokenstream", - "syn 2.0.12", + "syn 2.0.13", "typify-impl", ] @@ -4546,9 +4546,9 @@ dependencies = [ [[package]] name = "v8" -version = "0.66.0" +version = "0.68.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8ab8597b885c17b3761f6ffc29b7a62758612c409285a9271c6dacd17bb745" +checksum = "81c69410b7435f1b74e82e243ba906d71e8b9bb350828291418b9311dbd77222" dependencies = [ "bitflags", "fslock", @@ -4780,7 +4780,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "axum", @@ -4807,7 +4807,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "argon2", @@ -4863,7 +4863,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.84.1" +version = "1.85.0" dependencies = [ "base64 0.21.0", "chrono", @@ -4878,7 +4878,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.84.1" +version = "1.85.0" dependencies = [ "chrono", "serde", @@ -4891,7 +4891,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "axum", @@ -4916,7 +4916,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.84.1" +version = "1.85.0" dependencies = [ "serde", "serde_json", @@ -4924,7 +4924,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "itertools", @@ -4939,7 +4939,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "itertools", @@ -4951,7 +4951,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "itertools", @@ -4966,7 +4966,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "deno_core", @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "chrono", @@ -5003,7 +5003,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.84.1" +version = "1.85.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 301d8387ac..ff1f88e12d 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.84.1" +version = "1.85.0" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.84.1" +version = "1.85.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 47737ca5d4..6ff6e32103 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.84.1 + version: 1.85.0 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index c3a3608549..6b8e918e0a 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -19,7 +19,7 @@ import sync from "./sync.ts"; import { tryResolveVersion } from "./context.ts"; import { GlobalOptions } from "./types.ts"; -export const VERSION = "v1.84.1"; +export const VERSION = "v1.85.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 40fe304392..b4b770a13b 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.84.1", + "version": "1.85.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.84.1", + "version": "1.85.0", "dependencies": { "@fortawesome/free-brands-svg-icons": "^6.2.1", "@fortawesome/free-solid-svg-icons": "^6.2.1", diff --git a/frontend/package.json b/frontend/package.json index ed9b0365b7..2c01e8ed59 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.84.1", + "version": "1.85.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index fb0edaf110..01b81ba4c8 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.84.1" -wmill_pg = ">=1.84.1" +wmill = ">=1.85.0" +wmill_pg = ">=1.85.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 8220cf109f..688f4ac860 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.84.1 + version: 1.85.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 00853df72e..b45260dade 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.84.1" +version = "1.85.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.84.1" +windmill-api = "^1.85.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 8f12645463..a8a0a63c2a 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.84.1" +version = "1.85.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 1a17bdc171..f288d11142 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.84.1 +1.85.0