diff --git a/CHANGELOG.md b/CHANGELOG.md index 4092b611e3..44d2d794f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Changelog +## [1.31.0](https://github.com/windmill-labs/windmill/compare/v1.30.0...v1.31.0) (2022-08-17) + + +### Features + +* allow to configure port via envar ([#407](https://github.com/windmill-labs/windmill/issues/407)) ([34be056](https://github.com/windmill-labs/windmill/commit/34be0564f89f942478c25e77fd77a515367a6afd)) +* db users: admin -> windmill_admin, app -> windmill_user ([#404](https://github.com/windmill-labs/windmill/issues/404)) ([1c40f01](https://github.com/windmill-labs/windmill/commit/1c40f01e5d8e3d854de4c30d9f5e4f731c220ce2)) +* **frontend:** Redesign of the Flow Editor + Arbitrary forloop ([127b0b4](https://github.com/windmill-labs/windmill/commit/127b0b4e5e6a96f91d7e8234cc52d887afb637b0)) + + +### Bug Fixes + +* **backend:** collecting result when for loop is not the last step [#422](https://github.com/windmill-labs/windmill/issues/422) ([e606118](https://github.com/windmill-labs/windmill/commit/e6061189438fb3a7e630d2e390075fc3eded984c)) +* **self-hosting:** add lsp and caddy to docke-compose ([#432](https://github.com/windmill-labs/windmill/issues/432)) ([1004518](https://github.com/windmill-labs/windmill/commit/100451878c26d2fa324c6195838accae959a5310)) +* set secure only for https ([1275f5f](https://github.com/windmill-labs/windmill/commit/1275f5f7fb65e32a17d7d397d43d0b49ecd5cd0e)) +* users privileges ([2bdb617](https://github.com/windmill-labs/windmill/commit/2bdb617b1f80104bd3314656603dccb0021e05cb)) + ## [1.30.0](https://github.com/windmill-labs/windmill/compare/v1.29.0...v1.30.0) (2022-08-13) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 6d36b0da99..c609a33157 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -4428,7 +4428,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.30.0" +version = "1.31.0" dependencies = [ "anyhow", "argon2", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 4a89054bd9..1dc9362fb5 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.30.0" +version = "1.31.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/openapi.yaml b/backend/openapi.yaml index 53317e2a0c..515ea7f02b 100644 --- a/backend/openapi.yaml +++ b/backend/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.30.0 + version: 1.31.0 title: Windmill server API contact: name: Windmill contact diff --git a/frontend/package-lock.json b/frontend/package-lock.json index c9d3280df3..9cebcbdb21 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.30.0", + "version": "1.31.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.30.0", + "version": "1.31.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 446cf4102d..22bd0934cc 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.30.0", + "version": "1.31.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index 2bde6de6d8..9da9a5aaba 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.30.0" -wmill_pg = ">=1.30.0" +wmill = ">=1.31.0" +wmill_pg = ">=1.31.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 9b25d9012b..adaa321ed7 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.30.0 + version: 1.31.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 5c397e3495..98a30cb552 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.30.0" +version = "1.31.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.30.0" +windmill-api = "^1.31.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 61625d867a..9308956a65 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.30.0" +version = "1.31.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 034552a83e..34aae156b1 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.30.0 +1.31.0