feat: Collection of updates based on usage#17
Merged
dusktreader merged 1 commit intomainfrom Mar 12, 2026
Merged
Conversation
- Added `SecretStr` support in settings: fields annotated with `SecretStr` are automatically masked in normal output - Added `_dump()` helper in `SettingsManager` to correctly store `SecretStr` values as plain strings - Added `status_message` context manager for bracketed start/success/failure output; exported from top-level package - Added `padding` parameter to `simple_message` (default `True`) to allow suppressing blank-line padding - Added `invoke_without_command=True, no_args_is_help=True` to all four subcommand groups (settings, cache, files, logs) so invoking a subcommand with no arguments shows help instead of silently exiting - Fixed `issubclass` crash in settings `bind` and `update` commands when a field annotation is not a plain type (e.g. `AutoNameEnum`) - Bumped `typer-repyt` dependency to `>=0.9.1` - Added `auto-name-enum` as a dev dependency for tests - Added documentation section for secret settings values
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.
SecretStrsupport in settings: fields annotated withSecretStrare automatically masked in normal output_dump()helper inSettingsManagerto correctly storeSecretStrvalues as plain stringsstatus_messagecontext manager for bracketed start/success/failure output; exported from top-level packagepaddingparameter tosimple_message(defaultTrue) to allow suppressing blank-line paddinginvoke_without_command=True, no_args_is_help=Trueto all four subcommand groups (settings, cache, files, logs) so invoking a subcommand with no arguments shows help instead of silently exitingissubclasscrash in settingsbindandupdatecommands when a field annotation is not a plain type (e.g.AutoNameEnum)typer-repytdependency to>=0.9.1auto-name-enumas a dev dependency for tests