diff --git a/CHANGELOG.md b/CHANGELOG.md index d8308a93d6..5365d2536f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## [1.107.0](https://github.com/windmill-labs/windmill/compare/v1.106.0...v1.107.0) (2023-05-29) + + +### Features + +* **backend:** webhook specific tokens ([8c33599](https://github.com/windmill-labs/windmill/commit/8c335996631b7512e7699ffd0aebe04e43c498ab)) + + +### Bug Fixes + +* **backend:** fix initial worker ping issue ([1816252](https://github.com/windmill-labs/windmill/commit/1816252f03cb4c45a1211f1b2641f79bc679421f)) + ## [1.106.1](https://github.com/windmill-labs/windmill/compare/v1.106.0...v1.106.1) (2023-05-29) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 1beb043a2c..eb717eed5c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -786,9 +786,9 @@ checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" [[package]] name = "const_format" -version = "0.2.30" +version = "0.2.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7309d9b4d3d2c0641e018d449232f2e28f1b22933c137f157d3dbc14228b8c0e" +checksum = "c990efc7a285731f9a4378d81aff2f0e85a2c8781a05ef0f8baa8dac54d0ff48" dependencies = [ "const_format_proc_macros", "konst", @@ -796,9 +796,9 @@ dependencies = [ [[package]] name = "const_format_proc_macros" -version = "0.2.29" +version = "0.2.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d897f47bf7270cf70d370f8f98c1abb6d2d4cf60a6845d30e05bfb90c6568650" +checksum = "e026b6ce194a874cb9cf32cd5772d1ef9767cc8fcb5765948d74f37a9d8b2bf6" dependencies = [ "proc-macro2", "quote", @@ -5103,7 +5103,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "axum", @@ -5138,7 +5138,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "argon2", @@ -5197,7 +5197,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.106.1" +version = "1.107.0" dependencies = [ "base64 0.21.2", "chrono", @@ -5214,7 +5214,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.106.1" +version = "1.107.0" dependencies = [ "chrono", "serde", @@ -5227,7 +5227,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "axum", @@ -5252,7 +5252,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.106.1" +version = "1.107.0" dependencies = [ "serde", "serde_json", @@ -5260,7 +5260,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "itertools", @@ -5275,7 +5275,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "gosyn", @@ -5288,7 +5288,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "itertools", @@ -5303,7 +5303,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "deno_core", @@ -5317,7 +5317,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "chrono", @@ -5345,7 +5345,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.106.1" +version = "1.107.0" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 404dbc42e5..f6389f1d90 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.106.1" +version = "1.107.0" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.106.1" +version = "1.107.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 7aeaf96b3b..a462d9352c 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.106.1 + version: 1.107.0 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index af99aae52d..2c954691b3 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -27,7 +27,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.106.1"; +export const VERSION = "v1.107.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 1995655b35..c19c96b739 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.106.1", + "version": "1.107.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.106.1", + "version": "1.107.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index 8ccaf4d486..10475575fc 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.106.1", + "version": "1.107.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 0d951dda00..451f06a848 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.106.1" -wmill_pg = ">=1.106.1" +wmill = ">=1.107.0" +wmill_pg = ">=1.107.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index e9544a3462..a8c244081b 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.106.1 + version: 1.107.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 8dfca23f2e..d252911641 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.106.1" +version = "1.107.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.106.1" +windmill-api = "^1.107.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 fd79bf57f6..d368c655e8 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.106.1" +version = "1.107.0" description = "An extension client for the wmill client library focused on pg" license = "Apache-2.0" homepage = "https://windmill.dev" diff --git a/version.txt b/version.txt index c4a227bb25..585f0182df 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.106.1 +1.107.0