Skip to content

Commit

Permalink
bump iOS SDK version to 2.33.10
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh62 committed Feb 17, 2024
2 parents d966aca + 1b3e047 commit 3565f64
Show file tree
Hide file tree
Showing 156 changed files with 568 additions and 272 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/integ-test.yml
Expand Up @@ -6,7 +6,7 @@ on:
identifier:
required: true
type: string
pull_request_target:
pull_request:
branches:
- main

Expand All @@ -19,7 +19,13 @@ concurrency:
cancel-in-progress: true

jobs:
validation:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request || (github.event.pull_request.user.login == 'awsmobilesdk' || contains(fromJSON('["OWNER", "MEMBER"]'), github.event.pull_request.author_association)) }}
steps:
- run: echo "Integration Tests can be run"
integration-test:
needs: [validation]
name: Integration Test
environment: IntegrationTest
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit-test.yml
Expand Up @@ -22,6 +22,7 @@ jobs:
unit-test:
name: Unit Test
strategy:
fail-fast: false
matrix:
scheme:
- AWSAPIGateway
Expand Down
4 changes: 2 additions & 2 deletions AWSAPIGateway.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'AWSAPIGateway'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'

s.source_files = 'AWSAPIGateway/*.{h,m}'
end
2 changes: 1 addition & 1 deletion AWSAPIGateway/AWSAPIGatewayClient.m
Expand Up @@ -23,7 +23,7 @@

static NSString *const AWSAPIGatewayAPIKeyHeader = @"x-api-key";

NSString *const AWSAPIGatewaySDKVersion = @"2.33.9";
NSString *const AWSAPIGatewaySDKVersion = @"2.33.10";

static int defaultChunkSize = 1024;

Expand Down
2 changes: 1 addition & 1 deletion AWSAPIGateway/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions AWSAppleSignIn.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAppleSignIn'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,8 +12,8 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSAuthCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.dependency 'AWSAuthCore', '2.33.10'
s.source_files = 'AWSAuthSDK/Sources/AWSAppleSignIn/*.{h,m}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSAppleSignIn/*.h'
end
12 changes: 6 additions & 6 deletions AWSAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuth'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -14,23 +14,23 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.subspec 'Core' do |authcore|
authcore.dependency 'AWSAuthCore', '2.33.9'
authcore.dependency 'AWSAuthCore', '2.33.10'
end

s.subspec 'FacebookSignIn' do |facebook|
facebook.dependency 'AWSFacebookSignIn', '2.33.9'
facebook.dependency 'AWSFacebookSignIn', '2.33.10'
end

s.subspec 'GoogleSignIn' do |google|
google.dependency 'AWSGoogleSignIn', '2.33.9'
google.dependency 'AWSGoogleSignIn', '2.33.10'
end

s.subspec 'UserPoolsSignIn' do |up|
up.dependency 'AWSUserPoolsSignIn', '2.33.9'
up.dependency 'AWSUserPoolsSignIn', '2.33.10'
end

s.subspec 'UI' do |ui|
ui.dependency 'AWSAuthUI', '2.33.9'
ui.dependency 'AWSAuthUI', '2.33.10'
end

