docs: rename stash db install to stash eql install#41
Open
coderdan wants to merge 2 commits into
Open
Conversation
The CLI command moved to a dedicated `eql` command group; `db install` remains as a deprecated alias that prints a warning. Update all pages that reference the command and note the deprecated alias on the install page.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
The stash CLI also renamed `db upgrade` → `eql upgrade` and `db status` → `eql status`; the old spellings remain as deprecated aliases.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
stashCLI is renaming its EQL-extension commands into a dedicatedeqlcommand group (cipherstash/stack#543):stash db installstash eql installstash db upgradestash eql upgradestash db statusstash eql statusThe old
dbspellings remain as deprecated aliases that print a warning.This updates every page that references these commands (CLI reference, init, status, push, impl, troubleshooting, Supabase/Drizzle/Prisma Next integration guides, deploy docs, agent-skills reference) and adds a note about the deprecated alias to the install page.
No URLs or page slugs change — the pages already live at
/stack/cipherstash/cli/{install,push,...}and headings are the bare subcommand names.Test plan
bun run validate-links: no broken linksbun run lint: only pre-existing failures on main (none in touched files)Note: this should merge after (or around the same time as) the CLI release that ships the
eqlcommand group, since the docs will tell users to run the new commands.