Skip to content

Commit 8c61287

Browse files
authored
Merge branch 'main' into hc/fix-invite-add-conflict-and-deprecate-invites
2 parents a08cc86 + 1f997e1 commit 8c61287

File tree

18 files changed

+52
-38
lines changed

18 files changed

+52
-38
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.315.1](https://github.com/windmill-labs/windmill/compare/v1.315.0...v1.315.1) (2024-04-24)
4+
5+
6+
### Bug Fixes
7+
8+
* fix label from completed_job ([534f877](https://github.com/windmill-labs/windmill/commit/534f877a7a9983b1808ce10b7f8fcac1547d7634))
9+
10+
## [1.315.0](https://github.com/windmill-labs/windmill/compare/v1.314.0...v1.315.0) (2024-04-24)
11+
12+
13+
### Features
14+
15+
* **frontend:** Aggrid infinite ([#3592](https://github.com/windmill-labs/windmill/issues/3592)) ([7a8ffbe](https://github.com/windmill-labs/windmill/commit/7a8ffbea46e81bfd031e4e064bb96ce41b3a77b3))
16+
317
## [1.314.0](https://github.com/windmill-labs/windmill/compare/v1.313.0...v1.314.0) (2024-04-23)
418

519

backend/Cargo.lock

Lines changed: 18 additions & 18 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.314.0"
3+
version = "1.315.1"
44
authors.workspace = true
55
edition.workspace = true
66

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

2626
[workspace.package]
27-
version = "1.314.0"
27+
version = "1.315.1"
2828
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
2929
edition = "2021"
3030

backend/tests/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ async fn listen_for_uuid_on(
10261026

10271027
async fn completed_job(uuid: Uuid, db: &Pool<Postgres>) -> CompletedJob {
10281028

1029-
sqlx::query_as::<_, CompletedJob>("SELECT * FROM completed_job WHERE id = $1").bind(uuid)
1029+
sqlx::query_as::<_, CompletedJob>("SELECT *, result->>'wm_label' as label FROM completed_job WHERE id = $1").bind(uuid)
10301030
.fetch_one(db)
10311031
.await
10321032
.unwrap()

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.314.0
4+
version: 1.315.1
55
title: Windmill API
66

77
contact:

backend/windmill-api/src/jobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2298,7 +2298,7 @@ pub async fn restart_flow(
22982298
check_license_key_valid().await?;
22992299

23002300
let completed_job = sqlx::query_as::<_, CompletedJob>(
2301-
"SELECT * from completed_job WHERE id = $1 and workspace_id = $2",
2301+
"SELECT *, result->>'wm_label' as label from completed_job WHERE id = $1 and workspace_id = $2",
23022302
)
23032303
.bind(job_id)
23042304
.bind(&w_id)

backend/windmill-queue/src/jobs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2076,7 +2076,7 @@ async fn get_result_by_id_from_original_flow(
20762076
json_path: Option<String>,
20772077
) -> error::Result<Box<RawValue>> {
20782078
let flow_job = sqlx::query_as::<_, CompletedJob>(
2079-
"SELECT * FROM completed_job WHERE id = $1 AND workspace_id = $2",
2079+
"SELECT *, null as label FROM completed_job WHERE id = $1 AND workspace_id = $2",
20802080
)
20812081
.bind(completed_flow_id)
20822082
.bind(w_id)
@@ -3469,7 +3469,7 @@ async fn restarted_flows_resolution(
34693469
Error,
34703470
> {
34713471
let completed_job = sqlx::query_as::<_, CompletedJob>(
3472-
"SELECT * FROM completed_job WHERE id = $1 and workspace_id = $2",
3472+
"SELECT *, null as label FROM completed_job WHERE id = $1 and workspace_id = $2",
34733473
)
34743474
.bind(completed_flow_id)
34753475
.bind(workspace_id)

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/sleep@v1.2.1/mod.ts";
22
import * as windmill from "https://deno.land/x/windmill@v1.174.0/mod.ts";
33
import * as api from "https://deno.land/x/windmill@v1.174.0/windmill-api/index.ts";
44

5-
export const VERSION = "v1.314.0";
5+
export const VERSION = "v1.315.1";
66

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

cli/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ addEventListener("error", (event) => {
3131
}
3232
});
3333

34-
export const VERSION = "v1.314.0";
34+
export const VERSION = "v1.315.1";
3535

3636
let command: any = new Command()
3737
.name("wmill")

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "windmill-components",
3-
"version": "1.314.0",
3+
"version": "1.315.1",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build",

lsp/Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
wmill = ">=1.314.0"
8-
wmill_pg = ">=1.314.0"
7+
wmill = ">=1.315.1"
8+
wmill_pg = ">=1.315.1"
99
sendgrid = "*"
1010
mysql-connector-python = "*"
1111
pymongo = "*"

openflow.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.314.0
4+
version: 1.315.1
55
title: OpenFlow Spec
66
contact:
77
name: Ruben Fiszel

powershell-client/WindmillClient/WindmillClient.psd1

Lines changed: 1 addition & 1 deletion
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.314.0'
15+
ModuleVersion = '1.315.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

python-client/wmill/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill"
3-
version = "1.314.0"
3+
version = "1.315.1"
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wmill-pg"
3-
version = "1.314.0"
3+
version = "1.315.1"
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/package.json

Lines changed: 1 addition & 1 deletion
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.314.0",
4+
"version": "1.315.1",
55
"author": "Ruben Fiszel",
66
"license": "Apache 2.0",
77
"devDependencies": {

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.314.0
1+
1.315.1

0 commit comments

Comments
 (0)