Skip to content

Commit 2367626

Browse files
authored
chore(main): release 1.483.0 (#5632)
* chore(main): release 1.483.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent 64c72b6 commit 2367626

File tree

16 files changed

+91
-56
lines changed

16 files changed

+91
-56
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.483.0](https://github.com/windmill-labs/windmill/compare/v1.482.1...v1.483.0) (2025-04-19)
4+
5+
6+
### Features
7+
8+
* handle different aws auth resource type ([#5637](https://github.com/windmill-labs/windmill/issues/5637)) ([5b123b0](https://github.com/windmill-labs/windmill/commit/5b123b01a1318208450789b5bcade447a0b331c7))
9+
* oidc support for sqs trigger ([#5614](https://github.com/windmill-labs/windmill/issues/5614)) ([34b307b](https://github.com/windmill-labs/windmill/commit/34b307b2be1f6cf92a81694325f4c333bdd7b055))
10+
11+
12+
### Bug Fixes
13+
14+
* fix click outside popover fullscreen ([#5631](https://github.com/windmill-labs/windmill/issues/5631)) ([0811457](https://github.com/windmill-labs/windmill/commit/081145726a5d4ab81510a7637126a036823a1565))
15+
* improve flow editor step switch performance ([58fa4c8](https://github.com/windmill-labs/windmill/commit/58fa4c80062a5704bbd13ddda1b2f00c7c9e40dd))
16+
* linter in early stop doesn't include flow_input ([#5638](https://github.com/windmill-labs/windmill/issues/5638)) ([6a9bdfd](https://github.com/windmill-labs/windmill/commit/6a9bdfd3bd52ff802b6a71c3ae9504bfe7d0421f))
17+
* output picker output opening doesn't change id ([#5641](https://github.com/windmill-labs/windmill/issues/5641)) ([64c72b6](https://github.com/windmill-labs/windmill/commit/64c72b6fce669e47f04dc620750840857cbe66cf))
18+
319
## [1.482.1](https://github.com/windmill-labs/windmill/compare/v1.482.0...v1.482.1) (2025-04-16)
420

521

backend/Cargo.lock

Lines changed: 58 additions & 39 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.482.1"
3+
version = "1.483.0"
44
authors.workspace = true
55
edition.workspace = true
66

@@ -32,7 +32,7 @@ members = [
3232
]
3333

3434
[workspace.package]
35-
version = "1.482.1"
35+
version = "1.483.0"
3636
authors = ["Ruben Fiszel <[email protected]>"]
3737
edition = "2021"
3838

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.482.1
4+
version: 1.483.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/[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.482.1";
5+
export const VERSION = "v1.483.0";
66

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

0 commit comments

Comments
 (0)