Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security
- requests Python wheel updated to 2.33.0
- #1138: Warn when using `-password` instead of `-password-stdin`.

## [0.10.6] - 2026-02-24

Expand Down
4 changes: 3 additions & 1 deletion src/cls/IPM/Repo/Definition.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Include (%syPrompt, %IPM.Common)
Include (%syPrompt, %IPM.Common, %IPM.Formatting)

Class %IPM.Repo.Definition Extends (%Persistent, %ZEN.DataModel.Adaptor, %IPM.CLI.Commands, %JSON.Adaptor) [ Abstract ]
{
Expand Down Expand Up @@ -190,6 +190,8 @@ ClassMethod Configure(
read "Password: ", pwd
close $io
set pModifiers("password") = pwd
} elseif $data(pModifiers("password")) {
write !, $$$FormattedLine($$$Yellow, "WARNING: Using --password via the CLI is insecure. Use --password-stdin.")
}

$$$ThrowOnError(..OnConfigure(tInstance,pInteractive,.pModifiers,.pData))
Expand Down
Loading