This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
from 973881f808 Fix Gump issue - Gump tests with OpenSSL master which is now 3.4.x new bd23ba3b79 Switch to the Base64 encoder and decoder provided by the JRE. new 0e55afa1fc Remove the internal fork of Commons Codec. 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: MERGE.txt | 9 - .../authenticator/SpnegoAuthenticator.java | 9 +- .../realm/MessageDigestCredentialHandler.java | 6 +- .../apache/coyote/http2/Http2UpgradeHandler.java | 4 +- .../apache/tomcat/util/codec/binary/Base64.java | 661 --------------------- .../tomcat/util/codec/binary/BaseNCodec.java | 478 --------------- .../util/codec/binary/LocalStrings.properties | 21 - .../util/codec/binary/LocalStrings_fr.properties | 20 - .../util/codec/binary/LocalStrings_ja.properties | 20 - .../util/codec/binary/LocalStrings_ko.properties | 19 - .../codec/binary/LocalStrings_zh_CN.properties | 19 - .../tomcat/util/codec/binary/StringUtils.java | 116 ---- .../tomcat/util/codec/binary/package-info.java | 21 - .../http/fileupload/util/mime/MimeUtility.java | 5 +- .../tomcat/util/http/parser/StructuredField.java | 4 +- java/org/apache/tomcat/util/net/jsse/PEMFile.java | 7 +- .../tomcat/websocket/WsWebSocketContainer.java | 4 +- .../tomcat/websocket/server/UpgradeUtil.java | 28 +- .../authenticator/TestAuthInfoResponseHeaders.java | 4 +- .../TestNonLoginAndBasicAuthenticator.java | 4 +- .../TestSSOnonLoginAndBasicAuthenticator.java | 4 +- .../core/TestPropertiesRoleMappingListener.java | 4 +- .../filters/TestRestCsrfPreventionFilter2.java | 4 +- test/org/apache/coyote/http2/Http2TestBase.java | 4 +- webapps/docs/changelog.xml | 9 + 25 files changed, 48 insertions(+), 1436 deletions(-) delete mode 100644 java/org/apache/tomcat/util/codec/binary/Base64.java delete mode 100644 java/org/apache/tomcat/util/codec/binary/BaseNCodec.java delete mode 100644 java/org/apache/tomcat/util/codec/binary/LocalStrings.properties delete mode 100644 java/org/apache/tomcat/util/codec/binary/LocalStrings_fr.properties delete mode 100644 java/org/apache/tomcat/util/codec/binary/LocalStrings_ja.properties delete mode 100644 java/org/apache/tomcat/util/codec/binary/LocalStrings_ko.properties delete mode 100644 java/org/apache/tomcat/util/codec/binary/LocalStrings_zh_CN.properties delete mode 100644 java/org/apache/tomcat/util/codec/binary/StringUtils.java delete mode 100644 java/org/apache/tomcat/util/codec/binary/package-info.java --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org