Release Notes for Iteration 2.0.8

Bug #26: Unit tests failed with new Groovy plugin

Lots of unit tests started to fail after I installed the new Groovy plugin.
The problem is in ASTBuilder:
protected void analyzeCode(Document doc)
{
ASTParser parser = ASTParser.newParser(javaLevel);
parser.setSource(doc.get().toCharArray());
compilationUnit = (CompilationUnit) parser.createAST(null);
compilationUnit.recordModifications();
ast = compilationUnit.getAST();
}
parser.createAST gives a NullPointerException. Perhaps because it calls JavaCore.getPlugin() to get a log object.

Bug #29: Query is partially converted to lowercase

Query "select a from com.x.Configuration a where a.id = ( select max ( b.id ) from com.x.Configuration b )"
was converted to
"select a from com.x.Configuration a where a.id = ( select max ( b.id ) from com.x.configuration b )"

Story #30

Fully support the Java final modifier for attributes

Set, add and remove methods are not generated for final attributes.

When editing an association role, the “final” keyword will now appear.

Story #33

One to many relationships model using subclass of Set

This is now possible by creating a tag like @hibernate.set(class=MySet) or @hibernate.list(class=MyList).

Release Notes for Iteration 2.0.8

Etc..

All Wiki Pages

Release Notes for Iteration 2.0.8 is a public wiki page

This wiki page is a public wiki page. It can be read by anyone including users that have not logged in and web crawlers such as Google.

Entry has no comments

You do not have sufficient permissions to comment