File tree Expand file tree Collapse file tree 7 files changed +21
-14
lines changed Expand file tree Collapse file tree 7 files changed +21
-14
lines changed Original file line number Diff line number Diff line change 1+ ## 0.8.1 (2020-11-05)
2+
3+ * Change ` box.get(id) ` to return null instead of throwing when trying to read a non-existent object.
4+ * Add "empty" query support using ` box.query() ` .
5+ (thanks [ @Buggaboo ] ( https://github.com/Buggaboo ) for [ #132 ] ( https://github.com/objectbox/objectbox-dart/pull/132 ) )
6+ * Documentation and examples updates & improvements.
7+
18## 0.8.0 (2020-10-13)
29
310* Update to objectbox-c 0.10.0.
Original file line number Diff line number Diff line change @@ -20,20 +20,20 @@ Installation
2020Add the following dependencies to your ` pubspec.yaml ` :
2121``` yaml
2222dependencies :
23- objectbox : ^0.8.0
23+ objectbox : ^0.8.1
2424
2525dev_dependencies :
2626 build_runner : ^1.0.0
27- objectbox_generator : ^0.8.0
27+ objectbox_generator : ^0.8.1
2828` ` `
2929
3030Proceed based on whether you're developing a Flutter app or a standalone dart program:
31311. **Flutter** only steps:
3232 * Add additional dependency to include native libraries (required in Flutter):
3333 ` ` ` yaml
3434 dependencies :
35- objectbox : ^0.8.0
36- objectbox_flutter_libs : ^0.8.0
35+ objectbox : ^0.8.1
36+ objectbox_flutter_libs : ^0.8.1
3737 ` ` `
3838 * Install the packages ` flutter pub get`
3939 * XCode/iOS: under Architectures replace `${ARCHS_STANDARD)` with `arm64` (or `$ARCHS_STANDARD_64_BIT`).
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ dependencies:
1111 cupertino_icons : ^0.1.2
1212 path_provider : any
1313 intl : any
14- objectbox : ^0.8.0
15- objectbox_flutter_libs : ^0.8.0
14+ objectbox : ^0.8.1
15+ objectbox_flutter_libs : ^0.8.1
1616
1717dev_dependencies :
1818 flutter_test :
1919 sdk : flutter
2020 build_runner : ^1.0.0
21- objectbox_generator : ^0.8.0
21+ objectbox_generator : ^0.8.1
2222
2323flutter :
2424 uses-material-design : true
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ dependencies:
1111 flutter :
1212 sdk : flutter
1313 cupertino_icons : ^0.1.0
14- objectbox : ^0.8.0
14+ objectbox : ^0.8.1
1515
1616dev_dependencies :
1717 flutter_test :
1818 sdk : flutter
1919 build_runner : ^1.0.0
20- objectbox_generator : ^0.8.0
20+ objectbox_generator : ^0.8.1
2121
2222flutter :
2323 uses-material-design : true
Original file line number Diff line number Diff line change 11name : objectbox_flutter_libs
2- version : 0.8.0
2+ version : 0.8.1
33repository : https://github.com/objectbox/objectbox-dart
44homepage : https://objectbox.io
55description : ObjectBox is a super-fast NoSQL ACID compliant object database. This package contains flutter runtime libraries for ObjectBox.
@@ -11,7 +11,7 @@ environment:
1111dependencies :
1212 # This is here just to ensure compatibility between objectbox-dart code and the libraries used
1313 # You should still depend on objectbox directly in your Flutter application.
14- objectbox : 0.8.0
14+ objectbox : 0.8.1
1515
1616flutter :
1717 plugin :
Original file line number Diff line number Diff line change 11name : objectbox_generator
2- version : 0.8.0
2+ version : 0.8.1
33repository : https://github.com/objectbox/objectbox-dart
44homepage : https://objectbox.io
55description : ObjectBox binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
@@ -8,7 +8,7 @@ environment:
88 sdk : " >=2.5.0 <3.0.0"
99
1010dependencies :
11- objectbox : 0.8.0
11+ objectbox : 0.8.1
1212 build : ^1.0.0
1313 source_gen : ^0.9.0
1414 analyzer : " >=0.35.0 <0.100.0"
Original file line number Diff line number Diff line change 11name : objectbox
2- version : 0.8.0
2+ version : 0.8.1
33repository : https://github.com/objectbox/objectbox-dart
44homepage : https://objectbox.io
55description : ObjectBox is a super-fast NoSQL ACID compliant object database.
You can’t perform that action at this time.
0 commit comments