Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/zowe/zowe-cli into final-wf
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Oct 2, 2024
2 parents 8556fa9 + bac7a51 commit 0308eb4
Show file tree
Hide file tree
Showing 45 changed files with 1,179 additions and 387 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.0.0",
"version": "8.0.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.0.0"
"@zowe/imperative": "8.0.1"
},
"peerDependencies": {
"@zowe/imperative": "^8.0.0-next"
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": "8.0.0",
"version": "8.0.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.

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

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


## Recent Changes

- Enhancement: Added `--stateful` flag to `zos-tso issue cmd` to allow declaring the statefulness of the address space being created. [#2240](https://github.com/zowe/zowe-cli/pull/2240)
- Enhancement: `--suppress-startup-messages` flag default value changed to `true`. [#2240](https://github.com/zowe/zowe-cli/pull/2240)

## `8.0.0`

- MAJOR: v8.0.0 Release
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

# Generate console name: 6 characters + "CN"
CONSOLE_NAME=`cat /dev/urandom | tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME=`cat /dev/urandom | LC_CTYPE=C tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME="${CONSOLE_NAME}CN"

# Ensure that console doesn't exist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

# Generate console name: 6 characters + "CN"
CONSOLE_NAME=`cat /dev/urandom | tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME=`cat /dev/urandom | LC_CTYPE=C tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME="${CONSOLE_NAME}CN"

# Ensure that console doesn't exist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

# Generate console name: 6 characters + "CN"
CONSOLE_NAME=`cat /dev/urandom | tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME=`cat /dev/urandom | LC_CTYPE=C tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME="${CONSOLE_NAME}CN"

# Ensure that console doesn't exist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

# Generate console name: 6 characters + "CN"
CONSOLE_NAME=`cat /dev/urandom | tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME=`cat /dev/urandom | LC_CTYPE=C tr -dc '[:upper:]' | fold -w 6 | head -n 1`
CONSOLE_NAME="${CONSOLE_NAME}CN"

# Ensure that console doesn't exist
Expand Down
Loading

0 comments on commit 0308eb4

Please sign in to comment.