Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
269 changes: 146 additions & 123 deletions Cargo.lock

Large diffs are not rendered by default.

359 changes: 218 additions & 141 deletions Cargo.nix

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Cargo.toml
Comment thread
Techassi marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ axum-extra = { version = "0.12", features = ["typed-header"] }
bcrypt = "0.19"
bindgen = "0.72"
built = "0.8"
cc = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
cc = "1.3"
clap = { version = "4.6", features = ["derive", "env"] }
clap_complete = "4.5"
clap_complete_nushell = "4.5"
comfy-table = { version = "7.1", features = ["custom_styling"] }
Expand Down Expand Up @@ -55,7 +55,7 @@ snafu = { version = "0.9", features = ["futures"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.4", default-features = false, features = ["crds", "kube-ws"] }
tera = "2.0"
termion = "4.0"
tokio = { version = "1.38", features = ["rt-multi-thread", "macros", "fs", "process", "io-std"] }
tokio = { version = "1.53", features = ["rt-multi-thread", "macros", "fs", "process", "io-std"] }
toml = { version = "1.0", features = ["serde"] }
tower-http = { version = "0.7", features = ["validate-request"] }
tracing = "0.1"
Expand Down
10 changes: 5 additions & 5 deletions docs/modules/stackablectl/pages/installation.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= Installation
:page-aliases: stable@stackablectl::installation.adoc

:latest-release: https://github.com/stackabletech/stackablectl/releases/tag/stackablectl-1.4.0
:latest-release: https://github.com/stackabletech/stackablectl/releases/tag/stackablectl-1.5.0
:fish-comp-loations: https://fishshell.com/docs/current/completions.html#where-to-put-completions
:nushell-comp-locations: https://www.nushell.sh/book/custom_commands.html#persisting

Expand All @@ -23,14 +23,14 @@ You can also use the following command:

[source,console]
----
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.4.0/stackablectl-x86_64-unknown-linux-gnu
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-x86_64-unknown-linux-gnu
----

**aarch64** (arm64):

[source,console]
----
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.4.0/stackablectl-aarch64-unknown-linux-gnu
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-aarch64-unknown-linux-gnu
----

Install the binary into a directory in the `$PATH`, and make it executable:
Expand Down Expand Up @@ -60,14 +60,14 @@ You can also use the following command:

[source,console]
----
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.4.0/stackablectl-x86_64-apple-darwin
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-x86_64-apple-darwin
----

**aarch64** (arm64):

[source,console]
----
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.4.0/stackablectl-aarch64-apple-darwin
$ curl -L -o stackablectl https://github.com/stackabletech/stackablectl/releases/download/stackablectl-1.5.0/stackablectl-aarch64-apple-darwin
----

Install the binary into a directory in the `$PATH`, and make it executable:
Expand Down
2 changes: 2 additions & 0 deletions docs/modules/stackablectl/pages/release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ A full list of changes is available directly in https://github.com/stackabletech

// WARNING: Please keep the empty newlines, otherwise headings are broken.

include::partial$release-notes/release-1.5.0.adoc[]

include::partial$release-notes/release-1.4.0.adoc[]

include::partial$release-notes/release-1.3.0.adoc[]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
* Add heuristic for setting listener presets when the environment is Minikube
See https://github.com/stackabletech/stackablectl/pull/438[stackablectl#438].
* Add `uninstall` subcommand for `demo`/`stack` commands
See https://github.com/stackabletech/stackablectl/pull/429[stackablectl#429].
* Add confirmation prompt to `install` subcommand for namespace selection
See https://github.com/stackabletech/stackablectl/pull/429[stackablectl#429].
* Add `--assume-yes` option for running commands non-interactively
See https://github.com/stackabletech/stackablectl/pull/429[stackablectl#429].
* Support Helm charts sourced from OCI registries in demo/stack manifests
See https://github.com/stackabletech/stackablectl/pull/440[stackablectl#440].
* Abort early if `uninstall` is issued for `default` namespace
See https://github.com/stackabletech/stackablectl/pull/442[stackablectl#442].
1 change: 0 additions & 1 deletion extra/completions/stackablectl.nu

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions extra/man/stackablectl.1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rust/stackablectl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.5.0] - 2026-07-22

### Added

- Heuristic for setting listener presets when the environment is Minikube ([#438]).
Expand Down
2 changes: 1 addition & 1 deletion rust/stackablectl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "stackablectl"
description = "Command line tool to interact with the Stackable Data Platform"
# See <project-root>/Cargo.toml
version = "1.4.0"
version = "1.5.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
Loading