diff --git a/CHANGELOG.md b/CHANGELOG.md index c1d18e2c25..7265838df6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.390.1](https://github.com/windmill-labs/windmill/compare/v1.390.0...v1.390.1) (2024-09-03) + + +### Bug Fixes + +* do not require hasNullParent only if scriptPathExact on runs search ([d172e45](https://github.com/windmill-labs/windmill/commit/d172e45766220c525e91f933f22a32738fa2709e)) +* prevent brute force attacks on tokens by slowing unauthorized response ([acfe778](https://github.com/windmill-labs/windmill/commit/acfe7786152f036f2476f93ab5536571514fa9e3)) + ## [1.390.0](https://github.com/windmill-labs/windmill/compare/v1.389.1...v1.390.0) (2024-09-02) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index a2e2848ebf..5d6b08dd5e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -6447,9 +6447,9 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2d2fb862b7ba45e615c1429def928f2e15f815bdf933b27a2d3824e224c1f46" +checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" dependencies = [ "bytes", "pin-project-lite", @@ -6465,9 +6465,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.7" +version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0a9b3a42929fad8a7c3de7f86ce0814cfa893328157672680e9fb1145549c5" +checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" dependencies = [ "bytes", "rand 0.8.5", @@ -6482,15 +6482,15 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285" +checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" dependencies = [ "libc", "once_cell", "socket2 0.5.7", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6672,15 +6672,6 @@ dependencies = [ "bitflags 1.3.2", ] -[[package]] -name = "redox_syscall" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" -dependencies = [ - "bitflags 1.3.2", -] - [[package]] name = "redox_syscall" version = "0.5.3" @@ -10436,11 +10427,11 @@ dependencies = [ [[package]] name = "whoami" -version = "1.5.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9" +checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" dependencies = [ - "redox_syscall 0.4.1", + "redox_syscall 0.5.3", "wasite", "web-sys", ] @@ -10484,7 +10475,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "axum", @@ -10526,7 +10517,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "argon2", @@ -10610,7 +10601,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.390.0" +version = "1.390.1" dependencies = [ "base64 0.21.7", "chrono", @@ -10628,7 +10619,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.390.0" +version = "1.390.1" dependencies = [ "chrono", "serde", @@ -10641,7 +10632,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "async-stream", @@ -10685,7 +10676,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.390.0" +version = "1.390.1" dependencies = [ "regex", "rsmq_async", @@ -10700,7 +10691,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "bytes", @@ -10721,7 +10712,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.390.0" +version = "1.390.1" dependencies = [ "convert_case 0.6.0", "serde", @@ -10730,7 +10721,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "lazy_static", @@ -10742,7 +10733,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "gosyn", @@ -10754,7 +10745,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "lazy_static", @@ -10766,7 +10757,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10777,7 +10768,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10788,7 +10779,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "async-recursion", @@ -10806,7 +10797,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -10823,7 +10814,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "lazy_static", @@ -10835,7 +10826,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "lazy_static", @@ -10853,7 +10844,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "getrandom 0.2.15", @@ -10873,7 +10864,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "async-recursion", @@ -10906,7 +10897,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.390.0" +version = "1.390.1" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -10916,7 +10907,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.390.0" +version = "1.390.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index ddc0114723..e793d0d45f 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.390.0" +version = "1.390.1" authors.workspace = true edition.workspace = true @@ -26,7 +26,7 @@ members = [ ] [workspace.package] -version = "1.390.0" +version = "1.390.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 2a1baba9d6..34ea63d16d 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.390.0 + version: 1.390.1 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 868153a516..2ce05e4bbb 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.390.0"; +export const VERSION = "v1.390.1"; 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 cdd72f030b..14a5ccb26e 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -34,7 +34,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.390.0"; +export const VERSION = "v1.390.1"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index dcb02c6abd..5f49f37bf0 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.390.0", + "version": "1.390.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.390.0", + "version": "1.390.1", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index a335f8cf0a..03a3aeda7b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.390.0", + "version": "1.390.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 72f18580ad..520b287a35 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.390.0" -wmill_pg = ">=1.390.0" +wmill = ">=1.390.1" +wmill_pg = ">=1.390.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 4ed76f6c1c..a3735b77b0 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.390.0 + version: 1.390.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 20031e8c8a..78911b357d 100644 --- a/powershell-client/WindmillClient/WindmillClient.psd1 +++ b/powershell-client/WindmillClient/WindmillClient.psd1 @@ -12,7 +12,7 @@ RootModule = 'WindmillClient.psm1' # Version number of this module. -ModuleVersion = '1.390.0' +ModuleVersion = '1.390.1' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 66970aa539..437d166148 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.390.0" +version = "1.390.1" description = "A client library for accessing Windmill server wrapping the Windmill client API" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 9c5073fec0..5145c4aefc 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.390.0" +version = "1.390.1" 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/jsr.json b/typescript-client/jsr.json index 07790d02a8..821f31a53e 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.390.0", + "version": "1.390.1", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index 7c16274e1d..f8a842de5f 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.390.0", + "version": "1.390.1", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index c1a9248def..186dcbce76 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.390.0 +1.390.1