Skip to content

Commit

Permalink
Merge branch 'next' of https://github.com/zowe/zowe-cli into removeDe…
Browse files Browse the repository at this point in the history
…precatedCore

Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Nov 17, 2023
2 parents c2b5d4f + 327f418 commit 23370c5
Show file tree
Hide file tree
Showing 121 changed files with 577 additions and 1,454 deletions.
4 changes: 4 additions & 0 deletions __tests__/__packages__/cli-test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Zowe CLI test utils package will be documented in this file.

## `8.0.0-next.202311132045`

- Breaking: First major version bump for V3

## `7.18.11`

- BugFix: Fix types error from an incorrect jstree type during compilation
Expand Down
6 changes: 3 additions & 3 deletions __tests__/__packages__/cli-test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zowe/cli-test-utils",
"version": "7.19.0",
"version": "8.0.0-next.202311162222",
"description": "Test utilities package for Zowe CLI plug-ins",
"author": "Zowe",
"license": "EPL-2.0",
Expand Down Expand Up @@ -43,9 +43,9 @@
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/uuid": "^8.3.0",
"@zowe/imperative": "5.19.0"
"@zowe/imperative": "8.0.0-next.202311162222"
},
"peerDependencies": {
"@zowe/imperative": "^5.0.0"
"@zowe/imperative": "^8.0.0-next"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe("Zowe CLI Logging", () => {
expect(imperativeLogContents.indexOf(zosmfPassword)).not.toBeGreaterThanOrEqual(0);
expect(imperativeLogContents.indexOf(encodedAuth)).not.toBeGreaterThanOrEqual(0);

// ensure that the password and encoded auth does not appear in the brightside log
// ensure that the password and encoded auth does not appear in the Zowe log
expect(zoweLogContents.indexOf(zosmfPassword)).not.toBeGreaterThanOrEqual(0);
expect(zoweLogContents.indexOf(encodedAuth)).not.toBeGreaterThanOrEqual(0);
});
Expand Down Expand Up @@ -83,7 +83,7 @@ describe("Zowe CLI Logging", () => {
expect(imperativeLogContents.indexOf(zosmfPassword)).not.toBeGreaterThanOrEqual(0);
expect(imperativeLogContents.indexOf(encodedAuth)).not.toBeGreaterThanOrEqual(0);

// ensure that the password and encoded auth does not appear in the brightside log
// ensure that the password and encoded auth does not appear in the Zowe log
expect(zoweLogContents.indexOf(zosmfPassword)).not.toBeGreaterThanOrEqual(0);
expect(zoweLogContents.indexOf(encodedAuth)).not.toBeGreaterThanOrEqual(0);
});
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.19.0",
"version": "8.0.0-next.202311162222",
"command": {
"publish": {
"ignoreChanges": [
Expand Down
Loading

0 comments on commit 23370c5

Please sign in to comment.