Preparing 2.16.0 (#2035)

* Preparing v2.16.0
* Update CHANGELOG.md
This commit is contained in:
Kenneth Geisshirt 2018-09-19 18:15:16 +02:00 committed by GitHub
parent 111e9c223f
commit 4d81bc2356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,11 @@
X.Y.Z Release notes X.Y.Z Release notes
============================================================= =============================================================
### Enhancements
* Added support for [ASDF](https://github.com/asdf-vm/asdf-nodejs) nodejs shims. Thanks to @breezeight! ([#2031](https://github.com/realm/realm-js/issues/2031))
### Bug fixes ### Bug fixes
* Fixed the type definition for `Realm.Permissions.User`. Thanks to @apperside! ([#2012](https://github.com/realm/realm-js/issues/2012), since v2.3.0-beta.2) * Fixed the type definition for `Realm.Permissions.User`. Thanks to @apperside! ([#2012](https://github.com/realm/realm-js/issues/2012), since v2.3.0-beta.2)
* Previously, adding a schema definition (using `config.schema = [Dog, Person]` for example) will prevent the permission schema from being added for query based Realm. ([#2017](https://github.com/realm/realm-js/issues/2017), since v2.3.0). * When adding a schema definition (e.g. `let config = user.createConfiguration(); config.schema = [Dog, Person]`) the permission schema would be removed, resulting in an `unknown object type __Permission` if using query based Realm. ([#2017](https://github.com/realm/realm-js/issues/2017), since v2.3.0).
* As part of including the permission schema implicitly when using query based Realm, the schema `Realm.Permissions.Realm` was missing, which may break any query including it. ([#2016](https://github.com/realm/realm-js/issues/2016), since v2.3.0) * As part of including the permission schema implicitly when using query based Realm, the schema `Realm.Permissions.Realm` was missing, which may break any query including it. ([#2016](https://github.com/realm/realm-js/issues/2016), since v2.3.0)
* Fixed the type definition for `Realm.getPrivileges()`, `Realm.getPrivileges(className)` and `Realm.getPrivileges(object)`. ([#2030](https://github.com/realm/realm-js/pull/2030), since v2.2.14) * Fixed the type definition for `Realm.getPrivileges()`, `Realm.getPrivileges(className)` and `Realm.getPrivileges(object)`. ([#2030](https://github.com/realm/realm-js/pull/2030), since v2.2.14)
@ -11,8 +13,6 @@ X.Y.Z Release notes
* Realm Object Server: 3.0.0 or later * Realm Object Server: 3.0.0 or later
* File format: ver 7. (upgrades from previous formats automatically) * File format: ver 7. (upgrades from previous formats automatically)
### Enhancements
* Support [ASDF](https://github.com/asdf-vm/asdf-nodejs) nodejs shims.
2.16.0-rc.2 Release notes (2018-9-14) 2.16.0-rc.2 Release notes (2018-9-14)
============================================================= =============================================================