Skip to content

Commit

Permalink
Update to core 5.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Jul 10, 2019
1 parent 939d89f commit 883815e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ x.y.z Release notes (yyyy-MM-dd)
### Enhancements
* Add support for canceling asynchronous opens using a new AsyncOpenTask
returned from the asyncOpen() call. ([PR #6913](https://github.com/realm/realm-cocoa/pull/6187)).
* Importing the Realm SPM package can now be done by pinning to a version
rather than a branch.

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-js/issues/????), since v?.?.?)
* None.

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
* Queries on a List/RLMArray which checked an indexed int property would
sometimes give incorrect results.
([#6154](https://github.com/realm/realm-cocoa/issues/6154)), since v3.15.0)
* Queries involving an indexed int property had a memory leak if run multiple
times. ([#6186](https://github.com/realm/realm-cocoa/issues/6186)), since v3.15.0)
* Creating a subscription with `includeLinkingObjects:` performed unneccesary
comparisons, making it extremely slow when large numbers of objects were
involved. ([Core #3311](https://github.com/realm/realm-core/issues/3311), since v3.15.0)

### Compatibility
* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import PackageDescription
import Foundation

let coreVersionStr = "5.22.0"
let coreVersionStr = "5.23.1"
let cocoaVersionStr = "3.17.0"

let coreVersionPieces = coreVersionStr.split(separator: ".")
Expand Down Expand Up @@ -38,7 +38,7 @@ let package = Package(
targets: ["Realm", "RealmSwift"]),
],
dependencies: [
.package(url: "https://github.com/realm/realm-core", .branch("master")),
.package(url: "https://github.com/realm/realm-core", .exact(Version(coreVersionStr)!)),
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions dependencies.list
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=3.17.0
REALM_CORE_VERSION=5.22.0
REALM_SYNC_VERSION=4.6.1
REALM_CORE_VERSION=5.23.1
REALM_SYNC_VERSION=4.6.3
REALM_OBJECT_SERVER_VERSION=3.21.1

0 comments on commit 883815e

Please sign in to comment.