Skip to content

Commit

Permalink
feat: Updating to AWS SDK for Swift 0.76.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisebas committed Sep 13, 2024
1 parent 518a53e commit c4f8aca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ extension UploadPartInput {
config.interceptorProviders.forEach { provider in
builder.interceptors.add(provider.create())
}
config.httpInterceptorProviders.forEach { (provider: any ClientRuntime.HttpInterceptorProvider) -> Void in
let i: any ClientRuntime.HttpInterceptor<UploadPartInput, UploadPartOutput> = provider.create()
builder.interceptors.add(i)
config.httpInterceptorProviders.forEach { provider in
builder.interceptors.add(provider.create())
}
builder.interceptors.add(ClientRuntime.URLPathMiddleware<UploadPartInput, UploadPartOutput>(UploadPartInput.urlPathProvider(_:)))
builder.interceptors.add(ClientRuntime.URLHostMiddleware<UploadPartInput, UploadPartOutput>())
Expand Down
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/awslabs/aws-sdk-swift.git",
"state" : {
"revision" : "9658373d352717a7c06fab528a4a9d84747143a7",
"version" : "0.76.0"
"revision" : "8dc5c2b0bace8851efe1fd42d449d8eefafc0db0",
"version" : "0.76.2"
}
},
{
Expand All @@ -50,8 +50,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/smithy-lang/smithy-swift",
"state" : {
"revision" : "146b5b7ed87140d1ae86eccc070aa24ef8f23276",
"version" : "0.66.0"
"revision" : "e32c3fbbd865ac3c256a864b0563b2b759a45420",
"version" : "0.68.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let platforms: [SupportedPlatform] = [
.watchOS(.v9)
]
let dependencies: [Package.Dependency] = [
.package(url: "https://github.com/awslabs/aws-sdk-swift.git", exact: "0.76.0"),
.package(url: "https://github.com/awslabs/aws-sdk-swift.git", exact: "0.76.2"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", exact: "0.15.3"),
.package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "2.1.0"),
.package(url: "https://github.com/aws-amplify/amplify-swift-utils-notifications.git", from: "1.1.0")
Expand Down

0 comments on commit c4f8aca

Please sign in to comment.