Skip to content

Commit a1b82a6

Browse files
authored
feat: bump swift sdk version to 1.5.x (#4028)
* feat: bump swift sdk version to 1.5.8 * minimum xcode version update * minimum os update * update to 1.5.10 * remove custom presignurl implementation
1 parent 97ba904 commit a1b82a6

File tree

8 files changed

+231
-213
lines changed

8 files changed

+231
-213
lines changed

.github/composite_actions/get_platform_parameters/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
- id: get-xcode-version
4343
run: |
4444
LATEST_XCODE_VERSION=16.2.0
45-
MINIMUM_XCODE_VERSION=15.0.1
45+
MINIMUM_XCODE_VERSION=16.1.0
4646
4747
INPUT_XCODE_VERSION=${{ inputs.xcode_version }}
4848
@@ -71,7 +71,7 @@ runs:
7171
;;
7272
iOS/*)
7373
DEVICE="iPhone 15"
74-
OS_VERSION="17.0"
74+
OS_VERSION="17.0.1"
7575
;;
7676
tvOS/latest)
7777
DEVICE="Apple TV 4K (3rd generation)"

AmplifyPlugins/Auth/Tests/AWSCognitoAuthPluginUnitTests/TestHarness/AuthCodableImplementations/Cognito/Response/GetCredentialsForIdentityOutputResponse+Codable.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import AWSCognitoIdentity
99
import ClientRuntime
10+
import Foundation
1011

1112
extension GetCredentialsForIdentityOutput: Codable {
1213
enum CodingKeys: Swift.String, Swift.CodingKey {

AmplifyPlugins/Core/AWSPluginsTestCommon/MockAWSAuthService.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import AwsCommonRuntimeKit
1010
import Amplify
1111
import InternalAmplifyCredentials
1212
import SmithyIdentity
13+
import Foundation
1314

1415
public class MockAWSAuthService: AWSAuthCredentialsProviderBehavior {
1516

AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Dependency/AWSS3PreSignedURLBuilderAdapter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class AWSS3PreSignedURLBuilderAdapter: AWSS3PreSignedURLBuilderBehavior {
5353
expiration: expiration)
5454
case .uploadPart(let partNumber, let uploadId):
5555
let input = UploadPartInput(bucket: bucket, key: key, partNumber: partNumber, uploadId: uploadId)
56-
preSignedUrl = try await input.customPresignURL(
56+
preSignedUrl = try await input.presignURL(
5757
config: config,
5858
expiration: expiration)
5959
}

AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Dependency/UploadPartInput+presignURL.swift

Lines changed: 0 additions & 200 deletions
This file was deleted.

0 commit comments

Comments
 (0)