Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

utils: Export masking utility and bump version for release #1777

Merged
merged 5 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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 utils/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1754,6 +1754,7 @@ export declare namespace AzExtFsExtra {
}

export declare function maskValue(data: string, valueToMask: string | undefined): string;
export declare function maskUserInfo(unknownArg: unknown, actionValuesToMask: string[], lessAggressive?: boolean, getUsername?: () => string): string;
bwateratmsft marked this conversation as resolved.
Show resolved Hide resolved

export declare function openUrl(url: string): Promise<void>;

Expand Down
4 changes: 2 additions & 2 deletions utils/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microsoft/vscode-azext-utils",
"author": "Microsoft Corporation",
"version": "2.5.6",
"version": "2.5.7",
"description": "Common UI tools for developing Azure extensions for VS Code",
"tags": [
"azure",
Expand Down
2 changes: 1 addition & 1 deletion utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export * from './DialogResponses';
export * from './errors';
export * from './extensionUserAgent';
export { registerUIExtensionVariables } from './extensionVariables';
export { addExtensionValueToMask, callWithMaskHandling, maskValue } from './masking';
export { addExtensionValueToMask, callWithMaskHandling, maskUserInfo, maskValue } from './masking';
export * from './openReadOnlyContent';
export * from './parseError';
export * from './pickTreeItem/contextValue/ContextValueQuickPickStep';
Expand Down
Loading