File tree 8 files changed +13
-14
lines changed
8 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
name : objectbox_flutter_libs
2
- version : 1.1.0
2
+ version : 1.1.1
3
3
repository : https://github.com/objectbox/objectbox-dart
4
4
homepage : https://objectbox.io
5
5
description : ObjectBox is a super-fast NoSQL ACID compliant object database. This package contains flutter runtime libraries for ObjectBox.
@@ -11,7 +11,7 @@ environment:
11
11
dependencies :
12
12
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
13
13
# You should still depend on objectbox directly in your Flutter application.
14
- objectbox : 1.1.0
14
+ objectbox : 1.1.1
15
15
path_provider : ^2.0.0
16
16
17
17
flutter :
Original file line number Diff line number Diff line change 1
1
name : objectbox_generator
2
- version : 1.1.0
2
+ version : 1.1.1
3
3
repository : https://github.com/objectbox/objectbox-dart
4
4
homepage : https://objectbox.io
5
5
description : ObjectBox binding code generator - finds annotated entities and adds them to the ObjectBox DB model.
@@ -8,7 +8,7 @@ environment:
8
8
sdk : ' >=2.12.0 <3.0.0'
9
9
10
10
dependencies :
11
- objectbox : 1.1.0
11
+ objectbox : 1.1.1
12
12
analyzer : ^1.1.0
13
13
build : ^2.0.0
14
14
collection : ^1.15.0
Original file line number Diff line number Diff line change 1
- ## latest
1
+ ## 1.1.1 (2021-07-09)
2
2
3
3
* Add support for ` Query.param() ` on linked entities.
4
4
* Fix generated ` openStore() ` for apps that don't enable null-safety yet.
Original file line number Diff line number Diff line change @@ -28,8 +28,7 @@ class Person {
28
28
Person({this.id = 0, required this.firstName, required this.lastName});
29
29
}
30
30
31
- // Note: in Flutter you also need to specify a directory, see examples.
32
- final store = Store(getObjectBoxModel());
31
+ final store = await openStore();
33
32
final box = store.box<Person>();
34
33
35
34
var person = Person(firstName: 'Joe', lastName: 'Green');
@@ -59,7 +58,7 @@ Add the following dependencies to start using ObjectBox and code generator.
59
58
60
59
``` yaml
61
60
dependencies :
62
- objectbox : ^1.1.0
61
+ objectbox : ^1.1.1
63
62
objectbox_flutter_libs : any
64
63
65
64
dev_dependencies :
@@ -89,7 +88,7 @@ dev_dependencies:
89
88
90
89
` ` ` yaml
91
90
dependencies:
92
- objectbox: ^1.1.0
91
+ objectbox: ^1.1.1
93
92
94
93
dev_dependencies:
95
94
build_runner: ^2.0.0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies:
11
11
sdk : flutter
12
12
cupertino_icons : any
13
13
intl : any
14
- objectbox : ^1.1.0
14
+ objectbox : ^1.1.1
15
15
objectbox_flutter_libs : any
16
16
17
17
dev_dependencies :
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies:
11
11
sdk : flutter
12
12
cupertino_icons : any
13
13
intl : any
14
- objectbox : ^1.1.0
14
+ objectbox : ^1.1.1
15
15
objectbox_sync_flutter_libs : any
16
16
17
17
dev_dependencies :
Original file line number Diff line number Diff line change 1
1
name : objectbox
2
- version : 1.1.0
2
+ version : 1.1.1
3
3
repository : https://github.com/objectbox/objectbox-dart/tree/main/objectbox
4
4
homepage : https://objectbox.io
5
5
description : ObjectBox is a super-fast NoSQL ACID compliant object database.
Original file line number Diff line number Diff line change 1
1
name : objectbox_sync_flutter_libs
2
- version : 1.1.0
2
+ version : 1.1.1
3
3
repository : https://github.com/objectbox/objectbox-dart
4
4
homepage : https://objectbox.io
5
5
description : ObjectBox is a super-fast NoSQL ACID compliant object database. This package contains flutter runtime libraries for ObjectBox, including ObjectBox Sync.
@@ -11,7 +11,7 @@ environment:
11
11
dependencies :
12
12
# This is here just to ensure compatibility between objectbox-dart code and the libraries used
13
13
# You should still depend on objectbox directly in your Flutter application.
14
- objectbox : 1.1.0
14
+ objectbox : 1.1.1
15
15
path_provider : ^2.0.0
16
16
17
17
flutter :
You can’t perform that action at this time.
0 commit comments