Skip to content

Commit

Permalink
chore(main): release 1.419.0 (#4649)
Browse files Browse the repository at this point in the history
* chore(main): release 1.419.0

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <[email protected]>
  • Loading branch information
rubenfiszel and rubenfiszel authored Nov 6, 2024
1 parent 9a8dcc9 commit 43b8a5a
Show file tree
Hide file tree
Showing 16 changed files with 76 additions and 58 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [1.419.0](https://github.com/windmill-labs/windmill/compare/v1.418.0...v1.419.0) (2024-11-06)


### Features

* Add full-text search on windmill service logs ([#4576](https://github.com/windmill-labs/windmill/issues/4576)) ([77735d8](https://github.com/windmill-labs/windmill/commit/77735d859cfee9204f67a8e4f9885228d657a41d))
* show path in flow script picker ([#4574](https://github.com/windmill-labs/windmill/issues/4574)) ([8e27392](https://github.com/windmill-labs/windmill/commit/8e27392afacbb725aaf9f9f892ab8a6171b59ce5))
* websocket authentication ([#4635](https://github.com/windmill-labs/windmill/issues/4635)) ([4dda0fb](https://github.com/windmill-labs/windmill/commit/4dda0fb8cd8262ad3a2ab2b9d27e7043ac3bb891))


### Bug Fixes

* clarify error messages when job timeout or cancelled with more details ([771d740](https://github.com/windmill-labs/windmill/commit/771d740701902166f8b4e3f77aa9c5579237cb15))
* **cli:** improve handling of deleted items on windows ([9a8dcc9](https://github.com/windmill-labs/windmill/commit/9a8dcc9a250caefa0b7c9523e1321599b7471c8b))
* display logs in native mode when script fails ([#4655](https://github.com/windmill-labs/windmill/issues/4655)) ([7578ceb](https://github.com/windmill-labs/windmill/commit/7578cebaf92e729a26fd665e4b6f8357d34f59eb))
* **frontend:** arg input json handling when the value is not of the same type as schema ([#4479](https://github.com/windmill-labs/windmill/issues/4479)) ([8d8156b](https://github.com/windmill-labs/windmill/commit/8d8156bd0773da3ddec81c46ad5fda114ecd3dda))
* **frontend:** improve flow prop picker design ([323912c](https://github.com/windmill-labs/windmill/commit/323912c73c18d3bb6d136f2e6458389270364a0e))

## [1.418.0](https://github.com/windmill-labs/windmill/compare/v1.417.3...v1.418.0) (2024-11-04)


Expand Down
82 changes: 41 additions & 41 deletions backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.418.0"
version = "1.419.0"
authors.workspace = true
edition.workspace = true

Expand Down Expand Up @@ -29,7 +29,7 @@ members = [
]

[workspace.package]
version = "1.418.0"
version = "1.419.0"
authors = ["Ruben Fiszel <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion backend/windmill-api/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: "3.0.3"

info:
version: 1.418.0
version: 1.419.0
title: Windmill API

contact:
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { sleep } from "https://deno.land/x/[email protected]/mod.ts";
import * as windmill from "https://deno.land/x/[email protected]/mod.ts";
import * as api from "https://deno.land/x/[email protected]/windmill-api/index.ts";

export const VERSION = "v1.418.0";
export const VERSION = "v1.419.0";

export async function login(email: string, password: string): Promise<string> {
return await windmill.UserService.login({
Expand Down
2 changes: 1 addition & 1 deletion cli/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export {
// }
// });

export const VERSION = "1.418.0";
export const VERSION = "1.419.0";

const command = new Command()
.name("wmill")
Expand Down
Loading

0 comments on commit 43b8a5a

Please sign in to comment.