realm-js/CHANGELOG.md

52 lines
2.0 KiB
Markdown
Raw Normal View History

2016-04-12 08:13:29 -07:00
x.x.x Release notes (yyyy-MM-dd)
=============================================================
### Breaking changes
* None
### Enhancements
* Support for queries comparing optional properties to `null`
2016-04-26 17:14:15 -07:00
* `object.isValid()` has been added to enable checking if an object has been deleted
2016-04-12 08:13:29 -07:00
### Bugfixes
2016-04-19 16:09:10 -07:00
* When accessing an empty Results `undefined` is returned rather than throwing an exception
2016-04-28 12:52:15 -07:00
* Accessing a deleted object throws a JS exception rather than crashing
* Accessing an invalidated Results snapshot throws a JS exception rather than crashing
2016-04-12 08:13:29 -07:00
2016-03-29 15:30:15 -07:00
0.11.1 Release notes (2016-3-29)
=============================================================
### Bugfixes
* Fix for using Android Studio to build app using Realm
* Fix for sharing Realm between JS and Objective-C/Swift
0.11.0 Release notes (2016-3-24)
2016-03-10 16:15:54 -08:00
=============================================================
### Breaking changes
* Realm for React Native is now packaged as a static library for iOS
- Remove the reference to `RealmJS.xcodeproj` from your Xcode project
(under the `Libraries` group)
- Make sure `rnpm` is installed and up-to-date: `npm install -g rnpm`
- Run `rnpm link realm` from your app's root directory
2016-03-10 16:24:12 -08:00
2016-03-10 16:15:54 -08:00
### Enhancements
* Support for encrypted Realms
* List and Results now inherit from Realm.Collection
* List and Results is now iterable (e.g. supports `for...of` loops)
2016-03-10 16:24:12 -08:00
* Add common Array methods to List and Results
* Accept constructor in create() and objects() methods
* Support relative paths when opening Realms
* Support case insensitive queries by adding `[c]` after operators
* Support for indexed `bool`, `string`, and `int` properties
* Added `Realm.schemaVersion` method, which supports unopened Realms
2016-03-10 16:24:12 -08:00
2016-03-10 16:15:54 -08:00
### Bugfixes
2016-03-15 13:56:51 -07:00
* Fix for crash on Android when initializing the Realm module
2016-03-16 12:54:39 -07:00
* Fix for using Chrome debug mode from a device
* Fix for List splice method not accepting a single argument
2016-03-10 16:24:12 -08:00
* Don't download or unpack core libraries unnecessarily
2016-03-10 16:15:54 -08:00
2016-03-10 16:24:12 -08:00
0.10.0 Release notes (2016-2-22)
=============================================================
### Enhancements
2016-03-16 12:54:39 -07:00
* Initial Release