Howard Chu pushed to branch master at openldap / JDBC LDAP
Commits:
e8848f1d by Fredrik Roubert at 2022-05-02T13:40:01+00:00
ITS#9837 Don't throw exceptions when requesting empty integer fields.
LibreOffice Base expects to be able to call LdapResultSet.getLong() on
an empty Types.INTEGER field without any exception being thrown and the
exception that Long.parseLong() throws when passed an empty string will
terminate the query with an error message.
- - - - -
1 changed file:
- src/com/octetstring/jdbcLdap/sql/LdapResultSet.java
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/e8848f1d66c2ab338f64f82…
--
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/e8848f1d66c2ab338f64f82…
You're receiving this email because of your account on git.openldap.org.
Howard Chu pushed to branch master at openldap / JDBC LDAP
Commits:
9b14688d by Fredrik Roubert at 2022-05-02T13:39:26+00:00
ITS#9836 Add the startTLS connection property.
Using TLS is becoming increasingly more common and the LDAP library has
support for this since a long time already, the JDBC connection string
just needs to support a new property to allow this to be configured.
- - - - -
1 changed file:
- src/com/octetstring/jdbcLdap/jndi/JndiLdapConnection.java
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/9b14688d402bd65c604971a…
--
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/9b14688d402bd65c604971a…
You're receiving this email because of your account on git.openldap.org.
Howard Chu pushed to branch master at openldap / JDBC LDAP
Commits:
a65afce1 by Fredrik Roubert at 2022-05-02T13:38:56+00:00
ITS#9835 Always dereference LDAP aliases.
No software connecting to an LDAP database through JDBC can be expected
to know anything at all about LDAP, so no such software can be expected
to be able to do anything useful with an LDAP alias entry. LDAP aliases
must therefore always be dereferenced in the JDBC driver.
- - - - -
1 changed file:
- src/com/octetstring/jdbcLdap/jndi/JndiLdapConnection.java
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/a65afce19cd404a2fdb9fa1…
--
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/a65afce19cd404a2fdb9fa1…
You're receiving this email because of your account on git.openldap.org.
Howard Chu pushed to branch master at openldap / JDBC LDAP
Commits:
245495e9 by Fredrik Roubert at 2022-05-01T15:12:42+02:00
ITS#3872 Always decode valid UTF-8 data, never Base64 encode it.
This must have been the original intent behind this code, that Base64
encoding should be used for data that isn't plain Unicode text and it
should have been calling isValidUTF8() to check for this all along.
- - - - -
1 changed file:
- src/com/octetstring/jdbcLdap/jndi/UnpackResults.java
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/245495e9303bf1d60afce57…
--
View it on GitLab: https://git.openldap.org/openldap/jdbcldap/-/commit/245495e9303bf1d60afce57…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch OPENLDAP_REL_ENG_2_6 at openldap / OpenLDAP
Commits:
adc32fbc by OndÅ™ej KuznÃk at 2022-04-27T15:40:09+00:00
ITS#9802 Fix argv handling
- - - - -
2bb37ec7 by Howard Chu at 2022-04-27T15:42:03+00:00
ITS#9825 dynlist: don't lose earlier filter elements
- - - - -
2ae11040 by Howard Chu at 2022-04-27T15:42:07+00:00
ITS#9825 dynlist: add test case
- - - - -
b762d2c9 by Quanah Gibson-Mount at 2022-04-27T15:43:30+00:00
ITS#9825
- - - - -
2dea513c by Howard Chu at 2022-04-27T15:47:49+00:00
ITS#9820 fix writewait/idletimeout interaction
Since 88d22a1ca3b28e10e6557e8aebbd75dd61fed511 the writewait check
was moved out of connections_timeout_idle() but the connection loop
was still testing the writewait flag. That test is no longer relevant.
- - - - -
f602cea5 by Quanah Gibson-Mount at 2022-04-27T15:48:30+00:00
ITS#9820
- - - - -
b297111e by OndÅ™ej KuznÃk at 2022-04-27T15:50:26+00:00
ITS#9832 Reset e back to the entry we need to release
- - - - -
de854d4b by Quanah Gibson-Mount at 2022-04-27T15:50:57+00:00
ITS#9832
- - - - -
215e64c2 by OndÅ™ej KuznÃk at 2022-04-27T15:51:24+00:00
ITS#9831 Advance connections[index] correctly
- - - - -
a5b9d3c1 by Quanah Gibson-Mount at 2022-04-27T15:51:49+00:00
ITS#9831
- - - - -
7 changed files:
- CHANGES
- servers/slapd/back-meta/config.c
- servers/slapd/back-monitor/search.c
- servers/slapd/connection.c
- servers/slapd/overlays/dynlist.c
- tests/data/dynlist.out
- tests/scripts/test044-dynlist
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/002004a1ea6b185c7524d4…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/002004a1ea6b185c7524d4…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch OPENLDAP_REL_ENG_2_5 at openldap / OpenLDAP
Commits:
d64437da by OndÅ™ej KuznÃk at 2022-04-27T15:41:26+00:00
ITS#9802 Fix argv handling
- - - - -
bbb57490 by Howard Chu at 2022-04-27T15:43:02+00:00
ITS#9825 dynlist: don't lose earlier filter elements
- - - - -
357a9dec by Howard Chu at 2022-04-27T15:43:04+00:00
ITS#9825 dynlist: add test case
- - - - -
de458c3f by Quanah Gibson-Mount at 2022-04-27T15:43:23+00:00
ITS#9825
- - - - -
48039c00 by Howard Chu at 2022-04-27T15:48:37+00:00
ITS#9820 fix writewait/idletimeout interaction
Since 88d22a1ca3b28e10e6557e8aebbd75dd61fed511 the writewait check
was moved out of connections_timeout_idle() but the connection loop
was still testing the writewait flag. That test is no longer relevant.
- - - - -
42f59fd2 by Quanah Gibson-Mount at 2022-04-27T15:49:28+00:00
ITS#9820
- - - - -
fac3b0dc by OndÅ™ej KuznÃk at 2022-04-27T15:51:56+00:00
ITS#9831 Advance connections[index] correctly
- - - - -
3a29c279 by Quanah Gibson-Mount at 2022-04-27T15:52:13+00:00
ITS#9831
- - - - -
6 changed files:
- CHANGES
- servers/slapd/back-meta/config.c
- servers/slapd/connection.c
- servers/slapd/overlays/dynlist.c
- tests/data/dynlist.out
- tests/scripts/test044-dynlist
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/ed62e1bc8a22765fbbdfb5…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/ed62e1bc8a22765fbbdfb5…
You're receiving this email because of your account on git.openldap.org.