Release 1.6.5
This commit is contained in:
parent
c0fe8454b0
commit
7510f8e461
@ -9,12 +9,12 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<properties>
|
||||
<jooq.version>1.6.4</jooq.version>
|
||||
<jooq.version>1.6.5</jooq.version>
|
||||
</properties>
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen</artifactId>
|
||||
<version>1.6.4</version>
|
||||
<version>1.6.5</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ Codegen</name>
|
||||
|
||||
@ -8,12 +8,12 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<properties>
|
||||
<jooq.version>1.6.4</jooq.version>
|
||||
<jooq.version>1.6.5</jooq.version>
|
||||
</properties>
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-meta</artifactId>
|
||||
<version>1.6.4</version>
|
||||
<version>1.6.5</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ Meta</name>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
<!-- Run a full mvn clean package install deploy first before this -->
|
||||
<target name="release" description="Release a new version">
|
||||
<property name="version" value="1.6.4"/>
|
||||
<property name="version" value="1.6.5"/>
|
||||
|
||||
<mkdir dir="${dir.release}/versions" />
|
||||
<mkdir dir="${dir.release}/${version}" />
|
||||
|
||||
@ -2,6 +2,40 @@ jOOQ Release notes
|
||||
------------------
|
||||
For an overview, see also https://sourceforge.net/apps/trac/jooq/report/6
|
||||
|
||||
Version 1.6.5
|
||||
=================================================================
|
||||
|
||||
This release finally adds a loader for CSV data to jOOQ. You can
|
||||
now load CSV data using a simple fluent API, configuring error
|
||||
handling, duplicate behaviour and transaction handling, as well
|
||||
as various CSV parameters.
|
||||
|
||||
This release also changes the way generated keys are retrieved
|
||||
after INSERT's. Instead of (potentially inconsistently) running
|
||||
SELECT MAX(pk) immediately after the INSERT, Postgres' INSERT..
|
||||
RETURNING clause is used (or simulated), in a single statement.
|
||||
|
||||
Features and improvements
|
||||
-------------------------
|
||||
#784 - Add Result.exportXML() to retrieve a DOM document similar
|
||||
to that of .formatXML()
|
||||
#792 - Add support for loading of CSV data into tables
|
||||
#795 - Add <T> List<T> fetch(int, Class<T>) and
|
||||
fetch(String, Class<T>) convenience methods
|
||||
#803 - Add support for INSERT .. RETURNING or simulate it where
|
||||
not available
|
||||
#805 - Add <T> T[] fetchArray(int, Class<T>) and
|
||||
fetchArray(String, Class<T>) convenience methods
|
||||
#806 - Add <T> T fetchOne(int, Class<T>) and
|
||||
fetchOne(String, Class<T>) convenience methods
|
||||
|
||||
Bug fixes
|
||||
---------
|
||||
#798 - Oracle IN (...) clause with more than 1000 arguments does
|
||||
not work
|
||||
#802 - Use "INSERT .. RETURNING" instead of "SELECT MAX(pk)"
|
||||
to retrieve the primary key of a new record
|
||||
|
||||
Version 1.6.4
|
||||
=================================================================
|
||||
|
||||
|
||||
@ -9,12 +9,12 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<properties>
|
||||
<jooq.version>1.6.4</jooq.version>
|
||||
<jooq.version>1.6.5</jooq.version>
|
||||
</properties>
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq</artifactId>
|
||||
<version>1.6.4</version>
|
||||
<version>1.6.5</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>jOOQ</name>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user