53 posts categorized "groovy"

11/16/2011

Gaelyk 1.1 Released

Earlier today, Guillaume Laforge announced that Gaelyk 1.1 was out. Below are highlights of this version, (which was copied from the release announcement):

  • Upgraded to Groovy 1.8.4 and App Engine SDK 1.6.0
  • The new get() methods on the datastore service now also work with the asynchronous datastore.
  • Added an unindexed property on entities to set unindexed properties: person.unindexed.bio = "..."
  • Three annotations to customize the bean / entity coercion (@Key, @Unindexed and @Ignore)
  • Part of the work with the async datastore get(), whenever you have a Future to deal with, for example when the async datastore returns a Future, you can call any property on the Future object, and it will proxy those property access to the underlying object returned by the get() call on the future.
  • In addition to datastore.query{} and datastore.execute{}, there is now a datastore.iterate{} method that returns an Iterator instead of a list, which is friendlier when your queries return a large number of results.
  • Added the prospective search service to the binding
  • You can access the asynchronous Memcache service with memcache.async
  • Additional convenience methods for the file service
  • Added an each and collect method on blobstore to iterate over all the blobs from the blobstore, or to collect some values from all blob infos stored.

The Gaelyk project website has the latest binaries and documentation. Congratulations to the project team on the release!

08/05/2011

Gaelyk 1.0 Released

Guillaume Laforge announced the release of Gaelyk 1.0 a short while ago.  Head on over to the Gaelyk site for more information or grab the binaries from the download page.  The changelog in the release announcement lists the following changes:


05/13/2011

Gaelyk 0.7 Released

Gaelyk 0.7 has been released, adding support for Groovy 1.8 and Google App Engine 1.5.0, plus some other neat enhancements.  The release announcement on Google Groups has more details on what is new.  You can download Gaelyk 0.7 from the official site.