Updated version 2.4, 2.5 release notes

This commit is contained in:
Lukas Eder 2012-09-23 20:28:37 +02:00
parent 837a6fe600
commit 58fa624c81
2 changed files with 57 additions and 3 deletions

View File

@ -2,7 +2,7 @@ jOOQ Release notes
==================
For an interactive overview, see also
https://github.com/jOOQ/jOOQ/issues
https://sourceforge.net/apps/trac/jooq/report/6
For a formatted text version, see
http://www.jooq.org/notes.php
@ -10,6 +10,30 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt
Version 2.4.2 - September 23, 2012
=================================================================
This is a minor patch release with some useful fixes for the
2.4 branch
Bug fixes
---------
#1774 - QueryPart.toString() does not load default settings from
classpath
#1792 - Factory.fieldByName() and tableByName() do not correctly
escape quotes
#1797 - SQL syntax errors when plain SQL contains comments with
question marks and SQL is executed as
StatementType.STATIC_STATEMENT
#1802 - Result.into(Table) doesn't work correctly, if the same
field name appears twice in Result
#1819 - MappingException in Record.into(Class), when POJO setters
have applicable names but non-applicable argument types
#1820 - Cannot fetch into non-public POJO classes. Their members
/ getters / setters should be made accessible
#1829 - Factory.execute(String) may cause errors when plain SQL
returns results
Version 2.4.1 - August 28, 2012
=================================================================
@ -2335,7 +2359,7 @@ themselves should be regenerated in a compatible way, such that
your client code should not be affected. If this is not the case,
please report a ticket here:
https://github.com/jOOQ/jOOQ/issues
https://sourceforge.net/apps/trac/jooq/newticket
Apart from the Derby RDMBS and some new data type support, there
have been many new convenience methods added all over the API.
@ -2346,7 +2370,7 @@ through Field<?>, but also through field names or indexes.
Check out the updated documentation (soon) here:
http://www.jooq.org
https://sourceforge.net/apps/trac/jooq/wiki/Examples
- Support for the Derby RDBMS
- Support for casting. This allows for even greater flexibility

View File

@ -10,6 +10,36 @@ http://www.jooq.org/notes.php
For a text version, see
http://www.jooq.org/inc/RELEASENOTES.txt
Version 2.5.1 - September 23, 2012
=================================================================
This is a minor patch release with some useful fixes for the
2.5 branch
Bug fixes
---------
#1751 - Result.intoResultSet() generates wrong ResultSetMetaData
if runtime schema mapping is applied
#1764 - Add missing @Support({ ... FIREBIRD ... }) annotations
#1768 - NullPointerException when DAO.fetchOne() returns no
record
#1774 - QueryPart.toString() does not load default settings from
classpath
#1786 - Fix SEQUENCE support for Firebird
#1792 - Factory.fieldByName() and tableByName() do not correctly
escape quotes
#1797 - SQL syntax errors when plain SQL contains comments with
question marks and SQL is executed as
StatementType.STATIC_STATEMENT
#1802 - Result.into(Table) doesn't work correctly, if the same
field name appears twice in Result
#1819 - MappingException in Record.into(Class), when POJO setters
have applicable names but non-applicable argument types
#1820 - Cannot fetch into non-public POJO classes. Their members
/ getters / setters should be made accessible
#1829 - Factory.execute(String) may cause errors when plain SQL
returns results
Version 2.5.0 - August 26, 2012
=================================================================