Skip to content

Commit b4be86c

Browse files
authored
chore(main): release 1.428.0 (#4749)
* chore(main): release 1.428.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent f59c0c0 commit b4be86c

File tree

16 files changed

+71
-58
lines changed

16 files changed

+71
-58
lines changed

CHANGELOG.md

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

3+
## [1.428.0](https://github.com/windmill-labs/windmill/compare/v1.427.0...v1.428.0) (2024-11-19)
4+
5+
6+
### Features
7+
8+
* improve app connection UX [#4687](https://github.com/windmill-labs/windmill/issues/4687) ([2fd80f7](https://github.com/windmill-labs/windmill/commit/2fd80f7cdd21e3938311914ec733d769e13993d6))
9+
* pdf file preview ([#4753](https://github.com/windmill-labs/windmill/issues/4753)) ([b3a7cb0](https://github.com/windmill-labs/windmill/commit/b3a7cb058384b61328e2956f8ccd782ebd7b5900))
10+
11+
12+
### Bug Fixes
13+
14+
* prevent groups to be ill-defined with non writer owners ([f59c0c0](https://github.com/windmill-labs/windmill/commit/f59c0c007675886d41b57647dc7e93b63444e3f9))
15+
316
## [1.427.0](https://github.com/windmill-labs/windmill/compare/v1.426.1...v1.427.0) (2024-11-19)
417

518

backend/Cargo.lock

+41-41
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.427.0"
3+
version = "1.428.0"
44
authors.workspace = true
55
edition.workspace = true
66

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

3131
[workspace.package]
32-
version = "1.427.0"
32+
version = "1.428.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.427.0
4+
version: 1.428.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.427.0";
5+
export const VERSION = "v1.428.0";
66

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

0 commit comments

Comments
 (0)