All Versions
10
Latest Version
Avg Release Cycle
17 days
Latest Release
3820 days ago
Changelog History
Changelog History
-
v1.3.1 Changes
May 31, 2014- โ Added loading of sql statements from raw text files
-
v1.3.0 Changes
April 22, 2014- Major migrations revamp. Migrations are added similar to before but all the sql is written by hand. This was done to fix some big bugs with the old system. More info can be found in issue #67.
- ๐ A lot of annotations have been removed as they were only used for migrations. You will want to change
@PrimaryKey
->@Key
and@AutoIncrementPrimaryKey
->@AutoIncrement
+@Key
. The rest of the migrations except@Column
and@DynamicColumn
have been removed. Specify migration constraints in the migrations. - ๐ initLoader has been changed to restartLoader. Lost of subtle bugs fixed by this change
-
v1.2.4 Changes
March 15, 2014- ๐ Support for initing sprinkles with an existing database
-
v1.2.3 Changes
February 27, 2014- ๐ ContentObserver support through a SprinklesContentObserver which wraps a standard ContentObserver
-
v1.2.2 Changes
February 25, 2014- ๐ Index support in migrations
- ๐ Support for querying with custom datatypes via TypeSerializers
-
v1.2.1 Changes
February 13, 2014- ๐ Fixed order of callback invocation
-
v1.2.0 Changes
February 06, 2014- โ Fully tested
- ๐ Changed getInstance() -> init() to add clarity to what the method does
- โ Added functionality to execute raw sql statements
- โ Added ModelList to save or delete many models in one go
-
v1.1.3 Changes
January 04, 2014โ Remove target sdk verison from library
-
v1.1.2 Changes
January 01, 2014- ๐ Fixed issue where update were sent to callbacks not wanting updates
-
v1.1.1 Changes
December 27, 2013- Dynamic query columns via
@DynamicColumn
- Custom column types via
TypeSerializer
andSprinkles.getInstance().registerType()
- ๐ Support for
Date
type
- Dynamic query columns via