diff --git a/CHANGELOG.md b/CHANGELOG.md index fb9da78125..61b445dead 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Changelog +## [1.150.0](https://github.com/windmill-labs/windmill/compare/v1.149.0...v1.150.0) (2023-08-17) + + +### Features + +* copilot tokens streaming + cancel ([#2107](https://github.com/windmill-labs/windmill/issues/2107)) ([82612c3](https://github.com/windmill-labs/windmill/commit/82612c35bd4cd15af21582f9650b615d3e12c06c)) +* graphql custom headers ([#2111](https://github.com/windmill-labs/windmill/issues/2111)) ([6733b85](https://github.com/windmill-labs/windmill/commit/6733b8552b1128663c8fb8086c85ad0406d9b999)) + + +### Bug Fixes + +* powershell icon ([#2109](https://github.com/windmill-labs/windmill/issues/2109)) ([c817af7](https://github.com/windmill-labs/windmill/commit/c817af769457a069617fafb2d3fcf38a85212690)) +* set NETRC at init and not for every job ([359845f](https://github.com/windmill-labs/windmill/commit/359845fa9dd14e8445cc95e73cc646dce1f45ddb)) +* unify clients to use server-side interpolation to retrieve full resources ([067908c](https://github.com/windmill-labs/windmill/commit/067908c0b59f1e73222cad0e5f214f3605006ef3)) +* unify clients to use server-side interpolation to retrieve full resources ([930839a](https://github.com/windmill-labs/windmill/commit/930839aad22eaeee0737f1d057b8cfb538d26d3f)) +* unify clients to use server-side interpolation to retrieve full resources ([e9c19b5](https://github.com/windmill-labs/windmill/commit/e9c19b5b985c0e03524b2d12b1f26a0e6fdc6e0b)) + ## [1.149.0](https://github.com/windmill-labs/windmill/compare/v1.148.0...v1.149.0) (2023-08-17) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 2862e2d100..5be1cc819d 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -981,9 +981,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.3.21" +version = "4.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" +checksum = "b417ae4361bca3f5de378294fc7472d3c4ed86a5ef9f49e93ae722f432aae8d2" dependencies = [ "clap_builder", "clap_derive", @@ -992,9 +992,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.3.21" +version = "4.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" +checksum = "9c90dc0f0e42c64bff177ca9d7be6fcc9ddb0f26a6e062174a61c84dd6c644d4" dependencies = [ "anstream", "anstyle", @@ -7089,7 +7089,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "axum", @@ -7124,7 +7124,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "argon2", @@ -7183,7 +7183,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.149.0" +version = "1.150.0" dependencies = [ "base64 0.21.2", "chrono", @@ -7200,7 +7200,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.149.0" +version = "1.150.0" dependencies = [ "chrono", "serde", @@ -7213,7 +7213,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "axum", @@ -7238,7 +7238,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.149.0" +version = "1.150.0" dependencies = [ "serde", "serde_json", @@ -7246,7 +7246,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "lazy_static", @@ -7257,7 +7257,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "gosyn", @@ -7267,7 +7267,7 @@ dependencies = [ [[package]] name = "windmill-parser-graphql" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "lazy_static", @@ -7278,7 +7278,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "itertools 0.11.0", @@ -7289,7 +7289,7 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "async-recursion", @@ -7306,7 +7306,7 @@ dependencies = [ [[package]] name = "windmill-parser-sql" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "lazy_static", @@ -7317,7 +7317,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -7333,7 +7333,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "getrandom 0.2.10", @@ -7351,7 +7351,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "async-recursion", @@ -7380,7 +7380,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.149.0" +version = "1.150.0" dependencies = [ "anyhow", "async-recursion", @@ -7454,9 +7454,9 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1eeca1c172a285ee6c2c84c341ccea837e7c01b12fbb2d0fe3c9e550ce49ec8" +checksum = "27f51fb4c64f8b770a823c043c7fad036323e1c48f55287b7bbb7987b2fcdf3b" dependencies = [ "windows_aarch64_gnullvm", "windows_aarch64_msvc", @@ -7469,45 +7469,45 @@ dependencies = [ [[package]] name = "windows_aarch64_gnullvm" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b10d0c968ba7f6166195e13d593af609ec2e3d24f916f081690695cf5eaffb2f" +checksum = "fde1bb55ae4ce76a597a8566d82c57432bc69c039449d61572a7a353da28f68c" [[package]] name = "windows_aarch64_msvc" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "571d8d4e62f26d4932099a9efe89660e8bd5087775a2ab5cdd8b747b811f1058" +checksum = "1513e8d48365a78adad7322fd6b5e4c4e99d92a69db8df2d435b25b1f1f286d4" [[package]] name = "windows_i686_gnu" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2229ad223e178db5fbbc8bd8d3835e51e566b8474bfca58d2e6150c48bb723cd" +checksum = "60587c0265d2b842298f5858e1a5d79d146f9ee0c37be5782e92a6eb5e1d7a83" [[package]] name = "windows_i686_msvc" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "600956e2d840c194eedfc5d18f8242bc2e17c7775b6684488af3a9fff6fe3287" +checksum = "224fe0e0ffff5d2ea6a29f82026c8f43870038a0ffc247aa95a52b47df381ac4" [[package]] name = "windows_x86_64_gnu" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea99ff3f8b49fb7a8e0d305e5aec485bd068c2ba691b6e277d29eaeac945868a" +checksum = "62fc52a0f50a088de499712cbc012df7ebd94e2d6eb948435449d76a6287e7ad" [[package]] name = "windows_x86_64_gnullvm" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1a05a1ece9a7a0d5a7ccf30ba2c33e3a61a30e042ffd247567d1de1d94120d" +checksum = "2093925509d91ea3d69bcd20238f4c2ecdb1a29d3c281d026a09705d0dd35f3d" [[package]] name = "windows_x86_64_msvc" -version = "0.48.2" +version = "0.48.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d419259aba16b663966e29e6d7c6ecfa0bb8425818bb96f6f1f3c3eb71a6e7b9" +checksum = "b6ade45bc8bf02ae2aa34a9d54ba660a1a58204da34ba793c00d83ca3730b5f1" [[package]] name = "winnow" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index f5783790e7..766ca13c70 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.149.0" +version = "1.150.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.149.0" +version = "1.150.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 208f365a40..fc9229430f 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.149.0 + version: 1.150.0 title: Windmill API contact: diff --git a/benchmarks/main.ts b/benchmarks/main.ts index b36fc0241f..42131df891 100644 --- a/benchmarks/main.ts +++ b/benchmarks/main.ts @@ -21,7 +21,7 @@ async function login(email: string, password: string): Promise { }); } -export const VERSION = "v1.149.0"; +export const VERSION = "v1.150.0"; await new Command() .name("wmillbench") diff --git a/cli/main.ts b/cli/main.ts index 3fb72bc6de..a2076d56ad 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -31,7 +31,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.149.0"; +export const VERSION = "v1.150.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 7c7494b015..fbb97781f9 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill-components", - "version": "1.149.0", + "version": "1.150.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill-components", - "version": "1.149.0", + "version": "1.150.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index c33c8d27fc..2bab344296 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill-components", - "version": "1.149.0", + "version": "1.150.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index bce796d970..97219abb52 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.149.0" -wmill_pg = ">=1.149.0" +wmill = ">=1.150.0" +wmill_pg = ">=1.150.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 01c7a789ef..90a6ac6006 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.149.0 + version: 1.150.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 75d1c8386e..15cb821dca 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.149.0" +version = "1.150.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.149.0" +windmill-api = "^1.150.0" [build-system] requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"] diff --git a/python-client/wmill_pg/pyproject.toml b/python-client/wmill_pg/pyproject.toml index 54f6d0a7e1..5a88f4a60a 100644 --- a/python-client/wmill_pg/pyproject.toml +++ b/python-client/wmill_pg/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill-pg" -version = "1.149.0" +version = "1.150.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/typescript-client/package.json b/typescript-client/package.json index dfb73b57f9..95002f115a 100644 --- a/typescript-client/package.json +++ b/typescript-client/package.json @@ -1,7 +1,7 @@ { "name": "windmill-client", "description": "Windmill SDK client for browsers and Node.js", - "version": "1.149.0", + "version": "1.150.0", "author": "Ruben Fiszel", "license": "Apache 2.0", "devDependencies": { diff --git a/version.txt b/version.txt index 283c655709..1d235b9960 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.149.0 +1.150.0