diff --git a/CHANGELOG.md b/CHANGELOG.md index c948ae3ea0..53f73bd2bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ # Changelog +## [1.28.0](https://github.com/windmill-labs/windmill/compare/v1.27.2...v1.28.0) (2022-08-04) + + +### Features + +* **frontend:** global flow preview ([#329](https://github.com/windmill-labs/windmill/issues/329)) ([615f69e](https://github.com/windmill-labs/windmill/commit/615f69e935e9c9c0b60edfb6dc2e82aebba623b9)) + + +### Bug Fixes + +* **api:** add discord webhook manual instructions ([a9a4b9b](https://github.com/windmill-labs/windmill/commit/a9a4b9b21d7b68a3e46c28ce13986d7a9ebd2cac)) +* **backend:** generalize oauth clients to take in extra params ([6332910](https://github.com/windmill-labs/windmill/commit/6332910dd27f78d555f0ab040545e98dedbea89d)) +* **backend:** handle better some flow edge-cases ([3bcd542](https://github.com/windmill-labs/windmill/commit/3bcd542130bc0cb45dfb1fa7681dd4b7beb95c7e)) +* **backend:** handle better some flow edge-cases ([9885361](https://github.com/windmill-labs/windmill/commit/988536128bd04dab94cc686bc2db547e57894587)) +* **backend:** handle better some flow edge-cases ([70de6e3](https://github.com/windmill-labs/windmill/commit/70de6e3972af81aec68b706dca93e16182a584bb)) +* **backend:** prometheus histogram for worker job timer ([#312](https://github.com/windmill-labs/windmill/issues/312)) ([4055586](https://github.com/windmill-labs/windmill/commit/40555868e6221620beca85ebafad2da67e56ec08)) +* **frontend:** add jpeg support ([0e8552b](https://github.com/windmill-labs/windmill/commit/0e8552ba800f13add6b25a83a765dace8d4369e7)) +* **frontend:** loading template pick the language as well ([82c7ddc](https://github.com/windmill-labs/windmill/commit/82c7ddc00e79a1cc5336a0a219f46d705c2c8d88)) +* **frontend:** Use the bracket notation when an identifier is not a valid JS expression ([#327](https://github.com/windmill-labs/windmill/issues/327)) ([05324bd](https://github.com/windmill-labs/windmill/commit/05324bd3562f6066cdc12d74c87033325d1c7ef1)) +* **oauth2:** remove discord oauth integration ([986e76d](https://github.com/windmill-labs/windmill/commit/986e76dc8729a53d09cd83531d474f9b5fe88f35)) + ## [1.27.2](https://github.com/windmill-labs/windmill/compare/v1.27.1...v1.27.2) (2022-08-02) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7370949c46..c6a9debcb0 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4529,7 +4529,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.27.2" +version = "1.28.0" dependencies = [ "anyhow", "argon2", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index ea9dcd0689..aa1dbe306c 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.27.2" +version = "1.28.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/openapi.yaml b/backend/openapi.yaml index 0305c79817..3ac4abb38b 100644 --- a/backend/openapi.yaml +++ b/backend/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.27.2 + version: 1.28.0 title: Windmill server API contact: name: Windmill contact diff --git a/frontend/package-lock.json b/frontend/package-lock.json index fe6d42308d..7041c65245 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.27.2", + "version": "1.28.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.27.2", + "version": "1.28.0", "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 28b9876324..45b654237e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.27.2", + "version": "1.28.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 2d277c6cb0..afa9e70021 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.27.2" -wmill_pg = ">=1.27.2" +wmill = ">=1.28.0" +wmill_pg = ">=1.28.0" requests = "*" sendgrid = "*" psycopg2-binary = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 4304b9afb2..528c99d9cd 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.27.2 + version: 1.28.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index e7e8454972..8c42b5797d 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.27.2" +version = "1.28.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.27.2" +windmill-api = "^1.28.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 04493f4d71..aab9279098 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.27.2" +version = "1.28.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 457f038546..cfc730712d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.27.2 +1.28.0