Updated release notes

This commit is contained in:
Lukas Eder 2012-07-01 12:46:08 +02:00
parent 006ec665aa
commit 3140b9605e
4 changed files with 64 additions and 2 deletions

View File

@ -10,6 +10,32 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt
Version 2.3.2 - July 1, 2012
=================================================================
This is a minor patch release with some useful fixes for the 2.3
branch
Bug fixes
---------
#1441 - Performance issue with AbstractDataType.convert(Object).
Avoid conversions when they're obviously unneeded
#1449 - Generate some meaningful Javadoc into the generated
[schema-name]Factory classes
#1454 - Add line breaks to generated Javadoc where appropriate
#1465 - Custom generator strategy's printImplements() is called
with Mode == RECORD for tables
#1483 - Inefficient cloning of default settings using JAXB
unmarshalling leads to non-negligible overall overhead.
Use serialisation instead (short of a useful XJC clone
plugin)
#1478 - Caching SQLDialect in AbstractDatabase heavily improves
code generation performance
#1490 - Compilation error when a SQL Server stored procedure has
a parameter named "value"
#1493 - Bad syntax for SELECT /*+hint*/ DISTINCT ... in Oracle
#1515 - Splitting of large NOT IN conditions is wrong. The parts
should be connected with AND, not with OR
Version 2.3.1 - May 11, 2012
=================================================================
This is an important patch release fixing some regressions in the

View File

@ -10,7 +10,7 @@ http://www.jooq.org/notes.php?version=2.2
For a text version, see
http://www.jooq.org/inc/RELEASENOTES-2.2.txt
Version 2.2.3 - June 03, 2012
Version 2.2.3 - July 1, 2012
=================================================================
This is a minor patch release, fixing some issues
@ -43,6 +43,11 @@ Bug fixes
unmarshalling leads to non-negligible overall overhead.
Use serialisation instead (short of a useful XJC clone
plugin)
#1490 - Compilation error when a SQL Server stored procedure has
a parameter named "value"
#1493 - Bad syntax for SELECT /*+hint*/ DISTINCT ... in Oracle
#1515 - Splitting of large NOT IN conditions is wrong. The parts
should be connected with AND, not with OR
Version 2.2.2 - April 22, 2012
=================================================================

View File

@ -10,7 +10,7 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt
Version 2.3.2 - June 3, 2012
Version 2.3.2 - July 1, 2012
=================================================================
This is a minor patch release with some useful fixes for the 2.3
branch
@ -30,6 +30,11 @@ Bug fixes
plugin)
#1478 - Caching SQLDialect in AbstractDatabase heavily improves
code generation performance
#1490 - Compilation error when a SQL Server stored procedure has
a parameter named "value"
#1493 - Bad syntax for SELECT /*+hint*/ DISTINCT ... in Oracle
#1515 - Splitting of large NOT IN conditions is wrong. The parts
should be connected with AND, not with OR
Version 2.3.1 - May 11, 2012
=================================================================

View File

@ -10,6 +10,32 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt
Version 2.3.2 - July 1, 2012
=================================================================
This is a minor patch release with some useful fixes for the 2.3
branch
Bug fixes
---------
#1441 - Performance issue with AbstractDataType.convert(Object).
Avoid conversions when they're obviously unneeded
#1449 - Generate some meaningful Javadoc into the generated
[schema-name]Factory classes
#1454 - Add line breaks to generated Javadoc where appropriate
#1465 - Custom generator strategy's printImplements() is called
with Mode == RECORD for tables
#1483 - Inefficient cloning of default settings using JAXB
unmarshalling leads to non-negligible overall overhead.
Use serialisation instead (short of a useful XJC clone
plugin)
#1478 - Caching SQLDialect in AbstractDatabase heavily improves
code generation performance
#1490 - Compilation error when a SQL Server stored procedure has
a parameter named "value"
#1493 - Bad syntax for SELECT /*+hint*/ DISTINCT ... in Oracle
#1515 - Splitting of large NOT IN conditions is wrong. The parts
should be connected with AND, not with OR
Version 2.3.1 - May 11, 2012
=================================================================
This is an important patch release fixing some regressions in the