chore(main): release 1.118.0 (#1755)

* chore(main): release 1.118.0

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
Ruben Fiszel
2023-06-22 12:41:08 +02:00
committed by GitHub
parent 760f699c94
commit e444488636
12 changed files with 94 additions and 67 deletions
+16
View File
@@ -1,6 +1,22 @@
# Changelog
## [1.118.0](https://github.com/windmill-labs/windmill/compare/v1.117.0...v1.118.0) (2023-06-22)
### Features
* add dynamic args for input list ([05d1b20](https://github.com/windmill-labs/windmill/commit/05d1b20b663a3b0cf38638472fb4f7823d56db4c))
* add preselect first config for app selects ([11c6ff7](https://github.com/windmill-labs/windmill/commit/11c6ff7481f351a0e9549d3ac8e2dbc8ce2ca4d8))
* editable resource types + rt in deployments ([fdb7ab7](https://github.com/windmill-labs/windmill/commit/fdb7ab7f51f739094e785438a5bff45d983556d5))
* resume and approvers available in iterator and branch expr ([a98e146](https://github.com/windmill-labs/windmill/commit/a98e146aedfa39539bd86685dbe9c4f5a7e8f1df))
* step mocking for flows ([4c594c0](https://github.com/windmill-labs/windmill/commit/4c594c0e649d8b416a53823e457e43a029e5f940))
### Bug Fixes
* correctly handle deeply nested results for out-of-order loops ([82f20d3](https://github.com/windmill-labs/windmill/commit/82f20d3ef4fe3c43adc9489d5fe950c3504f2425))
## [1.117.0](https://github.com/windmill-labs/windmill/compare/v1.116.0...v1.117.0) (2023-06-20)
+64 -53
View File
@@ -99,15 +99,15 @@ dependencies = [
[[package]]
name = "anstyle"
version = "1.0.0"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
dependencies = [
"utf8parse",
]
@@ -164,7 +164,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70151a5226578411132d798aa248df45b30aa34aea2e580628870b4d87be717b"
dependencies = [
"darling",
"pmutil",
"pmutil 0.5.3",
"proc-macro2",
"quote",
"swc_macros_common",
@@ -721,9 +721,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.3.4"
version = "4.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80672091db20273a15cf9fdd4e47ed43b5091ec9841bf4c6145c9dfbbcae09ed"
checksum = "2686c4115cb0810d9a984776e197823d08ec94f176549a89a9efded477c456dc"
dependencies = [
"clap_builder",
"clap_derive",
@@ -732,9 +732,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.3.4"
version = "4.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1458a1df40e1e2afebb7ab60ce55c1fa8f431146205aa5f4887e0b111c27636"
checksum = "2e53afce1efce6ed1f633cf0e57612fe51db54a1ee4fd8f8503d078fe02d69ae"
dependencies = [
"anstream",
"anstyle",
@@ -1048,7 +1048,7 @@ checksum = "0446caff6cdb14fbf6c5e85fc042e3102aa6c618fa19a2ef47b67fc2657c0e8e"
dependencies = [
"lazy-regex",
"once_cell",
"pmutil",
"pmutil 0.5.3",
"proc-macro-crate",
"proc-macro2",
"quote",
@@ -1216,7 +1216,7 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9895954c6ec59d897ed28a64815f2ceb57653fcaaebd317f2edc78b74f5495b6"
dependencies = [
"pmutil",
"pmutil 0.5.3",
"proc-macro2",
"swc_macros_common",
"syn 1.0.109",
@@ -1318,14 +1318,14 @@ dependencies = [
[[package]]
name = "from_variant"
version = "0.1.5"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d449976075322384507443937df2f1d5577afbf4282f12a5a66ef29fa3e6307"
checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
dependencies = [
"pmutil",
"pmutil 0.6.1",
"proc-macro2",
"swc_macros_common",
"syn 1.0.109",
"syn 2.0.18",
]
[[package]]
@@ -1889,7 +1889,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a7d079e129b77477a49c5c4f1cfe9ce6c2c909ef52520693e8e811a714c7b20"
dependencies = [
"Inflector",
"pmutil",
"pmutil 0.5.3",
"proc-macro2",
"quote",
"syn 1.0.109",
@@ -2438,9 +2438,9 @@ dependencies = [
[[package]]
name = "openssl"
version = "0.10.54"
version = "0.10.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019"
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
dependencies = [
"bitflags 1.3.2",
"cfg-if",
@@ -2470,9 +2470,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.88"
version = "0.9.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617"
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
dependencies = [
"cc",
"libc",
@@ -2583,9 +2583,9 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "pest"
version = "2.6.1"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16833386b02953ca926d19f64af613b9bf742c48dcd5e09b32fbfc9740bf84e2"
checksum = "f73935e4d55e2abf7f130186537b19e7a4abc886a0252380b59248af473a3fc9"
dependencies = [
"thiserror",
"ucd-trie",
@@ -2762,6 +2762,17 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "pmutil"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.18",
]
[[package]]
name = "polling"
version = "2.8.0"
@@ -4014,7 +4025,7 @@ version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91f42363e5ca94ea6f3faee9e3b5e1a4047535ae323f5c0579385fb2ae95874e"
dependencies = [
"pmutil",
"pmutil 0.5.3",
"proc-macro2",
"quote",
"swc_macros_common",
@@ -4146,33 +4157,33 @@ dependencies = [
[[package]]
name = "swc_eq_ignore_macros"
version = "0.1.1"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c20468634668c2bbab581947bb8c75c97158d5a6959f4ba33df20983b20b4f6"
checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
dependencies = [
"pmutil",
"pmutil 0.6.1",
"proc-macro2",
"quote",
"syn 1.0.109",
"syn 2.0.18",
]
[[package]]
name = "swc_macros_common"
version = "0.3.7"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e582c3e3c2269238524923781df5be49e011dbe29cf7683a2215d600a562ea6"
checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
dependencies = [
"pmutil",
"pmutil 0.6.1",
"proc-macro2",
"quote",
"syn 1.0.109",
"syn 2.0.18",
]
[[package]]
name = "swc_visit"
version = "0.5.6"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f412dd4fbc58f509a04e64f5c8038333142fc139e8232f01b883db0094b3b51"
checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
dependencies = [
"either",
"swc_visit_macros",
@@ -4180,16 +4191,16 @@ dependencies = [
[[package]]
name = "swc_visit_macros"
version = "0.5.7"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cfc226380ba54a5feed2c12f3ccd33f1ae8e959160290e5d2d9b4e918b6472a"
checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
dependencies = [
"Inflector",
"pmutil",
"pmutil 0.6.1",
"proc-macro2",
"quote",
"swc_macros_common",
"syn 1.0.109",
"syn 2.0.18",
]
[[package]]
@@ -4586,9 +4597,9 @@ dependencies = [
[[package]]
name = "tracing-attributes"
version = "0.1.25"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8803eee176538f94ae9a14b55b2804eb7e1441f8210b1c31290b3bccdccff73b"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [
"proc-macro2",
"quote",
@@ -5199,7 +5210,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windmill"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"axum",
@@ -5234,7 +5245,7 @@ dependencies = [
[[package]]
name = "windmill-api"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"argon2",
@@ -5290,7 +5301,7 @@ dependencies = [
[[package]]
name = "windmill-api-client"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"base64 0.21.2",
"chrono",
@@ -5307,7 +5318,7 @@ dependencies = [
[[package]]
name = "windmill-audit"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"chrono",
"serde",
@@ -5320,7 +5331,7 @@ dependencies = [
[[package]]
name = "windmill-common"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"axum",
@@ -5345,7 +5356,7 @@ dependencies = [
[[package]]
name = "windmill-parser"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"serde",
"serde_json",
@@ -5353,7 +5364,7 @@ dependencies = [
[[package]]
name = "windmill-parser-bash"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -5364,7 +5375,7 @@ dependencies = [
[[package]]
name = "windmill-parser-go"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"gosyn",
@@ -5374,7 +5385,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"itertools",
@@ -5385,7 +5396,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py-imports"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"itertools",
@@ -5400,7 +5411,7 @@ dependencies = [
[[package]]
name = "windmill-parser-ts"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"convert_case 0.6.0",
@@ -5415,7 +5426,7 @@ dependencies = [
[[package]]
name = "windmill-parser-wasm"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"serde_json",
@@ -5430,7 +5441,7 @@ dependencies = [
[[package]]
name = "windmill-queue"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"async-recursion",
@@ -5459,7 +5470,7 @@ dependencies = [
[[package]]
name = "windmill-worker"
version = "1.117.0"
version = "1.118.0"
dependencies = [
"anyhow",
"async-recursion",
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.117.0"
version = "1.118.0"
authors.workspace = true
edition.workspace = true
@@ -22,7 +22,7 @@ members = [
]
[workspace.package]
version = "1.117.0"
version = "1.118.0"
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.117.0
version: 1.118.0
title: Windmill API
contact:
+1 -1
View File
@@ -28,7 +28,7 @@ addEventListener("error", (event) => {
}
});
export const VERSION = "v1.117.0";
export const VERSION = "v1.118.0";
let command: any = new Command()
.name("wmill")
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "windmill",
"version": "1.117.0",
"version": "1.118.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "windmill",
"version": "1.117.0",
"version": "1.118.0",
"license": "AGPL-3.0",
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "windmill",
"version": "1.117.0",
"version": "1.118.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
+2 -2
View File
@@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"
[packages]
wmill = ">=1.117.0"
wmill_pg = ">=1.117.0"
wmill = ">=1.118.0"
wmill_pg = ">=1.118.0"
sendgrid = "*"
mysql-connector-python = "*"
pymongo = "*"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.117.0
version: 1.118.0
title: OpenFlow Spec
contact:
name: Ruben Fiszel
+2 -2
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill"
version = "1.117.0"
version = "1.118.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.117.0"
windmill-api = "^1.118.0"
[build-system]
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill-pg"
version = "1.117.0"
version = "1.118.0"
description = "An extension client for the wmill client library focused on pg"
license = "Apache-2.0"
homepage = "https://windmill.dev"
+1 -1
View File
@@ -1 +1 @@
1.117.0
1.118.0