Skip to content

Commit

Permalink
Bump dependencies (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 authored Aug 29, 2022
1 parent 18ffeb6 commit cb0b047
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"repositoryURL": "https://github.com/vapor/leaf.git",
"state": {
"branch": null,
"revision": "804f2720e1efbda1cc4d64b97476b140d06afef1",
"version": "4.2.0"
"revision": "04f262edbee143cdfefc5b26cef704913712e16c",
"version": "4.2.1"
}
},
{
Expand All @@ -60,8 +60,8 @@
"repositoryURL": "https://github.com/parse-community/Parse-Swift.git",
"state": {
"branch": null,
"revision": "4ccb8a6222c1c5607a328c6be64932b47191e3fb",
"version": "4.7.0"
"revision": "15d1724e84d4ee8f819bc5a1efc7efa0427db3e3",
"version": "4.9.1"
}
},
{
Expand Down Expand Up @@ -186,8 +186,8 @@
"repositoryURL": "https://github.com/vapor/vapor.git",
"state": {
"branch": null,
"revision": "12e2e7460ab912b65fb7a0fe47e4f638a7d5e642",
"version": "4.62.0"
"revision": "971becba16d6faf5c4cb869d2e3026e822d09059",
"version": "4.65.1"
}
},
{
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ let package = Package(
],
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.62.0")),
.package(url: "https://github.com/vapor/leaf.git", .upToNextMajor(from: "4.2.0")),
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.65.1")),
.package(url: "https://github.com/vapor/leaf.git", .upToNextMajor(from: "4.2.1")),
.package(url: "https://github.com/parse-community/Parse-Swift.git",
.upToNextMajor(from: "4.7.0"))
.upToNextMajor(from: "4.9.1"))
],
targets: [
.target(
Expand Down
3 changes: 2 additions & 1 deletion Sources/ParseServerSwift/configure.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public func configure(_ app: Application) throws {
ParseSwift.initialize(applicationId: "applicationId", // Required: Change to your applicationId.
clientKey: "clientKey", // Required: Change to your clientKey.
masterKey: "masterKey", // Required: Change to your masterKey.
serverURL: parseServerUrl) { _, completionHandler in
serverURL: parseServerUrl,
usingPostForQuery: true) { _, completionHandler in
completionHandler(.performDefaultHandling, nil)
}

Expand Down

0 comments on commit cb0b047

Please sign in to comment.