Skip to content

Commit

Permalink
Merge branch 'master' into copy-pds-enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
pujal0909 authored Jan 13, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents a1c6495 + 2a299fc commit 75f0719
Showing 21 changed files with 237 additions and 121 deletions.
3 changes: 2 additions & 1 deletion RELEASE_HISTORY.md
Original file line number Diff line number Diff line change
@@ -7,7 +7,8 @@ Zowe follows a regular release schedule with major versions released every two y
### Zowe v3.x LTS Releases
| Version | Release Date | Status | Release Notes |
|:--------:|:------------:|:----------:|:-------------:|
| v3.0.0-prerelease | 2024-08 | **Under Development** | |
| v3.0.0 | 2024-10 | **Active** | |
| v3.1.0 | 2025-02 | **Under Development** | |

### Major Release Timeline

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.10.4",
"version": "8.11.0",
"description": "Test utilities package for Zowe CLI plug-ins",
"author": "Zowe",
"license": "EPL-2.0",
@@ -43,7 +43,7 @@
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/uuid": "^10.0.0",
"@zowe/imperative": "8.10.4"
"@zowe/imperative": "8.11.0"
},
"peerDependencies": {
"@zowe/imperative": "^8.0.0"
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.10.4",
"version": "8.11.0",
"command": {
"publish": {
"ignoreChanges": [
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.

28 changes: 14 additions & 14 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@zowe/cli",
"version": "8.10.4",
"zoweVersion": "v3.0.0",
"version": "8.11.0",
"zoweVersion": "v3.1.0",
"description": "Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.",
"author": "Zowe",
"license": "EPL-2.0",
@@ -58,17 +58,17 @@
"preshrinkwrap": "node ../../scripts/rewriteShrinkwrap.js"
},
"dependencies": {
"@zowe/core-for-zowe-sdk": "8.10.4",
"@zowe/imperative": "8.10.4",
"@zowe/provisioning-for-zowe-sdk": "8.10.4",
"@zowe/zos-console-for-zowe-sdk": "8.10.4",
"@zowe/zos-files-for-zowe-sdk": "8.10.4",
"@zowe/zos-jobs-for-zowe-sdk": "8.10.4",
"@zowe/zos-logs-for-zowe-sdk": "8.10.4",
"@zowe/zos-tso-for-zowe-sdk": "8.10.4",
"@zowe/zos-uss-for-zowe-sdk": "8.10.4",
"@zowe/zos-workflows-for-zowe-sdk": "8.10.4",
"@zowe/zosmf-for-zowe-sdk": "8.10.4",
"@zowe/core-for-zowe-sdk": "8.11.0",
"@zowe/imperative": "8.11.0",
"@zowe/provisioning-for-zowe-sdk": "8.11.0",
"@zowe/zos-console-for-zowe-sdk": "8.11.0",
"@zowe/zos-files-for-zowe-sdk": "8.11.0",
"@zowe/zos-jobs-for-zowe-sdk": "8.11.0",
"@zowe/zos-logs-for-zowe-sdk": "8.11.0",
"@zowe/zos-tso-for-zowe-sdk": "8.11.0",
"@zowe/zos-uss-for-zowe-sdk": "8.11.0",
"@zowe/zos-workflows-for-zowe-sdk": "8.11.0",
"@zowe/zosmf-for-zowe-sdk": "8.11.0",
"find-process": "1.4.7",
"lodash": "4.17.21",
"minimatch": "9.0.5",
@@ -78,7 +78,7 @@
"@types/diff": "^5.0.9",
"@types/lodash": "^4.17.6",
"@types/tar": "^6.1.11",
"@zowe/cli-test-utils": "8.10.4",
"@zowe/cli-test-utils": "8.11.0",
"comment-json": "^4.2.3",
"strip-ansi": "^6.0.1",
"which": "^4.0.0"
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zowe/core-for-zowe-sdk",
"version": "8.10.4",
"version": "8.11.0",
"description": "Core libraries shared by Zowe SDK packages",
"author": "Zowe",
"license": "EPL-2.0",
@@ -49,8 +49,8 @@
"string-width": "^4.2.3"
},
"devDependencies": {
"@zowe/cli-test-utils": "8.10.4",
"@zowe/imperative": "8.10.4"
"@zowe/cli-test-utils": "8.11.0",
"@zowe/imperative": "8.11.0"
},
"peerDependencies": {
"@zowe/imperative": "^8.0.0"
4 changes: 4 additions & 0 deletions packages/imperative/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,10 @@

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

## `8.11.0`

- Enhancement: Added `DeferredPromise` class to Imperative to provide utilities for data synchronization. [#2405](https://github.com/zowe/zowe-cli/pull/2405)

## `8.10.4`

- BugFix: Fixed a typo in the syntax validation code for positional arguments which caused the validation to never fail. [#2375](https://github.com/zowe/zowe-cli/issues/2375)
2 changes: 1 addition & 1 deletion packages/imperative/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zowe/imperative",
"version": "8.10.4",
"version": "8.11.0",
"description": "framework for building configurable CLIs",
"author": "Zowe",
"license": "EPL-2.0",
Loading

0 comments on commit 75f0719

Please sign in to comment.