Skip to content

Commit cb0b047

Browse files
authored
Bump dependencies (#4)
1 parent 18ffeb6 commit cb0b047

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ let package = Package(
1111
],
1212
dependencies: [
1313
// 💧 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")),
1616
.package(url: "https://github.com/parse-community/Parse-Swift.git",
17-
.upToNextMajor(from: "4.7.0"))
17+
.upToNextMajor(from: "4.9.1"))
1818
],
1919
targets: [
2020
.target(

Sources/ParseServerSwift/configure.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public func configure(_ app: Application) throws {
3636
ParseSwift.initialize(applicationId: "applicationId", // Required: Change to your applicationId.
3737
clientKey: "clientKey", // Required: Change to your clientKey.
3838
masterKey: "masterKey", // Required: Change to your masterKey.
39-
serverURL: parseServerUrl) { _, completionHandler in
39+
serverURL: parseServerUrl,
40+
usingPostForQuery: true) { _, completionHandler in
4041
completionHandler(.performDefaultHandling, nil)
4142
}
4243

0 commit comments

Comments
 (0)