🐸 Versioned release#771
Merged
Merged
Conversation
varlock@1.6.1
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 created and will be kept in sync by bumpy based on your bump files (in
.bumpy/). Merge it when you are ready to release the packages listed below:varlock1.6.0 → 1.6.1 CHANGELOG.mdvarlock runno longer breaks interactive TTY tools (psql,claude, etc.). Previously redaction always piped stdout/stderr, which broke raw-TTY behavior unless you passed--no-redact-stdout. (bump file)Redaction is now auto-detected per stream: output attached to an interactive terminal passes through directly (preserving raw TTY behavior), while piped or redirected output (CI logs, files, pipes) is still redacted — that's where leaked secrets actually persist. Detection is per stream, so
varlock run -- app | tee log.txtredacts stdout while stderr (still on the terminal) passes through.--redact-stdout/_VARLOCK_REDACT_STDOUTto override the auto-detection: force redaction of piped output (e.g. to override@redactLogs=false). Forcing redaction while attached to an interactive terminal errors, since it isn't possible without breaking TTY behavior. The flag takes precedence over the env var._VARLOCK_*keys from the injected env blob, generated types, and override provenance (previously only_VARLOCK_ENV_KEY/_VARLOCK_CACHE_KEYwere excluded), and scope override provenance to actual schema config keys instead of mirroring everyprocess.envkey. Warn when a user defines a config item using the reserved_VARLOCK_prefix.