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

Update shrinkwrap in v2 #2106

Merged
merged 1 commit into from
Mar 27, 2024
Merged
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
104 changes: 61 additions & 43 deletions npm-shrinkwrap.json

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

3 changes: 2 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ All notable changes to the Zowe CLI package will be documented in this file.

## Recent Changes

- BugFix: Updated `tar` dependency to resolve technical currency [#2101](https://github.com/zowe/zowe-cli/issues/2101)
- BugFix: Resolved technical currency by updating `tar` dependency. [#2101](https://github.com/zowe/zowe-cli/issues/2101)
- BugFix: Resolved technical currency by updating `markdown-it` dependency. [#2106](https://github.com/zowe/zowe-cli/pull/2106)

## `7.23.5`

Expand Down
4 changes: 4 additions & 0 deletions packages/imperative/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Imperative package will be documented in this file.

## Recent Changes

- BugFix: Resolved technical currency by updating `markdown-it` dependency. [#2106](https://github.com/zowe/zowe-cli/pull/2106)

## `5.22.6`

- BugFix: Updated debugging output for technical currency. [#2098](https://github.com/zowe/zowe-cli/pull/2098)
Expand Down
2 changes: 1 addition & 1 deletion packages/imperative/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"lodash": "4.17.21",
"lodash-deep": "2.0.0",
"log4js": "6.4.6",
"markdown-it": "12.3.2",
"markdown-it": "14.1.0",
"mustache": "4.2.0",
"npm-package-arg": "9.1.0",
"opener": "1.5.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,13 +389,13 @@ exports[`Default Help Generator help text builder should construct multiple tabl
`;

exports[`Default Help Generator help text builder should escape Markdown special characters in the description when markdown is rendered 1`] = `
"This is a command with Markdown special characters in the description \\\\# \\\\* \\\\-\\\\.
"This is a command with Markdown special characters in the description \\\\# \\\\* \\\\-.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua\\\\. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\\\\.
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur\\\\. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum\\\\.
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.

"
`;
Expand Down Expand Up @@ -424,7 +424,7 @@ exports[`Default Help Generator help text builder should getCommandHelpText with
`;

exports[`Default Help Generator help text builder should remove ANSI escape codes from the help text 1`] = `
"Specifies whether to verify that the objects to be created do not exist on the Db2 subsystem and that the related objects that are required for successful creation of the objects exist on the Db2 subsystem or in the input DDL\\\\.
"Specifies whether to verify that the objects to be created do not exist on the Db2 subsystem and that the related objects that are required for successful creation of the objects exist on the Db2 subsystem or in the input DDL.

Default value: no "
`;
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,6 @@ export class DefaultHelpGenerator extends AbstractHelpGenerator {
* @return {string} - The escaped string
*/
private escapeMarkdown(text: string): string {
return stripAnsi(text).replace(/([*#\-`_[\]+.!\\])/g, "\\$1");
return stripAnsi(text).replace(/([*#\-`_[\]+!\\])/g, "\\$1");
}
}
Loading