diff --git a/CHANGELOG.md b/CHANGELOG.md index 79eaa47225..f683e27023 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.393.4](https://github.com/windmill-labs/windmill/compare/v1.393.3...v1.393.4) (2024-09-09) + + +### Bug Fixes + +* bun scripts cached in docker image have their dependencies pre-loaded ([4a6c3c8](https://github.com/windmill-labs/windmill/commit/4a6c3c8cc51e9e9b15410b4894ae6065e19d6068)) +* **cli:** add --extra-includes to improve git sync capabilities ([9329006](https://github.com/windmill-labs/windmill/commit/9329006ad822e78c196d5ea6469b694d20c9a67f)) +* fix hub sync script ([4e09e7f](https://github.com/windmill-labs/windmill/commit/4e09e7f4517c26fa91820d5fe8202a36ed84ef1c)) + ## [1.393.3](https://github.com/windmill-labs/windmill/compare/v1.393.2...v1.393.3) (2024-09-07) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 0be532b6f8..17810902ea 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -14,9 +14,9 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.22.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" +checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" dependencies = [ "gimli", ] @@ -1112,17 +1112,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.73" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ "addr2line", - "cc", "cfg-if", "libc", - "miniz_oxide 0.7.4", + "miniz_oxide 0.8.0", "object", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -3786,9 +3786,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.29.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" +checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" [[package]] name = "git-version" @@ -4427,9 +4427,9 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" [[package]] name = "is-macro" @@ -10412,7 +10412,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "axum", @@ -10454,7 +10454,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "argon2", @@ -10538,7 +10538,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.393.3" +version = "1.393.4" dependencies = [ "base64 0.21.7", "chrono", @@ -10556,7 +10556,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.393.3" +version = "1.393.4" dependencies = [ "chrono", "serde", @@ -10569,7 +10569,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "async-stream", @@ -10613,7 +10613,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.393.3" +version = "1.393.4" dependencies = [ "regex", "rsmq_async", @@ -10628,7 +10628,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "bytes", @@ -10649,7 +10649,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.393.3" +version = "1.393.4" dependencies = [ "convert_case 0.6.0", "serde", @@ -10658,7 +10658,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "lazy_static", @@ -10670,7 +10670,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "gosyn", @@ -10682,7 +10682,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "lazy_static", @@ -10694,7 +10694,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10705,7 +10705,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "itertools 0.13.0", @@ -10716,7 +10716,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "async-recursion", @@ -10734,7 +10734,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -10751,7 +10751,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "lazy_static", @@ -10763,7 +10763,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "lazy_static", @@ -10781,7 +10781,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "getrandom 0.2.15", @@ -10801,7 +10801,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "async-recursion", @@ -10834,7 +10834,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.393.3" +version = "1.393.4" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -10844,7 +10844,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.393.3" +version = "1.393.4" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 9547092e5d..1583ad3a60 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.393.3" +version = "1.393.4" authors.workspace = true edition.workspace = true @@ -26,7 +26,7 @@ members = [ ] [workspace.package] -version = "1.393.3" +version = "1.393.4" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 384ecd1eb0..52a69329f7 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.393.3 + version: 1.393.4 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index 37b3ecdf48..854fc46c17 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.393.3"; +export const VERSION = "v1.393.4"; 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 dc7dcde52d..056cb2d7f2 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -56,7 +56,7 @@ export { // } // }); -export const VERSION = "1.393.3"; +export const VERSION = "1.393.4"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 9d6a6ad930..b09c07d19b 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.393.3", + "version": "1.393.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.393.3", + "version": "1.393.4", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index e3e3ae23ae..7375504b66 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.393.3", + "version": "1.393.4", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 133bb564ac..229754a536 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.393.3" -wmill_pg = ">=1.393.3" +wmill = ">=1.393.4" +wmill_pg = ">=1.393.4" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index a8fe01cc50..d709efc343 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.393.3 + version: 1.393.4 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index 7571ad2b23..ca99924d71 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.393.3' +ModuleVersion = '1.393.4' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 146862f860..6b9dd0118d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.393.3" +version = "1.393.4" 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 c8a04f933b..827da52802 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.393.3" +version = "1.393.4" 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 7f6d6305f0..552956fbc8 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.393.3", + "version": "1.393.4", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index 2d96f217f3..98eb12c439 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.393.3", + "version": "1.393.4", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 4a126e7741..32e8e24281 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.393.3 +1.393.4