Kneth/rn logout (#1766)

* `logout()` is implemented in JS and RN debugging must know of `_logout()` instead.
This commit is contained in:
Kenneth Geisshirt 2018-04-26 11:38:24 +02:00 committed by GitHub
parent 4d0cccb8e5
commit 2eccaac431
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,24 @@
X.Y.Z Release notes
=============================================================
### Compatibility
* Sync protocol: 24
* Server-side history format: 4
* File format: 7
* Realm Object Server: 3.0.0 or later
### Breaking changes
* None.
### Enhancements
* None.
### Bug fixes
* Fixed call to `logout()` when debugging React Native apps (#1744).
### Internal
* None.
2.3.5 Release notes (2018-4-25) 2.3.5 Release notes (2018-4-25)
============================================================= =============================================================
### Compatibility ### Compatibility

View File

@ -42,7 +42,7 @@ export default class User {
} }
createMethods(User.prototype, objectTypes.USER, [ createMethods(User.prototype, objectTypes.USER, [
'logout', '_logout',
'_sessionForOnDiskPath' '_sessionForOnDiskPath'
]); ]);