Releases: chennaione/sugar
Releases · chennaione/sugar
More Sugar
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
- #362 @mitchyboy9 fixed NoClassDefFoundError
- #455 @nurolopher fixed travis and coveralls config
- #434 @bendaniel10 fix multi-dex
- #410 #408 @RoyMontoya simplify code
- #327 @tracytheron support multi-dex
- #373 @salimkamboh use existing tables
v1.4
v1.4 Beta Release
This beta release will be updated with the latest .jar file from master.
New in version 1.3
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
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
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.