You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/06/02 11:11:08 UTC

[tomcat] branch 10.1.x updated (f25270702d -> c0d6762dec)

This is an automated email from the ASF dual-hosted git repository.

markt pushed a change to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


    from f25270702d Fix failing test
     new 859c44b7db Update Tomcat Native to 3.0.9
     new c0d6762dec Fix release build when running on Java 21

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 build.properties.default   | 8 ++++----
 build.xml                  | 4 +++-
 webapps/docs/changelog.xml | 4 ++++
 3 files changed, 11 insertions(+), 5 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 01/02: Update Tomcat Native to 3.0.9

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 859c44b7db83685102fb861258ec281cb60d9559
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Jun 2 11:31:47 2023 +0100

    Update Tomcat Native to 3.0.9
---
 build.properties.default   | 8 ++++----
 webapps/docs/changelog.xml | 4 ++++
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/build.properties.default b/build.properties.default
index b641014b85..e510d1ea33 100644
--- a/build.properties.default
+++ b/build.properties.default
@@ -157,14 +157,14 @@ jdt.loc.1=http://archive.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj
 jdt.loc.2=http://download.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj-${jdt.version}.jar
 
 # ----- Tomcat native library -----
-tomcat-native.version=2.0.3
-tomcat-native-openssl.version=3.0.8
+tomcat-native.version=2.0.4
+tomcat-native-openssl.version=3.0.9
 tomcat-native.src.checksum.enabled=true
 tomcat-native.src.checksum.algorithm=SHA-512
-tomcat-native.src.checksum.value=d80e6b76295bb253eaf6eab4d722f3ba2f683f33a96310838b4c44b99f0b47a49ed9c09bb53ed23698db057ce765e3fcbfcd4ac4b75d2bdbe691f916be3be339
+tomcat-native.src.checksum.value=276133e44ae9f9d3e853b66120937865c675eed6dd6b5b7d8a94ef741f037c0b3d99a6c065a1303c0ca42b65c109aef35b6bd370a2af0b7b2752eadf85b1d880
 tomcat-native.win.checksum.enabled=true
 tomcat-native.win.checksum.algorithm=SHA-512
-tomcat-native.win.checksum.value=851a944ce21c3e1a21ec0ab252b9512ebd9d6ff45cedf8d62e913458aad8a8c86c67d77aa3b91dfb24b854584f255201f5a494497132cbc91b8893f40814dc89
+tomcat-native.win.checksum.value=307d42bda3517fd549cfbfca3c62eb063379df707f763da9f1e27deeb5919e3b0414e581fb14e2a3c623325ada7f849a791ff56ea95e4e87b6670b58918a2d79
 tomcat-native.home=${base.path}/tomcat-native-${tomcat-native.version}
 tomcat-native.tar.gz=${tomcat-native.home}/tomcat-native.tar.gz
 tomcat-native.loc.1=${base-tomcat.loc.1}/tomcat-connectors/native/${tomcat-native.version}/source/tomcat-native-${tomcat-native.version}-src.tar.gz
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 0528ff9b6c..3cc020f52e 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -174,6 +174,10 @@
       <update>
         Update Checkstyle to 10.12.0. (markt)
       </update>
+      <update>
+        Update the packaged version of the Apache Tomcat Native Library to 2.0.4
+        to pick up the Windows binaries built with with OpenSSL 3.0.9. (markt)
+      </update>
     </changelog>
   </subsection>
 </section>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat] 02/02: Fix release build when running on Java 21

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit c0d6762dec22b7c5a3196ff2ba7f3bedaa22351c
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Jun 2 11:40:52 2023 +0100

    Fix release build when running on Java 21
---
 build.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 090cd601d8..98ac77e36d 100644
--- a/build.xml
+++ b/build.xml
@@ -1782,7 +1782,9 @@
 
     <!-- Generate the reflection less XReflectionIntrospectionUtils .java file -->
     <java classname="org.apache.tomcat.util.xreflection.ObjectReflectionPropertyInspector"
-          classpath="${xreflect.directory}/classes">
+          classpath="${xreflect.directory}/classes"
+          fork="true">
+      <jvmarg value="-Dsecurity.manager=allow"/>
       <arg value="${xreflect.directory}/sources"/>
     </java>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org