Skip to content

Commit

Permalink
Merge branch 'master' into ext-proxy-setting
Browse files Browse the repository at this point in the history
Signed-off-by: Billie Simmons <BillieJean.Simmons@ibm.com>
  • Loading branch information
JillieBeanSim authored Nov 1, 2024
2 parents 62ccdcc + 1d2cdc9 commit f2ff207
Show file tree
Hide file tree
Showing 69 changed files with 594 additions and 374 deletions.
4 changes: 2 additions & 2 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": "8.6.0",
"version": "8.6.1",
"description": "Test utilities package for Zowe CLI plug-ins",
"author": "Zowe",
"license": "EPL-2.0",
Expand Down Expand Up @@ -43,7 +43,7 @@
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/uuid": "^10.0.0",
"@zowe/imperative": "8.6.0"
"@zowe/imperative": "8.6.1"
},
"peerDependencies": {
"@zowe/imperative": "^8.0.0"
Expand Down
2 changes: 2 additions & 0 deletions __tests__/__resources__/properties/default_properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ zosjobs:
modifiedJobclass: B
# System affinity
sysaff: zosjobs-sysaff
# CIM Support
skipCIM: false
#-----------------------------------------------------------------------------#
# Set of properties for testing provisioning #
#-----------------------------------------------------------------------------#
Expand Down
1 change: 1 addition & 0 deletions __tests__/__src__/properties/ITestZosJobsSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ export interface ITestZosJobsSchema {
jobclass: string;
modifiedJobclass: string;
sysaff: string;
skipCIM?: boolean;
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.6.0",
"version": "8.6.1",
"command": {
"publish": {
"ignoreChanges": [
Expand Down
116 changes: 58 additions & 58 deletions npm-shrinkwrap.json

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

4 changes: 4 additions & 0 deletions packages/cli/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 package will be documented in this file.

## `8.6.1`

- BugFix: Fixed an issue where the `zowe zos-logs list logs` command could fail or not return all logs if a start time was not supplied. [#2336](https://github.com/zowe/zowe-cli/pull/2336)

## `8.6.0`

- Enhancement: Added support for running applications on TSO/E address spaces. Start applications and receive/transmit messages using the new `tso start`, `tso receive` and `tso send` commands. [#2280](https://github.com/zowe/zowe-cli/pull/2280)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
set -e

HOST=$1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
set -e

HOST=$1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
set -e

zowe config auto-init
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ describe("config auto-init without profile", () => {
base.rejectUnauthorized
]
);
expect(response.status).toEqual(0);

const config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down Expand Up @@ -107,6 +108,7 @@ describe("config auto-init without profile", () => {
base.rejectUnauthorized
]
);
expect(response.status).toEqual(0);

config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down Expand Up @@ -186,6 +188,7 @@ describe("config auto-init without profile and with certificates", () => {
base.rejectUnauthorized
]
);
expect(response.status).toEqual(0);

const config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down Expand Up @@ -254,6 +257,7 @@ describe("config auto-init without profile and with certificates", () => {
base.rejectUnauthorized
]
);
expect(response.status).toEqual(0);

config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down Expand Up @@ -319,6 +323,7 @@ describe("config auto-init with profile", () => {

it("should successfully issue the auto-init command", () => {
const response = runCliScript(__dirname + "/__scripts__/config_auto_init_profile.sh", TEST_ENVIRONMENT);
expect(response.status).toEqual(0);

const config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down Expand Up @@ -379,6 +384,7 @@ describe("config auto-init with profile and certificates", () => {

it("should successfully issue the auto-init command", () => {
const response = runCliScript(__dirname + "/__scripts__/config_auto_init_profile.sh", TEST_ENVIRONMENT);
expect(response.status).toEqual(0);

const config = fs.readFileSync(path.join(TEST_ENVIRONMENT.workingDir, "zowe.config.json")).toString();
// Typecasting because of this issue: https://github.com/kaelzhang/node-comment-json/issues/42
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ then
exit $RC
fi

sleep 1

# Cancel the job
zowe jobs cancel job $JOBID
RC=$?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ then
exit $RC
fi

sleep 1

# Cancel the job
zowe jobs cancel job $JOBID --host $HOST --port $PORT --user $USER --password $PASS --ru=false
RC=$?
Expand Down
Loading

0 comments on commit f2ff207

Please sign in to comment.