Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
- id: get-xcode-version
run: |
LATEST_XCODE_VERSION=16.2.0
MINIMUM_XCODE_VERSION=15.0.1
MINIMUM_XCODE_VERSION=16.1.0

INPUT_XCODE_VERSION=${{ inputs.xcode_version }}

Expand Down Expand Up @@ -71,7 +71,7 @@ runs:
;;
iOS/*)
DEVICE="iPhone 15"
OS_VERSION="17.0"
OS_VERSION="17.0.1"
;;
tvOS/latest)
DEVICE="Apple TV 4K (3rd generation)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import AWSCognitoIdentity
import ClientRuntime
import Foundation

extension GetCredentialsForIdentityOutput: Codable {
enum CodingKeys: Swift.String, Swift.CodingKey {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import AwsCommonRuntimeKit
import Amplify
import InternalAmplifyCredentials
import SmithyIdentity
import Foundation

public class MockAWSAuthService: AWSAuthCredentialsProviderBehavior {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class AWSS3PreSignedURLBuilderAdapter: AWSS3PreSignedURLBuilderBehavior {
expiration: expiration)
case .uploadPart(let partNumber, let uploadId):
let input = UploadPartInput(bucket: bucket, key: key, partNumber: partNumber, uploadId: uploadId)
preSignedUrl = try await input.customPresignURL(
preSignedUrl = try await input.presignURL(
config: config,
expiration: expiration)
}
Expand Down

This file was deleted.

Loading
Loading