Skip to content

Commit 0cd7ab4

Browse files
authored
chore(main): release 1.321.5 (#3642)
* chore(main): release 1.321.5 * Apply automatic changes --------- Co-authored-by: rubenfiszel <[email protected]>
1 parent cf6ffef commit 0cd7ab4

File tree

16 files changed

+49
-39
lines changed

16 files changed

+49
-39
lines changed

CHANGELOG.md

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

3+
## [1.321.5](https://github.com/windmill-labs/windmill/compare/v1.321.4...v1.321.5) (2024-04-30)
4+
5+
6+
### Bug Fixes
7+
8+
* fix console logs in REST scripts ([1f983c2](https://github.com/windmill-labs/windmill/commit/1f983c241404715e71ddc05cae5630a7696d590e))
9+
* make sure folder updater keep write permissions if not admin ([ae165b9](https://github.com/windmill-labs/windmill/commit/ae165b9f878a6960901026412e9dc815ebd2c472))
10+
* prevent overflowing for long description and default in schema ([450201d](https://github.com/windmill-labs/windmill/commit/450201deb8f4cd1ef426d0ff6987615f6fbbf5df))
11+
* **python:** supports folders starting with numbers for execution ([cf6ffef](https://github.com/windmill-labs/windmill/commit/cf6ffef48af5508a219048f0885001ed59c1bf06))
12+
313
## [1.321.4](https://github.com/windmill-labs/windmill/compare/v1.321.3...v1.321.4) (2024-04-29)
414

515

backend/Cargo.lock

+22-22
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.321.4"
3+
version = "1.321.5"
44
authors.workspace = true
55
edition.workspace = true
66

@@ -24,7 +24,7 @@ members = [
2424
]
2525

2626
[workspace.package]
27-
version = "1.321.4"
27+
version = "1.321.5"
2828
authors = ["Ruben Fiszel <[email protected]>"]
2929
edition = "2021"
3030

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.321.4
4+
version: 1.321.5
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.321.4";
5+
export const VERSION = "v1.321.5";
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
@@ -31,7 +31,7 @@ addEventListener("error", (event) => {
3131
}
3232
});
3333

34-
export const VERSION = "v1.321.4";
34+
export const VERSION = "v1.321.5";
3535

3636
let command: any = new Command()
3737
.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.321.4",
3+
"version": "1.321.5",
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.321.4"
8-
wmill_pg = ">=1.321.4"
7+
wmill = ">=1.321.5"
8+
wmill_pg = ">=1.321.5"
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.321.4
4+
version: 1.321.5
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.321.4'
15+
ModuleVersion = '1.321.5'
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.321.4"
3+
version = "1.321.5"
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.321.4"
3+
version = "1.321.5"
44
description = "An extension client for the wmill client library focused on pg"
55
license = "Apache-2.0"
66
homepage = "https://windmill.dev"

typescript-client/jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@windmill/windmill",
3-
"version": "1.321.4",
3+
"version": "1.321.5",
44
"exports": "./src/index.ts",
55
"publish": {
66
"exclude": ["!src", "./s3Types.ts", "./client.ts"]

typescript-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "windmill-client",
33
"description": "Windmill SDK client for browsers and Node.js",
4-
"version": "1.321.4",
4+
"version": "1.321.5",
55
"author": "Ruben Fiszel",
66
"license": "Apache 2.0",
77
"devDependencies": {

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.321.4
1+
1.321.5

0 commit comments

Comments
 (0)