Merge branch 'master' into cm/template-method
This commit is contained in:
commit
83c2564080
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -10,15 +10,36 @@ X.Y.Z Release notes
|
|||
* None.
|
||||
|
||||
### Enhancements
|
||||
* Added support for compacting synchronized Realms and allowed setting the
|
||||
`shouldCompactOnLaunch` config property for them.
|
||||
* Added `Realm.createTemplateObject(objectSchema)' (#1870).
|
||||
* Added `Realm.createTemplateObject(objectSchema)` (#1870).
|
||||
|
||||
### Bug fixes
|
||||
* None.
|
||||
|
||||
### Internals
|
||||
* Realm Core v5.6.2.
|
||||
* Realm Sync v3.5.5.
|
||||
|
||||
|
||||
2.9.0 Release notes (2018-6-19)
|
||||
=============================================================
|
||||
### Compatibility
|
||||
* Sync protocol: 24
|
||||
* Server-side history format: 4
|
||||
* File format: 7
|
||||
* Realm Object Server: 3.0.0 or later
|
||||
|
||||
### Breaking changes
|
||||
* None.
|
||||
|
||||
### Enhancements
|
||||
* Added support for compacting synchronized Realms and allowed setting the `shouldCompactOnLaunch` config property for them.
|
||||
|
||||
### Bug fixes
|
||||
* Fix incorrect documentation of the `shouldCompactOnLaunch` parameters.
|
||||
|
||||
### Internals
|
||||
* None.
|
||||
* Realm Core v5.6.2.
|
||||
* Realm Sync v3.5.5.
|
||||
|
||||
|
||||
2.8.5 Release notes (2018-6-18)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PACKAGE_NAME=realm-js
|
||||
VERSION=2.8.5
|
||||
VERSION=2.9.0
|
||||
REALM_CORE_VERSION=5.6.2
|
||||
REALM_SYNC_VERSION=3.5.5
|
||||
REALM_OBJECT_SERVER_VERSION=3.0.0
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "realm",
|
||||
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
|
||||
"version": "2.8.5",
|
||||
"version": "2.9.0",
|
||||
"license": "Apache-2.0",
|
||||
"homepage": "https://realm.io",
|
||||
"keywords": [
|
||||
|
|
|
@ -969,7 +969,7 @@
|
|||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 2.8.5;
|
||||
CURRENT_PROJECT_VERSION = 2.9.0;
|
||||
CXX = "$(SRCROOT)/../scripts/ccache-clang++.sh";
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
|
@ -1033,7 +1033,7 @@
|
|||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
CURRENT_PROJECT_VERSION = 2.8.5;
|
||||
CURRENT_PROJECT_VERSION = 2.9.0;
|
||||
CXX = "$(SRCROOT)/../scripts/ccache-clang++.sh";
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
|
|
Loading…
Reference in New Issue