Skip to content
This repository was archived by the owner on Feb 16, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c90f78e

Browse files
authoredNov 2, 2022
Merge branch 'main' into demo-data-warehouse-iceberg-trino-spark
2 parents dc95271 + 8e29058 commit c90f78e

File tree

3 files changed

+31
-28
lines changed

3 files changed

+31
-28
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.6.0] - 2022-10-28
6+
57
### Added
68

79
- Added Listener operator to supported operators ([#143](https://github.com/stackabletech/stackablectl/pull/143))
@@ -11,6 +13,7 @@
1113

1214
- Bump to clap 4.0 ([#150](https://github.com/stackabletech/stackablectl/pull/150))
1315
- Bump go modules such as helm to v3.10.1 and k8s client to v0.25.3 ([#149](https://github.com/stackabletech/stackablectl/pull/149))
16+
- Bump kube to 0.76, k8s-openapi to 0.16 and openssl to 0.10.42 ([#154](https://github.com/stackabletech/stackablectl/pull/154))
1417

1518
## [0.5.0] - 2022-09-14
1619

‎Cargo.lock

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
name = "stackablectl"
33
description = "Command line tool to interact with a Stackable Data Platform"
44
authors = ["Stackable GmbH <info@stackable.tech>"]
5-
version = "0.5.0"
5+
version = "0.6.0"
66
edition = "2021"
77
license = "OSL-3.0"
88
repository = "https://github.com/stackabletech/stackablectl"
99

1010
[dependencies]
11-
cached = "0.39"
11+
cached = { version = "0.40", features = ['async_tokio_rt_multi_thread'] }
1212
clap = { version = "4.0", features = ["derive", "cargo"] }
1313
clap_complete = "4.0"
1414
cli-table = "0.4"
1515
env_logger = "0.9"
1616
indexmap = { version = "1.9", features = ["serde"] }
17-
k8s-openapi = { version = "0.15", default-features = false, features = ["v1_24"] }
18-
kube = "0.74" # Using openssl (and not native-tls) as kube-rs team tries to move away from native-tls
17+
k8s-openapi = { version = "0.16", default-features = false, features = ["v1_24"] }
18+
kube = "0.76" # Using openssl (and not native-tls) as kube-rs team tries to move away from native-tls
1919
lazy_static = "1.4"
2020
log = "0.4"
21-
openssl = { version = "0.10.36", features = ["vendored"] } # Must match version from kube
21+
openssl = { version = "0.10.42", features = ["vendored"] } # Must match version from kube
2222
which = "4.3"
2323
semver = "1.0"
2424
serde = { version = "1.0", features = ["derive"]}

0 commit comments

Comments
 (0)
This repository has been archived.