summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-12-08 14:27:23 -0500
committerJames Moger <james.moger@gmail.com>2011-12-08 14:27:23 -0500
commit407ea16f9f8f6d3bd5135783d98b63c0e4704609 (patch)
treee8a579aed18b8bf48dc12323ae06b97c286efd6f /docs
parentfe7a924f168f5738fead18a4b0dad8b0451a5973 (diff)
downloadiciql-407ea16f9f8f6d3bd5135783d98b63c0e4704609.tar.gz
iciql-407ea16f9f8f6d3bd5135783d98b63c0e4704609.zip
Added alternative method signatures to avoid subtle varargs bugs
Diffstat (limited to 'docs')
-rw-r--r--docs/05_releases.mkd10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd
index abc8791..9a7d13e 100644
--- a/docs/05_releases.mkd
+++ b/docs/05_releases.mkd
@@ -6,14 +6,20 @@
**%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) &nbsp; *released %BUILDDATE%*
+- Added list alternatives to the varargs methods because it was too easy to forget list.toArray() for the varargs methods
+List<T> Db.executeQuery(Class<? extends T> modelClass, String sql, List<?> args)
+ResultSet executeQuery(String sql, List<?> args)
+
+### Older Releases
+
+**0.7.3** &nbsp; *released 2011-12-06*
+
- api change release (API v8)
- Fixed JOIN ON primitives
- Fixed GROUP BY primitives
- Fixed primitive references when selecting into a custom type with primitives
- Improved fluent/type-safety of joins
-### Older Releases
-
**0.7.2** &nbsp; *released 2011-11-30*
- generated models are now serializable with a default serial version id of 1