diff --git a/CHANGELOG.md b/CHANGELOG.md index 92e2643081..d8308a93d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog +## [1.106.1](https://github.com/windmill-labs/windmill/compare/v1.106.0...v1.106.1) (2023-05-29) + + +### Bug Fixes + +* **backend:** fix initial worker ping issue ([1816252](https://github.com/windmill-labs/windmill/commit/1816252f03cb4c45a1211f1b2641f79bc679421f)) + ## [1.106.0](https://github.com/windmill-labs/windmill/compare/v1.105.0...v1.106.0) (2023-05-28) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 3e3aef70bd..1beb043a2c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -61,6 +61,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + [[package]] name = "android_system_properties" version = "0.1.5" @@ -656,13 +662,13 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.24" +version = "0.4.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" +checksum = "fdbc37d37da9e5bce8173f3a41b71d9bf3c674deebbaceacd0ebdabde76efb03" dependencies = [ + "android-tzdata", "iana-time-zone", "js-sys", - "num-integer", "num-traits", "serde", "time 0.1.45", @@ -2368,9 +2374,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.1" +version = "1.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b" [[package]] name = "opaque-debug" @@ -5097,7 +5103,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "axum", @@ -5132,7 +5138,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "argon2", @@ -5191,7 +5197,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.106.0" +version = "1.106.1" dependencies = [ "base64 0.21.2", "chrono", @@ -5208,7 +5214,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.106.0" +version = "1.106.1" dependencies = [ "chrono", "serde", @@ -5221,7 +5227,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "axum", @@ -5246,7 +5252,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.106.0" +version = "1.106.1" dependencies = [ "serde", "serde_json", @@ -5254,7 +5260,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "itertools", @@ -5269,7 +5275,7 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "gosyn", @@ -5282,7 +5288,7 @@ dependencies = [ [[package]] name = "windmill-parser-py" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "itertools", @@ -5297,7 +5303,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "deno_core", @@ -5311,7 +5317,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "chrono", @@ -5339,7 +5345,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.106.0" +version = "1.106.1" dependencies = [ "anyhow", "async-recursion", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 559115db17..404dbc42e5 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.106.0" +version = "1.106.1" authors.workspace = true edition.workspace = true @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "1.106.0" +version = "1.106.1" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/sqlx-data.json b/backend/sqlx-data.json index cbb760811d..9e40c5da1a 100644 --- a/backend/sqlx-data.json +++ b/backend/sqlx-data.json @@ -284,6 +284,20 @@ }, "query": "SELECT EXISTS(SELECT 1 FROM resource WHERE path = $1 AND workspace_id = $2)" }, + "07b3c653e9e70cf7c8e05e40682fa3b8562efbb24f22bcc4b7403305f15a6730": { + "describe": { + "columns": [], + "nullable": [], + "parameters": { + "Left": [ + "Varchar", + "Varchar", + "Varchar" + ] + } + }, + "query": "INSERT INTO worker_ping (worker_instance, worker, ip) VALUES ($1, $2, $3) ON CONFLICT (worker) DO NOTHING" + }, "07b984faa14193f529ae589608289a9ffb0f3d4a0e48054393e1bb8b70b4e5e0": { "describe": { "columns": [], @@ -6899,20 +6913,6 @@ }, "query": "SELECT (flow_status->'step')::integer as step, jsonb_array_length(flow_status->'modules') as len FROM queue WHERE id = $1" }, - "f98046a2ee4ac10d9e507c033391dfb0c704dcd513d8b1e5564def4e85f9e80b": { - "describe": { - "columns": [], - "nullable": [], - "parameters": { - "Left": [ - "Varchar", - "Varchar", - "Varchar" - ] - } - }, - "query": "INSERT INTO worker_ping (worker_instance, worker, ip) VALUES ($1, $2, $3)" - }, "fa258894bd90ea6586669e5810c5c6bcb42d5e1e68fab27fb185d06962b6454a": { "describe": { "columns": [ diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 9f77b0646b..f6abc8be9e 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.0 + version: 1.106.1 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index d5440b5a78..af99aae52d 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -27,7 +27,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.106.0"; +export const VERSION = "v1.106.1"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 640959ff1d..1991a7328a 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.106.0", + "version": "1.106.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.106.0", + "version": "1.106.1", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index f78f2db9f9..45b7e27b84 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.106.0", + "version": "1.106.1", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index f1ee37cf23..0d951dda00 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.106.0" -wmill_pg = ">=1.106.0" +wmill = ">=1.106.1" +wmill_pg = ">=1.106.1" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index d1ae0bee24..e9544a3462 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.106.0 + version: 1.106.1 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 24cd070e11..8dfca23f2e 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.106.0" +version = "1.106.1" 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.0" +windmill-api = "^1.106.1" [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 5a4bfb1a47..fd79bf57f6 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.0" +version = "1.106.1" 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 475dce1f4d..c4a227bb25 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.106.0 +1.106.1