From 91015e089bc24b28af6ce78158064190bfd7e9d3 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 22 Oct 2022 14:06:23 +0200 Subject: [PATCH] chore(main): release 1.40.0 (#780) * chore(main): release 1.40.0 * Update CHANGELOG.md * Apply automatic changes Co-authored-by: rubenfiszel --- CHANGELOG.md | 17 +++++++++++++++++ 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, 30 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adf60456c2..a2bebdb8ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Changelog +## [1.40.0](https://github.com/windmill-labs/windmill/compare/v1.39.0...v1.40.0) (2022-10-22) + + +### Features + +* **backend:** propagate cancel instantly to all flow jobs if any ([cb5ed9b](https://github.com/windmill-labs/windmill/commit/cb5ed9b9a1fdcaf5609ce20c59aeca2356ae1883)) +* **deno-client:** improve docs by extending function signatures ([#791](https://github.com/windmill-labs/windmill/issues/791)) ([4ab547b](https://github.com/windmill-labs/windmill/commit/4ab547bdf4e93793306b7f98bf0e237849aa391a)) +* support running and publishing go, python scripts to the hub ([#779](https://github.com/windmill-labs/windmill/issues/779)) ([8ec33c5](https://github.com/windmill-labs/windmill/commit/8ec33c5e165316e2f8f804575ea3369b8beefdbd)) + + +### Bug Fixes + +* **backend:** avoid mem leak on interval [#786](https://github.com/windmill-labs/windmill/issues/786) ([ac84b76](https://github.com/windmill-labs/windmill/commit/ac84b76909e0d6dfa170cb58608344b1b6d2627f)) +* **frontend:** rework te new script page ([6c68f26](https://github.com/windmill-labs/windmill/commit/6c68f264cbcf18a872775b37be40b4f09dee8e2b)) +* improve approval flow with approval page ([884edd7](https://github.com/windmill-labs/windmill/commit/884edd77153100a26a72c28c52b76c9619bd7642)) +* only create a schedule after flow change if schedule is enabled ([4ce3e07](https://github.com/windmill-labs/windmill/commit/4ce3e0795c000aeff6f729ed515091fb93f7ceb2)) + ## [1.39.0](https://github.com/windmill-labs/windmill/compare/v1.38.5...v1.39.0) (2022-10-20) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index b0baf8504b..83ba63892b 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4245,7 +4245,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.39.0" +version = "1.40.0" dependencies = [ "anyhow", "argon2", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 78ed6c923e..d776c01a61 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.39.0" +version = "1.40.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/openapi.yaml b/backend/openapi.yaml index 995b241e7f..258b5f29bd 100644 --- a/backend/openapi.yaml +++ b/backend/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.39.0 + version: 1.40.0 title: Windmill server API contact: name: Windmill contact diff --git a/frontend/package-lock.json b/frontend/package-lock.json index ebfeb0e115..7dedf03fb3 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.39.0", + "version": "1.40.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.39.0", + "version": "1.40.0", "dependencies": { "@fortawesome/free-brands-svg-icons": "^6.2.0", "@fortawesome/free-solid-svg-icons": "^6.2.0", diff --git a/frontend/package.json b/frontend/package.json index fbeb86250e..8f0df9d3cd 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.39.0", + "version": "1.40.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index c0a60d6ba7..4c8474d777 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.39.0" -wmill_pg = ">=1.39.0" +wmill = ">=1.40.0" +wmill_pg = ">=1.40.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index cfd14c95cf..7ea62c0d18 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.39.0 + version: 1.40.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index ee0a3d3486..317d96cbba 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.39.0" +version = "1.40.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.39.0" +windmill-api = "^1.40.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 8d3897c2fe..0e8f963acb 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.39.0" +version = "1.40.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 5edffce6d5..32b7211cb6 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.39.0 +1.40.0