chore(main): release 1.134.0 (#1905)

* chore(main): release 1.134.0

* Apply automatic changes

---------

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
Ruben Fiszel
2023-07-19 23:23:33 +03:00
committed by GitHub
parent 4742f32862
commit 91e69a6255
13 changed files with 60 additions and 34 deletions
+15
View File
@@ -1,6 +1,21 @@
# Changelog
## [1.134.0](https://github.com/windmill-labs/windmill/compare/v1.133.0...v1.134.0) (2023-07-19)
### Features
* **frontend:** add deployment history + script path ([#1896](https://github.com/windmill-labs/windmill/issues/1896)) ([3a805d1](https://github.com/windmill-labs/windmill/commit/3a805d1e4b85009fae3f81d97b918b3c6bd551b5))
* make row information available from table rows' evals ([ad1b92d](https://github.com/windmill-labs/windmill/commit/ad1b92d59df5aba39d7ae29e902c55b1f2411458))
* use openai resource for windmill AI ([#1902](https://github.com/windmill-labs/windmill/issues/1902)) ([ddd8049](https://github.com/windmill-labs/windmill/commit/ddd8049b0aa74c9431cd01ff8a6e10e8a0196b3d))
### Bug Fixes
* **backend:** openai resource not only variable ([#1906](https://github.com/windmill-labs/windmill/issues/1906)) ([778ac92](https://github.com/windmill-labs/windmill/commit/778ac92411fc1dd5686087797be19fb602c55d46))
* parse bash args with same-line comments ([#1907](https://github.com/windmill-labs/windmill/issues/1907)) ([0f7ed87](https://github.com/windmill-labs/windmill/commit/0f7ed8798be7ef33f91fd5c4cd751beec28601a1))
## [1.133.0](https://github.com/windmill-labs/windmill/compare/v1.132.0...v1.133.0) (2023-07-19)
+30 -19
View File
@@ -1383,6 +1383,16 @@ version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e"
[[package]]
name = "debugid"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
dependencies = [
"serde",
"uuid 1.4.1",
]
[[package]]
name = "deno_ast"
version = "0.27.2"
@@ -5094,11 +5104,12 @@ dependencies = [
[[package]]
name = "sourcemap"
version = "6.2.3"
version = "6.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eed16231c92d0a6f0388f56e0ab2be24ecff1173f8e22f0ea5e074d0525631cb"
checksum = "e8df03d85f2767c45e61b4453eb6144153c80399e4fdd6407a6d16cb87cc0347"
dependencies = [
"data-encoding",
"debugid",
"if_chain",
"rustc_version 0.2.3",
"serde",
@@ -6274,9 +6285,9 @@ dependencies = [
[[package]]
name = "tower-http"
version = "0.4.1"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8bd22a874a2d0b70452d5597b12c537331d49060824a95f49f108994f94aa4c"
checksum = "7ac8060a61f8758a61562f6fb53ba3cbe1ca906f001df2e53cccddcdbee91e7c"
dependencies = [
"bitflags 2.3.3",
"bytes",
@@ -6965,7 +6976,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windmill"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"axum",
@@ -7000,7 +7011,7 @@ dependencies = [
[[package]]
name = "windmill-api"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"argon2",
@@ -7058,7 +7069,7 @@ dependencies = [
[[package]]
name = "windmill-api-client"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"base64 0.21.2",
"chrono",
@@ -7075,7 +7086,7 @@ dependencies = [
[[package]]
name = "windmill-audit"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"chrono",
"serde",
@@ -7088,7 +7099,7 @@ dependencies = [
[[package]]
name = "windmill-common"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"axum",
@@ -7113,7 +7124,7 @@ dependencies = [
[[package]]
name = "windmill-parser"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"serde",
"serde_json",
@@ -7121,7 +7132,7 @@ dependencies = [
[[package]]
name = "windmill-parser-bash"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -7132,7 +7143,7 @@ dependencies = [
[[package]]
name = "windmill-parser-go"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"gosyn",
@@ -7142,7 +7153,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"itertools 0.11.0",
@@ -7153,7 +7164,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py-imports"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"itertools 0.11.0",
@@ -7168,7 +7179,7 @@ dependencies = [
[[package]]
name = "windmill-parser-sql"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"lazy_static",
@@ -7179,7 +7190,7 @@ dependencies = [
[[package]]
name = "windmill-parser-ts"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"convert_case 0.6.0",
@@ -7194,7 +7205,7 @@ dependencies = [
[[package]]
name = "windmill-parser-wasm"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"getrandom 0.2.10",
@@ -7211,7 +7222,7 @@ dependencies = [
[[package]]
name = "windmill-queue"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"async-recursion",
@@ -7240,7 +7251,7 @@ dependencies = [
[[package]]
name = "windmill-worker"
version = "1.133.0"
version = "1.134.0"
dependencies = [
"anyhow",
"async-recursion",
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.133.0"
version = "1.134.0"
authors.workspace = true
edition.workspace = true
@@ -22,7 +22,7 @@ members = [
]
[workspace.package]
version = "1.133.0"
version = "1.134.0"
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.133.0
version: 1.134.0
title: Windmill API
contact:
+1 -1
View File
@@ -21,7 +21,7 @@ async function login(email: string, password: string): Promise<string> {
});
}
export const VERSION = "v1.133.0";
export const VERSION = "v1.134.0";
await new Command()
.name("wmillbench")
+1 -1
View File
@@ -30,7 +30,7 @@ addEventListener("error", (event) => {
}
});
export const VERSION = "v1.133.0";
export const VERSION = "v1.134.0";
let command: any = new Command()
.name("wmill")
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "windmill-components",
"version": "1.133.0",
"version": "1.134.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "windmill-components",
"version": "1.133.0",
"version": "1.134.0",
"license": "AGPL-3.0",
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "windmill-components",
"version": "1.133.0",
"version": "1.134.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
+2 -2
View File
@@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"
[packages]
wmill = ">=1.133.0"
wmill_pg = ">=1.133.0"
wmill = ">=1.134.0"
wmill_pg = ">=1.134.0"
sendgrid = "*"
mysql-connector-python = "*"
pymongo = "*"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.133.0
version: 1.134.0
title: OpenFlow Spec
contact:
name: Ruben Fiszel
+2 -2
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill"
version = "1.133.0"
version = "1.134.0"
description = "A client library for accessing Windmill server wrapping the Windmill client API"
license = "Apache-2.0"
homepage = "https://windmill.dev"
@@ -16,7 +16,7 @@ include = ["wmill/py.typed"]
[tool.poetry.dependencies]
python = "^3.7"
windmill-api = "^1.133.0"
windmill-api = "^1.134.0"
[build-system]
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill-pg"
version = "1.133.0"
version = "1.134.0"
description = "An extension client for the wmill client library focused on pg"
license = "Apache-2.0"
homepage = "https://windmill.dev"
+1 -1
View File
@@ -1 +1 @@
1.133.0
1.134.0