Skip to content
Open
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.nix

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
== 1.2.2

* Add the option for users to customize the behaviour of `stackablectl` through a user config located at `$HOME/.config/stackablectl/config.toml`.
The first supported option is `version.check_enabled` which can be set to `true` or `false`.
See https://github.com/stackabletech/stackable-cockpit/pull/422[stackable-cockpit#422].
* Add a new release check which is used in two different ways:
** A new `stackablectl version check` command can be used to check if the current installation is up-to-date
** A check automatically runs for all other commands (in parallel to not block the commands) and the status is reported as part of the final command output.

+
See https://github.com/stackabletech/stackable-cockpit/pull/421[stackable-cockpit#421].
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.

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

## [Unreleased]

## [1.2.2] - 2025-12-03

### Added

- Add the option for users to customize the behaviour of `stackablectl` through a user config located at
`$HOME/.config/stackablectl/config.toml` ([#422]).
- The first supported option is `version.check_enabled` which can be set to `true` or `false`.
- Add a new release check which is used in two different ways ([#421]):
- A new `stackablectl version check` command can be used to check if the current installation is up-to-date
- A check automatically runs for all other commands (in parallel to not block the commands) and the status is reported
as part of the final command output.

[#421]: https://github.com/stackabletech/stackable-cockpit/pull/421
[#422]: https://github.com/stackabletech/stackable-cockpit/pull/422

## [1.2.1] - 2025-11-18

### Fixed

- Don't crash during `release upgrade` for SDP 25.11.
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.2.1"
version = "1.2.2"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
Loading