Skip to content

Commit d86d233

Browse files
authored
chore(main): release 1.595.0 (#7416)
* chore(main): release 1.595.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com>
1 parent 2e4d6ad commit d86d233

File tree

16 files changed

+64
-48
lines changed

16 files changed

+64
-48
lines changed

CHANGELOG.md

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

3+
## [1.595.0](https://github.com/windmill-labs/windmill/compare/v1.594.0...v1.595.0) (2025-12-19)
4+
5+
6+
### Features
7+
8+
* email triggers custom cert ([#7415](https://github.com/windmill-labs/windmill/issues/7415)) ([0bf7407](https://github.com/windmill-labs/windmill/commit/0bf74074192d22e3ba28acae65d88464f9958fb8))
9+
10+
11+
### Bug Fixes
12+
13+
* **backend:** put for loop itered in a separate table ([#7419](https://github.com/windmill-labs/windmill/issues/7419)) ([f89fb29](https://github.com/windmill-labs/windmill/commit/f89fb292da320f54d682e8de5ff57acac0405efa))
14+
* do not use unshare for init scripts ([#7418](https://github.com/windmill-labs/windmill/issues/7418)) ([c28e771](https://github.com/windmill-labs/windmill/commit/c28e77110e3a97c597b0781124a97b6d16a34810))
15+
* **frontend:** settings redesign ([#7406](https://github.com/windmill-labs/windmill/issues/7406)) ([210b828](https://github.com/windmill-labs/windmill/commit/210b8285d4d9a693f67b40831d5bb39d6aeffb92))
16+
* Python Enum types generate proper dropdown schemas with descriptions ([#7400](https://github.com/windmill-labs/windmill/issues/7400)) ([da500fc](https://github.com/windmill-labs/windmill/commit/da500fcf3e79f76e14d1724f07dd69e58a6307e8))
17+
* teams, need both guid and thread id format ([#7420](https://github.com/windmill-labs/windmill/issues/7420)) ([8268354](https://github.com/windmill-labs/windmill/commit/8268354889d0eb1fb44c083fd1c6243f08788e2c))
18+
319
## [1.594.0](https://github.com/windmill-labs/windmill/compare/v1.593.1...v1.594.0) (2025-12-19)
420

521

backend/Cargo.lock

Lines changed: 31 additions & 31 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.594.0"
3+
version = "1.595.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.594.0"
36+
version = "1.595.0"
3737
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
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.594.0
4+
version: 1.595.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/sleep@v1.2.1/mod.ts";
22
import * as windmill from "https://deno.land/x/windmill@v1.174.0/mod.ts";
33
import * as api from "https://deno.land/x/windmill@v1.174.0/windmill-api/index.ts";
44

5-
export const VERSION = "v1.594.0";
5+
export const VERSION = "v1.595.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.594.0";
73+
export const VERSION = "1.595.0";
7474

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

frontend/package-lock.json

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

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "windmill-components",
3-
"version": "1.594.0",
3+
"version": "1.595.0",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build",

lsp/Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
wmill = ">=1.594.0"
8-
wmill_pg = ">=1.594.0"
7+
wmill = ">=1.595.0"
8+
wmill_pg = ">=1.595.0"
99
sendgrid = "*"
1010
mysql-connector-python = "*"
1111
pymongo = "*"

openflow.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.594.0
4+
version: 1.595.0
55
title: OpenFlow Spec
66
contact:
77
name: Ruben Fiszel

0 commit comments

Comments
 (0)