This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push: new 97db2a8033 Update OpenSSL version info - OpenSSl HEAD is now 3.6.x 97db2a8033 is described below commit 97db2a80333020f5edeb6c2b597fc22b8eb8a4c1 Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Mar 18 12:35:54 2025 +0000 Update OpenSSL version info - OpenSSl HEAD is now 3.6.x --- .../tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java index cfa62ec6bc..2c33f2be96 100644 --- a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java +++ b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java @@ -49,27 +49,23 @@ public class TesterOpenSSL { } catch (IOException e) { versionString = ""; } - if (versionString.startsWith("OpenSSL 3.5.")) { - // Note: Gump currently tests 11.x with OpenSSL HEAD which is current 3.4.x + if (versionString.startsWith("OpenSSL 3.6.")) { + VERSION = 30600; + } else if (versionString.startsWith("OpenSSL 3.5.")) { VERSION = 30500; } else if (versionString.startsWith("OpenSSL 3.4.")) { + // Note: Gump currently tests 11.x with OpenSSL 3.4.x VERSION = 30400; } else if (versionString.startsWith("OpenSSL 3.3.")) { VERSION = 30300; } else if (versionString.startsWith("OpenSSL 3.2.")) { VERSION = 30200; - } else if (versionString.startsWith("OpenSSL 3.1.")) { - VERSION = 30100; } else if (versionString.startsWith("OpenSSL 3.0.")) { VERSION = 30000; - } else if (versionString.startsWith("OpenSSL 1.1.1")) { - // LTS - // Supported until at least 2023-09-11 - // Note: Gump currently tests 9.x and earlier with OpenSSL 1.1.1[x] - VERSION = 10101; - // Note: Release branches 1.1.0 and earlier are no longer supported by - // the OpenSSL team so these tests don't support them either. } else { + // Note: 3.1.x is no longer supported by OpenSSL + // Note: Release branches 1.1.1 and earlier are no longer supported by + // the OpenSSL team so these tests don't support them either. VERSION = -1; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org