Skip to content

Releases: chennaione/sugar

More Sugar

07 Mar 19:34
Compare
Choose a tag to compare

Added

  • #328 @jedid auto add new columns during database upgrade, fix #299 and #151
  • #389 @alfmatos MultiUnique DSL to handle MultiColumn Unique Table constraint
  • @sibeliusseraphini update, updateInTx methods based on Unique values of SugarRecord
  • #155 @benohalloran adding Cursors for Cursor Adapters Pull 312
  • #430 @sibeliusseraphini update to roboelectric 3.0 and target android-32

Changed

  • #437 @dnalves removing guava dependency, using synchronized WeakHashMap instead
  • #423 @sibeliusseraphini moving changelog of README.md to CHANGELOG.md

Fixed

v1.4

12 Nov 20:00
Compare
Choose a tag to compare
version 1.4 of sugar

v1.4 Beta Release

12 Jul 04:53
Compare
Choose a tag to compare
v1.4 Beta Release Pre-release
Pre-release

This beta release will be updated with the latest .jar file from master.

New in version 1.3

04 Jul 18:22
Compare
Choose a tag to compare

Transaction Support
Bulk Insert of records
Encrypted datastore (branch : sugar-cipher using sqlcipher)
Removed Constructor with context parameter. Needs default constructor now.
Enhancements to QueryBuilder
Bug fixes and other improvements.

New in version 1.2

21 Feb 11:35
Compare
Choose a tag to compare

package restriction for domain classes.
metadata caching
QueryBuilder v1
Database Migrations
Provision for Raw queries
Better and more organized api guide and usage instructions.

What's new in 1.1

21 Feb 11:36
Compare
Choose a tag to compare

Static api doesn't take context anymore. Hence

Book.findById(context, Book.class, 1);

becomes

Book.findById(Book.class, 1);
Some cleanup in the code.