From 3554198ae2eadb446b5adb3047acfd9a5aabc82d Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 1 Aug 2022 16:53:18 +0200 Subject: [PATCH] chore(main): release 1.26.3 (#294) * chore(main): release 1.26.3 * Apply automatic changes Co-authored-by: rubenfiszel --- CHANGELOG.md | 8 ++++++++ backend/Cargo.lock | 2 +- backend/Cargo.toml | 2 +- backend/openapi.yaml | 2 +- frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- lsp/Pipfile | 4 ++-- openflow.openapi.yaml | 2 +- python-client/wmill/pyproject.toml | 4 ++-- python-client/wmill_pg/pyproject.toml | 2 +- version.txt | 2 +- 11 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76098ab853..8ff847b34e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## [1.26.3](https://github.com/windmill-labs/windmill/compare/v1.26.2...v1.26.3) (2022-08-01) + + +### Bug Fixes + +* displaying which group you are a member of that gave you access to item ([1bd0269](https://github.com/windmill-labs/windmill/commit/1bd026924b8a3b01f7729b627f939d8af872a483)) +* refresh jobs result when hopping from flow to flow ([c86abe6](https://github.com/windmill-labs/windmill/commit/c86abe6ae01efd519f67ead233ebddf39f1539c0)) + ## [1.26.2](https://github.com/windmill-labs/windmill/compare/v1.26.1...v1.26.2) (2022-07-31) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 6ce3d94019..0dd3fa864e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4504,7 +4504,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.26.2" +version = "1.26.3" dependencies = [ "anyhow", "argon2", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 130d33530d..71bf41f87b 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.26.2" +version = "1.26.3" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/openapi.yaml b/backend/openapi.yaml index 55d38b3073..aad77c8a28 100644 --- a/backend/openapi.yaml +++ b/backend/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.26.2 + version: 1.26.3 title: Windmill server API contact: name: Windmill contact diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 0c9c7bc021..77afcfeae4 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.26.2", + "version": "1.26.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.26.2", + "version": "1.26.3", "dependencies": { "@fortawesome/free-brands-svg-icons": "^6.1.2", "@fortawesome/free-solid-svg-icons": "^6.1.2", diff --git a/frontend/package.json b/frontend/package.json index e909c44e1b..e9b9f7454d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.26.2", + "version": "1.26.3", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 3408b03afe..08e8d41a7e 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.26.2" -wmill_pg = ">=1.26.2" +wmill = ">=1.26.3" +wmill_pg = ">=1.26.3" requests = "*" sendgrid = "*" psycopg2-binary = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 240ff479b4..9f046ba26a 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.26.2 + version: 1.26.3 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index d330d90d89..67dc5105d3 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.26.2" +version = "1.26.3" 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.26.2" +windmill-api = "^1.26.3" [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 af285aac98..36072b3e65 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.26.2" +version = "1.26.3" 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 c7c3f3333e..f8f7381409 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.26.2 +1.26.3