From: James Ahlborn Date: Wed, 6 Feb 2019 00:51:50 +0000 (+0000) Subject: merge trunk changes through r1277 X-Git-Tag: jackcess-3.0.0~7^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e94e860ebf7c6419738035a8a42f24e579836119;p=jackcess.git merge trunk changes through r1277 git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jdk8@1278 f203690c-595d-4dc9-a70b-905162fa7fd2 --- e94e860ebf7c6419738035a8a42f24e579836119 diff --cc src/changes/changes.xml index 0922c60,589d500..8f8d654 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@@ -4,32 -4,7 +4,32 @@@ Tim McCune + + + Jackcess now requires a Java 8+ runtime. As part of this update, all + dependencies have been updated to their latest versions. + + + Add support for Java 8 Temporal types. Date/time fields will now + accept as input most Temporal types (e.g. LocalDate, LocalTime, + LocalDateTime, etc). Additionally, date/time fields can optionally be + changed to output LocalDateTime instead of Date. This behavior is + configurable on a per-Database basis by setting the DateTimeType for + the database. All Date based APIs now have a parallel LocalDateTime + API. Note that only one of those will work depending on how + the Database is configured. The legacy Date support will be the + default initially, but is deprecated and may be removed in the future. + + + Add support for Path. Existing File based APIs now have parallel + versions which utilize Path. + + + The Apache commons-lang dependency has been replaced with + commons-lang3. + + - + Fix parsing of escaped double quotes in expressions.