Skip to content

Commit 47facb3

Browse files
authored
chore(main): release 1.424.0 (#4709)
* chore(main): release 1.424.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent c44fc4f commit 47facb3

File tree

16 files changed

+66
-49
lines changed

16 files changed

+66
-49
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [1.424.0](https://github.com/windmill-labs/windmill/compare/v1.423.2...v1.424.0) (2024-11-14)
4+
5+
6+
### Features
7+
8+
* allow setting password and login type from superadmin UI ([2a1bff3](https://github.com/windmill-labs/windmill/commit/2a1bff3160b65eadba399229b5f53950ec2c0d48))
9+
* **backend:** monitor minimal version of living workers ([#4704](https://github.com/windmill-labs/windmill/issues/4704)) ([50ff183](https://github.com/windmill-labs/windmill/commit/50ff183baeaa2a39c2b0188ee8dd6172b08ae801))
10+
* Support mistral anthropic for ai ([#4692](https://github.com/windmill-labs/windmill/issues/4692)) ([556b4a4](https://github.com/windmill-labs/windmill/commit/556b4a41a1d010bb8a1796f485d343c1e412d278))
11+
12+
13+
### Bug Fixes
14+
15+
* add countCompletedJobs api ([2a78359](https://github.com/windmill-labs/windmill/commit/2a78359af7b8e4700634c2ad2745c1d14d2da4f7))
16+
* add queue_couts api ([10b6b1d](https://github.com/windmill-labs/windmill/commit/10b6b1dc04cb2b2d4ec5ceb26a5dbd2ac7bd1394))
17+
* autoscaling when count &lt; min worker set to min_workers ([180bb82](https://github.com/windmill-labs/windmill/commit/180bb826436f9960def8c6cf3e9692714ffdf917))
18+
* deployment callbacks have a concurrency limit of 1 on same path ([c44fc4f](https://github.com/windmill-labs/windmill/commit/c44fc4f5ab8bcb5dffec08d5ed4ccd61feb1cb13))
19+
320
## [1.423.2](https://github.com/windmill-labs/windmill/compare/v1.423.1...v1.423.2) (2024-11-13)
421

522

backend/Cargo.lock

+32-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windmill"
3-
version = "1.423.2"
3+
version = "1.424.0"
44
authors.workspace = true
55
edition.workspace = true
66

@@ -29,7 +29,7 @@ members = [
2929
]
3030

3131
[workspace.package]
32-
version = "1.423.2"
32+
version = "1.424.0"
3333
authors = ["Ruben Fiszel <[email protected]>"]
3434
edition = "2021"
3535

backend/windmill-api/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.3"
22

33
info:
4-
version: 1.423.2
4+
version: 1.424.0
55
title: Windmill API
66

77
contact:

benchmarks/lib.ts

+1-1
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.423.2";
5+
export const VERSION = "v1.424.0";
66

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

cli/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export {
6060
// }
6161
// });
6262

63-
export const VERSION = "1.423.2";
63+
export const VERSION = "1.424.0";
6464

6565
const command = new Command()
6666
.name("wmill")

frontend/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "windmill-components",
3-
"version": "1.423.2",
3+
"version": "1.424.0",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build",

lsp/Pipfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ verify_ssl = true
44
name = "pypi"
55

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

openflow.openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.3"
22

33
info:
4-
version: 1.423.2
4+
version: 1.424.0
55
title: OpenFlow Spec
66
contact:
77
name: Ruben Fiszel

powershell-client/WindmillClient/WindmillClient.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'WindmillClient.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.423.2'
15+
ModuleVersion = '1.424.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

python-client/wmill/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill"
3-
version = "1.423.2"
3+
version = "1.424.0"
44
description = "A client library for accessing Windmill server wrapping the Windmill client API"
55
license = "Apache-2.0"
66
homepage = "https://windmill.dev"

python-client/wmill_pg/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill-pg"
3-
version = "1.423.2"
3+
version = "1.424.0"
44
description = "An extension client for the wmill client library focused on pg"
55
license = "Apache-2.0"
66
homepage = "https://windmill.dev"

0 commit comments

Comments
 (0)