comparison ChangeLog @ 958:52a23aaa8580

Add ChangeLog entry for TLS and new URL syntax
author Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
date Thu, 16 Jan 2025 15:35:05 +0100 (2 months ago)
parents 4b5ed1419a98
children 8aaa9964359a
comparison
equal deleted inserted replaced
957:683eec730d81 958:52a23aaa8580
30 more precise information for the 13 possible interval data types. 30 more precise information for the 13 possible interval data types.
31 31
32 * Thu Mar 7 2024 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 32 * Thu Mar 7 2024 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
33 - Improved DatabaseMetaData.getTypeInfo(). It now also returns the serial 33 - Improved DatabaseMetaData.getTypeInfo(). It now also returns the serial
34 and bigserial data types and all 13 possible interval data types. 34 and bigserial data types and all 13 possible interval data types.
35
36 * Fri Jan 5 2024 Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com>
37 - Network connections can now be encrypted with TLS by using jdbc:monetdbs://..
38 instead of jdbc:monetdb://. The server is authenticated using the JVM's root
39 certificate pool unless cert= or certhash= properties are given.
40 - The syntax of the JDBC URL's has been updated to match the monetdb:// and
41 monetdbs:// URL syntax introduced in MonetDB 11.51 (Aug2024), see
42 https://www.monetdb.org/documentation/user-guide/client-interfaces/monetdb-urls/.
43 This adds a number of properties that can be set in the URL but is otherwise
44 backward compatible except that percent sign are now used to escape other characters.
45 For example, the password '100%milk&cookies' can be passed as
46 password=100%25milk%26cookies.
35 47
36 * Thu Dec 28 2023 Martin van Dinther <martin.van.dinther@monetdbsolutions.com> 48 * Thu Dec 28 2023 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
37 - In ResultSet.getObject(column, Class<T> type) and 49 - In ResultSet.getObject(column, Class<T> type) and
38 ResultSet.getObject(column, Map<String,Class<?>>) methods added support 50 ResultSet.getObject(column, Map<String,Class<?>>) methods added support
39 to return objects for classes: java.time.LocalDate, java.time.LocalDateTime 51 to return objects for classes: java.time.LocalDate, java.time.LocalDateTime