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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.8.7 (2025-10-14)

- Added tab completion
- Added enhanced logging decorators

## 1.8.6 (2025-07-22)

- Added support for inline `sql` for `command` and `query` resource types
Expand Down
34 changes: 3 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,38 +241,10 @@ stackql-deploy --help

**stackql-deploy** supports tab completion for commands and options across multiple shells. To enable tab completion:

#### Bash
Add the following to your `~/.bashrc`:
```bash
eval "$(_STACKQL_DEPLOY_COMPLETE=bash_source stackql-deploy)"
```

#### Zsh
Add the following to your `~/.zshrc`:
```bash
eval "$(_STACKQL_DEPLOY_COMPLETE=zsh_source stackql-deploy)"
```

#### Fish
Add the following to your `~/.config/fish/config.fish`:
```bash
eval (env _STACKQL_DEPLOY_COMPLETE=fish_source stackql-deploy)
```

#### PowerShell
Add the following to your PowerShell profile:
```powershell
Invoke-Expression (& stackql-deploy completion powershell)
```

> **Note:** After adding the completion configuration to your shell's configuration file, restart your terminal or source the configuration file for the changes to take effect.

You can also generate shell-specific completion scripts using:
```bash
stackql-deploy completion bash # for bash
stackql-deploy completion zsh # for zsh
stackql-deploy completion fish # for fish
stackql-deploy completion powershell # for PowerShell
eval "$(stackql-deploy completion bash)" # activate now
stackql-deploy completion bash --install # install permanently
stackql-deploy completion # auto-detect shell
```

## Building and Testing Locally
Expand Down
Loading