Skip to content

Commit 2cc025b

Browse files
authored
Update all library and tooling dependencies (#678)
1 parent 459e30d commit 2cc025b

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

.evergreen/install-tools.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ swiftenv local $SWIFT_VERSION
3939

4040
if [ $1 == "swiftlint" ]
4141
then
42-
build_from_gh swiftlint https://github.com/realm/SwiftLint "0.43.1"
42+
build_from_gh swiftlint https://github.com/realm/SwiftLint "0.44.0"
4343
elif [ $1 == "swiftformat" ]
4444
then
45-
build_from_gh swiftformat https://github.com/nicklockwood/SwiftFormat "0.47.13"
45+
build_from_gh swiftformat https://github.com/nicklockwood/SwiftFormat "0.48.11"
4646
elif [ $1 == "sourcery" ]
4747
then
48-
install_from_gh sourcery https://github.com/krzysztofzablocki/Sourcery/releases/download/1.3.4/Sourcery-1.3.4.zip
48+
install_from_gh sourcery https://github.com/krzysztofzablocki/Sourcery/releases/download/1.6.0/Sourcery-1.6.0.zip
4949
else
5050
echo Missing/unknown install option: "$1"
5151
fi

Package.resolved

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

Tests/MongoSwiftSyncTests/SyncChangeStreamTests.swift

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -296,15 +296,13 @@ final class ChangeStreamSpecTests: MongoSwiftTestCase {
296296
// TODO: SWIFT-560: Run this test.
297297
func testChangeStreamSpecUnified() throws {
298298
printSkipMessage(testName: self.name, reason: "Skipping until SWIFT-560 is implemented")
299-
return
300-
301-
// let tests = try retrieveSpecTestFiles(
302-
// specName: "change-streams",
303-
// subdirectory: "unified",
304-
// asType: UnifiedTestFile.self
305-
// ).map { $0.1 }
306-
// let testRunner = try UnifiedTestRunner()
307-
// try testRunner.runFiles(tests)
299+
// let tests = try retrieveSpecTestFiles(
300+
// specName: "change-streams",
301+
// subdirectory: "unified",
302+
// asType: UnifiedTestFile.self
303+
// ).map { $0.1 }
304+
// let testRunner = try UnifiedTestRunner()
305+
// try testRunner.runFiles(tests)
308306
}
309307

310308
// TODO: SWIFT-560: Remove this test. It is a prose version of a unified test which we skip above.

Tests/MongoSwiftTests/MongoClientTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ final class MongoClientTests: MongoSwiftTestCase {
1010
defer { elg.syncShutdownOrFail() }
1111
let client = try MongoClient(using: elg)
1212
try client.syncClose()
13-
expect(try client.listDatabases().wait()).to(throwError(errorType: ChannelError.self))
13+
expect(try client.listDatabases().wait()).to(throwError(errorType: NIOThreadPoolError.ThreadPoolInactive.self))
1414
}
1515

1616
func verifyPoolSize(_ client: MongoClient, size: Int) throws {

0 commit comments

Comments
 (0)