Package: apache-directory-server / 2.0.0~M26-5

Metadata

Package Version Patches format
apache-directory-server 2.0.0~M26-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
01 jar packaging.patch | (download)

all/pom.xml | 2 1 + 1 - 0 !
component-hub/pom.xml | 2 1 + 1 - 0 !
core-annotations/pom.xml | 2 1 + 1 - 0 !
core-api/pom.xml | 2 1 + 1 - 0 !
core-avl/pom.xml | 2 1 + 1 - 0 !
core-constants/pom.xml | 2 1 + 1 - 0 !
core-integ/pom.xml | 2 1 + 1 - 0 !
core-jndi/pom.xml | 2 1 + 1 - 0 !
core-shared/pom.xml | 2 1 + 1 - 0 !
core/pom.xml | 2 1 + 1 - 0 !
http-directory-bridge/pom.xml | 2 1 + 1 - 0 !
http-integration/pom.xml | 2 1 + 1 - 0 !
i18n/pom.xml | 2 1 + 1 - 0 !
interceptor-kerberos/pom.xml | 2 1 + 1 - 0 !
interceptors/admin/pom.xml | 2 1 + 1 - 0 !
interceptors/authn/pom.xml | 2 1 + 1 - 0 !
interceptors/authz/pom.xml | 2 1 + 1 - 0 !
interceptors/changelog/pom.xml | 2 1 + 1 - 0 !
interceptors/collective/pom.xml | 2 1 + 1 - 0 !
interceptors/event/pom.xml | 2 1 + 1 - 0 !
interceptors/exception/pom.xml | 2 1 + 1 - 0 !
interceptors/hash/pom.xml | 2 1 + 1 - 0 !
interceptors/journal/pom.xml | 2 1 + 1 - 0 !
interceptors/logger/pom.xml | 2 1 + 1 - 0 !
interceptors/normalization/pom.xml | 2 1 + 1 - 0 !
interceptors/number/pom.xml | 2 1 + 1 - 0 !
interceptors/operational/pom.xml | 2 1 + 1 - 0 !
interceptors/referral/pom.xml | 2 1 + 1 - 0 !
interceptors/schema/pom.xml | 2 1 + 1 - 0 !
interceptors/subtree/pom.xml | 2 1 + 1 - 0 !
interceptors/trigger/pom.xml | 2 1 + 1 - 0 !
jdbm-partition/pom.xml | 4 2 + 2 - 0 !
kerberos-codec/pom.xml | 2 1 + 1 - 0 !
ldif-partition/pom.xml | 2 1 + 1 - 0 !
mavibot-partition/pom.xml | 2 1 + 1 - 0 !
osgi/pom.xml | 2 1 + 1 - 0 !
protocol-dhcp/pom.xml | 2 1 + 1 - 0 !
protocol-dns/pom.xml | 2 1 + 1 - 0 !
protocol-kerberos/pom.xml | 2 1 + 1 - 0 !
protocol-ldap/pom.xml | 4 2 + 2 - 0 !
protocol-ntp/pom.xml | 2 1 + 1 - 0 !
protocol-shared/pom.xml | 2 1 + 1 - 0 !
server-annotations/pom.xml | 2 1 + 1 - 0 !
server-config/pom.xml | 2 1 + 1 - 0 !
server-integ/pom.xml | 2 1 + 1 - 0 !
server-jndi/pom.xml | 2 1 + 1 - 0 !
service-builder/pom.xml | 2 1 + 1 - 0 !
service-osgi/pom.xml | 2 1 + 1 - 0 !
test-framework/pom.xml | 2 1 + 1 - 0 !
xdbm-partition/pom.xml | 2 1 + 1 - 0 !
50 files changed, 52 insertions(+), 52 deletions(-)

 change the packaging type from bundle to jar
 (for some reason the resolution of the inter module dependencies doesn't work)
mina 2.2 update.patch | (download)

pom.xml | 4 3 + 1 - 0 !
protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapProtocolHandler.java | 1 1 + 0 - 0 !
protocol-ldap/src/main/java/org/apache/directory/server/ldap/handlers/extended/StartTlsFilter.java | 39 39 + 0 - 0 !
protocol-ldap/src/main/java/org/apache/directory/server/ldap/handlers/extended/StartTlsHandler.java | 12 3 + 9 - 0 !
protocol-ldap/src/main/java/org/apache/directory/server/ldap/handlers/sasl/external/certificate/ExternalSaslServer.java | 15 8 + 7 - 0 !
server-integ/src/test/java/org/apache/directory/server/ssl/KeyStoreIT.java | 4 1 + 3 - 0 !
6 files changed, 55 insertions(+), 20 deletions(-)

 [patch] migrated to mina 2.2.1


directory api compatibility.patch | (download)

core-api/src/main/java/org/apache/directory/server/core/api/LdapCoreSessionConnection.java | 5 5 + 0 - 0 !
1 file changed, 5 insertions(+)

 fixes the compatibility with the version of apache-directory-api in debian
do not use x509certinfo set.patch | (download)

core/src/main/java/org/apache/directory/server/core/security/CertificateUtil.java | 331 314 + 17 - 0 !
1 file changed, 314 insertions(+), 17 deletions(-)

 use reflection to access internal x509 api
 sun.security.x509 has breaking API changes between Java 17 and Java 21. 
 Use reflection to access internal API until .M27 release of Apache DS that
 switches to Bouncycastle API for certificate manipulation.