Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/next' into rm-profile-handlers a…
Browse files Browse the repository at this point in the history
…gain

Signed-off-by: Gene Johnston <[email protected]>
  • Loading branch information
gejohnston committed Feb 26, 2024
2 parents e97a0c8 + b54277d commit 67c2c8a
Show file tree
Hide file tree
Showing 62 changed files with 588 additions and 304 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ CCS141/
src/brightside.iml
package-lock.json
/packages/cli/npm-shrinkwrap.json
/dist/
# Sonar Files
.sonar_lock
.scannerwork/
Expand Down
123 changes: 85 additions & 38 deletions npm-shrinkwrap.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"typedoc:packages": "lerna run --parallel typedoc",
"audit:public": "npm audit --registry https://registry.npmjs.org/",
"bundle:webHelp": "cd packages/imperative/web-help && node build.js",
"prepare": "husky install && npm run bundle:webHelp"
"prepare": "husky install && npm run bundle:webHelp",
"package": "node scripts/bundleCliTgz.js"
},
"devDependencies": {
"@lerna-lite/changed": "^3.3.0",
Expand Down Expand Up @@ -75,7 +76,7 @@
"ts-jest": "^29.1.2",
"ts-node": "^7.0.1",
"typedoc": "^0.25.8",
"typescript": "^4.9.5"
"typescript": "^5.3.3"
},
"jestSonar": {
"reportPath": "__tests__/__results__/jest-sonar"
Expand Down
16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,22 @@ LTS Breaking: Removed the following previously deprecated items: [#1981](https:/

- Major: First major version bump for V3

## `7.23.3`

- BugFix: Fixed race condition in `config convert-profiles` command that may fail to delete secure values for old profiles

## `7.23.2`

- BugFix: Resolved technical currency by updating `socks` transitive dependency

## `7.23.1`

- Enhancement: Adding `--binary` and `--encoding` options to `zosfiles edit` to zowe V2

## `7.23.0`

- BugFix: Update zos-files copy dsclp system tests to include large mock files.

## `7.22.0`

- Enhancement: Hid the progress bar if `CI` environment variable is set, or if `FORCE_COLOR` environment variable is set to `0`. [#1845](https://github.com/zowe/zowe-cli/issues/1845)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ toDataSet=$2
options=$3
set -e

echo "================Z/OS FILES COPY DS==============="
zowe zos-files copy data-set $fromDataSet $toDataSet $options
echo "================Z/OS FILES COPY DSCLP==============="
zowe zos-files copy dsclp $fromDataSet $toDataSet $options

if [ $? -gt 0 ]
then
Expand Down
Loading

0 comments on commit 67c2c8a

Please sign in to comment.