File tree 3 files changed +11
-10
lines changed
3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 33
33
"repositoryURL" : " https://github.com/vapor/leaf.git" ,
34
34
"state" : {
35
35
"branch" : null ,
36
- "revision" : " 804f2720e1efbda1cc4d64b97476b140d06afef1 " ,
37
- "version" : " 4.2.0 "
36
+ "revision" : " 04f262edbee143cdfefc5b26cef704913712e16c " ,
37
+ "version" : " 4.2.1 "
38
38
}
39
39
},
40
40
{
60
60
"repositoryURL" : " https://github.com/parse-community/Parse-Swift.git" ,
61
61
"state" : {
62
62
"branch" : null ,
63
- "revision" : " 4ccb8a6222c1c5607a328c6be64932b47191e3fb " ,
64
- "version" : " 4.7.0 "
63
+ "revision" : " 15d1724e84d4ee8f819bc5a1efc7efa0427db3e3 " ,
64
+ "version" : " 4.9.1 "
65
65
}
66
66
},
67
67
{
186
186
"repositoryURL" : " https://github.com/vapor/vapor.git" ,
187
187
"state" : {
188
188
"branch" : null ,
189
- "revision" : " 12e2e7460ab912b65fb7a0fe47e4f638a7d5e642 " ,
190
- "version" : " 4.62.0 "
189
+ "revision" : " 971becba16d6faf5c4cb869d2e3026e822d09059 " ,
190
+ "version" : " 4.65.1 "
191
191
}
192
192
},
193
193
{
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ let package = Package(
11
11
] ,
12
12
dependencies: [
13
13
// 💧 A server-side Swift web framework.
14
- . package ( url: " https://github.com/vapor/vapor.git " , . upToNextMajor( from: " 4.62.0 " ) ) ,
15
- . package ( url: " https://github.com/vapor/leaf.git " , . upToNextMajor( from: " 4.2.0 " ) ) ,
14
+ . package ( url: " https://github.com/vapor/vapor.git " , . upToNextMajor( from: " 4.65.1 " ) ) ,
15
+ . package ( url: " https://github.com/vapor/leaf.git " , . upToNextMajor( from: " 4.2.1 " ) ) ,
16
16
. package ( url: " https://github.com/parse-community/Parse-Swift.git " ,
17
- . upToNextMajor( from: " 4.7.0 " ) )
17
+ . upToNextMajor( from: " 4.9.1 " ) )
18
18
] ,
19
19
targets: [
20
20
. target(
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ public func configure(_ app: Application) throws {
36
36
ParseSwift . initialize ( applicationId: " applicationId " , // Required: Change to your applicationId.
37
37
clientKey: " clientKey " , // Required: Change to your clientKey.
38
38
masterKey: " masterKey " , // Required: Change to your masterKey.
39
- serverURL: parseServerUrl) { _, completionHandler in
39
+ serverURL: parseServerUrl,
40
+ usingPostForQuery: true ) { _, completionHandler in
40
41
completionHandler ( . performDefaultHandling, nil )
41
42
}
42
43
You can’t perform that action at this time.
0 commit comments