diff --git a/__tests__/__packages__/cli-test-utils/CHANGELOG.md b/__tests__/__packages__/cli-test-utils/CHANGELOG.md index 115678f10d..2b893bbe0d 100644 --- a/__tests__/__packages__/cli-test-utils/CHANGELOG.md +++ b/__tests__/__packages__/cli-test-utils/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe CLI test utils package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.11` - BugFix: Fix types error from an incorrect jstree type during compilation diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c47e724f55..67f50568a2 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe CLI package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.10` - BugFix: Added missing z/OSMF connection options to the z/OS Logs command group. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2bc37372fd..69199b69e2 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe core SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.0` - Enhancement: Added support for dynamic APIML tokens. [#1734](https://github.com/zowe/zowe-cli/pull/1734) diff --git a/packages/imperative/CHANGELOG.md b/packages/imperative/CHANGELOG.md index 5094bdb5a0..290d8de0eb 100644 --- a/packages/imperative/CHANGELOG.md +++ b/packages/imperative/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Imperative package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `5.18.4` - BugFix: Removed out of date `Perf-Timing` performance timing package. diff --git a/packages/provisioning/CHANGELOG.md b/packages/provisioning/CHANGELOG.md index c7bb00e438..e9974c965a 100644 --- a/packages/provisioning/CHANGELOG.md +++ b/packages/provisioning/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe provisioning SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.6.2` - BugFix: Updated `js-yaml` dependency for technical currency. diff --git a/packages/secrets/CHANGELOG.md b/packages/secrets/CHANGELOG.md index 054df8cec3..116bc2a4db 100644 --- a/packages/secrets/CHANGELOG.md +++ b/packages/secrets/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe Secrets SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.6` - BugFix: Use `core-foundation-rs` instead of `security-framework` for macOS logic, as `security-framework` is now archived. [#1802](https://github.com/zowe/zowe-cli/issues/1802) diff --git a/packages/secrets/package.json b/packages/secrets/package.json index 95c57aa814..610c364c44 100644 --- a/packages/secrets/package.json +++ b/packages/secrets/package.json @@ -8,7 +8,6 @@ "bugs": { "url": "https://github.com/zowe/zowe-cli/issues" }, - "private": true, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ diff --git a/packages/secrets/scripts/prebuildify.sh b/packages/secrets/scripts/prebuildify.sh index 9342d77029..1110810888 100644 --- a/packages/secrets/scripts/prebuildify.sh +++ b/packages/secrets/scripts/prebuildify.sh @@ -1,8 +1,10 @@ #!/bin/bash set -ex rm -rf prebuilds && mkdir -p prebuilds -SECRETS_BRANCH="${SECRETS_BRANCH:-master}" +if [ -z "$SECRETS_BRANCH" ]; then + SECRETS_BRANCH=$(git rev-parse --abbrev-ref HEAD) +fi SECRETS_WORKFLOW_ID=$(gh run list -b $SECRETS_BRANCH --limit 1 --status success --workflow "Secrets SDK CI" --json databaseId --jq ".[0].databaseId") echo "Downloading Secrets SDK prebuilds from $SECRETS_BRANCH branch..." gh run download $SECRETS_WORKFLOW_ID --dir prebuilds --pattern "bindings-*" -mv prebuilds/*/* prebuilds && rm -r prebuilds/*/ \ No newline at end of file +mv prebuilds/*/* prebuilds && rm -r prebuilds/*/ diff --git a/packages/workflows/CHANGELOG.md b/packages/workflows/CHANGELOG.md index 7ede439b31..19acd2e8ec 100644 --- a/packages/workflows/CHANGELOG.md +++ b/packages/workflows/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS workflows SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.0.0` - Major: Introduced Team Profiles, Daemon mode, and more. See the prerelease items (if any) below for more details. diff --git a/packages/zosconsole/CHANGELOG.md b/packages/zosconsole/CHANGELOG.md index 95886e86fb..382b3040dc 100644 --- a/packages/zosconsole/CHANGELOG.md +++ b/packages/zosconsole/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS console SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.0.0` - Major: Introduced Team Profiles, Daemon mode, and more. See the prerelease items (if any) below for more details. diff --git a/packages/zosfiles/CHANGELOG.md b/packages/zosfiles/CHANGELOG.md index c16df26fc5..fb5b5dfb63 100644 --- a/packages/zosfiles/CHANGELOG.md +++ b/packages/zosfiles/CHANGELOG.md @@ -2,11 +2,16 @@ All notable changes to the Zowe z/OS files SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.9` - BugFix: Fix behavior where a specified directory was being lowercased on non-PDS datasets when downloading all datasets [#1722](https://github.com/zowe/zowe-cli/issues/1722) ## `7.18.8` + - Enhancement: Patch that adds invalidFileName to ZosFilesMessages ## `7.18.0` diff --git a/packages/zosjobs/CHANGELOG.md b/packages/zosjobs/CHANGELOG.md index fd3edf0d30..3eefd66d75 100644 --- a/packages/zosjobs/CHANGELOG.md +++ b/packages/zosjobs/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS jobs SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.17.0` - Enhancement: Set properties for GetJobs errors for use in a more user-friendly format with the ZOWE_V3_ERR_FORMAT environment variable. [zowe-cli#935](https://github.com/zowe/zowe-cli/issues/935) diff --git a/packages/zoslogs/CHANGELOG.md b/packages/zoslogs/CHANGELOG.md index 7e83addfe0..72003c9ab7 100644 --- a/packages/zoslogs/CHANGELOG.md +++ b/packages/zoslogs/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS logs SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.0.0` - Major: Introduced Team Profiles, Daemon mode, and more. See the prerelease items (if any) below for more details. diff --git a/packages/zosmf/CHANGELOG.md b/packages/zosmf/CHANGELOG.md index 52cf9c629e..08085f5a28 100644 --- a/packages/zosmf/CHANGELOG.md +++ b/packages/zosmf/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OSMF SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.6.2` - BugFix: Updated example for `zowe profiles create zosmf-profile` command. [#1152](https://github.com/zowe/zowe-cli/issues/1152) diff --git a/packages/zostso/CHANGELOG.md b/packages/zostso/CHANGELOG.md index 428c948a96..2b77a15940 100644 --- a/packages/zostso/CHANGELOG.md +++ b/packages/zostso/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS TSO SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.1.0` - Enhancement: Exposed `tso` profile type configuration. diff --git a/packages/zosuss/CHANGELOG.md b/packages/zosuss/CHANGELOG.md index 9e953f4c51..5cfff94e47 100644 --- a/packages/zosuss/CHANGELOG.md +++ b/packages/zosuss/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the Zowe z/OS USS SDK package will be documented in this file. +## Recent Changes + +- Breaking: First major version bump for V3 + ## `7.18.2` - BugFix: Updated `zowe zos-ssh issue cmd` to return just the command output in `stdout` instead of both the command and its output. [#1724](https://github.com/zowe/zowe-cli/issues/1724)