Version Packages#584
Merged
Merged
Conversation
74b8cf2 to
eeb704f
Compare
coderdan
approved these changes
Jul 8, 2026
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
stash@0.17.1
Patch Changes
cb8fa1d: Fix two config-scaffold dead-ends in the CLI (stash CLI: read commands dead-end when stash.config.ts is missing (no scaffold, no guidance) #578, stash CLI: standalone
npx stash eql installscaffolds a stash.config.ts that can't load (Cannot find module 'stash') #579).stash.config.tscan't find one, the error recommendsstash init/stash eql install(runner-aware) instead of only telling you to hand-writethe file.
stash eql installno longer requires astash.config.ts. It only needsa database URL, so it now resolves one directly (
--database-url→ env →supabase status→ prompt) instead of scaffolding a config and loading it.That means a standalone
npx stash eql install --database-url ...works in abare project with zero dependencies — no more crash with a raw
Cannot find module 'stash'from the config'simport. A plainstash eql installstill honours an existing config (later workflow commandsrely on it) and offers to scaffold one otherwise. An explicit
--database-urlis a one-shot install: it resolves that URL directly and leaves the project
untouched — no config or client is scaffolded, and an existing config is
bypassed so the flag can't be silently overridden by a hand-edited literal
databaseUrl(including one in a parent directory).loadStashConfigtranslates a missing-module load failure(a project that has a config but lacks the CLI packages) into the same
actionable guidance for every command, instead of a jiti/Node stack trace.
cbece82: Render per-command
--helpfrom the command-descriptor registry, and slim theglobal banner. This is the documented follow-on to the manifest/registry work in
docs/plans/cli-help-and-manifest.md.stash <command> --helpnow prints command-specific help instead of the globalbanner. A leaf command (
stash eql install --help,stash auth login --help)shows its usage, summary, long description, flags, and examples; a command
group (
stash eql --help,stash auth --help) lists its subcommands and pointsat their own
--help. All of it renders fromsrc/cli/registry.ts, so it can'tdrift from
stash manifest.-his now honoured after a command too (stash eql install -h), not just as abare
stash -h.stash --helpbanner no longer inlines every command's flags; itlists the commands and directs users to
<command> --helpfor the detail.@cipherstash/e2e@0.0.2
Patch Changes