Skip to content

Commit aa4b3b5

Browse files
Fix parse-community#697 / Update Constants
1 parent 78dd3d6 commit aa4b3b5

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

packages/dart/lib/src/base/parse_constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
part of flutter_parse_sdk;
22

33
// Library
4-
const String keySdkVersion = '3.1.0';
4+
const String keySdkVersion = '3.2.0';
55
const String keyLibraryName = 'Flutter Parse SDK';
66

77
// End Points

packages/dart/lib/src/objects/parse_relation.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ParseRelation<T extends ParseObject> {
2929
Set<T>? _knownObjects = Set<T>();
3030

3131
QueryBuilder getQuery() {
32-
return QueryBuilder(ParseObject(_targetClass!))
32+
return QueryBuilder(ParseCoreData.instance.createObject(_targetClass!))
3333
..whereRelatedTo(_key, _parent!.parseClassName, _parentObjectId);
3434
}
3535

packages/dart/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@ dependencies:
2020
# Utils
2121
uuid: ^3.0.6
2222
meta: ^1.7.0
23-
path: ^1.8.1
23+
path: ^1.8.0
2424
mime_type: ^1.0.0
2525

26+
dependency_overrides:
27+
path: ^1.8.1 # required for transitive use only
28+
2629
dev_dependencies:
2730
# Testing
2831
build_runner: ^2.1.10

packages/flutter/pubspec.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ dependencies:
1111
sdk: flutter
1212

1313
#Uncomment for Release version
14-
parse_server_sdk: ^3.1.0
14+
#parse_server_sdk: ^3.1.0
1515

1616
# Uncomment for local testing
17-
#parse_server_sdk:
18-
# path: ../dart
17+
parse_server_sdk:
18+
path: ../dart
1919

2020
# Uncomment for test with Github Branch
2121
#parse_server_sdk:
@@ -39,6 +39,9 @@ dependencies:
3939
sembast_web: ^2.0.1+1
4040
path: ^1.8.0 # required for transitive use only
4141

42+
dependency_overrides:
43+
path: ^1.8.1 # required for transitive use only
44+
4245
dev_dependencies:
4346
# Testing
4447
flutter_test:

0 commit comments

Comments
 (0)