Skip to content

Commit e44fcc8

Browse files
authoredMay 16, 2024··
Update required versions of dependencies (#218)
Update required dependency versions so users can't accidentally get into states where things won't build. Also fixes a DocC warning.
1 parent 2cc10e8 commit e44fcc8

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed
 

‎Package.swift

+3-5
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ let package = Package(
1313
.library(name: "FluentPostgresDriver", targets: ["FluentPostgresDriver"]),
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/vapor/async-kit.git", from: "1.17.0"),
17-
.package(url: "https://github.com/vapor/fluent-kit.git", from: "1.43.0"),
18-
.package(url: "https://github.com/vapor/postgres-kit.git", from: "2.11.4"),
16+
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
17+
.package(url: "https://github.com/vapor/fluent-kit.git", from: "1.48.4"),
18+
.package(url: "https://github.com/vapor/postgres-kit.git", from: "2.13.4"),
1919
],
2020
targets: [
2121
.target(
@@ -42,6 +42,4 @@ let package = Package(
4242
var swiftSettings: [SwiftSetting] { [
4343
.enableUpcomingFeature("ConciseMagicFile"),
4444
.enableUpcomingFeature("ForwardTrailingClosures"),
45-
.enableUpcomingFeature("DisableOutwardActorInference"),
46-
.enableExperimentalFeature("StrictConcurrency=complete"),
4745
] }

‎Package@swift-5.9.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ let package = Package(
1313
.library(name: "FluentPostgresDriver", targets: ["FluentPostgresDriver"]),
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/vapor/async-kit.git", from: "1.17.0"),
17-
.package(url: "https://github.com/vapor/fluent-kit.git", from: "1.43.0"),
18-
.package(url: "https://github.com/vapor/postgres-kit.git", from: "2.11.4"),
16+
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
17+
.package(url: "https://github.com/vapor/fluent-kit.git", from: "1.48.4"),
18+
.package(url: "https://github.com/vapor/postgres-kit.git", from: "2.13.4"),
1919
],
2020
targets: [
2121
.target(

‎Sources/FluentPostgresDriver/FluentPostgresConfiguration.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ fileprivate struct FakeSendable<T>: @unchecked Sendable { let wrappedValue: T }
9999

100100
/// We'd like to just default the context parameters of the "actual" method. Unfortunately, there are a few
101101
/// cases involving the UNIX domain socket initalizer where usage can resolve to either the new
102-
/// ``SQLPostgresConfiguration``-based method or the deprecated ``PostgresConfiguration``-based method, with no
102+
/// `SQLPostgresConfiguration`-based method or the deprecated `PostgresConfiguration`-based method, with no
103103
/// obvious way to disambiguate which to call. Because the context parameters are generic, if they are defaulted,
104104
/// the compiler resolves the ambiguity in favor of the deprecated method (which has no generic parameters).
105105
/// However, by adding the non-defaulted-parameter variant which takes neither context, we've provided a version

0 commit comments

Comments
 (0)
Please sign in to comment.