end
4 changes: 2 additions & 2 deletions AWSAuthCore.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuthCore'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,7 +12,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.source_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.{h,m}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.h'
end
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSAppleSignIn/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSAuthCore/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSAuthUI/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSFacebookSignIn/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSGoogleSignIn/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSMobileClient/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSMobileClientXCF/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion AWSAuthSDK/Sources/AWSUserPoolsSignIn/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
6 changes: 3 additions & 3 deletions AWSAuthUI.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuthUI'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,8 +12,8 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSAuthCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.dependency 'AWSAuthCore', '2.33.10'
s.source_files = 'AWSAuthSDK/Sources/AWSAuthUI/*.{h,m}', 'AWSAuthSDK/Sources/AWSAuthUI/**/*.{h,m}', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSFormTableCell.h', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSTableInputCell.h', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSFormTableDelegate.h', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSUserPoolsUIHelper.h'
s.public_header_files = 'AWSAuthSDK/Sources/AWSAuthUI/AWSAuthUI.h', 'AWSAuthSDK/Sources/AWSAuthUI/AWSAuthUIViewController.h', 'AWSAuthSDK/Sources/AWSAuthUI/AWSAuthUIConfiguration.h'
s.private_header_files = 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSFormTableCell.h', 'AWSAuthSDK/Sources/AWSAuthUI/AWSSignInViewController.h', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSTableInputCell.h', 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/AWSFormTableDelegate.h'
Expand Down
4 changes: 2 additions & 2 deletions AWSAutoScaling.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAutoScaling'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,6 +12,6 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.source_files = 'AWSAutoScaling/*.{h,m}'
end
2 changes: 1 addition & 1 deletion AWSAutoScaling/AWSAutoScalingService.m
Expand Up @@ -25,7 +25,7 @@
#import "AWSAutoScalingResources.h"

static NSString *const AWSInfoAutoScaling = @"AutoScaling";
NSString *const AWSAutoScalingSDKVersion = @"2.33.9";
NSString *const AWSAutoScalingSDKVersion = @"2.33.10";


@interface AWSAutoScalingResponseSerializer : AWSXMLResponseSerializer
Expand Down
2 changes: 1 addition & 1 deletion AWSAutoScaling/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions AWSChimeSDKIdentity.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSChimeSDKIdentity'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,6 +12,6 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.source_files = 'AWSChimeSDKIdentity/*.{h,m}'
end
2 changes: 1 addition & 1 deletion AWSChimeSDKIdentity/AWSChimeSDKIdentityService.m
Expand Up @@ -25,7 +25,7 @@
#import "AWSChimeSDKIdentityResources.h"

static NSString *const AWSInfoChimeSDKIdentity = @"ChimeSDKIdentity";
NSString *const AWSChimeSDKIdentitySDKVersion = @"2.33.9";
NSString *const AWSChimeSDKIdentitySDKVersion = @"2.33.10";


@interface AWSChimeSDKIdentityResponseSerializer : AWSJSONResponseSerializer
Expand Down
2 changes: 1 addition & 1 deletion AWSChimeSDKIdentity/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions AWSChimeSDKMessaging.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSChimeSDKMessaging'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,6 +12,6 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.source_files = 'AWSChimeSDKMessaging/*.{h,m}'
end
2 changes: 1 addition & 1 deletion AWSChimeSDKMessaging/AWSChimeSDKMessagingService.m
Expand Up @@ -25,7 +25,7 @@
#import "AWSChimeSDKMessagingResources.h"

static NSString *const AWSInfoChimeSDKMessaging = @"ChimeSDKMessaging";
NSString *const AWSChimeSDKMessagingSDKVersion = @"2.33.9";
NSString *const AWSChimeSDKMessagingSDKVersion = @"2.33.10";


@interface AWSChimeSDKMessagingResponseSerializer : AWSJSONResponseSerializer
Expand Down
2 changes: 1 addition & 1 deletion AWSChimeSDKMessaging/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions AWSCloudWatch.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCloudWatch'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Web Services SDK for iOS.'

s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
Expand All @@ -12,6 +12,6 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/aws-amplify/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.source_files = 'AWSCloudWatch/*.{h,m}'
end
2 changes: 1 addition & 1 deletion AWSCloudWatch/AWSCloudWatchService.m
Expand Up @@ -26,7 +26,7 @@
#import "AWSCloudWatchResources.h"

static NSString *const AWSInfoCloudWatch = @"CloudWatch";
NSString *const AWSCloudWatchSDKVersion = @"2.33.9";
NSString *const AWSCloudWatchSDKVersion = @"2.33.10";


@interface AWSCloudWatchResponseSerializer : AWSXMLResponseSerializer
Expand Down
2 changes: 1 addition & 1 deletion AWSCloudWatch/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.33.9</string>
<string>2.33.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions AWSCognitoAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCognitoAuth'
s.version = '2.33.9'
s.version = '2.33.10'
s.summary = 'Amazon Cognito Auth SDK for iOS'

s.description = 'Amazon Cognito Auth enables sign up and authentication of your end users via a hosted UI'
Expand All @@ -13,8 +13,8 @@ Pod::Spec.new do |s|
:tag => s.version}
s.requires_arc = true

s.dependency 'AWSCore', '2.33.9'
s.dependency 'AWSCognitoIdentityProviderASF', '2.33.9'
s.dependency 'AWSCore', '2.33.10'
s.dependency 'AWSCognitoIdentityProviderASF', '2.33.10'

s.source_files = 'AWSCognitoAuth/**/*.{h,m,c}'
s.public_header_files = 'AWSCognitoAuth/*.h'
Expand Down
2 changes: 1 addition & 1 deletion AWSCognitoAuth/AWSCognitoAuth.m
Expand Up @@ -80,7 +80,7 @@ @interface AWSCognitoAuthConfiguration()

@implementation AWSCognitoAuth

NSString *const AWSCognitoAuthSDKVersion = @"2.33.9";
NSString *const AWSCognitoAuthSDKVersion = @"2.33.10";


static NSMutableDictionary *_instanceDictionary = nil;
Expand Down

0 comments on commit 3565f64

Please sign in to comment.