diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a647bd57c..c4c6e1469e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog +## [1.127.0](https://github.com/windmill-labs/windmill/compare/v1.126.0...v1.127.0) (2023-07-10) + + +### Features + +* add test connection to resource editor ([9d5cfaf](https://github.com/windmill-labs/windmill/commit/9d5cfafb281c1cc7dd3eb18e5eb7bf9f7423957c)) +* **frontend:** add mobile view ([#1819](https://github.com/windmill-labs/windmill/issues/1819)) ([47d211b](https://github.com/windmill-labs/windmill/commit/47d211b21807d688fe631be8c4027285a2932cfc)) + + +### Bug Fixes + +* **frontend:** support special chars in postgresql client [[#1775](https://github.com/windmill-labs/windmill/issues/1775)] ([#1818](https://github.com/windmill-labs/windmill/issues/1818)) ([9e385d9](https://github.com/windmill-labs/windmill/commit/9e385d9467a554070e375fc406a6762879a582cb)) + ## [1.126.0](https://github.com/windmill-labs/windmill/compare/v1.125.1...v1.126.0) (2023-07-09) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 42c66fb241..f6f68c8b76 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -327,7 +327,7 @@ checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -404,7 +404,7 @@ checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -846,7 +846,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -1643,7 +1643,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -2756,7 +2756,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -2995,7 +2995,7 @@ dependencies = [ "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -3033,7 +3033,7 @@ checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -3246,7 +3246,7 @@ dependencies = [ "schemars", "serde", "serde_json", - "syn 2.0.24", + "syn 2.0.25", "thiserror", "typify", "unicode-ident", @@ -3266,7 +3266,7 @@ dependencies = [ "serde_json", "serde_tokenstream", "serde_yaml", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -3617,7 +3617,7 @@ dependencies = [ "proc-macro2", "quote", "rust-embed-utils", - "syn 2.0.24", + "syn 2.0.25", "walkdir", ] @@ -3965,9 +3965,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.169" +version = "1.0.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd51c3db8f9500d531e6c12dd0fd4ad13d133e9117f5aebac3cdbb8b6d9824b0" +checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" dependencies = [ "serde_derive", ] @@ -4005,13 +4005,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.169" +version = "1.0.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27738cfea0d944ab72c3ed01f3d5f23ec4322af8a1431e40ce630e4c01ea74fd" +checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -4098,7 +4098,7 @@ dependencies = [ "proc-macro2", "quote", "serde", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -4948,9 +4948,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.24" +version = "2.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36ccaf716a23c35ff908f91c971a86a9a71af5998c1d8f10e828d9f55f68ac00" +checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2" dependencies = [ "proc-macro2", "quote", @@ -5014,7 +5014,7 @@ checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -5129,7 +5129,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -5391,7 +5391,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", ] [[package]] @@ -5507,7 +5507,7 @@ dependencies = [ "regress", "schemars", "serde_json", - "syn 2.0.24", + "syn 2.0.25", "thiserror", "unicode-ident", ] @@ -5524,7 +5524,7 @@ dependencies = [ "serde", "serde_json", "serde_tokenstream", - "syn 2.0.24", + "syn 2.0.25", "typify-impl", ] @@ -5852,7 +5852,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", "wasm-bindgen-shared", ] @@ -5886,7 +5886,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.24", + "syn 2.0.25", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -6026,7 +6026,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "axum", @@ -6061,7 +6061,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "argon2", @@ -6118,7 +6118,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.126.0" +version = "1.127.0" dependencies = [ "base64 0.21.2", "chrono", @@ -6135,7 +6135,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.126.0" +version = "1.127.0" dependencies = [ "chrono", "serde", @@ -6148,7 +6148,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "axum", @@ -6173,7 +6173,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.126.0" +version = "1.127.0" dependencies = [ "serde", "serde_json", @@ -6181,7 +6181,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "lazy_static", @@ -6192,7 +6192,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "gosyn", @@ -6202,7 +6202,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -6213,7 +6213,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -6228,7 +6228,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "lazy_static", @@ -6239,7 +6239,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -6254,7 +6254,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -6271,7 +6271,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "async-recursion", @@ -6300,7 +6300,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.126.0" +version = "1.127.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index bec883018e..96fe402d7f 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.126.0" +version = "1.127.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.126.0" +version = "1.127.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index daecef68db..ed45b58b2b 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.126.0 + version: 1.127.0 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index e54ad9b145..85bcf66258 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.126.0"; +export const VERSION = "v1.127.0"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 4a3dcbb0b9..171a1e3c51 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -28,7 +28,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.126.0"; +export const VERSION = "v1.127.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 2a777fa9d4..5280a3f1e7 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.126.0", + "version": "1.127.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.126.0", + "version": "1.127.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index e57044e10d..d5f240a060 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.126.0", + "version": "1.127.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 25b40d491a..5303d4b50c 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.126.0" -wmill_pg = ">=1.126.0" +wmill = ">=1.127.0" +wmill_pg = ">=1.127.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 59a1fad06b..994a095dcb 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.126.0 + version: 1.127.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index dcbf41c533..b9fe0a6deb 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.126.0" +version = "1.127.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.126.0" +windmill-api = "^1.127.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 f6a5438827..cd1eb0e19d 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.126.0" +version = "1.127.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 c96f047721..a7fd4875b4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.126.0 +1.127.0