You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When masking secrets is enabled (default today) it messes up the PowerShell prompt. It's pretty invasive actually and we should change the default in a better way because of this.
The text was updated successfully, but these errors were encountered:
Due to #78 and #79 it not a good idea to override the built in ps
functions in the way that we are now. I've modified how secrets are
masked. Currently secrets will always be masked. The implementation is not
quite as safe as the previous because previoulsy psbuild was overriding
commands like write-host, write-output, etc to mask secrets. That had
issues where the prompt was getting modified. Instead of that I've updated
calls that can cause output to call Get-FilteredString instead. Including
masking any exception messages. I'm pretty confident that secrets are
still being masked correctly including in log files.
When masking secrets is enabled (default today) it messes up the PowerShell prompt. It's pretty invasive actually and we should change the default in a better way because of this.
The text was updated successfully, but these errors were encountered: