Skip to content

Commit 402db01

Browse files
committed
all
2 parents 19ea25c + 9cc3dd3 commit 402db01

File tree

17 files changed

+67
-49
lines changed

17 files changed

+67
-49
lines changed

CHANGELOG.md

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

3+
## [1.448.1](https://github.com/windmill-labs/windmill/compare/v1.448.0...v1.448.1) (2025-01-22)
4+
5+
6+
### Bug Fixes
7+
8+
* improve environment variables config ([737e664](https://github.com/windmill-labs/windmill/commit/737e6647926bfad88ef28ddbfe91aa56d58569b8))
9+
310
## [1.448.0](https://github.com/windmill-labs/windmill/compare/v1.447.6...v1.448.0) (2025-01-22)
411

512

backend/Cargo.lock

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

@@ -30,7 +30,7 @@ members = [
3030
]
3131

3232
[workspace.package]
33-
version = "1.448.0"
33+
version = "1.448.1"
3434
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
3535
edition = "2021"
3636

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.448.0
4+
version: 1.448.1
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/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.448.0";
5+
export const VERSION = "v1.448.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
@@ -60,7 +60,7 @@ export {
6060
// }
6161
// });
6262

63-
export const VERSION = "1.448.0";
63+
export const VERSION = "1.448.1";
6464

6565
const command = new Command()
6666
.name("wmill")

frontend/package-lock.json

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

frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "windmill-components",
3-
"version": "1.448.0",
3+
"version": "1.448.1",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "vite build",
@@ -122,9 +122,9 @@
122122
"memfs": "^4.15.3",
123123
"minimatch": "^10.0.1",
124124
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~11.1.2",
125-
"monaco-editor-wrapper": "^6.1.0",
125+
"monaco-editor-wrapper": "6.1.1",
126+
"monaco-languageclient": "9.1.1",
126127
"monaco-graphql": "^1.6.0",
127-
"monaco-languageclient": "~9.1.0",
128128
"monaco-vim": "^0.4.1",
129129
"ol": "^7.4.0",
130130
"openai": "^4.57.2",

frontend/src/lib/components/AppConnectInner.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@
112112
try {
113113
connects = (await OauthService.listOauthConnects()).filter((x) => x != 'supabase_wizard')
114114
} catch (e) {
115-
sendUserToast('Error loading connects', true)
116115
connects = []
116+
console.error('Error loading OAuth connects', e)
117117
}
118118
}
119119
}

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.448.0"
8-
wmill_pg = ">=1.448.0"
7+
wmill = ">=1.448.1"
8+
wmill_pg = ">=1.448.1"
99
sendgrid = "*"
1010
mysql-connector-python = "*"
1111
pymongo = "*"

0 commit comments

Comments
 (0)