chore(main): release 1.60.0 (#1086)

* chore(main): release 1.60.0

* Update CHANGELOG.md

* Apply automatic changes

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
Ruben Fiszel
2023-01-11 19:14:48 +08:00
committed by GitHub
parent 9b58a8d236
commit 38ac8de377
12 changed files with 45 additions and 32 deletions
+13
View File
@@ -1,6 +1,19 @@
# Changelog
## [1.60.0](https://github.com/windmill-labs/windmill/compare/v1.59.0...v1.60.0) (2023-01-11)
### Features
* add 'add user to workspace' ([a14623f](https://github.com/windmill-labs/windmill/commit/a14623feaab4a36c01d558b775a42e587a74cdc9))
* **frontend:** Add frost to color palette ([#1084](https://github.com/windmill-labs/windmill/issues/1084)) ([8e72007](https://github.com/windmill-labs/windmill/commit/8e7200736827e8f6e593f900124b1bd1bc0bd5f2))
### Bug Fixes
* **frontend:** Keep pane resizer under open drawer ([#1089](https://github.com/windmill-labs/windmill/issues/1089)) ([cb25f88](https://github.com/windmill-labs/windmill/commit/cb25f883005b99b4ce98e8ae7b8253a8a2fedb5b))
## [1.59.0](https://github.com/windmill-labs/windmill/compare/v1.58.0...v1.59.0) (2023-01-09)
+18 -18
View File
@@ -2557,8 +2557,8 @@ dependencies = [
[[package]]
name = "rustpython-ast"
version = "0.1.0"
source = "git+https://github.com/RustPython/RustPython#c38babe5cb2a53a907f81c3b3a90147eaa1e3771"
version = "0.2.0"
source = "git+https://github.com/RustPython/RustPython#c7faae9b22ce31a3ba1f2cc1cd3ad759b54ce100"
dependencies = [
"num-bigint",
"rustpython-compiler-core",
@@ -2566,8 +2566,8 @@ dependencies = [
[[package]]
name = "rustpython-compiler-core"
version = "0.1.2"
source = "git+https://github.com/RustPython/RustPython#c38babe5cb2a53a907f81c3b3a90147eaa1e3771"
version = "0.2.0"
source = "git+https://github.com/RustPython/RustPython#c7faae9b22ce31a3ba1f2cc1cd3ad759b54ce100"
dependencies = [
"bincode",
"bitflags",
@@ -2583,8 +2583,8 @@ dependencies = [
[[package]]
name = "rustpython-parser"
version = "0.1.2"
source = "git+https://github.com/RustPython/RustPython#c38babe5cb2a53a907f81c3b3a90147eaa1e3771"
version = "0.2.0"
source = "git+https://github.com/RustPython/RustPython#c7faae9b22ce31a3ba1f2cc1cd3ad759b54ce100"
dependencies = [
"ahash",
"anyhow",
@@ -4177,7 +4177,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windmill"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"axum",
@@ -4201,7 +4201,7 @@ dependencies = [
[[package]]
name = "windmill-api"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"argon2",
@@ -4252,7 +4252,7 @@ dependencies = [
[[package]]
name = "windmill-api-client"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"base64 0.21.0",
"chrono",
@@ -4267,7 +4267,7 @@ dependencies = [
[[package]]
name = "windmill-audit"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"chrono",
"serde",
@@ -4280,7 +4280,7 @@ dependencies = [
[[package]]
name = "windmill-common"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"axum",
@@ -4304,7 +4304,7 @@ dependencies = [
[[package]]
name = "windmill-parser"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"serde",
"serde_json",
@@ -4312,7 +4312,7 @@ dependencies = [
[[package]]
name = "windmill-parser-bash"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"itertools",
@@ -4326,7 +4326,7 @@ dependencies = [
[[package]]
name = "windmill-parser-go"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"itertools",
@@ -4338,7 +4338,7 @@ dependencies = [
[[package]]
name = "windmill-parser-py"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"itertools",
@@ -4353,7 +4353,7 @@ dependencies = [
[[package]]
name = "windmill-parser-ts"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"deno_core",
@@ -4367,7 +4367,7 @@ dependencies = [
[[package]]
name = "windmill-queue"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"chrono",
@@ -4390,7 +4390,7 @@ dependencies = [
[[package]]
name = "windmill-worker"
version = "1.59.0"
version = "1.60.0"
dependencies = [
"anyhow",
"async-recursion",
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "windmill"
version = "1.59.0"
version = "1.60.0"
authors.workspace = true
edition.workspace = true
@@ -19,7 +19,7 @@ members = [
]
[workspace.package]
version = "1.59.0"
version = "1.60.0"
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
edition = "2021"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.59.0
version: 1.60.0
title: Windmill server API
contact:
name: Windmill contact
+1 -1
View File
@@ -12,7 +12,7 @@ import hub from "./hub.ts";
import { tryResolveVersion } from "./context.ts";
import { GlobalOptions } from "./types.ts";
const VERSION = "v1.59.0";
const VERSION = "v1.60.0";
const command = new Command()
.name("wmill")
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "windmill",
"version": "1.59.0",
"version": "1.60.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "windmill",
"version": "1.59.0",
"version": "1.60.0",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "windmill",
"version": "1.59.0",
"version": "1.60.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
+2 -2
View File
@@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"
[packages]
wmill = ">=1.59.0"
wmill_pg = ">=1.59.0"
wmill = ">=1.60.0"
wmill_pg = ">=1.60.0"
sendgrid = "*"
mysql-connector-python = "*"
pymongo = "*"
+1 -1
View File
@@ -1,7 +1,7 @@
openapi: "3.0.3"
info:
version: 1.59.0
version: 1.60.0
title: OpenFlow Spec
contact:
name: Ruben Fiszel
+2 -2
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill"
version = "1.59.0"
version = "1.60.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.59.0"
windmill-api = "^1.60.0"
[build-system]
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wmill-pg"
version = "1.59.0"
version = "1.60.0"
description = "An extension client for the wmill client library focused on pg"
license = "Apache-2.0"
homepage = "https://windmill.dev"
+1 -1
View File
@@ -1 +1 @@
1.59.0
1.60.0