Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
79e7dd8
Update to 3.4.0 (#4486)
struga0258 Sep 11, 2025
558208f
v3: Add AT-TLS automated test case (#4248)
MarkAckert Sep 18, 2025
1066442
`copy_to_data_set` bug fix and related changes (#4476)
Martin-Zeithaml Sep 19, 2025
035f1d0
`defaults.yaml` - no need for `files-api` and `jobs-api` in V3 (#4481)
Martin-Zeithaml Sep 19, 2025
a874eac
Update defaults.yaml (#4503)
Martin-Zeithaml Sep 22, 2025
d38045f
Delete unused pax file (#4505)
Martin-Zeithaml Sep 23, 2025
2f0b239
Remove ancient 'technology preview' feature desc. (#4511)
Martin-Zeithaml Sep 24, 2025
156624d
update ptfs for 3.3.0 release (#4515)
MarkAckert Sep 25, 2025
42824ba
convert when conditionals to bools explicitly (#4518)
MarkAckert Sep 26, 2025
bfb2c45
fix: set additional at-tls properties for z/OSMF (#4512)
pablocarle Sep 29, 2025
550e85e
Fix --update-config's bug when zowe.yaml is a soft-link (#4492)
ChongZhou-Broadcom Sep 29, 2025
c8d974b
add new workflow - build zwe (#4531)
MarkAckert Sep 30, 2025
154514c
add PTF PE process (#4513)
OnnoVdT Sep 30, 2025
2aa8981
Perform cleanup of old apiml static def files from workspace (#4526)
1000TurquoisePogs Oct 1, 2025
80207d9
Backport 3.3 RC fixes to staging (#4483)
MarkAckert Oct 2, 2025
417c771
fix test error - configfmid playbook should not include newer zowe.ya…
MarkAckert Oct 3, 2025
b5799ac
Detect SDSF and process it in `operatorCommand` (#4389)
Martin-Zeithaml Oct 7, 2025
bab9b37
Replace ficticious domain names with example.com (#4523)
jt-nti Oct 9, 2025
a6b2044
`ZWEGEN00`: check input and enable continuation (#4459)
Martin-Zeithaml Oct 13, 2025
1fda6a4
Check VSAM via `tso_is_data_set_exists` (#4543)
Martin-Zeithaml Oct 13, 2025
d749e45
JCL as default option in `example-zowe.yaml` (#4534)
Martin-Zeithaml Oct 14, 2025
c8d4240
Patch PTF Playbooks (again) - v3 port (#4550)
MarkAckert Oct 15, 2025
2de92bc
Promote PTF after release v3.3.1 (#4557)
zowe-robot Oct 27, 2025
ca95d61
enable apiml by default (#4565)
achmelo Nov 6, 2025
1b3e420
Change zosmf authentication scheme based on apiml auth provider (#4563)
js665999 Nov 6, 2025
a2bd6ba
set scheme if already exists in env (#4571)
js665999 Nov 7, 2025
7a6344f
Node Removal Tasks - v3.x (#4307)
MarkAckert Nov 10, 2025
28c5587
Add "zwe validate port bind" and "zwe validate config" (#4447)
1000TurquoisePogs Nov 11, 2025
1b61302
Change default authentication provider to SAF (#4573)
arxioly Nov 12, 2025
ce7a160
Check app-server (#4575)
Martin-Zeithaml Nov 12, 2025
b9f85db
PSWI - Move zowe.yaml from `runtimeDirectory` to `workspaceDirectory`…
MarkAckert Nov 12, 2025
32a4dbf
Update CHANGELOG.md (#4580)
Martin-Zeithaml Nov 13, 2025
2f5d87d
cleanup small bugs in validate port bind and `generateInstanceEnvFrom…
MarkAckert Nov 18, 2025
93c94a8
updates curl to 8.17.0 (#4589)
MarkAckert Nov 19, 2025
05c40b6
add missing label to export command (#4590)
MarkAckert Nov 21, 2025
a9f2211
Merge branch 'v3.x/staging' into user/markackert/staging-to-rc-3.4-rc2
MarkAckert Nov 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ All notable changes to the Zowe Installer will be documented in this file.

## `3.3.1`

- Bugfix: z/OSMF static definition is missing scheme information, this is needed for AT-TLS hybrid scenarios where connections to z/OSMF do not follow AT-TLS rules [#4512](https://github.com/zowe/zowe-install-packaging/pull/4512)
- Bugfix: z/OSMF static definition is missing scheme information, this is needed for AT-TLS hybrid scenarios where connections TO z/OSMF do not follow AT-TLS rules [#4512](https://github.com/zowe/zowe-install-packaging/pull/4512)

## `3.3.0`

Expand Down
2 changes: 1 addition & 1 deletion bin/libs/certificate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ keyring_export_to_pkcs12() {

# export private key
print_debug "- Export private key of \"${label}\" in PEM format"
result=$(keyring_util EXPORT "${keyring_owner}" "${keyring_name}" "${label}" -k -f "${uss_temp_target}.p12" -p "${keystore_password}")
result=$(keyring_util EXPORT "${keyring_owner}" "${keyring_name}" -l "${label}" -k -f "${uss_temp_target}.p12" -p "${keystore_password}")
if [ $? -ne 0 ]; then
return 1
fi
Expand Down
2 changes: 1 addition & 1 deletion bin/libs/zosmf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function validateZosmfHostAndPort(zosmfHost: string, zosmfPort: number, s

let backupJobname = std.getenv('_BPX_JOBNAME');
std.setenv('_BPX_JOBNAME', jobname);
const execReturn = shell.execOutSync(`${std.getenv('ZWE_zowe_runtimeDirectory')}/bin/utils/curl`, `${scheme}://${zosmfHost}:${zosmfPort}/zosmf/info`, `-k`, `-H`, `X-CSRF-ZOSMF-HEADER: true`, `-w`, `%{http_code}`, `-s`, `-o`, `/dev/null`);
const execReturn = shell.execOutSync(`${std.getenv('ZWE_zowe_runtimeDirectory')}/bin/utils/curl`, `${scheme}://${zosmfHost}:${zosmfPort}/zosmf/info`, `-k`, `-H`, `X-CSRF-ZOSMF-HEADER: true`, `-w`, `%{http_code}`, `--max-time`, `10`, `-s`, `-o`, `/dev/null`);
//restore jobname
if (backupJobname) {
std.setenv('_BPX_JOBNAME', backupJobname);
Expand Down
2 changes: 1 addition & 1 deletion files/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ zowe:
# Individual startup checks will override the default behavior
ports: "exit"
# z/OSMF startup check - defaults to "warn"
zosmf: "warn"
zosmf: "exit"

# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# How we want to verify SSL certificates of services. Valid values are:
Expand Down
2 changes: 1 addition & 1 deletion manifest.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
"artifact": "*.pax"
},
"org.zopencommunity.curl": {
"version": "8.13.0",
"version": "8.17.0",
"artifact": "*.pax.Z"
},
"org.zowe.utility-tools": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@
},
"zosmf": {
"type": "string",
"default": "warn",
"default": "exit",
"description": "Checks z/OSMF to see if it is running and meet's Zowe's requirements",
"enum": ["exit", "warn", "disabled"]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ZWE_zowe_launchScript_logLevel=info
ZWE_zowe_launchScript_onComponentConfigureFail=warn
ZWE_zowe_launchScript_startupChecks_default=exit
ZWE_zowe_launchScript_startupChecks_ports=disabled
ZWE_zowe_launchScript_startupChecks_zosmf=warn
ZWE_zowe_launchScript_startupChecks_zosmf=exit
ZWE_zowe_logDirectory=/test/dir/logs
ZWE_zowe_network_client_tls_attls=false
ZWE_zowe_network_proxyType=https
Expand Down Expand Up @@ -214,7 +214,7 @@ ZWE_zowe_launchScript_logLevel=info
ZWE_zowe_launchScript_onComponentConfigureFail=warn
ZWE_zowe_launchScript_startupChecks_default=exit
ZWE_zowe_launchScript_startupChecks_ports=disabled
ZWE_zowe_launchScript_startupChecks_zosmf=warn
ZWE_zowe_launchScript_startupChecks_zosmf=exit
ZWE_zowe_logDirectory=/test/dir/logs
ZWE_zowe_network_client_tls_attls=false
ZWE_zowe_network_proxyType=https
Expand Down Expand Up @@ -351,7 +351,7 @@ ZWE_zowe_launchScript_logLevel=info
ZWE_zowe_launchScript_onComponentConfigureFail=warn
ZWE_zowe_launchScript_startupChecks_default=exit
ZWE_zowe_launchScript_startupChecks_ports=disabled
ZWE_zowe_launchScript_startupChecks_zosmf=warn
ZWE_zowe_launchScript_startupChecks_zosmf=exit
ZWE_zowe_logDirectory=/test/dir/logs
ZWE_zowe_network_client_tls_attls=false
ZWE_zowe_network_proxyType=https
Expand Down Expand Up @@ -472,7 +472,7 @@ ZWE_zowe_launchScript_logLevel=info
ZWE_zowe_launchScript_onComponentConfigureFail=warn
ZWE_zowe_launchScript_startupChecks_default=disabled
ZWE_zowe_launchScript_startupChecks_ports=disabled
ZWE_zowe_launchScript_startupChecks_zosmf=warn
ZWE_zowe_launchScript_startupChecks_zosmf=exit
ZWE_zowe_network_proxyType=https
ZWE_zowe_rbacProfileIdentifier=1
ZWE_zowe_runtimeDirectory=/test/dir
Expand Down Expand Up @@ -584,7 +584,7 @@ ZWE_zowe_launchScript_logLevel=info
ZWE_zowe_launchScript_onComponentConfigureFail=warn
ZWE_zowe_launchScript_startupChecks_default=exit
ZWE_zowe_launchScript_startupChecks_ports=disabled
ZWE_zowe_launchScript_startupChecks_zosmf=warn
ZWE_zowe_launchScript_startupChecks_zosmf=exit
ZWE_zowe_logDirectory=/test/dir/logs
ZWE_zowe_network_client_tls_attls=false
ZWE_zowe_network_proxyType=https
Expand Down
2 changes: 1 addition & 1 deletion tests/zwe-remote-integration/src/config/ZoweYamlType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ const zoweSchema = zoweYamlSchema as {
};
zosmf: {
type: 'string';
default: 'warn';
default: 'exit';
description: "Checks z/OSMF to see if it is running and meet's Zowe's requirements";
enum: ['exit', 'warn', 'disabled'];
};
Expand Down
Loading