From 4711a6d659accf0bf3003b1b59af784894d37c08 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 22 Jun 2023 14:23:53 +0200 Subject: [PATCH] chore(main): release 1.119.0 (#1758) * chore(main): release 1.119.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel --- CHANGELOG.md | 12 ++++++ backend/Cargo.lock | 57 ++++++++++++++++----------- backend/Cargo.toml | 4 +- backend/windmill-api/openapi.yaml | 2 +- cli/main.ts | 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 +- 12 files changed, 59 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91669df257..29e6ba0930 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## [1.119.0](https://github.com/windmill-labs/windmill/compare/v1.118.0...v1.119.0) (2023-06-22) + + +### Features + +* **cli:** add skipSecrets, skipVariables, skipResources ([2df29a1](https://github.com/windmill-labs/windmill/commit/2df29a131e2c3a556b50be6c73234ce8e752a7e7)) + + +### Bug Fixes + +* bump dependencies ([66ca3f1](https://github.com/windmill-labs/windmill/commit/66ca3f1522b3838707681d553b1612169619bddd)) + ## [1.118.0](https://github.com/windmill-labs/windmill/compare/v1.117.0...v1.118.0) (2023-06-22) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 991a9b6c27..1b7821cc2c 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1863,6 +1863,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.6" @@ -1922,7 +1931,7 @@ dependencies = [ "diff", "ena", "is-terminal", - "itertools", + "itertools 0.10.5", "lalrpop-util", "petgraph", "regex", @@ -3289,7 +3298,7 @@ dependencies = [ "bincode", "bitflags 1.3.2", "bstr", - "itertools", + "itertools 0.10.5", "lz4_flex", "num-bigint", "num-complex", @@ -3306,7 +3315,7 @@ checksum = "db7348e148144ba85bc1284d97004062137306554fd00e7eb500d91720de5e78" dependencies = [ "ahash 0.7.6", "anyhow", - "itertools", + "itertools 0.10.5", "lalrpop", "lalrpop-util", "log", @@ -3812,7 +3821,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" dependencies = [ - "itertools", + "itertools 0.10.5", "nom", "unicode_categories", ] @@ -5155,7 +5164,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windmill" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "axum", @@ -5190,7 +5199,7 @@ dependencies = [ [[package]] name = "windmill-api" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "argon2", @@ -5209,7 +5218,7 @@ dependencies = [ "hex", "hmac", "hyper", - "itertools", + "itertools 0.11.0", "lazy_static", "magic-crypt", "mime_guess", @@ -5246,7 +5255,7 @@ dependencies = [ [[package]] name = "windmill-api-client" -version = "1.118.0" +version = "1.119.0" dependencies = [ "base64 0.21.2", "chrono", @@ -5263,7 +5272,7 @@ dependencies = [ [[package]] name = "windmill-audit" -version = "1.118.0" +version = "1.119.0" dependencies = [ "chrono", "serde", @@ -5276,7 +5285,7 @@ dependencies = [ [[package]] name = "windmill-common" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "axum", @@ -5301,7 +5310,7 @@ dependencies = [ [[package]] name = "windmill-parser" -version = "1.118.0" +version = "1.119.0" dependencies = [ "serde", "serde_json", @@ -5309,7 +5318,7 @@ dependencies = [ [[package]] name = "windmill-parser-bash" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "lazy_static", @@ -5320,20 +5329,20 @@ dependencies = [ [[package]] name = "windmill-parser-go" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "gosyn", - "itertools", + "itertools 0.11.0", "windmill-parser", ] [[package]] name = "windmill-parser-py" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", - "itertools", + "itertools 0.11.0", "rustpython-parser", "serde_json", "windmill-parser", @@ -5341,10 +5350,10 @@ dependencies = [ [[package]] name = "windmill-parser-py-imports" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", - "itertools", + "itertools 0.11.0", "lazy_static", "phf 0.11.1", "regex", @@ -5356,7 +5365,7 @@ dependencies = [ [[package]] name = "windmill-parser-ts" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "convert_case 0.6.0", @@ -5371,7 +5380,7 @@ dependencies = [ [[package]] name = "windmill-parser-wasm" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "serde_json", @@ -5386,7 +5395,7 @@ dependencies = [ [[package]] name = "windmill-queue" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "async-recursion", @@ -5396,7 +5405,7 @@ dependencies = [ "futures-core", "hex", "hmac", - "itertools", + "itertools 0.11.0", "lazy_static", "prometheus", "reqwest", @@ -5415,7 +5424,7 @@ dependencies = [ [[package]] name = "windmill-worker" -version = "1.118.0" +version = "1.119.0" dependencies = [ "anyhow", "async-recursion", @@ -5426,7 +5435,7 @@ dependencies = [ "dyn-iter", "futures", "git-version", - "itertools", + "itertools 0.11.0", "lazy_static", "once_cell", "prometheus", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index c89b0f213a..dc1ab0e4a1 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windmill" -version = "1.118.0" +version = "1.119.0" authors.workspace = true edition.workspace = true @@ -22,7 +22,7 @@ members = [ ] [workspace.package] -version = "1.118.0" +version = "1.119.0" authors = ["Ruben Fiszel "] edition = "2021" diff --git a/backend/windmill-api/openapi.yaml b/backend/windmill-api/openapi.yaml index 4621390718..0490becd21 100644 --- a/backend/windmill-api/openapi.yaml +++ b/backend/windmill-api/openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.118.0 + version: 1.119.0 title: Windmill API contact: diff --git a/cli/main.ts b/cli/main.ts index 9c121c83f6..eb7fef2ee6 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -28,7 +28,7 @@ addEventListener("error", (event) => { } }); -export const VERSION = "v1.118.0"; +export const VERSION = "v1.119.0"; let command: any = new Command() .name("wmill") diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 08c2328f84..56cf3a1c23 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "windmill", - "version": "1.118.0", + "version": "1.119.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "windmill", - "version": "1.118.0", + "version": "1.119.0", "license": "AGPL-3.0", "dependencies": { "@aws-crypto/sha256-js": "^4.0.0", diff --git a/frontend/package.json b/frontend/package.json index cae0280976..dd0c6f1878 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "windmill", - "version": "1.118.0", + "version": "1.119.0", "scripts": { "dev": "vite dev", "build": "vite build", diff --git a/lsp/Pipfile b/lsp/Pipfile index af46722aea..e3ed4faabc 100644 --- a/lsp/Pipfile +++ b/lsp/Pipfile @@ -4,8 +4,8 @@ verify_ssl = true name = "pypi" [packages] -wmill = ">=1.118.0" -wmill_pg = ">=1.118.0" +wmill = ">=1.119.0" +wmill_pg = ">=1.119.0" sendgrid = "*" mysql-connector-python = "*" pymongo = "*" diff --git a/openflow.openapi.yaml b/openflow.openapi.yaml index 03c2eace1b..3f33077b03 100644 --- a/openflow.openapi.yaml +++ b/openflow.openapi.yaml @@ -1,7 +1,7 @@ openapi: "3.0.3" info: - version: 1.118.0 + version: 1.119.0 title: OpenFlow Spec contact: name: Ruben Fiszel diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 4ea79ed791..18be74f596 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wmill" -version = "1.118.0" +version = "1.119.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.118.0" +windmill-api = "^1.119.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 bd1192af3a..b692cb9aa2 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.118.0" +version = "1.119.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 5fce89726f..46cd969413 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.118.0 +1.119.0