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
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1] - 2026-09-08

### Fixed

- **macOS Keychain prompt storm**: the keyring backend stored each workspace
as its own Keychain item (`token:<team_id>`) plus separate `default` /
`workspaces` items. Because macOS authorizes Keychain access per item,
listing workspaces or resolving `-w`/`SLACK_WORKSPACE` read every item and
triggered a permission prompt **per workspace** (a dozen-plus prompts for
users with many workspaces). All state is now stored in a **single**
keyring item as one JSON blob, read once per process and cached, so the
user is prompted at most once (and "Always Allow" silences it thereafter).
Existing installs are migrated transparently on first run: the old
per-workspace items are read one final time, consolidated into the blob,
and then removed. The migration persists the blob before deleting any
legacy item, so an interrupted migration never loses tokens.

## [0.2.0] - 2026-09-08

### Added
Expand Down Expand Up @@ -209,7 +226,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- CI/CD workflows for testing and releases
- No external config files required

[Unreleased]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.1.2...v0.2.0
[0.1.2]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/TeamCadenceAI/slack-cli/compare/v0.1.0...v0.1.1
Expand Down
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.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slack-cli"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
rust-version = "1.78"
license = "MIT"
Expand Down
Loading
Loading