Skip to content

Commit 3f74eeb

Browse files
authored
chore(main): release 1.429.0 (#4761)
* chore(main): release 1.429.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent 3731886 commit 3f74eeb

File tree

16 files changed

+63
-49
lines changed

16 files changed

+63
-49
lines changed

CHANGELOG.md

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

3+
## [1.429.0](https://github.com/windmill-labs/windmill/compare/v1.428.1...v1.429.0) (2024-11-20)
4+
5+
6+
### Features
7+
8+
* app editor ctrl nav ([#4757](https://github.com/windmill-labs/windmill/issues/4757)) ([3731886](https://github.com/windmill-labs/windmill/commit/37318861ac356b73f6da652c0ef8b4fc23436e3f))
9+
* svix integration ([#3814](https://github.com/windmill-labs/windmill/issues/3814)) ([68f781e](https://github.com/windmill-labs/windmill/commit/68f781ea6f5f53a3aafbc2c4b5dd71496254c68e))
10+
11+
12+
### Bug Fixes
13+
14+
* add cancellable icons refresh in apps ([2c325ef](https://github.com/windmill-labs/windmill/commit/2c325ef8524e3c74844e566ecf42c245f87a2918))
15+
* **frontend:** pdf viewer fullscreen z-index ([#4762](https://github.com/windmill-labs/windmill/issues/4762)) ([a23cd4f](https://github.com/windmill-labs/windmill/commit/a23cd4f9e7c3e327eea099aade8c3fcd30cc2b87))
16+
317
## [1.428.1](https://github.com/windmill-labs/windmill/compare/v1.428.0...v1.428.1) (2024-11-20)
418

519

backend/Cargo.lock

+31-31
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.428.1"
3+
version = "1.429.0"
44
authors.workspace = true
55
edition.workspace = true
66

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

3131
[workspace.package]
32-
version = "1.428.1"
32+
version = "1.429.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.428.1
4+
version: 1.429.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.428.1";
5+
export const VERSION = "v1.429.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.428.1";
63+
export const VERSION = "1.429.0";
6464

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

frontend/package-lock.json

+3-3
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.428.1",
3+
"version": "1.429.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.428.1"
8-
wmill_pg = ">=1.428.1"
7+
wmill = ">=1.429.0"
8+
wmill_pg = ">=1.429.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.428.1
4+
version: 1.429.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.428.1'
15+
ModuleVersion = '1.429.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

0 commit comments

Comments
 (0)