Skip to content

Commit df77e33

Browse files
authored
Update dependencies, adjust for changes in aws-sdk-swift again. (#27)
* Update dependencies, adjust for changes in aws-sdk-swift again. * Remove CI for 5.8 as aws-sdk-swift itself no longer supports it.
1 parent 5a248eb commit df77e33

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/swift.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-20.04]
31-
swift: ["5.9", "5.8.1"]
31+
swift: ["5.9"]
3232
runs-on: ${{ matrix.os }}
3333
steps:
3434
- uses: swift-actions/[email protected]

Package.resolved

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img src="https://github.com/swift-server-community/dynamo-db-tables/actions/workflows/swift.yml/badge.svg?branch=main" alt="Build - Main Branch">
44
</a>
55
<a href="http://swift.org">
6-
<img src="https://img.shields.io/badge/swift-5.8|5.9|5.10-orange.svg?style=flat" alt="Swift 5.8, 5.9 and 5.10 Tested">
6+
<img src="https://img.shields.io/badge/swift-5.9|5.10-orange.svg?style=flat" alt="Swift 5.9 and 5.10 Tested">
77
</a>
88
<img src="https://img.shields.io/badge/ubuntu-20.04|22.04-yellow.svg?style=flat" alt="Ubuntu 20.04 and 22.04 Tested">
99
<img src="https://img.shields.io/badge/license-Apache2-blue.svg?style=flat" alt="Apache 2">

Sources/DynamoDBTables/AWSDynamoDBCompositePrimaryKeyTable.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import ClientRuntime
3030
import Foundation
3131
import Logging
3232
import Metrics
33-
import SmithyIdentityAPI
33+
import SmithyIdentity
3434

3535
public struct AWSDynamoDBTableMetrics {
3636
// metric to record if the `TransactWrite` API is retried
@@ -51,7 +51,7 @@ public struct AWSDynamoDBCompositePrimaryKeyTable: DynamoDBCompositePrimaryKeyTa
5151
let logger: Logging.Logger
5252

5353
public init(tableName: String, region: Swift.String,
54-
awsCredentialIdentityResolver: (any SmithyIdentityAPI.AWSCredentialIdentityResolver)? = nil,
54+
awsCredentialIdentityResolver: (any SmithyIdentity.AWSCredentialIdentityResolver)? = nil,
5555
httpClientConfiguration: ClientRuntime.HttpClientConfiguration? = nil,
5656
consistentRead: Bool = true,
5757
escapeSingleQuoteInPartiQL: Bool = false,

Sources/DynamoDBTables/AWSDynamoDBCompositePrimaryKeysProjection.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import AWSDynamoDB
2929
import ClientRuntime
3030
import Foundation
3131
import Logging
32-
import SmithyIdentityAPI
32+
import SmithyIdentity
3333

3434
public struct AWSDynamoDBCompositePrimaryKeysProjection: DynamoDBCompositePrimaryKeysProjection {
3535
let dynamodb: AWSDynamoDB.DynamoDBClient
@@ -42,7 +42,7 @@ public struct AWSDynamoDBCompositePrimaryKeysProjection: DynamoDBCompositePrimar
4242
}
4343

4444
public init(tableName: String, region: Swift.String,
45-
awsCredentialIdentityResolver: (any SmithyIdentityAPI.AWSCredentialIdentityResolver)? = nil,
45+
awsCredentialIdentityResolver: (any SmithyIdentity.AWSCredentialIdentityResolver)? = nil,
4646
httpClientConfiguration: ClientRuntime.HttpClientConfiguration? = nil,
4747
logger: Logging.Logger? = nil) throws
4848
{

0 commit comments

Comments
 (0)