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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.587.0](https://github.com/windmill-labs/windmill/compare/v1.586.0...v1.587.0) (2025-11-30)


### Features

* **aichat:** stream tool arguments ([#7244](https://github.com/windmill-labs/windmill/issues/7244)) ([8d6936a](https://github.com/windmill-labs/windmill/commit/8d6936ae4a8577983405d95ab75f99822f15da3d))
* workspace dependencies ([#7124](https://github.com/windmill-labs/windmill/issues/7124)) ([d38c96d](https://github.com/windmill-labs/windmill/commit/d38c96db369bf0a9a0640e11d7fee16605a6775a))


### Bug Fixes

* **cli:** cli behave as expected in forked workspaces ([58ef965](https://github.com/windmill-labs/windmill/commit/58ef965e20ec25456da23b27fe16b8abab1889f6))
* **git-sync:** initialize repo with gitBranches set ([49b2ea6](https://github.com/windmill-labs/windmill/commit/49b2ea65316be3cf0b95af4b2e69c10c01f35d1a))

## [1.586.0](https://github.com/windmill-labs/windmill/compare/v1.585.1...v1.586.0) (2025-11-27)


Expand Down
88 changes: 44 additions & 44 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.586.0"
version = "1.587.0"
authors.workspace = true
edition.workspace = true

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

[workspace.package]
version = "1.586.0"
version = "1.587.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.586.0
version: 1.587.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.586.0";
export const VERSION = "v1.587.0";

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