diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a03ff7548..dde3035fd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## [1.163.0](https://github.com/windmill-labs/windmill/compare/v1.162.2...v1.163.0) (2023-08-30) + + +### Features + +* add global cache configuration ([7c5ea56](https://github.com/windmill-labs/windmill/commit/7c5ea569a8102ef052d42216e2ff8d4c3169a7a5)) + + +### Bug Fixes + +* fix cyclical loop in apps ([61df339](https://github.com/windmill-labs/windmill/commit/61df339343767e63cbe7a4e75f1fd4f848dbd7e0)) + ## [1.162.2](https://github.com/windmill-labs/windmill/compare/v1.162.1...v1.162.2) (2023-08-29) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index e8d05faa31..91943b9a9b 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -64,9 +64,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" +checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" dependencies = [ "memchr", ] @@ -1344,9 +1344,9 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.2" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b101bb8960ab42ada6ae98eb82afcea4452294294c45b681295af26610d6d28" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", "hashbrown 0.14.0", @@ -3077,9 +3077,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.6.0" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76fc44e2588d5b436dbc3c6cf62aef290f90dab6235744a93dfe1cc18f451e2c" +checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" [[package]] name = "memoffset" @@ -3557,10 +3557,11 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pest" -version = "2.7.2" +version = "2.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" +checksum = "d7a4d085fd991ac8d5b05a147b437791b4260b76326baf0fc60cf7c9c27ecd33" dependencies = [ + "memchr", "thiserror", "ucd-trie", ] @@ -7068,7 +7069,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "axum", @@ -7103,7 +7104,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "argon2", @@ -7162,7 +7163,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.162.2" +version = "1.163.0" dependencies = [ "base64 0.21.3", "chrono", @@ -7180,7 +7181,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.162.2" +version = "1.163.0" dependencies = [ "chrono", "serde", @@ -7193,7 +7194,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "axum", @@ -7218,7 +7219,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.162.2" +version = "1.163.0" dependencies = [ "serde", "serde_json", @@ -7226,7 +7227,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "lazy_static", @@ -7237,7 +7238,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "gosyn", @@ -7247,7 +7248,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "lazy_static", @@ -7258,7 +7259,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7269,7 +7270,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "async-recursion", @@ -7286,7 +7287,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "lazy_static", @@ -7297,7 +7298,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7314,7 +7315,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7332,7 +7333,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "async-recursion", @@ -7361,7 +7362,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.162.2" +version = "1.163.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index b5c8b6c220..e34cb89267 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.162.2" +version = "1.163.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.162.2" +version = "1.163.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 5f59e30f12..1e9d9fe749 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.162.2 + version: 1.163.0 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index 266abc169c..c94c8efd69 100644 --- a/benchmarks/main.ts +++ b/benchmarks/main.ts @@ -21,7 +21,7 @@ async function login(email: string, password: string): Promise { }); } -export const VERSION = "v1.162.2"; +export const VERSION = "v1.163.0"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 8375ed3137..463904d1c6 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.162.2"; +export const VERSION = "v1.163.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d7fc5eb419..6f6dfa822f 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.162.2", + "version": "1.163.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.162.2", + "version": "1.163.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 8f94fb9098..7c1ab6ff30 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.162.2", + "version": "1.163.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index e32d56ef80..8b3f4267f5 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.162.2" -wmill_pg = ">=1.162.2" +wmill = ">=1.163.0" +wmill_pg = ">=1.163.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index cd85242c60..b0cf2b774a 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.162.2 + version: 1.163.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 695ff10181..1b8ba30537 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.162.2" +version = "1.163.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.162.2" +windmill-api = "^1.163.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 a7e5d6be66..08c3f41dfa 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.162.2" +version = "1.163.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 efa58797b8..73d4b48d30 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.162.2", + "version": "1.163.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 2b080c7647..616c87e637 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.162.2 +1.163.0