All Versions
285
Latest Version
Avg Release Cycle
11 days
Latest Release
544 days ago

Changelog History
Page 25

  • v0.93.1 Changes

    May 29, 2015

    ๐Ÿ›  Bugfixes

    • ๐Ÿ›  Objects are no longer copied into standalone objects during object creation. This fixes an issue where nested objects with a primary key are sometimes duplicated rather than updated.
    • Comparison predicates with a constant on the left of the operator and key path on the right now give correct results. An exception is now thrown for predicates that do not yet support this ordering.
    • ๐Ÿ›  Fix some crashes in index_string.cpp with int primary keys or indexed int properties.
  • v0.93.0 Changes

    May 27, 2015

    API breaking changes

    • Schema versions are now represented as uint64_t (Objective-C) and UInt64 (Swift) so that they have the same representation on all architectures.

    โœจ Enhancements

    • Swift: Results now conforms to CVarArgType so it can now be passed as an argument to Results.filter(_:...) and List.filter(_:...).
    • Swift: Made SortDescriptor conform to the Equatable and StringLiteralConvertible protocols.
    • Int primary keys are once again automatically indexed.
    • ๐Ÿ‘Œ Improve error reporting when attempting to mark a property of a type that cannot be indexed as indexed.

    ๐Ÿ›  Bugfixes

    • Swift: RealmSwift.framework no longer embeds Realm.framework, which now allows apps using it to pass iTunes Connect validation.
  • v0.92.4 Changes

    May 22, 2015

    API breaking changes

    • None.

    โœจ Enhancements

    • Swift: Made Object.init() a required initializer.
    • RLMObject, RLMResults, Object and Results can now be safely deallocated (but still not used) from any thread.
    • ๐Ÿ‘Œ Improve performance of -[RLMArray indexOfObjectWhere:] and -[RLMArray indexOfObjectWithPredicate:], and implement them for standalone RLMArrays.
    • ๐Ÿ‘Œ Improved performance of most simple queries.

    ๐Ÿ›  Bugfixes

    • ๐Ÿ‘ท The interprocess notification mechanism no longer uses dispatch worker threads, preventing it from starving other GCD clients of the opportunity to execute blocks when dozens of Realms are open at once.
  • v0.92.3 Changes

    May 13, 2015

    API breaking changes

    • Swift: Results.average(_:) now returns an optional, which is nil if and only if the results set is empty.

    โœจ Enhancements

    • Swift: Added List.invalidated, which returns if the given List is no longer safe to be accessed, and is analogous to -[RLMArray isInvalidated].
    • Assertion messages are automatically logged to Crashlytics if it's loaded into the current process to make it easier to diagnose crashes.

    ๐Ÿ›  Bugfixes

    • Swift: Enumerating through a standalone List whose objects themselves have list properties won't crash.
    • Swift: Using a subclass of RealmSwift.Object in an aggregate operator of a predicate no longer throws a spurious type error.
    • ๐Ÿ›  Fix incorrect results for when using OR in a query on a RLMArray/List<>.
    • ๐Ÿ›  Fix incorrect values from [RLMResults count]/Results.count when using != on an int property with no other query conditions.
    • Lower the maximum doubling threshold for Realm file sizes from 128MB to 16MB to reduce the amount of wasted space.
  • v0.92.2 Changes

    May 08, 2015

    API breaking changes

    • None.

    โœจ Enhancements

    • Exceptions raised when incorrect object types are used with predicates now contain more detailed information.
    • โž• Added -[RLMMigration deleteDataForClassName:] and Migration.deleteData(_:) to enable cleaning up after removing object subclasses

    ๐Ÿ›  Bugfixes

    • โ†ช Prevent debugging of an application using an encrypted Realm to work around frequent LLDB hangs. Until the underlying issue is addressed you may set REALM_DISABLE_ENCRYPTION=YES in your application's environment variables to have requests to open an encrypted Realm treated as a request for an unencrypted Realm.
    • ๐Ÿ”— Linked objects are properly updated in createOrUpdateInRealm:withValue:.
    • List properties on Objects are now properly initialized during fast enumeration.
  • v0.92.1 Changes

    May 06, 2015

    API breaking changes

    • None.

    โœจ Enhancements

    • -[RLMRealm inWriteTransaction] is now public.
    • Realm Swift is now available on CoocaPods.

    ๐Ÿ›  Bugfixes

    • ๐Ÿ‘ฎ Force code re-signing after stripping architectures in strip-frameworks.sh.
  • v0.92.0 Changes

    May 05, 2015

    API breaking changes

    • Migration blocks are no longer called when a Realm file is first created.
    • ๐Ÿ—„ The following APIs have been deprecated in favor of newer method names:

    ๐Ÿ—„ | Deprecated API | New API | |:-------------------------------------------------------|:------------------------------------------------------| | -[RLMMigration createObject:withObject:] | -[RLMMigration createObject:withValue:] | | -[RLMObject initWithObject:] | -[RLMObject initWithValue:] | 0๏ธโƒฃ | +[RLMObject createInDefaultRealmWithObject:] | +[RLMObject createInDefaultRealmWithValue:] | | +[RLMObject createInRealm:withObject:] | +[RLMObject createInRealm:withValue:] | โšก๏ธ | +[RLMObject createOrUpdateInDefaultRealmWithObject:] | +[RLMObject createOrUpdateInDefaultRealmWithValue:] | โšก๏ธ | +[RLMObject createOrUpdateInRealm:withObject:] | +[RLMObject createOrUpdateInRealm:withValue:] |

    โœจ Enhancements

    • Int8 properties defined in Swift are now treated as integers, rather than booleans.
    • ๐Ÿ‘ NSPredicates created using +predicateWithValue: are now supported.

    ๐Ÿ›  Bugfixes

    • Compound AND predicates with no subpredicates now correctly match all objects.
  • v0.91.5 Changes

    April 28, 2015

    ๐Ÿ›  Bugfixes

    • ๐Ÿ›  Fix issues with removing search indexes and re-enable it.
  • v0.91.4 Changes

    April 27, 2015

    ๐Ÿ›  Bugfixes

    • Temporarily disable removing indexes from existing columns due to bugs.
  • v0.91.3 Changes

    April 17, 2015

    ๐Ÿ›  Bugfixes

    • ๐Ÿ›  Fix Extra argument 'objectClassName' in call errors when building via CocoaPods.