diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f2362ab97..02f91aaa8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.571.0](https://github.com/windmill-labs/windmill/compare/v1.570.0...v1.571.0) (2025-11-01) + + +### Features + +* Add "list_resources" function to the wmill sdk ([8d5328a](https://github.com/windmill-labs/windmill/commit/8d5328ac530d7ec5da7584ee8094fa18e8955176)) +* **backend:** allow specifying oidc token expiration with env var ([#7022](https://github.com/windmill-labs/windmill/issues/7022)) ([5f79a60](https://github.com/windmill-labs/windmill/commit/5f79a60d5b86687b433c48b10e810fd49de5f4bf)) + + +### Bug Fixes + +* redeployment of relative import overwrites lock from raw reqs ([#7023](https://github.com/windmill-labs/windmill/issues/7023)) ([abfc1cb](https://github.com/windmill-labs/windmill/commit/abfc1cba1ce2978d28459ef7a1f09025dfcbd95a)) + ## [1.570.0](https://github.com/windmill-labs/windmill/compare/v1.569.0...v1.570.0) (2025-10-31) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index fc206605e9..6a8ec39269 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -959,9 +959,9 @@ dependencies = [ [[package]] name = "aws-sigv4" -version = "1.3.5" +version = "1.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bffc03068fbb9c8dd5ce1c6fb240678a5cffb86fb2b7b1985c999c4b83c8df68" +checksum = "c35452ec3f001e1f2f6db107b6373f1f48f05ec63ba2c5c9fa91f07dad32af11" dependencies = [ "aws-credential-types", "aws-smithy-http", @@ -1156,9 +1156,9 @@ dependencies = [ [[package]] name = "aws-types" -version = "1.3.9" +version = "1.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2fd329bf0e901ff3f60425691410c69094dc2a1f34b331f37bfc4e9ac1565a1" +checksum = "d79fb68e3d7fe5d4833ea34dc87d2e97d26d3086cb3da660bb6b1f76d98680b6" dependencies = [ "aws-credential-types", "aws-smithy-async", @@ -1945,9 +1945,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.43" +version = "1.2.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2" +checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3" dependencies = [ "find-msvc-tools", "jobserver", @@ -15138,7 +15138,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "aws-sdk-config", @@ -15198,7 +15198,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "argon2", @@ -15318,7 +15318,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.570.0" +version = "1.571.0" dependencies = [ "base64 0.22.1", "chrono", @@ -15333,7 +15333,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.570.0" +version = "1.571.0" dependencies = [ "chrono", "lazy_static", @@ -15347,7 +15347,7 @@ dependencies = [ [[package]] name = "windmill-autoscaling" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "axum", @@ -15366,7 +15366,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "async-recursion", @@ -15451,7 +15451,7 @@ dependencies = [ [[package]] name = "windmill-git-sync" -version = "1.570.0" +version = "1.571.0" dependencies = [ "regex", "serde", @@ -15466,7 +15466,7 @@ dependencies = [ [[package]] name = "windmill-indexer" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "bytes", @@ -15490,7 +15490,7 @@ dependencies = [ [[package]] name = "windmill-macros" -version = "1.570.0" +version = "1.571.0" dependencies = [ "itertools 0.14.0", "lazy_static", @@ -15502,7 +15502,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.570.0" +version = "1.571.0" dependencies = [ "convert_case 0.6.0", "serde", @@ -15511,7 +15511,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "lazy_static", @@ -15523,7 +15523,7 @@ dependencies = [ [[package]] name = "windmill-parser-csharp" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "serde_json", @@ -15535,7 +15535,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "gosyn", @@ -15547,7 +15547,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "lazy_static", @@ -15559,7 +15559,7 @@ dependencies = [ [[package]] name = "windmill-parser-java" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "serde_json", @@ -15571,7 +15571,7 @@ dependencies = [ [[package]] name = "windmill-parser-nu" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "nu-parser", @@ -15582,7 +15582,7 @@ dependencies = [ [[package]] name = "windmill-parser-php" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15593,7 +15593,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "itertools 0.14.0", @@ -15605,7 +15605,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "async-recursion", @@ -15628,7 +15628,7 @@ dependencies = [ [[package]] name = "windmill-parser-ruby" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "lazy_static", @@ -15642,7 +15642,7 @@ dependencies = [ [[package]] name = "windmill-parser-rust" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -15659,7 +15659,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "lazy_static", @@ -15673,7 +15673,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "lazy_static", @@ -15691,7 +15691,7 @@ dependencies = [ [[package]] name = "windmill-parser-yaml" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "serde", @@ -15702,7 +15702,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "async-recursion", @@ -15735,7 +15735,7 @@ dependencies = [ [[package]] name = "windmill-sql-datatype-parser-wasm" -version = "1.570.0" +version = "1.571.0" dependencies = [ "wasm-bindgen", "wasm-bindgen-test", @@ -15745,7 +15745,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.570.0" +version = "1.571.0" dependencies = [ "anyhow", "async-once-cell", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 099c67632c..c1ed86fc84 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.570.0" +version = "1.571.0" authors.workspace = true edition.workspace = true @@ -33,7 +33,7 @@ members = [ exclude = ["./windmill-duckdb-ffi-internal"] [workspace.package] -version = "1.570.0" +version = "1.571.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 5175df2231..13a654513a 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.570.0 + version: 1.571.0 title: Windmill API contact: diff --git a/benchmarks/lib.ts b/benchmarks/lib.ts index d3fbfa645a..173a3f4480 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.570.0"; +export const VERSION = "v1.571.0"; export async function login(email: string, password: string): Promise { return await windmill.UserService.login({ diff --git a/cli/src/main.ts b/cli/src/main.ts index 28eba91801..146e5792f4 100644 --- a/cli/src/main.ts +++ b/cli/src/main.ts @@ -68,7 +68,7 @@ export { // } // }); -export const VERSION = "1.570.0"; +export const VERSION = "1.571.0"; export const WM_FORK_PREFIX = "wm-fork"; diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d3cf9e4545..61855e46cc 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.570.0", + "version": "1.571.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.570.0", + "version": "1.571.0", "hasInstallScript": true, "license": "AGPL-3.0", "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index 4b030804b4..3b10f64bc8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.570.0", + "version": "1.571.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 3e482f91a2..9b086a0cc3 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.570.0" -wmill_pg = ">=1.570.0" +wmill = ">=1.571.0" +wmill_pg = ">=1.571.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 7b2c7f8c15..6eebf81ebe 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.570.0 + version: 1.571.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/powershell-client/WindmillClient/WindmillClient.psd1 b/powershell-client/WindmillClient/WindmillClient.psd1 index cc0a612592..4a87c22658 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.570.0' + ModuleVersion = '1.571.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 35ad31d850..9a5850bf23 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.570.0" +version = "1.571.0" 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 634babe3e2..eedf7a371e 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.570.0" +version = "1.571.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/jsr.json b/typescript-client/jsr.json index 8fb1932342..1aeb3c5fd8 100644 --- a/typescript-client/jsr.json +++ b/typescript-client/jsr.json @@ -1,6 +1,6 @@ { "name": "@windmill/windmill", - "version": "1.570.0", + "version": "1.571.0", "exports": "./src/index.ts", "publish": { "exclude": ["!src", "./s3Types.ts", "./client.ts"] diff --git a/typescript-client/package.json b/typescript-client/package.json index fe75942f38..b2ff911191 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.570.0", + "version": "1.571.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 5aec0422bd..4d65c69e0f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.570.0 +1.571.0