CHANGELOG 1.1 KB

12345678910111213141516171819202122232425
  1. Version 1.0 - June 27, 2010
  2. - d2bed65 fixed an error with eager loading when no records exist
  3. - c225942 fixed set methods on DateTime objects to properly flag attributes as dirty
  4. - 46a1219 fixed a memory leak when using validations
  5. - c225942 fixed problem with some model functionality not working correctly after being deserialized
  6. - 3e26749 fixed validates_numericality_of to not ignore other options when only_integer is present and matches
  7. - 53ad5ec fixed ambiguous id error when finding by pk with a join option
  8. - 26e40f4 fixed conditions to accept DateTime values
  9. - 41e52fe changed serialization to serialize datetime fields as strings instead of the actual DateTime objects
  10. - dbee94b Model::transaction() now returns true if commit was successful otherwise false
  11. Versio 1.0 RC1 - May 7, 2010
  12. - support for Oracle
  13. - support for PostgreSQL
  14. - added delegators
  15. - added setters
  16. - added getters
  17. - added HAVING as a finder option
  18. - added ability to find using a hash
  19. - added find_or_create_by
  20. - added validates_uniqueness_of
  21. - added dynamic count_by
  22. - added eager loading