diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a8026ef66..c6ec79243c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## [1.180.0](https://github.com/windmill-labs/windmill/compare/v1.179.1...v1.180.0) (2023-10-01) + + +### Features + +* code content search ([#2367](https://github.com/windmill-labs/windmill/issues/2367)) ([fb96059](https://github.com/windmill-labs/windmill/commit/fb960594fce265d5d4f4eb443e0c9cc19d14e025)) + + +### Bug Fixes + +* improve connection in apps ([a2fca17](https://github.com/windmill-labs/windmill/commit/a2fca17ae2ac8257154e2aec4a0ceabfe16fc46a)) + ## [1.179.1](https://github.com/windmill-labs/windmill/compare/v1.179.0...v1.179.1) (2023-09-30) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 3aa656bc06..f661a5b32c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1796,9 +1796,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" +checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480" dependencies = [ "errno-dragonfly", "libc", @@ -2945,9 +2945,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" +checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" [[package]] name = "lock_api" @@ -3083,9 +3083,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.6.3" +version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "memoffset" @@ -4267,13 +4267,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.5" +version = "1.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" +checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.8", + "regex-automata 0.3.9", "regex-syntax 0.7.5", ] @@ -4288,9 +4288,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" +checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" dependencies = [ "aho-corasick", "memchr", @@ -4592,7 +4592,7 @@ dependencies = [ "bitflags 2.4.0", "errno", "libc", - "linux-raw-sys 0.4.7", + "linux-raw-sys 0.4.8", "windows-sys", ] @@ -7001,9 +7001,9 @@ dependencies = [ [[package]] name = "webpki" -version = "0.22.1" +version = "0.22.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0e74f82d49d545ad128049b7e88f6576df2da6b02e9ce565c6f533be576957e" +checksum = "07ecc0cd7cac091bf682ec5efa18b1cff79d617b84181f38b3951dbe135f607f" dependencies = [ "ring", "untrusted", @@ -7097,7 +7097,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "axum", @@ -7131,7 +7131,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "argon2", @@ -7191,7 +7191,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.179.1" +version = "1.180.0" dependencies = [ "base64 0.21.4", "chrono", @@ -7209,7 +7209,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.179.1" +version = "1.180.0" dependencies = [ "chrono", "serde", @@ -7222,7 +7222,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "axum", @@ -7250,7 +7250,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.179.1" +version = "1.180.0" dependencies = [ "serde", "serde_json", @@ -7258,7 +7258,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "lazy_static", @@ -7269,7 +7269,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "gosyn", @@ -7281,7 +7281,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "lazy_static", @@ -7292,7 +7292,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7303,7 +7303,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "async-recursion", @@ -7320,7 +7320,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "lazy_static", @@ -7331,7 +7331,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7348,7 +7348,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7366,7 +7366,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "async-recursion", @@ -7396,7 +7396,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.179.1" +version = "1.180.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 5a1e207eac..06f3d14a2a 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.179.1" +version = "1.180.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.179.1" +version = "1.180.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 8007e4f0ce..15af01f70c 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.179.1 + version: 1.180.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 912e6a7a1f..1ea0352b56 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.179.1"; +export const VERSION = "v1.180.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 f1a1d6cf31..6b86b37ff7 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.179.1"; +export const VERSION = "v1.180.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 2ef8d90f93..544296d3c3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.179.1", + "version": "1.180.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.179.1", + "version": "1.180.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index a0cc87d6c9..8b5c06e25d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.179.1", + "version": "1.180.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 6258ef64fb..3f320385b0 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.179.1" -wmill_pg = ">=1.179.1" +wmill = ">=1.180.0" +wmill_pg = ">=1.180.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 996d7e95f7..a96de6f5a2 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.179.1 + version: 1.180.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 9a7a4951f6..9e8e58c7e4 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.179.1" +version = "1.180.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.179.1" +windmill-api = "^1.180.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 685c093d46..b9c840b97e 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.179.1" +version = "1.180.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 cd052977ec..307fa14cea 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.179.1", + "version": "1.180.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 3eb6a8f7e0..c9268336c8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.179.1 +1.180.0