Skip to content

Commit 546adb6

Browse files
committed
[2.26.0] Bump version
1 parent 7d53234 commit 546adb6

File tree

5 files changed

+464
-465
lines changed

5 files changed

+464
-465
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
x.x.x Release notes (yyyy-MM-dd)
1+
2.26.0 Release notes (2019-4-4)
22
=============================================================
33
### Enhancements
44
* Add 4 new fields to `NamedSubscription` which reprents query-based subscriptions: `createdAt`, `updatedAt`, `expiresAt` and `timeToLive`. These make it possible to better reason about and control current subscriptions. ([#2266](https://github.com/realm/realm-js/issues/2266))
@@ -7,15 +7,14 @@ x.x.x Release notes (yyyy-MM-dd)
77
* Add `Realm.Results.description()` which returns a string representation of the query.
88
* Add support for defining mapped properties in the schema using `name: { type: 'int', mapTo: 'internalName' }`. In that case the mapped name is used internally in the underlying Realm file, while the property key is used for reading/writing the property as well as querying it.
99
* Add `RealmObject.addListener()`, `RealmObject.removeListener()`, and `RealmObject.removeAllListeners()` to set up and remove object-level notifications. ([#763](https://github.com/realm/realm-js/issues/763))
10-
* Added a new `Realm.UpdateMode` enum with the values: `never`, `modified`, `all`. This replaces the current
10+
* Add a new `Realm.UpdateMode` enum with the values: `never`, `modified`, `all`. This replaces the current
1111
`Realm.create(type, properties, update)` with `Realm.create(type, properties, updateMode)`.
1212
`Realm.create(type, properties, 'modified')` is a new mode that only update existing properties that actually
1313
changed, while `Realm.create(type, properties, 'never')` is equal to `Realm.create(type, properties, false)` and
1414
`Realm.create(type, properties, 'all')` is equal to `Realm.create(type, properties, true)`.
1515
`Realm.create(type, properties, update)` is now deprecated. ([#2089](https://github.com/realm/realm-js/issues/2089))
1616

1717
### Fixed
18-
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
1918
* Fixed retrying authentication requests. The issue could be observed as "Cannot read property 'get' of undefined." errors being thrown when the authenticate requests were retried. ([#2297](https://github.com/realm/realm-js/issues/2297), since v2.24.0)
2019
* Due to a rare race condition in some Android devices (including Samsung SM-T111), an app could crash hard. A workaround was introduced but never included in any releases. ([#1895](https://github.com/realm/realm-js/issues/1895), since v2.11.0)
2120

dependencies.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE_NAME=realm-js
2-
VERSION=2.25.0
2+
VERSION=2.26.0
33
REALM_CORE_VERSION=5.14.0
44
REALM_SYNC_VERSION=3.15.0
55
REALM_OBJECT_SERVER_VERSION=3.17.1

0 commit comments

Comments
 (0)