Skip to content

Commit

Permalink
Merge branch 'main' into ni/get-backlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev authored Jan 23, 2024
2 parents a87c89d + fc83540 commit 0a08565
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

The map keys may not contain `.` or start with `$`. (Issue [#685](https://github.com/realm/realm-dart/issues/685))
* Added a new exception - `MigrationRequiredException` that will be thrown when a local Realm is opened with a schema that differs from the schema on disk and no migration callback is supplied. Additionally, a `helpLink` property has been added to `RealmException` and its subclasses to provide a link to the documentation for the error. (Issue [#1448](https://github.com/realm/realm-dart/issues/1448))
* Downgrade minimum dependencies to Dart 3.0.0 and Flutter 3.10.0. (PR [#1457](https://github.com/realm/realm-dart/pull/1457))
* Added `RealmObject.getBacklinks<SourceType>('sourceProperty')` which is a method allowing you to look up all objects of type `SourceType` which link to the current object via their `sourceProperty` property. (Issue [#1480](https://github.com/realm/realm-dart/issues/1480))

### Fixed
Expand Down Expand Up @@ -52,6 +53,8 @@

### Compatibility
* Realm Studio: 13.0.0 or later.
* Flutter: ^3.10.0
* Dart: ^3.0.0

### Internal
* Using Core v13.26.0.
Expand Down
3 changes: 2 additions & 1 deletion common/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ issue_tracker: https://github.com/realm/realm-dart/issues
publish_to: none

environment:
sdk: ^3.1.0
sdk: ^3.0.0

dependencies:
collection: ^1.18.0
objectid: ^3.0.0
sane_uuid: ^1.0.0-alpha.4

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A simple command-line application using Realm Dart SDK.
publish_to: none

environment:
sdk: ^3.1.0
sdk: ^3.0.0

dependencies:
realm_dart:
Expand Down
2 changes: 1 addition & 1 deletion ffigen/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: >-
publish_to: none

environment:
sdk: ^3.1.0
sdk: ^3.0.0

dev_dependencies:
ffigen: ^11.0.0
4 changes: 2 additions & 2 deletions flutter/realm_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ version: 1.6.1
publish_to: "none"

environment:
sdk: ^3.1.0
flutter: ^3.13.0
sdk: ^3.0.0
flutter: ^3.10.0

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions flutter/realm_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ issue_tracker: https://github.com/realm/realm-dart/issues
publish_to: none

environment:
sdk: ^3.1.0
flutter: ^3.13.0
sdk: ^3.0.0
flutter: ^3.10.0

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions flutter/realm_flutter/tests/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish_to: "none"
version: 1.6.1

environment:
sdk: ^3.1.0
flutter: ^3.13.0
sdk: ^3.0.0
flutter: ^3.10.0

dependencies:
flutter:
Expand Down
2 changes: 1 addition & 1 deletion generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ issue_tracker: https://github.com/realm/realm-dart/issues
publish_to: none

environment:
sdk: ^3.1.0
sdk: ^3.0.0

dependencies:
analyzer: ^6.0.0
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ issue_tracker: https://github.com/realm/realm-dart/issues
publish_to: none

environment:
sdk: ^3.1.0
sdk: ^3.0.0

dependencies:
args: ^2.3.0
Expand Down

0 comments on commit 0a08565

Please sign in to comment.