From 3deddc628fd1289e90e236de64ce69854a436940 Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Tue, 11 Nov 2025 14:26:11 +0000 Subject: [PATCH 1/6] Add separate page for compatibility matrix in zowe.org Signed-Off-By: Jakub Balhar --- _layouts/default.html | 3 + compatibility.md | 143 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 compatibility.md diff --git a/_layouts/default.html b/_layouts/default.html index 04c34b63..c69ed5b2 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -62,6 +62,9 @@ + diff --git a/compatibility.md b/compatibility.md new file mode 100644 index 00000000..ef0fac30 --- /dev/null +++ b/compatibility.md @@ -0,0 +1,143 @@ +--- +--- + + + + + + +
+

Compatibility Matrix

+

Validate whether your z/OS environment meet the necessary pre-requisites to operate Zowe server side

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ z/OS +
+ 2.5 + >! 2.13Automated Testing by Community
+ 3.1 + >! 2.18.2Tested by Community Member
+ 3.2 + >!= 3.3Tested by Community Member
+ Java +
+ 8 + >! 2.0 , <! 3.0Automated Testing by Community
+ 11 + >! 2.0 , <! 3.0Automated Testing by Community
+ 17 + >! 2.15Automated Testing by Community
+ 21 + >! 3.3Tested by Community Member
+ Node.js +
+ 20 + >! 2.13Automated Testing by Community
+ 22 + >! 3.0Automated Testing by Community
+ 24 + >! 3.3Tested by Community Member
+
From 498520b1d7c08bdf0aeeac3629a70856a8f22082 Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Tue, 14 Apr 2026 13:54:49 +0000 Subject: [PATCH 2/6] Improve compatibility matrix table styling and structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix nav highlight selector from #menu-download to #menu-compatibility - Add Bootstrap table classes and proper thead/tbody structure - Add column headers (Version, Zowe Version Constraint, Testing Status) - Style section header rows (z/OS, Java, Node.js) with Zowe brand blue - Add colored badges for testing status (green=automated, teal=community) - Fix malformed version constraint HTML entities (>! → >=) - Wrap table in overflow-x: auto for mobile responsiveness Co-Authored-By: Claude Sonnet 4.6 --- compatibility.md | 228 ++++++++++++++++++++++++----------------------- 1 file changed, 118 insertions(+), 110 deletions(-) diff --git a/compatibility.md b/compatibility.md index ef0fac30..2519fa21 100644 --- a/compatibility.md +++ b/compatibility.md @@ -5,139 +5,147 @@

Compatibility Matrix

-

Validate whether your z/OS environment meet the necessary pre-requisites to operate Zowe server side

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- z/OS -
- 2.5 - >! 2.13Automated Testing by Community
- 3.1 - >! 2.18.2Tested by Community Member
- 3.2 - >!= 3.3Tested by Community Member
- Java -
- 8 - >! 2.0 , <! 3.0Automated Testing by Community
- 11 - >! 2.0 , <! 3.0Automated Testing by Community
- 17 - >! 2.15Automated Testing by Community
- 21 - >! 3.3Tested by Community Member
- Node.js -
- 20 - >! 2.13Automated Testing by Community
- 22 - >! 3.0Automated Testing by Community
- 24 - >! 3.3Tested by Community Member
+

Validate whether your z/OS environment meets the necessary prerequisites to operate Zowe server side.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VersionZowe Version ConstraintTesting Status
z/OS
2.5>= 2.13Automated Testing by Community
3.1>= 2.18.2Tested by Community Member
3.2>= 3.3Tested by Community Member
Java
8>= 2.0, < 3.0Automated Testing by Community
11>= 2.0, < 3.0Automated Testing by Community
17>= 2.15Automated Testing by Community
21>= 3.3Tested by Community Member
Node.js
20>= 2.13Automated Testing by Community
22>= 3.0Automated Testing by Community
24>= 3.3Tested by Community Member
+
From f76e016713bfc5f9e97425d22dd89a0df16a926d Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Fri, 17 Apr 2026 11:09:44 +0000 Subject: [PATCH 3/6] Update textation and add details about Java 2.18.5 Signed-Off-By: Jakub Balhar --- compatibility.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/compatibility.md b/compatibility.md index 2519fa21..a09c6d0a 100644 --- a/compatibility.md +++ b/compatibility.md @@ -70,18 +70,29 @@ font-weight: 600; white-space: nowrap; } + + .badge-nosupport { + display: inline-block; + background-color: red; + color: white; + padding: 0.2em 0.55em; + border-radius: 0.25rem; + font-size: 0.82em; + font-weight: 600; + white-space: nowrap; + }

