Skip to content

Commit d4c1be5

Browse files
authored
chore(main): release 1.589.0 (#7277)
* chore(main): release 1.589.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent d3564a0 commit d4c1be5

File tree

16 files changed

+71
-57
lines changed

16 files changed

+71
-57
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.589.0](https://github.com/windmill-labs/windmill/compare/v1.588.0...v1.589.0) (2025-12-03)
4+
5+
6+
### Features
7+
8+
* agent workers min version support ([#7284](https://github.com/windmill-labs/windmill/issues/7284)) ([e15af78](https://github.com/windmill-labs/windmill/commit/e15af78d9330617d8c7261f47433efc2f5f95203))
9+
10+
11+
### Bug Fixes
12+
13+
* get flow by id doesn't require path ([#7278](https://github.com/windmill-labs/windmill/issues/7278)) ([60d5ea8](https://github.com/windmill-labs/windmill/commit/60d5ea857991b370c0049f7cff8cb4611a87620e))
14+
* Prevent running git sync on promotion mode repos for forks ([#7276](https://github.com/windmill-labs/windmill/issues/7276)) ([2a841bb](https://github.com/windmill-labs/windmill/commit/2a841bb0e319883174a1de49d47b1fb97423191c))
15+
316
## [1.588.0](https://github.com/windmill-labs/windmill/compare/v1.587.1...v1.588.0) (2025-12-02)
417

518

backend/Cargo.lock

Lines changed: 41 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windmill"
3-
version = "1.588.0"
3+
version = "1.589.0"
44
authors.workspace = true
55
edition.workspace = true
66

@@ -33,7 +33,7 @@ members = [
3333
exclude = ["./windmill-duckdb-ffi-internal"]
3434

3535
[workspace.package]
36-
version = "1.588.0"
36+
version = "1.589.0"
3737
authors = ["Ruben Fiszel <[email protected]>"]
3838
edition = "2021"
3939

backend/windmill-api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.3"
22

33
info:
4-
version: 1.588.0
4+
version: 1.589.0
55
title: Windmill API
66

77
contact:

benchmarks/lib.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/[email protected]/mod.ts";
22
import * as windmill from "https://deno.land/x/[email protected]/mod.ts";
33
import * as api from "https://deno.land/x/[email protected]/windmill-api/index.ts";
44

5-
export const VERSION = "v1.588.0";
5+
export const VERSION = "v1.589.0";
66

77
export async function login(email: string, password: string): Promise<string> {
88
return await windmill.UserService.login({

cli/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export {
7070
// }
7171
// });
7272

73-
export const VERSION = "1.588.0";
73+
export const VERSION = "1.589.0";
7474

7575
export const WM_FORK_PREFIX = "wm-fork";
7676

0 commit comments

Comments
 (0)