Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [1.550.0](https://github.com/windmill-labs/windmill/compare/v1.549.1...v1.550.0) (2025-09-27)


### Features

* ai agent streaming ([#6644](https://github.com/windmill-labs/windmill/issues/6644)) ([f990107](https://github.com/windmill-labs/windmill/commit/f990107c45fbb2e955ef67439e92328976091eb0))


### Bug Fixes

* improve behavior for already completed jobs when doing immediate cancels ([341cdcf](https://github.com/windmill-labs/windmill/commit/341cdcf66efdfd504492be32d9b4f5cb9db2df2a))
* improve dyn select as flow input ([6ece0ac](https://github.com/windmill-labs/windmill/commit/6ece0ac5758d4f5e8c0d55ee78a524e454ad264b))
* improve graph rendering performances ([7add574](https://github.com/windmill-labs/windmill/commit/7add57499c02ac53a7f7adbabbb279d7c41ab275))
* improve performance of flow viewer ([311b410](https://github.com/windmill-labs/windmill/commit/311b410f2f65c3bdfc483c80cc5ef72b6864118a))
* limit auto data tables to tables of col < 100 ([f28ed9a](https://github.com/windmill-labs/windmill/commit/f28ed9a5f5c6032c49734e6770c2f2c9e2e4a001))
* make schedule more resilient in case of pg clock shifts ([8786130](https://github.com/windmill-labs/windmill/commit/87861301f28cab136fe7af094690539e3daa613f))
* restore set_progress feature with sse ([7df13b3](https://github.com/windmill-labs/windmill/commit/7df13b3e7bb095475d0fe54b7f635e3861fb0f73))
* scim group/users audit logs ([#6682](https://github.com/windmill-labs/windmill/issues/6682)) ([ca4f9ee](https://github.com/windmill-labs/windmill/commit/ca4f9ee8c12f01fc7c3bcedf5d41e59dc28eb1f2))
* support label + value for dynamic enums of selects ([ec9e5a9](https://github.com/windmill-labs/windmill/commit/ec9e5a9acbd352b20399d403be55361c73084aff))

## [1.549.1](https://github.com/windmill-labs/windmill/compare/v1.549.0...v1.549.1) (2025-09-26)


Expand Down
56 changes: 28 additions & 28 deletions backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.549.1"
version = "1.550.0"
authors.workspace = true
edition.workspace = true

Expand Down Expand Up @@ -34,7 +34,7 @@ members = [
exclude = ["./windmill-duckdb-ffi-internal"]

[workspace.package]
version = "1.549.1"
version = "1.550.0"
authors = ["Ruben Fiszel <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion backend/windmill-api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: "3.0.3"

info:
version: 1.549.1
version: 1.550.0
title: Windmill API

contact:
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/[email protected]/mod.ts";
import * as windmill from "https://deno.land/x/[email protected]/mod.ts";
import * as api from "https://deno.land/x/[email protected]/windmill-api/index.ts";

export const VERSION = "v1.549.1";
export const VERSION = "v1.550.0";

export async function login(email: string, password: string): Promise<string> {
return await windmill.UserService.login({
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export {
// }
// });

export const VERSION = "1.549.1";
export const VERSION = "1.550.0";

export const WM_FORK_PREFIX = "wm-fork";

Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "windmill-components",
"version": "1.549.1",
"version": "1.550.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand Down
4 changes: 2 additions & 2 deletions lsp/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"

[packages]
wmill = ">=1.549.1"
wmill_pg = ">=1.549.1"
wmill = ">=1.550.0"
wmill_pg = ">=1.550.0"
sendgrid = "*"
mysql-connector-python = "*"
pymongo = "*"
Expand Down
2 changes: 1 addition & 1 deletion openflow.openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: "3.0.3"

info:
version: 1.549.1
version: 1.550.0
title: OpenFlow Spec
contact:
name: Ruben Fiszel
Expand Down
2 changes: 1 addition & 1 deletion powershell-client/WindmillClient/WindmillClient.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'WindmillClient.psm1'

# Version number of this module.
ModuleVersion = '1.549.1'
ModuleVersion = '1.550.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion python-client/wmill/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill"
version = "1.549.1"
version = "1.550.0"
description = "A client library for accessing Windmill server wrapping the Windmill client API"
license = "Apache-2.0"
homepage = "https://windmill.dev"
Expand Down
2 changes: 1 addition & 1 deletion python-client/wmill_pg/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill-pg"
version = "1.549.1"
version = "1.550.0"
description = "An extension client for the wmill client library focused on pg"
license = "Apache-2.0"
homepage = "https://windmill.dev"
Expand Down
2 changes: 1 addition & 1 deletion typescript-client/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@windmill/windmill",
"version": "1.549.1",
"version": "1.550.0",
"exports": "./src/index.ts",
"publish": {
"exclude": ["!src", "./s3Types.ts", "./client.ts"]
Expand Down
Loading
Loading