Compatibility Matrix

-

Validate whether your z/OS environment meets the necessary prerequisites to operate Zowe server side.

+

Validate whether your z/OS environment meets the necessary prerequisites to operate Zowe server side. If you are looking for a version that used to be here, but that is not here anymore, it is possible that the version of the pre-req is not supported and as such Zowe does not continue supporting it either.

- + @@ -124,9 +135,14 @@ - + + + + + + From 7fd985de2cace31a245cc444daa220a7bb71662e Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Fri, 17 Apr 2026 11:37:08 +0000 Subject: [PATCH 4/6] Add the possibility to provide feedback Signed-Off-By: Jakub Balhar --- compatibility.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compatibility.md b/compatibility.md index a09c6d0a..a8eb0bc0 100644 --- a/compatibility.md +++ b/compatibility.md @@ -85,7 +85,7 @@

Compatibility Matrix

-

Validate whether your z/OS environment meets the necessary prerequisites to operate Zowe server side. If you are looking for a version that used to be here, but that is not here anymore, it is possible that the version of the pre-req is not supported and as such Zowe does not continue supporting it either.

+

Validate whether your z/OS environment meets the necessary prerequisites to operate Zowe server side. In the case of z/OS, Java, Node.js we had older versions that we used to support and no longer support.

VersionZowe Version ConstraintZowe Version Compatibility Testing Status
21>= 3.3>= 3.3 >= 2.18.5 Tested by Community Member
25No Support Yet
Node.js
@@ -164,4 +164,7 @@
+ +

Looking for something else?

+

Let us know here by opening new issue.

From a7b0e8aadca3dc15ee645247c6bc9cfcae6f65f3 Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Fri, 17 Apr 2026 13:02:47 +0000 Subject: [PATCH 5/6] Update with latest changes from Onboarding call Signed-Off-By: Jakub Balhar --- compatibility.md | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/compatibility.md b/compatibility.md index a8eb0bc0..d00578f3 100644 --- a/compatibility.md +++ b/compatibility.md @@ -81,6 +81,12 @@ font-weight: 600; white-space: nowrap; } + + .compat-nosupport { + color: red; + font-weight: 700; + font-size: 1.1em; + }
@@ -92,72 +98,84 @@ Version - Zowe Version Compatibility + Zowe V2 Compatibility + Zowe V3 Compatibility Testing Status - z/OS + z/OS 2.5 >= 2.13 + All versions Automated Testing by Community 3.1 >= 2.18.2 + All versions Tested by Community Member 3.2 + >= 2.18.4 >= 3.3 Tested by Community Member - Java + Java 8 - >= 2.0, < 3.0 + >= 2.0 + Automated Testing by Community 11 - >= 2.0, < 3.0 + >= 2.0 + Automated Testing by Community 17 >= 2.15 + All versions Automated Testing by Community 21 - >= 3.3 >= 2.18.5 + >= 2.18.5 + >= 3.3 Tested by Community Member 25 - + + No Support Yet - Node.js + Node.js 20 >= 2.13 + All versions Automated Testing by Community 22 + >= 3.0 Automated Testing by Community 24 + >= 3.3 Tested by Community Member From 54b5f38ffc6c64797460a2a0dac3c7c16e5e1b30 Mon Sep 17 00:00:00 2001 From: Jakub Balhar Date: Fri, 17 Apr 2026 13:05:30 +0000 Subject: [PATCH 6/6] Use All versions where applicable Signed-Off-By: Jakub Balhar --- compatibility.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compatibility.md b/compatibility.md index d00578f3..76fbe42e 100644 --- a/compatibility.md +++ b/compatibility.md @@ -130,13 +130,13 @@ 8 - >= 2.0 + All Versions Automated Testing by Community 11 - >= 2.0 + All Versions Automated Testing by Community