Skip to content

Releases: realm/realm-js

v1.8.3

27 Jun 19:26
Compare
Choose a tag to compare

Breaking changes

  • None

Enhancements

  • None

Bug fixes

  • Fix admin users not appearing in Realm.Sync.User.all, which broke getting an access token for them.

v1.8.2

26 Jun 13:24
Compare
Choose a tag to compare

Enhancements

  • Added indexOf() method on Realm.Results and Realm.List that returns the index of the object in the collection.

Bug fixes

  • Fix opening synced realms with a logged-in admin user.

v1.8.1

20 Jun 17:55
Compare
Choose a tag to compare

Enhancements

  • Accessing Realm.Sync when sync is not enabled will no longer throw, but return undefined.
  • Better error messages when creating objects.
  • Added bundled TypeScript declarations of the Realm API.
  • Added objectSchema() method on Realm.Object that returns the schema for the object.

Bug fixes

  • Fix Realm.Sync.User.prototype.isAdmin returning false for logged-in admin users.

v1.3.1

18 May 11:53
Compare
Choose a tag to compare

Add Realm open async API support.

0.15.5-rmp-beta.1

20 Jan 15:22
Compare
Choose a tag to compare
0.15.5-rmp-beta.1 Pre-release
Pre-release

This is a preview of Realm React Native with sync enabled. It's a beta release, do not use in production!

0.14.1

29 Jun 00:31
Compare
Choose a tag to compare

Breaking changes

  • None

Enhancements

  • None

Bugfixes

  • Fix linker error when building for minimum target version of iOS 7.
  • Fix for failure in strip command when building an archive.

0.14.0

22 Jun 16:10
Compare
Choose a tag to compare

Breaking changes

  • None

Enhancements

  • Added isValid() method to List and Results to check for deleted or invalidated objects
  • Added objectForPrimaryKey(type, key) method to Realm

Bugfixes

  • Fix for crash when setting object properties to objects from other Realms
  • Fix for exception sometimes thrown when reloading in Chrome debug mode

0.13.2

26 May 21:36
Compare
Choose a tag to compare

Breaking changes

  • None

Enhancements

  • None

Bugfixes

  • Fix for crash when updating Realms with optional date properties to the new file format

0.13.1

24 May 19:36
Compare
Choose a tag to compare

Breaking changes

  • None

Enhancements

  • None

Bugfixes

  • Fix for crash when inserting dates from before the epoch
  • Fix for crash when using collection snapshot after realm.deleteAll()

0.13.0

19 May 21:06
Compare
Choose a tag to compare

Breaking changes

  • With this release we have switched over to a new cross platform compatible date format.
    This change will only require action from users who are using both the JS and Cocoa or Android
    bindings simultaneously and accessing Realm files from both bindings. In these cases you need to
    open the Realm file with the latest version of the iOS or Android bindings before accessing the
    Realm from JS to prevent an unnecessary conversion.

Enhancements

  • None

Bugfixes

  • Date properties are now stored in a format compatible with the Realm Browser and other bindings.
  • Fix for using class MyObject extends Realm.Object in a React Native project.
  • Fix a memory leak caused by constructing a Realm instance of an already opened Realm.
  • Fix for better supporting hot module reloading.
  • Fix for some warnings when using ListView with React Native 0.25+
  • Fix for queries that use a keypath starting with "not".