Skip to content

Commit c1b220b

Browse files
authored
chore(main): release 1.423.0 (#4691)
* chore(main): release 1.423.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent 50861fc commit c1b220b

File tree

16 files changed

+71
-52
lines changed

16 files changed

+71
-52
lines changed

CHANGELOG.md

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

3+
## [1.423.0](https://github.com/windmill-labs/windmill/compare/v1.422.1...v1.423.0) (2024-11-12)
4+
5+
6+
### Features
7+
8+
* s3 input available for public apps ([#4685](https://github.com/windmill-labs/windmill/issues/4685)) ([1671005](https://github.com/windmill-labs/windmill/commit/167100510032ab53cd609fb2c7629e67faceb093))
9+
10+
11+
### Bug Fixes
12+
13+
* prevent underflow for autoscaling scalein ([5e9870a](https://github.com/windmill-labs/windmill/commit/5e9870a8a993032ec7d45c62e0023008da42c74a))
14+
* support multiple pip-extra-index-url with commas ([50861fc](https://github.com/windmill-labs/windmill/commit/50861fccc0cd86d4c76120c3306adf94f375330e))
15+
316
## [1.422.1](https://github.com/windmill-labs/windmill/compare/v1.422.0...v1.422.1) (2024-11-12)
417

518

backend/Cargo.lock

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

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

3131
[workspace.package]
32-
version = "1.422.1"
32+
version = "1.423.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.422.1
4+
version: 1.423.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.422.1";
5+
export const VERSION = "v1.423.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.422.1";
63+
export const VERSION = "1.423.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.422.1",
3+
"version": "1.423.0",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build",

0 commit comments

Comments
 (0)