diff --git a/.github/scripts/cicd_test/prep7_more_test_prep/05_process_ext_list.sh b/.github/scripts/cicd_test/prep7_more_test_prep/05_process_ext_list.sh index 22027e3c93..806af8fee0 100644 --- a/.github/scripts/cicd_test/prep7_more_test_prep/05_process_ext_list.sh +++ b/.github/scripts/cicd_test/prep7_more_test_prep/05_process_ext_list.sh @@ -35,11 +35,12 @@ if [[ "$MATRIX_TEST" == *"install-ext"* ]]; then if [[ "$each_ext" == *"("* ]] && [[ "$each_ext" == *")"* ]] ; then # user provides custom artifactory pattern ext_name=$(echo "$each_ext" | cut -d "(" -f1) - ext_pattern=$(echo "$each_ext" | cut -d "(" -f2 | cut -d ")" -f1) + ext_version=$(echo "$each_ext" | cut -d "(" -f2 | cut -d ")" -f1) + ext_pattern=$(echo "$DEFAULT_ZOWE_EXT_ARTIFACTORY_PATTERN" | sed "s#{ext-name}#$ext_name#g" | sed "s#{ext-version}#$ext_version#g" ) else # use default ext_name="$each_ext" - ext_pattern=$(echo "$DEFAULT_ZOWE_EXT_ARTIFACTORY_PATTERN" | sed "s#{ext-name}#$ext_name#g") + ext_pattern=$(echo "$DEFAULT_ZOWE_EXT_ARTIFACTORY_PATTERN" | sed "s#{ext-name}#$ext_name#g" | sed "s#{ext-version}#*#g" ) fi echo "[Check 4 INFO] extension name is $ext_name" @@ -58,4 +59,4 @@ if [[ "$MATRIX_TEST" == *"install-ext"* ]]; then EXTENSION_LIST=$(echo $EXTENSION_LIST | sed 's/;$//g') assert_env_var EXTENSION_LIST printf "${GREEN}[Check 4/$TOTAL_CHECK] Zowe extension list processing complete!${NC}\n" -fi \ No newline at end of file +fi diff --git a/.github/workflows/build-packaging.yml b/.github/workflows/build-packaging.yml index 9685f1d816..fcbdce681c 100644 --- a/.github/workflows/build-packaging.yml +++ b/.github/workflows/build-packaging.yml @@ -1,4 +1,11 @@ name: Zowe Build and Packaging + +permissions: + id-token: write + issues: write + pull-requests: write + contents: write + on: push: branches: diff --git a/.github/workflows/cicd-test-readme.md b/.github/workflows/cicd-test-readme.md index b1250a1f32..d9cc4c3738 100644 --- a/.github/workflows/cicd-test-readme.md +++ b/.github/workflows/cicd-test-readme.md @@ -102,7 +102,7 @@ Background: CICD testing relies on a `zowe.pax` or `zowe-smpe.zip` (for SMPE ins - This input is pre-filled with `sample-node-api;sample-trial-app` to test [sample-node-api](https://github.com/zowe/sample-node-api) and [sample-trial-app](https://github.com/zowe/sample-trial-app) projects. In normal circumstances, you probably don't need to modify the pre-filled value here. - By default, the extension artifact search pattern is using format `libs-snapshot-local/org/zowe/{ext-name}/*/{ext-name}-*.pax` where `{ext-name}` will be processed and substituted from this input (as an example above, `sample-node-api`). Then the latest uploaded artifact will be used. -- Optionally, you can customized your extension artifact path. Customized jfrog artifactory path should exist, be valid, and enclosed in brackets and put after the extension name, eg. `sample-node-api(my/new/path/sample-node-api-cus.pax)`. A pattern contains `*` is also supported, which the latest artifact will be picked up. If multiple extensions are included, make sure to separate them by semi-colon. In addition to the artifactory path/pattern, you can also put a full http URL to any other remote location that points to an extension pax here. +- Optionally, you can customized your extension artifact version. Customized jfrog artifactory version should exist, be valid, and enclosed in brackets and put after the extension name, eg. `sample-node-api(3.0.0-SNAPSHOT)`. This example will create a search pattern like the following, where the latest artifact in the folder is picked up: `libs-snapshot-local/org/zowe/sample-node-api/3.0.0-SNAPSHOT/sample-node-api-*.pax`. A pattern containing `*` is also supported, which will result in the latest artifact in the latest folder matching the pattern. For example: `sample-node-api(1.0.0-*)` will create this search pattern: `libs-snapshot-local/org/zowe/sample-node-api/1.0.0-*/sample-node-api-*.pax`, which could match folders `1.0.0-SNAPSHOT`, `1.0.0-MAIN`, `1.0.0-user-pr-build`, etc. - The following regular expression will be used to check against your input ``` diff --git a/.github/workflows/cicd-test.yml b/.github/workflows/cicd-test.yml index b6249a75ad..088c8ebb64 100644 --- a/.github/workflows/cicd-test.yml +++ b/.github/workflows/cicd-test.yml @@ -1,4 +1,11 @@ name: Zowe CICD Integration Tests + +permissions: + id-token: write + issues: write + pull-requests: write + contents: write + on: workflow_dispatch: inputs: @@ -42,7 +49,9 @@ on: custom-extension-list: description: 'Custom Extension List:' required: false - default: 'sample-node-api;sample-trial-app' + # FIXME: too slow to test 2, temporarily only test 1 + # default: 'sample-node-api;sample-trial-app' + default: 'sample-node-api(1.0.0-SNAPSHOT)' RANDOM_DISPATCH_EVENT_ID: description: 'random dispatch event id' required: false @@ -57,7 +66,7 @@ env: DEFAULT_ZOWE_SMPE_ARTIFACTORY_PATTERN: libs-snapshot-local/org/zowe/*zowe-smpe*{branch-name}*.zip DEFAULT_ZOWE_TP_DOCKER_ARTIFACTORY_PATTERN: libs-snapshot-local/org/zowe/*server-bundle.amd64*{branch-name}*.tar DEFAULT_ZOWE_CLI_ARTIFACTORY_PATTERN: PLACE_HOLDER/org/zowe/cli/zowe-cli-package/*/zowe-cli-package-1*.zip - DEFAULT_ZOWE_EXT_ARTIFACTORY_PATTERN: libs-snapshot-local/org/zowe/{ext-name}/*/{ext-name}-*.pax + DEFAULT_ZOWE_EXT_ARTIFACTORY_PATTERN: libs-snapshot-local/org/zowe/{ext-name}/{ext-version}/{ext-name}-*.pax # can be overwritten, adjusted by DevOps only ZOS_NODE_VERSION: v16.20.2 diff --git a/containers/kubernetes/workloads/instance-env/cleanup-static-definitions-cronjob.yaml b/containers/kubernetes/workloads/instance-env/cleanup-static-definitions-cronjob.yaml index 11cf34f0d9..e9ce19878a 100644 --- a/containers/kubernetes/workloads/instance-env/cleanup-static-definitions-cronjob.yaml +++ b/containers/kubernetes/workloads/instance-env/cleanup-static-definitions-cronjob.yaml @@ -1,4 +1,4 @@ -apiVersion: batch/v1beta1 +apiVersion: batch/v1 kind: CronJob metadata: name: cleanup-static-definitions diff --git a/containers/kubernetes/workloads/zowe-yaml/cleanup-static-definitions-cronjob.yaml b/containers/kubernetes/workloads/zowe-yaml/cleanup-static-definitions-cronjob.yaml index 9f35fb9e55..17dd57c4ae 100644 --- a/containers/kubernetes/workloads/zowe-yaml/cleanup-static-definitions-cronjob.yaml +++ b/containers/kubernetes/workloads/zowe-yaml/cleanup-static-definitions-cronjob.yaml @@ -1,4 +1,4 @@ -apiVersion: batch/v1beta1 +apiVersion: batch/v1 kind: CronJob metadata: name: cleanup-static-definitions diff --git a/manifest.json.template b/manifest.json.template index 9cf904e6c1..43063cb2ae 100644 --- a/manifest.json.template +++ b/manifest.json.template @@ -1,6 +1,6 @@ { "name": "Zowe", - "version": "1.28.7", + "version": "1.28.8", "description": "Zowe is an open source project created to host technologies that benefit the Z platform from all members of the Z community (Integrated Software Vendors, System Integrators and z/OS consumers). Zowe, like Mac or Windows, comes with a set of APIs and OS capabilities that applications build on and also includes some applications out of the box. Zowe offers modern interfaces to interact with z/OS and allows you to work with z/OS in a way that is similar to what you experience on cloud platforms today. You can use these interfaces as delivered or through plug-ins and extensions that are created by clients or third-party vendors.", "license": "EPL-2.0", "homepage": "https://zowe.org", @@ -12,59 +12,59 @@ }, "binaryDependencies": { "org.zowe.zlux.zlux-core": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "zlux-core-1.28.7-20240530.151858.pax" + "artifact": "zlux-core-1.28.8-20241002.140042.pax" }, "org.zowe.zlux.zss-auth": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "zss-auth-1.28.7-20240530.151032.pax" + "artifact": "zss-auth-1.28.8-20241002.144814.pax" }, "org.zowe.zlux.sample-angular-app": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "sample-angular-app-1.28.7-20240530.151138.pax" + "artifact": "sample-angular-app-1.28.8-20241002.144124.pax" }, "org.zowe.zlux.sample-iframe-app": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "sample-iframe-app-1.28.7-20240530.151016.pax" + "artifact": "sample-iframe-app-1.28.8-20241002.143946.pax" }, "org.zowe.zlux.sample-react-app": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "sample-react-app-1.28.7-20240530.151124.pax" + "artifact": "sample-react-app-1.28.8-20241002.144103.pax" }, "org.zowe.zlux.tn3270-ng2": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "tn3270-ng2-1.28.7-20240530.014242.pax" + "artifact": "tn3270-ng2-1.28.8-20241002.144244.pax" }, "org.zowe.zlux.vt-ng2": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "vt-ng2-1.28.7-20240530.151040.pax" + "artifact": "vt-ng2-1.28.8-20241002.144325.pax" }, "org.zowe.zlux.zlux-editor": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "zlux-editor-1.28.7-20240530.151320.pax" + "artifact": "zlux-editor-1.28.8-20241002.144637.pax" }, "org.zowe.zlux.zlux-workflow": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "zlux-workflow-1.28.7-20240530.151205.pax" + "artifact": "zlux-workflow-1.28.8-20241002.144749.pax" }, "org.zowe.zlux.zosmf-auth": { - "version": "1.28.7-V1.X-RC", + "version": "1.28.8-V1.X-RC", "repository": "libs-snapshot-local", - "artifact": "zosmf-auth-1.28.7-20240530.154904.pax" + "artifact": "zosmf-auth-1.28.8-20241002.144524.pax" }, "org.zowe.zss": { - "version": "1.28.7-RC", + "version": "1.28.8-RC", "repository": "libs-snapshot-local", - "artifact": "zss-1.28.7-rc-1142-20240529170519.pax" + "artifact": "zss-1.28.8-rc-1219-20241002135211.pax" }, "org.zowe.explorer.jobs.jobs-api-package": { "version": "1.0.24", @@ -93,27 +93,27 @@ "artifact": "*.pax" }, "org.zowe.apiml.sdk.api-catalog-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "api-catalog*.zip" }, "org.zowe.apiml.sdk.discovery-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "discovery*.zip" }, "org.zowe.apiml.sdk.gateway-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "gateway*.zip" }, "org.zowe.apiml.sdk.caching-service-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "caching-service*.zip" }, "org.zowe.apiml.sdk.metrics-service-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "metrics-service*.zip" }, "org.zowe.apiml.sdk.apiml-common-lib-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "apiml-common-lib-*.zip" }, "org.zowe.apiml.sdk.common-java-lib-package": { @@ -122,7 +122,7 @@ "exclusions": ["*PR*.zip"] }, "org.zowe.apiml.sdk.apiml-sample-extension-package": { - "version": "1.28.26", + "version": "1.28.27", "artifact": "apiml-sample-extension-*.zip" }, "org.zowe.launcher": { @@ -140,12 +140,12 @@ "version": "~0.0.8-SNAPSHOT" }, "org.zowe.licenses": { - "version": "1.28.7", + "version": "1.28.8", "artifact": "zowe_licenses_full.zip" } }, "sourceDependencies": [ - { + { "componentGroup": "Zowe API Mediation Layer", "entries": [{ "repository": "api-layer", @@ -163,12 +163,12 @@ "componentGroup": "Zowe Application Framework", "entries": [{ "repository": "zlux-app-manager", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zlux-app-server", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { @@ -183,17 +183,17 @@ }, { "repository": "zlux-platform", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zlux-server-framework", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zlux-shared", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { @@ -203,17 +203,17 @@ }, { "repository": "zlux-build", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zss", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zowe-common-c", - "tag": "zss-v1.28.7-RC1", + "tag": "zss-v1.28.8-RC1", "destinations": ["Zowe PAX"] } ] @@ -221,7 +221,7 @@ "componentGroup": "Zowe CLI", "entries": [{ "repository": "zowe-cli", - "tag": "v6.40.28", + "tag": "v6.40.32", "destinations": ["Zowe CLI Package"] }] }, { @@ -235,7 +235,7 @@ "componentGroup": "IBM® Db2® Plug-in for Zowe CLI", "entries": [{ "repository": "zowe-cli-db2-plugin", - "tag": "v4.1.13", + "tag": "v4.1.15", "destinations": ["Zowe CLI Package"] }] }, { @@ -333,11 +333,11 @@ "componentGroup": "Zowe Application Framework Authentication Handlers", "entries": [{ "repository": "zss-auth", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }, { "repository": "zosmf-auth", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -345,14 +345,14 @@ "componentGroup": "Zowe Desktop TN3270 Emulator Plug-in", "entries": [{ "repository": "tn3270-ng2", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, { "componentGroup": "Zowe Desktop Sample Angular Application", "entries": [{ "repository": "sample-angular-app", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -360,7 +360,7 @@ "componentGroup": "Zowe Desktop Sample iFrame Application", "entries": [{ "repository": "sample-iframe-app", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -368,7 +368,7 @@ "componentGroup": "Zowe Desktop Sample React Application", "entries": [{ "repository": "sample-react-app", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -376,7 +376,7 @@ "componentGroup": "Zowe Desktop VT Emulator Plugin-in", "entries": [{ "repository": "vt-ng2", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -384,7 +384,7 @@ "componentGroup": "Zowe Desktop Editor Plugin-in", "entries": [{ "repository": "zlux-editor", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -392,7 +392,7 @@ "componentGroup": "Zowe Desktop Workflows Plugin-in", "entries": [{ "repository": "zlux-workflow", - "tag": "v1.28.7-RC1", + "tag": "v1.28.8-RC1", "destinations": ["Zowe PAX"] }] }, @@ -438,28 +438,28 @@ "api-catalog": { "registry": "zowe-docker-release.jfrog.io", "name": "ompzowe/api-catalog-services", - "tag" : "1.28.26-ubuntu" + "tag" : "1.28.27-ubuntu" }, "caching": { "registry": "zowe-docker-release.jfrog.io", "name": "ompzowe/caching-service", - "tag" : "1.28.26-ubuntu" + "tag" : "1.28.27-ubuntu" }, "discovery": { "kind": "statefulset", "registry": "zowe-docker-release.jfrog.io", "name": "ompzowe/discovery-service", - "tag" : "1.28.26-ubuntu" + "tag" : "1.28.27-ubuntu" }, "gateway": { "registry": "zowe-docker-release.jfrog.io", "name": "ompzowe/gateway-service", - "tag" : "1.28.26-ubuntu" + "tag" : "1.28.27-ubuntu" }, "app-server": { "registry": "zowe-docker-release.jfrog.io", "name": "ompzowe/app-server", - "tag" : "1.28.7-ubuntu" + "tag" : "1.28.8-ubuntu" }, "explorer-ip": { "kind": "job", diff --git a/playbooks/host_vars/tvt4188.yml b/playbooks/host_vars/tvt4188.yml index ce58c19764..d158b19685 100644 --- a/playbooks/host_vars/tvt4188.yml +++ b/playbooks/host_vars/tvt4188.yml @@ -1,5 +1,5 @@ --- -ansible_ssh_host: tvt4188.svl.ibm.com +ansible_ssh_host: tvt4188.pok.stglabs.ibm.com ansible_user: ansible_password: @@ -16,7 +16,7 @@ zowe_smpe_volser: T41882 # caching service volume zowe_caching_vsam_volume: T41882 -zowe_external_ip_address: 9.30.241.209 +zowe_external_ip_address: 9.47.90.163 zowe_zlux_terminal_telnet_port: 992 zowe_zlux_terminal_telnet_security_type: tls zowe_apiml_security_x509_enabled: true diff --git a/playbooks/roles/ptf/tasks/main.yml b/playbooks/roles/ptf/tasks/main.yml index e3d9c45d6f..f63c6c241a 100644 --- a/playbooks/roles/ptf/tasks/main.yml +++ b/playbooks/roles/ptf/tasks/main.yml @@ -140,12 +140,12 @@ mode: 0700 delegate_to: localhost -#- import_role: -# name: zos -# tasks_from: upload_and_run_script -# vars: -# upload_and_run_script_filename: install-SMPE-SYSMOD.sh -# upload_and_run_script_parameters: "\"{{ zowe_smpe_hlq_dsn }}\" \"{{ zowe_smpe_hlq_csi }}\" \"{{ (zowe_smpe_dir_prefix is regex(\"/$\")) | ternary(zowe_smpe_dir_prefix, zowe_smpe_dir_prefix + \"/\") }}\" \"{{ work_dir_remote }}\" \"{{ zowe_smpe_fmid }}\" \"{{ zowe_smpe_ptf }}\" \"{{ zowe_smpe_ptf_2 }}\" \"{{ zowe_smpe_volser }}\" install" +- import_role: + name: zos + tasks_from: upload_and_run_script + vars: + upload_and_run_script_filename: install-SMPE-SYSMOD.sh + upload_and_run_script_parameters: "\"{{ zowe_smpe_hlq_dsn }}\" \"{{ zowe_smpe_hlq_csi }}\" \"{{ (zowe_smpe_dir_prefix is regex(\"/$\")) | ternary(zowe_smpe_dir_prefix, zowe_smpe_dir_prefix + \"/\") }}\" \"{{ work_dir_remote }}\" \"{{ zowe_smpe_fmid }}\" \"{{ zowe_smpe_ptf }}\" \"{{ zowe_smpe_ptf_2 }}\" \"{{ zowe_smpe_volser }}\" install" - name: Check if the first PTF is installed properly block: diff --git a/smpe/bld/service/promoted-apar.txt b/smpe/bld/service/promoted-apar.txt index f44e61540d..db2d67dc9d 100644 --- a/smpe/bld/service/promoted-apar.txt +++ b/smpe/bld/service/promoted-apar.txt @@ -1,3 +1,6 @@ +IO29436 +IO29437 +IO29438 IO29352 IO29353 IO29354 diff --git a/smpe/bld/service/promoted-close.txt b/smpe/bld/service/promoted-close.txt index 538df22a08..4af4ab3737 100644 --- a/smpe/bld/service/promoted-close.txt +++ b/smpe/bld/service/promoted-close.txt @@ -1,3 +1,48 @@ + IO29436 - + PROBLEM SUMMARY: + **************************************************************** + * USERS AFFECTED: All Zowe users * + **************************************************************** + * PROBLEM DESCRIPTION: Update Zowe FMID AZWE001 to match the * + * community release * + **************************************************************** + * RECOMMENDATION: Apply provided service * + **************************************************************** + The Zowe community version was updated to 1.28.7. + This PTF provides the community changes in SMP/E format. + Follow this link for more details on the community changes: + https://docs.zowe.org/stable/ + + IO29437 - + PROBLEM SUMMARY: + **************************************************************** + * USERS AFFECTED: All Zowe users * + **************************************************************** + * PROBLEM DESCRIPTION: Update Zowe FMID AZWE001 to match the * + * community release * + **************************************************************** + * RECOMMENDATION: Apply provided service * + **************************************************************** + The Zowe community version was updated to 1.28.7. + This PTF provides the community changes in SMP/E format. + Follow this link for more details on the community changes: + https://docs.zowe.org/stable/ + + IO29438 - + PROBLEM SUMMARY: + **************************************************************** + * USERS AFFECTED: All Zowe users * + **************************************************************** + * PROBLEM DESCRIPTION: Update Zowe FMID AZWE001 to match the * + * community release * + **************************************************************** + * RECOMMENDATION: Apply provided service * + **************************************************************** + The Zowe community version was updated to 1.28.7. + This PTF provides the community changes in SMP/E format. + Follow this link for more details on the community changes: + https://docs.zowe.org/stable/ + IO29352 - PROBLEM SUMMARY: **************************************************************** diff --git a/smpe/bld/service/promoted-hold.txt b/smpe/bld/service/promoted-hold.txt index 58b5b8e291..073de9a50c 100644 --- a/smpe/bld/service/promoted-hold.txt +++ b/smpe/bld/service/promoted-hold.txt @@ -1,3 +1,41 @@ +++HOLD(UO90063) SYSTEM FMID(AZWE001) REASON(ACTION) DATE(24162) + COMMENT( + **************************************************************** + * Affected function: Zowe configuration * + **************************************************************** + * Description: redo configuration * + **************************************************************** + * Timing: post-APPLY * + **************************************************************** + * Part: instance directory * + **************************************************************** + New changes are made to instance directory bin folder. + Run /bin/zowe-configure-instance.sh -c + again. + + **************************************************************** + * Affected function: Zowe servers * + **************************************************************** + * Description: stop servers * + **************************************************************** + * Timing: pre-APPLY * + **************************************************************** + * Part: ZWESVSTC & ZWESISTC * + **************************************************************** + Stop the Zowe servers before installing this update. + + **************************************************************** + * Affected function: Zowe servers * + **************************************************************** + * Description: start servers * + **************************************************************** + * Timing: post-APPLY * + **************************************************************** + * Part: ZWESVSTC or ZWESLSTC, and ZWESISTC * + **************************************************************** + Start the Zowe servers after installing this update. + + ). ++HOLD(UO90051) SYSTEM FMID(AZWE001) REASON(ACTION) DATE(24102) COMMENT( **************************************************************** diff --git a/smpe/bld/service/promoted-ptf.txt b/smpe/bld/service/promoted-ptf.txt index 898baf8988..1ab84dc057 100644 --- a/smpe/bld/service/promoted-ptf.txt +++ b/smpe/bld/service/promoted-ptf.txt @@ -1,3 +1,5 @@ +UO90063 +UO90064 UO90051 UO90052 UO90038 diff --git a/smpe/bld/service/ptf-bucket.txt b/smpe/bld/service/ptf-bucket.txt index 138226fa48..ab2857cf68 100644 --- a/smpe/bld/service/ptf-bucket.txt +++ b/smpe/bld/service/ptf-bucket.txt @@ -28,4 +28,6 @@ #UO90028 UO90029 - IO29223 IO29224 IO29226 - Fri Jun 30 19:01:43 UTC 2023 #UO90038 UO90039 - IO29305 IO29306 IO29307 - Wed Oct 11 20:17:16 UTC 2023 #UO90051 UO90052 - IO29352 IO29353 IO29354 - Thu Apr 11 21:48:44 UTC 2024 -UO90063 UO90064 - IO29436 IO29437 IO29438 \ No newline at end of file +#UO90063 UO90064 - IO29436 IO29437 IO29438 - Mon Jun 10 20:42:08 UTC 2024 +UO90067 UO90068 - IO29442 IO29443 IO29444 +UO90069 UO90070 - IO29445 IO29446 IO29447 \ No newline at end of file