diff --git a/.github/workflows/issue_closed.yml b/.github/workflows/issue_closed.yml
new file mode 100644
index 00000000000..53b25293f1d
--- /dev/null
+++ b/.github/workflows/issue_closed.yml
@@ -0,0 +1,33 @@
+name: Issue Closed
+
+on:
+ issues:
+ types: [closed]
+
+permissions:
+ issues: write
+
+jobs:
+ cleanup-labels:
+ runs-on: ubuntu-latest
+ if: ${{ contains(github.event.issue.labels.*.name, 'pending-community-response') || contains(github.event.issue.labels.*.name, 'pending-maintainer-response') || contains(github.event.issue.labels.*.name, 'closing soon') || contains(github.event.issue.labels.*.name, 'pending-release') || contains(github.event.issue.labels.*.name, 'pending-triage') }}
+ steps:
+ - name: Remove unnecessary labels after closing
+ shell: bash
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
+ REPOSITORY_NAME: ${{ github.event.repository.full_name }}
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "closing soon" --remove-label "pending-community-response" --remove-label "pending-maintainer-response" --remove-label "pending-release" --remove-label "pending-triage"
+
+ comment-visibility-warning:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: aws-actions/closed-issue-message@v1
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ message: |
+ This issue is now closed. Comments on closed issues are hard for our team to see.
+ If you need more assistance, please open a new issue that references this one.
+ If you wish to keep having a conversation with other community members under this issue feel free to do so.
diff --git a/.github/workflows/issue_comment.yml b/.github/workflows/issue_comment.yml
new file mode 100644
index 00000000000..822ff84a1cc
--- /dev/null
+++ b/.github/workflows/issue_comment.yml
@@ -0,0 +1,45 @@
+name: Issue Comment
+
+on:
+ issue_comment:
+ types: [created]
+
+jobs:
+ notify:
+ runs-on: ubuntu-latest
+ permissions: {}
+ if: ${{ !github.event.issue.pull_request && !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }}
+ steps:
+ - name: Run webhook curl command
+ env:
+ WEBHOOK_URL: ${{ secrets.SLACK_COMMENT_WEBHOOK_URL }}
+ COMMENT: ${{toJson(github.event.comment.body)}}
+ USER: ${{github.event.comment.user.login}}
+ COMMENT_URL: ${{github.event.comment.html_url}}
+ shell: bash
+ run: echo $COMMENT | sed "s/\\\n/. /g; s/\\\r//g; s/[^a-zA-Z0-9 &().,:]//g" | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"comment":"{}", "commentUrl":"'$COMMENT_URL'", "user":"'$USER'"}'
+
+ adjust-labels:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
+ REPOSITORY_NAME: ${{ github.event.repository.full_name }}
+ steps:
+ - name: remove pending-community-response when new comment received
+ if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) && !github.event.issue.pull_request }}
+ shell: bash
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "pending-community-response"
+ - name: add pending-maintainer-response when new community comment received
+ if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }}
+ shell: bash
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --add-label "pending-maintainer-response"
+ - name: remove pending-maintainer-response when new owner/member comment received
+ if: ${{ contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }}
+ shell: bash
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "pending-maintainer-response"
diff --git a/.github/workflows/issue_opened.yml b/.github/workflows/issue_opened.yml
new file mode 100644
index 00000000000..4307ac101de
--- /dev/null
+++ b/.github/workflows/issue_opened.yml
@@ -0,0 +1,55 @@
+name: Issue Opened
+
+on:
+ issues:
+ types: [opened]
+
+jobs:
+ notify:
+ runs-on: ubuntu-latest
+ permissions: {}
+ if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.issue.author_association) }}
+ steps:
+ - name: Run webhook curl command
+ env:
+ WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }}
+ ISSUE: ${{toJson(github.event.issue.title)}}
+ ISSUE_URL: ${{github.event.issue.html_url}}
+ USER: ${{github.event.issue.user.login}}
+ shell: bash
+ run: echo $ISSUE | sed 's/[^a-zA-Z0-9 &().,:]//g' | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"issue":"{}", "issueUrl":"'$ISSUE_URL'", "user":"'$USER'"}'
+
+ add-issue-opened-labels:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
+ REPOSITORY_NAME: ${{ github.event.repository.full_name }}
+ steps:
+ - name: Add the pending-triage label
+ shell: bash
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --add-label "pending-triage"
+ - name: Add the pending-maintainer-response label
+ if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.issue.author_association) }}
+ shell: bash
+ run: |
+ gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --add-label "pending-maintainer-response"
+
+
+ maintainer-opened:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ if: ${{ contains(fromJSON('["MEMBER", "OWNER"]'), github.event.issue.author_association) }}
+ steps:
+ - name: Post comment if maintainer opened.
+ shell: bash
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ISSUE_NUMBER: ${{ github.event.issue.number }}
+ REPOSITORY_NAME: ${{ github.event.repository.full_name }}
+ run: |
+ gh issue comment $ISSUE_NUMBER --repo $REPOSITORY_NAME -b "This issue was opened by a maintainer of this repository; updates will be posted here. If you are also experiencing this issue, please comment here with any relevant information so that we're aware and can prioritize accordingly."
diff --git a/.github/workflows/notify_issue_comment.yml b/.github/workflows/notify_issue_comment.yml
deleted file mode 100644
index b5b29909132..00000000000
--- a/.github/workflows/notify_issue_comment.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# This is a basic workflow to help you get started with Actions
-
-name: Notify Comments on Issues
-
-# Controls when the workflow will run
-on:
- # Triggers the workflow on comment events on pending response issues
- issue_comment:
- types: [created]
-
-# Limit the GITHUB_TOKEN permissions
-permissions: {}
-
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
-jobs:
- # This workflow contains a single job called "notify"
- notify:
- # The type of runner that the job will run on
- runs-on: ubuntu-latest
-
- # Exclude comments in PRs and comments made from maintainers
- if: ${{ !github.event.issue.pull_request && !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }}
-
- # Steps represent a sequence of tasks that will be executed as part of the job
- steps:
- # Runs a single command using the runners shell
- - name: Run webhook curl command
- env:
- WEBHOOK_URL: ${{ secrets.SLACK_COMMENT_WEBHOOK_URL }}
- COMMENT: ${{toJson(github.event.comment.body)}}
- USER: ${{github.event.comment.user.login}}
- COMMENT_URL: ${{github.event.comment.html_url}}
- shell: bash
- run: echo $COMMENT | sed "s/\\\n/. /g; s/\\\r//g; s/[^a-zA-Z0-9 &().,:]//g" | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"comment":"{}", "commentUrl":"'$COMMENT_URL'", "user":"'$USER'"}'
diff --git a/.github/workflows/notify_new_issue.yml b/.github/workflows/notify_new_issue.yml
deleted file mode 100644
index 2c32e336452..00000000000
--- a/.github/workflows/notify_new_issue.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# This is a basic workflow to help you get started with Actions
-
-name: Notify New Issues
-
-# Controls when the workflow will run
-on:
- # Triggers the workflow on comment events on pending response issues
- issues:
- types: [opened]
-
-# Limit the GITHUB_TOKEN permissions
-permissions: {}
-
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
-jobs:
- # This workflow contains a single job called "notify"
- notify:
- # The type of runner that the job will run on
- runs-on: ubuntu-latest
-
- # Exclude issues opened by maintainers
- if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.issue.author_association) }}
-
- # Steps represent a sequence of tasks that will be executed as part of the job
- steps:
- # Runs a single command using the runners shell
- - name: Run webhook curl command
- env:
- WEBHOOK_URL: ${{ secrets.SLACK_ISSUE_WEBHOOK_URL }}
- ISSUE: ${{toJson(github.event.issue.title)}}
- ISSUE_URL: ${{github.event.issue.html_url}}
- USER: ${{github.event.issue.user.login}}
- shell: bash
- run: echo $ISSUE | sed 's/[^a-zA-Z0-9 &().,:]//g' | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"issue":"{}", "issueUrl":"'$ISSUE_URL'", "user":"'$USER'"}'
diff --git a/AWSAPIGateway.podspec b/AWSAPIGateway.podspec
index 150f5d43d28..bf9b3eec113 100644
--- a/AWSAPIGateway.podspec
+++ b/AWSAPIGateway.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'AWSAPIGateway'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSAPIGateway/*.{h,m}'
s.resource_bundle = { 'AWSAPIGateway' => ['AWSAPIGateway/PrivacyInfo.xcprivacy']}
diff --git a/AWSAPIGateway/AWSAPIGatewayClient.m b/AWSAPIGateway/AWSAPIGatewayClient.m
index c74aa360ad3..13ad5e6be8d 100644
--- a/AWSAPIGateway/AWSAPIGatewayClient.m
+++ b/AWSAPIGateway/AWSAPIGatewayClient.m
@@ -23,7 +23,7 @@
static NSString *const AWSAPIGatewayAPIKeyHeader = @"x-api-key";
-NSString *const AWSAPIGatewaySDKVersion = @"2.36.7";
+NSString *const AWSAPIGatewaySDKVersion = @"2.37.0";
static int defaultChunkSize = 1024;
diff --git a/AWSAPIGateway/Info.plist b/AWSAPIGateway/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSAPIGateway/Info.plist
+++ b/AWSAPIGateway/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSAppleSignIn.podspec b/AWSAppleSignIn.podspec
index 60ce4ce964a..5c4f4b2be06 100644
--- a/AWSAppleSignIn.podspec
+++ b/AWSAppleSignIn.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAppleSignIn'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
- s.dependency 'AWSAuthCore', '2.36.7'
+ s.dependency 'AWSCore', '2.37.0'
+ s.dependency 'AWSAuthCore', '2.37.0'
s.source_files = 'AWSAuthSDK/Sources/AWSAppleSignIn/*.{h,m}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSAppleSignIn/*.h'
s.resource_bundle = { 'AWSAppleSignIn' => ['AWSAuthSDK/Sources/AWSAppleSignIn/PrivacyInfo.xcprivacy']}
diff --git a/AWSAuth.podspec b/AWSAuth.podspec
index b926a9a5d57..606dc620b3e 100644
--- a/AWSAuth.podspec
+++ b/AWSAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuth'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -14,23 +14,23 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.subspec 'Core' do |authcore|
- authcore.dependency 'AWSAuthCore', '2.36.7'
+ authcore.dependency 'AWSAuthCore', '2.37.0'
end
s.subspec 'FacebookSignIn' do |facebook|
- facebook.dependency 'AWSFacebookSignIn', '2.36.7'
+ facebook.dependency 'AWSFacebookSignIn', '2.37.0'
end
s.subspec 'GoogleSignIn' do |google|
- google.dependency 'AWSGoogleSignIn', '2.36.7'
+ google.dependency 'AWSGoogleSignIn', '2.37.0'
end
s.subspec 'UserPoolsSignIn' do |up|
- up.dependency 'AWSUserPoolsSignIn', '2.36.7'
+ up.dependency 'AWSUserPoolsSignIn', '2.37.0'
end
s.subspec 'UI' do |ui|
- ui.dependency 'AWSAuthUI', '2.36.7'
+ ui.dependency 'AWSAuthUI', '2.37.0'
end
end
diff --git a/AWSAuthCore.podspec b/AWSAuthCore.podspec
index bbc45c62066..099e43a59ba 100644
--- a/AWSAuthCore.podspec
+++ b/AWSAuthCore.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuthCore'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.{h,m}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.h'
s.resource_bundle = { 'AWSAuthCore' => ['AWSAuthSDK/Sources/AWSAuthCore/PrivacyInfo.xcprivacy']}
diff --git a/AWSAuthSDK/Sources/AWSAppleSignIn/Info.plist b/AWSAuthSDK/Sources/AWSAppleSignIn/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSAppleSignIn/Info.plist
+++ b/AWSAuthSDK/Sources/AWSAppleSignIn/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSAuthCore/Info.plist b/AWSAuthSDK/Sources/AWSAuthCore/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSAuthCore/Info.plist
+++ b/AWSAuthSDK/Sources/AWSAuthCore/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSAuthUI/Info.plist b/AWSAuthSDK/Sources/AWSAuthUI/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSAuthUI/Info.plist
+++ b/AWSAuthSDK/Sources/AWSAuthUI/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSFacebookSignIn/Info.plist b/AWSAuthSDK/Sources/AWSFacebookSignIn/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSFacebookSignIn/Info.plist
+++ b/AWSAuthSDK/Sources/AWSFacebookSignIn/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSGoogleSignIn/Info.plist b/AWSAuthSDK/Sources/AWSGoogleSignIn/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSGoogleSignIn/Info.plist
+++ b/AWSAuthSDK/Sources/AWSGoogleSignIn/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSMobileClient/Info.plist b/AWSAuthSDK/Sources/AWSMobileClient/Info.plist
index f9628ad7ba5..c87e6044c48 100644
--- a/AWSAuthSDK/Sources/AWSMobileClient/Info.plist
+++ b/AWSAuthSDK/Sources/AWSMobileClient/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSMobileClientXCF/Info.plist b/AWSAuthSDK/Sources/AWSMobileClientXCF/Info.plist
index f9628ad7ba5..c87e6044c48 100644
--- a/AWSAuthSDK/Sources/AWSMobileClientXCF/Info.plist
+++ b/AWSAuthSDK/Sources/AWSMobileClientXCF/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthSDK/Sources/AWSUserPoolsSignIn/Info.plist b/AWSAuthSDK/Sources/AWSUserPoolsSignIn/Info.plist
index 0d9adcebabc..4c35ccb2c9d 100644
--- a/AWSAuthSDK/Sources/AWSUserPoolsSignIn/Info.plist
+++ b/AWSAuthSDK/Sources/AWSUserPoolsSignIn/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSPrincipalClass
diff --git a/AWSAuthUI.podspec b/AWSAuthUI.podspec
index e8f62f7106a..668c7df64ba 100644
--- a/AWSAuthUI.podspec
+++ b/AWSAuthUI.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAuthUI'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
- s.dependency 'AWSAuthCore', '2.36.7'
+ s.dependency 'AWSCore', '2.37.0'
+ s.dependency 'AWSAuthCore', '2.37.0'
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'
diff --git a/AWSAutoScaling.podspec b/AWSAutoScaling.podspec
index efc46bcdd29..58cdc845570 100644
--- a/AWSAutoScaling.podspec
+++ b/AWSAutoScaling.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSAutoScaling'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSAutoScaling/*.{h,m}'
s.resource_bundle = { 'AWSAutoScaling' => ['AWSAutoScaling/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSAutoScaling/AWSAutoScalingService.m b/AWSAutoScaling/AWSAutoScalingService.m
index a20e0f482c4..8296cda4c86 100644
--- a/AWSAutoScaling/AWSAutoScalingService.m
+++ b/AWSAutoScaling/AWSAutoScalingService.m
@@ -25,7 +25,7 @@
#import "AWSAutoScalingResources.h"
static NSString *const AWSInfoAutoScaling = @"AutoScaling";
-NSString *const AWSAutoScalingSDKVersion = @"2.36.7";
+NSString *const AWSAutoScalingSDKVersion = @"2.37.0";
@interface AWSAutoScalingResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSAutoScaling/Info.plist b/AWSAutoScaling/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSAutoScaling/Info.plist
+++ b/AWSAutoScaling/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSChimeSDKIdentity.podspec b/AWSChimeSDKIdentity.podspec
index ea8752b358f..325e2626d18 100644
--- a/AWSChimeSDKIdentity.podspec
+++ b/AWSChimeSDKIdentity.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSChimeSDKIdentity'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSChimeSDKIdentity/*.{h,m}'
s.resource_bundle = { 'AWSChimeSDKIdentity' => ['AWSChimeSDKIdentity/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSChimeSDKIdentity/AWSChimeSDKIdentityService.m b/AWSChimeSDKIdentity/AWSChimeSDKIdentityService.m
index f505864cc74..1cc8cf1e4b2 100644
--- a/AWSChimeSDKIdentity/AWSChimeSDKIdentityService.m
+++ b/AWSChimeSDKIdentity/AWSChimeSDKIdentityService.m
@@ -25,7 +25,7 @@
#import "AWSChimeSDKIdentityResources.h"
static NSString *const AWSInfoChimeSDKIdentity = @"ChimeSDKIdentity";
-NSString *const AWSChimeSDKIdentitySDKVersion = @"2.36.7";
+NSString *const AWSChimeSDKIdentitySDKVersion = @"2.37.0";
@interface AWSChimeSDKIdentityResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSChimeSDKIdentity/Info.plist b/AWSChimeSDKIdentity/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSChimeSDKIdentity/Info.plist
+++ b/AWSChimeSDKIdentity/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSChimeSDKMessaging.podspec b/AWSChimeSDKMessaging.podspec
index 863dcbcdede..f3f8ddc4f5a 100644
--- a/AWSChimeSDKMessaging.podspec
+++ b/AWSChimeSDKMessaging.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSChimeSDKMessaging'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSChimeSDKMessaging/*.{h,m}'
s.resource_bundle = { 'AWSChimeSDKMessaging' => ['AWSChimeSDKMessaging/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSChimeSDKMessaging/AWSChimeSDKMessagingService.m b/AWSChimeSDKMessaging/AWSChimeSDKMessagingService.m
index 354f274405a..4a1627ab9ea 100644
--- a/AWSChimeSDKMessaging/AWSChimeSDKMessagingService.m
+++ b/AWSChimeSDKMessaging/AWSChimeSDKMessagingService.m
@@ -25,7 +25,7 @@
#import "AWSChimeSDKMessagingResources.h"
static NSString *const AWSInfoChimeSDKMessaging = @"ChimeSDKMessaging";
-NSString *const AWSChimeSDKMessagingSDKVersion = @"2.36.7";
+NSString *const AWSChimeSDKMessagingSDKVersion = @"2.37.0";
@interface AWSChimeSDKMessagingResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSChimeSDKMessaging/Info.plist b/AWSChimeSDKMessaging/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSChimeSDKMessaging/Info.plist
+++ b/AWSChimeSDKMessaging/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCloudWatch.podspec b/AWSCloudWatch.podspec
index 587be02539b..e488c1030bf 100644
--- a/AWSCloudWatch.podspec
+++ b/AWSCloudWatch.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCloudWatch'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSCloudWatch/*.{h,m}'
s.resource_bundle = { 'AWSCloudWatch' => ['AWSCloudWatch/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSCloudWatch/AWSCloudWatchService.m b/AWSCloudWatch/AWSCloudWatchService.m
index 9855c33f3f2..a414bbdc315 100644
--- a/AWSCloudWatch/AWSCloudWatchService.m
+++ b/AWSCloudWatch/AWSCloudWatchService.m
@@ -26,7 +26,7 @@
#import "AWSCloudWatchResources.h"
static NSString *const AWSInfoCloudWatch = @"CloudWatch";
-NSString *const AWSCloudWatchSDKVersion = @"2.36.7";
+NSString *const AWSCloudWatchSDKVersion = @"2.37.0";
@interface AWSCloudWatchResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSCloudWatch/Info.plist b/AWSCloudWatch/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSCloudWatch/Info.plist
+++ b/AWSCloudWatch/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCognitoAuth.podspec b/AWSCognitoAuth.podspec
index 660462cf308..071a2970215 100644
--- a/AWSCognitoAuth.podspec
+++ b/AWSCognitoAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCognitoAuth'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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'
@@ -13,8 +13,8 @@ Pod::Spec.new do |s|
:tag => s.version}
s.requires_arc = true
- s.dependency 'AWSCore', '2.36.7'
- s.dependency 'AWSCognitoIdentityProviderASF', '2.36.7'
+ s.dependency 'AWSCore', '2.37.0'
+ s.dependency 'AWSCognitoIdentityProviderASF', '2.37.0'
s.source_files = 'AWSCognitoAuth/**/*.{h,m,c}'
s.public_header_files = 'AWSCognitoAuth/*.h'
diff --git a/AWSCognitoAuth/AWSCognitoAuth.m b/AWSCognitoAuth/AWSCognitoAuth.m
index 713d252ec23..151c54e304e 100644
--- a/AWSCognitoAuth/AWSCognitoAuth.m
+++ b/AWSCognitoAuth/AWSCognitoAuth.m
@@ -84,7 +84,7 @@ @interface AWSCognitoAuthConfiguration()
@implementation AWSCognitoAuth
-NSString *const AWSCognitoAuthSDKVersion = @"2.36.7";
+NSString *const AWSCognitoAuthSDKVersion = @"2.37.0";
static NSMutableDictionary *_instanceDictionary = nil;
diff --git a/AWSCognitoAuth/Info.plist b/AWSCognitoAuth/Info.plist
index 04628c8e3b7..523fe36170f 100644
--- a/AWSCognitoAuth/Info.plist
+++ b/AWSCognitoAuth/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCognitoIdentityProvider.podspec b/AWSCognitoIdentityProvider.podspec
index 124ff1bf3ab..128cc9f6ed9 100644
--- a/AWSCognitoIdentityProvider.podspec
+++ b/AWSCognitoIdentityProvider.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCognitoIdentityProvider'
- s.version = '2.36.7'
+ s.version = '2.37.0'
s.summary = 'Amazon Cognito Identity Provider SDK for iOS (Beta)'
s.description = 'Amazon Cognito Identity Provider enables sign up and authentication of your end users'
@@ -13,8 +13,8 @@ Pod::Spec.new do |s|
:tag => s.version}
s.requires_arc = true
s.frameworks = 'Security', 'UIKit'
- s.dependency 'AWSCore', '2.36.7'
- s.dependency 'AWSCognitoIdentityProviderASF', '2.36.7'
+ s.dependency 'AWSCore', '2.37.0'
+ s.dependency 'AWSCognitoIdentityProviderASF', '2.37.0'
s.source_files = 'AWSCognitoIdentityProvider/**/*.{h,m,c}'
s.public_header_files = 'AWSCognitoIdentityProvider/*.h'
diff --git a/AWSCognitoIdentityProvider/AWSCognitoIdentityProviderService.m b/AWSCognitoIdentityProvider/AWSCognitoIdentityProviderService.m
index 80d8a8905f1..bcd3c52f529 100644
--- a/AWSCognitoIdentityProvider/AWSCognitoIdentityProviderService.m
+++ b/AWSCognitoIdentityProvider/AWSCognitoIdentityProviderService.m
@@ -25,7 +25,7 @@
#import "AWSCognitoIdentityProviderResources.h"
static NSString *const AWSInfoCognitoIdentityProvider = @"CognitoIdentityProvider";
-NSString *const AWSCognitoIdentityProviderSDKVersion = @"2.36.7";
+NSString *const AWSCognitoIdentityProviderSDKVersion = @"2.37.0";
@interface AWSCognitoIdentityProviderResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSCognitoIdentityProvider/Info.plist b/AWSCognitoIdentityProvider/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSCognitoIdentityProvider/Info.plist
+++ b/AWSCognitoIdentityProvider/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCognitoIdentityProviderASF.podspec b/AWSCognitoIdentityProviderASF.podspec
index 3c49c2aff4b..4dfffe5f041 100644
--- a/AWSCognitoIdentityProviderASF.podspec
+++ b/AWSCognitoIdentityProviderASF.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSCognitoIdentityProviderASF'
- s.version = '2.36.7'
+ s.version = '2.37.0'
s.summary = 'Amazon Cognito Identity Provider Advanced Security Features library (Beta)'
s.description = 'Amazon Cognito Identity Provider ASF provides the information necessary to support adaptive authentication'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.public_header_files = 'AWSCognitoIdentityProviderASF/*.h'
s.source_files = 'AWSCognitoIdentityProviderASF/**/*.{h,m,c}'
s.private_header_files = 'AWSCognitoIdentityProviderASF/Internal/*.h'
diff --git a/AWSCognitoIdentityProviderASF/Info.plist b/AWSCognitoIdentityProviderASF/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSCognitoIdentityProviderASF/Info.plist
+++ b/AWSCognitoIdentityProviderASF/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSComprehend.podspec b/AWSComprehend.podspec
index 2b58ab14237..6a287577b63 100644
--- a/AWSComprehend.podspec
+++ b/AWSComprehend.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSComprehend'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSComprehend/*.{h,m}'
s.resource_bundle = { 'AWSComprehend' => ['AWSComprehend/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSComprehend/AWSComprehendService.m b/AWSComprehend/AWSComprehendService.m
index a05f6aefe07..5e6c356ea8d 100644
--- a/AWSComprehend/AWSComprehendService.m
+++ b/AWSComprehend/AWSComprehendService.m
@@ -25,7 +25,7 @@
#import "AWSComprehendResources.h"
static NSString *const AWSInfoComprehend = @"Comprehend";
-NSString *const AWSComprehendSDKVersion = @"2.36.7";
+NSString *const AWSComprehendSDKVersion = @"2.37.0";
@interface AWSComprehendResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSComprehend/Info.plist b/AWSComprehend/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSComprehend/Info.plist
+++ b/AWSComprehend/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSConnect.podspec b/AWSConnect.podspec
index 73a46d5ad37..18f5287b5b8 100644
--- a/AWSConnect.podspec
+++ b/AWSConnect.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSConnect'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSConnect/*.{h,m}'
s.resource_bundle = { 'AWSConnect' => ['AWSConnect/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSConnect/AWSConnectService.m b/AWSConnect/AWSConnectService.m
index 4f92737a70b..583444d4020 100644
--- a/AWSConnect/AWSConnectService.m
+++ b/AWSConnect/AWSConnectService.m
@@ -25,7 +25,7 @@
#import "AWSConnectResources.h"
static NSString *const AWSInfoConnect = @"Connect";
-NSString *const AWSConnectSDKVersion = @"2.36.7";
+NSString *const AWSConnectSDKVersion = @"2.37.0";
@interface AWSConnectResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSConnect/Info.plist b/AWSConnect/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSConnect/Info.plist
+++ b/AWSConnect/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSConnectParticipant.podspec b/AWSConnectParticipant.podspec
index 1e74a0e3e4d..8652027952d 100644
--- a/AWSConnectParticipant.podspec
+++ b/AWSConnectParticipant.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSConnectParticipant'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSConnectParticipant/*.{h,m}'
s.resource_bundle = { 'AWSConnectParticipant' => ['AWSConnectParticipant/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSConnectParticipant/AWSConnectParticipantService.m b/AWSConnectParticipant/AWSConnectParticipantService.m
index 76fead0b797..0caad1597d7 100644
--- a/AWSConnectParticipant/AWSConnectParticipantService.m
+++ b/AWSConnectParticipant/AWSConnectParticipantService.m
@@ -25,7 +25,7 @@
#import "AWSConnectParticipantResources.h"
static NSString *const AWSInfoConnectParticipant = @"ConnectParticipant";
-NSString *const AWSConnectParticipantSDKVersion = @"2.36.7";
+NSString *const AWSConnectParticipantSDKVersion = @"2.37.0";
@interface AWSConnectParticipantResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSConnectParticipant/Info.plist b/AWSConnectParticipant/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSConnectParticipant/Info.plist
+++ b/AWSConnectParticipant/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCore.podspec b/AWSCore.podspec
index 85941a2cdf1..4a424d97a13 100644
--- a/AWSCore.podspec
+++ b/AWSCore.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'AWSCore'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
diff --git a/AWSCore/FMDB/AWSFMDatabase.m b/AWSCore/FMDB/AWSFMDatabase.m
index 824b65f1f6e..e68b72e139e 100644
--- a/AWSCore/FMDB/AWSFMDatabase.m
+++ b/AWSCore/FMDB/AWSFMDatabase.m
@@ -1,5 +1,5 @@
#import "AWSFMDatabase.h"
-#import "unistd.h"
+#import
#import
#import "AWSFMDatabase+Private.h"
diff --git a/AWSCore/FMDB/AWSFMResultSet.m b/AWSCore/FMDB/AWSFMResultSet.m
index 0dc171248e1..b7732a05441 100644
--- a/AWSCore/FMDB/AWSFMResultSet.m
+++ b/AWSCore/FMDB/AWSFMResultSet.m
@@ -1,6 +1,6 @@
#import "AWSFMResultSet.h"
#import "AWSFMDatabase.h"
-#import "unistd.h"
+#import
#import "AWSFMDatabase+Private.h"
@interface AWSFMDatabase ()
diff --git a/AWSCore/Info.plist b/AWSCore/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSCore/Info.plist
+++ b/AWSCore/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSCore/Service/AWSService.m b/AWSCore/Service/AWSService.m
index 82960d9f668..85023942649 100644
--- a/AWSCore/Service/AWSService.m
+++ b/AWSCore/Service/AWSService.m
@@ -21,7 +21,7 @@
#import "AWSCocoaLumberjack.h"
#import "AWSCategory.h"
-NSString *const AWSiOSSDKVersion = @"2.36.7";
+NSString *const AWSiOSSDKVersion = @"2.37.0";
NSString *const AWSServiceErrorDomain = @"com.amazonaws.AWSServiceErrorDomain";
static NSString *const AWSServiceConfigurationUnknown = @"Unknown";
@@ -260,6 +260,7 @@ - (id)copyWithZone:(NSZone *)zone {
static NSString *const AWSRegionNameAPSoutheast2 = @"ap-southeast-2";
static NSString *const AWSRegionNameAPSoutheast3 = @"ap-southeast-3";
static NSString *const AWSRegionNameAPSoutheast4 = @"ap-southeast-4";
+static NSString *const AWSRegionNameAPSoutheast5 = @"ap-southeast-5";
static NSString *const AWSRegionNameAPSouth1 = @"ap-south-1";
static NSString *const AWSRegionNameAPSouth2 = @"ap-south-2";
static NSString *const AWSRegionNameSAEast1 = @"sa-east-1";
@@ -478,6 +479,8 @@ + (NSString *)regionNameFromType:(AWSRegionType)regionType {
return AWSRegionNameAPSoutheast3;
case AWSRegionAPSoutheast4:
return AWSRegionNameAPSoutheast4;
+ case AWSRegionAPSoutheast5:
+ return AWSRegionNameAPSoutheast5;
case AWSRegionAPNortheast1:
return AWSRegionNameAPNortheast1;
case AWSRegionAPNortheast2:
diff --git a/AWSCore/Service/AWSServiceEnum.h b/AWSCore/Service/AWSServiceEnum.h
index 16aa14c10c8..074bd42f16c 100644
--- a/AWSCore/Service/AWSServiceEnum.h
+++ b/AWSCore/Service/AWSServiceEnum.h
@@ -83,6 +83,10 @@ typedef NS_ENUM(NSInteger, AWSRegionType) {
* Asia Pacific (Melbourne)
*/
AWSRegionAPSoutheast4 NS_SWIFT_NAME(APSoutheast4),
+ /**
+ * Asia Pacific (Malaysia)
+ */
+ AWSRegionAPSoutheast5 NS_SWIFT_NAME(APSoutheast5),
/**
* Asia Pacific (Mumbai)
*/
diff --git a/AWSCore/Utility/AWSCategory.m b/AWSCore/Utility/AWSCategory.m
index cd0077d681d..8cd95235906 100644
--- a/AWSCore/Utility/AWSCategory.m
+++ b/AWSCore/Utility/AWSCategory.m
@@ -530,6 +530,11 @@ - (AWSRegionType)aws_regionTypeValue {
|| [self isEqualToString:@"ap-southeast-4"]) {
return AWSRegionAPSoutheast4;
}
+ if ([self isEqualToString:@"AWSRegionAPSoutheast5"]
+ || [self isEqualToString:@"APSoutheast5"]
+ || [self isEqualToString:@"ap-southeast-5"]) {
+ return AWSRegionAPSoutheast5;
+ }
if ([self isEqualToString:@"AWSRegionAPSouth1"]
|| [self isEqualToString:@"APSouth1"]
|| [self isEqualToString:@"ap-south-1"]) {
diff --git a/AWSDynamoDB.podspec b/AWSDynamoDB.podspec
index afd98da718b..54dcb4e2fe2 100644
--- a/AWSDynamoDB.podspec
+++ b/AWSDynamoDB.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSDynamoDB'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSDynamoDB/*.{h,m}'
s.resource_bundle = { 'AWSDynamoDB' => ['AWSDynamoDB/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSDynamoDB/AWSDynamoDBService.m b/AWSDynamoDB/AWSDynamoDBService.m
index 15d4313f455..986e5f9bd1c 100644
--- a/AWSDynamoDB/AWSDynamoDBService.m
+++ b/AWSDynamoDB/AWSDynamoDBService.m
@@ -26,7 +26,7 @@
#import "AWSDynamoDBRequestRetryHandler.h"
static NSString *const AWSInfoDynamoDB = @"DynamoDB";
-NSString *const AWSDynamoDBSDKVersion = @"2.36.7";
+NSString *const AWSDynamoDBSDKVersion = @"2.37.0";
@interface AWSDynamoDBResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSDynamoDB/Info.plist b/AWSDynamoDB/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSDynamoDB/Info.plist
+++ b/AWSDynamoDB/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSEC2.podspec b/AWSEC2.podspec
index 5889c5563c5..cdee9bc74ac 100644
--- a/AWSEC2.podspec
+++ b/AWSEC2.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSEC2'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSEC2/*.{h,m}'
s.resource_bundle = { 'AWSEC2' => ['AWSEC2/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSEC2/AWSEC2Service.m b/AWSEC2/AWSEC2Service.m
index 48d30bba211..3e90401c9e0 100644
--- a/AWSEC2/AWSEC2Service.m
+++ b/AWSEC2/AWSEC2Service.m
@@ -26,7 +26,7 @@
#import "AWSEC2Serializer.h"
static NSString *const AWSInfoEC2 = @"EC2";
-NSString *const AWSEC2SDKVersion = @"2.36.7";
+NSString *const AWSEC2SDKVersion = @"2.37.0";
@interface AWSEC2ResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSEC2/Info.plist b/AWSEC2/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSEC2/Info.plist
+++ b/AWSEC2/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSElasticLoadBalancing.podspec b/AWSElasticLoadBalancing.podspec
index 56c186b00eb..a089cc039fa 100644
--- a/AWSElasticLoadBalancing.podspec
+++ b/AWSElasticLoadBalancing.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSElasticLoadBalancing'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSElasticLoadBalancing/*.{h,m}'
s.resource_bundle = { 'AWSElasticLoadBalancing' => ['AWSElasticLoadBalancing/PrivacyInfo.xcprivacy'] }
end
diff --git a/AWSElasticLoadBalancing/AWSElasticLoadBalancingService.m b/AWSElasticLoadBalancing/AWSElasticLoadBalancingService.m
index d9cdff7bb06..9eebe7d59d0 100644
--- a/AWSElasticLoadBalancing/AWSElasticLoadBalancingService.m
+++ b/AWSElasticLoadBalancing/AWSElasticLoadBalancingService.m
@@ -25,7 +25,7 @@
#import "AWSElasticLoadBalancingResources.h"
static NSString *const AWSInfoElasticLoadBalancing = @"ElasticLoadBalancing";
-NSString *const AWSElasticLoadBalancingSDKVersion = @"2.36.7";
+NSString *const AWSElasticLoadBalancingSDKVersion = @"2.37.0";
@interface AWSElasticLoadBalancingResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSElasticLoadBalancing/Info.plist b/AWSElasticLoadBalancing/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSElasticLoadBalancing/Info.plist
+++ b/AWSElasticLoadBalancing/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSFacebookSignIn.podspec b/AWSFacebookSignIn.podspec
index 868d1d7d5d5..99e7dce3d32 100644
--- a/AWSFacebookSignIn.podspec
+++ b/AWSFacebookSignIn.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSFacebookSignIn'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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 'AWSAuthCore', '2.36.7'
- s.dependency 'AWSCore', '2.36.7'
+ s.dependency 'AWSAuthCore', '2.37.0'
+ s.dependency 'AWSCore', '2.37.0'
s.dependency 'FBSDKLoginKit', '9.0'
s.dependency 'FBSDKCoreKit', '9.0'
diff --git a/AWSGoogleSignIn.podspec b/AWSGoogleSignIn.podspec
index 8acec513f08..d7c49d92a1f 100644
--- a/AWSGoogleSignIn.podspec
+++ b/AWSGoogleSignIn.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSGoogleSignIn'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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 'AWSAuthCore', '2.36.7'
- s.dependency 'AWSCore', '2.36.7'
+ s.dependency 'AWSAuthCore', '2.37.0'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSAuthSDK/Sources/AWSGoogleSignIn/*.{h,m}', 'AWSAuthSDK/Dependencies/GoogleHeaders/*.h'
s.public_header_files = 'AWSAuthSDK/Sources/AWSGoogleSignIn/*.h'
s.private_header_files = 'AWSAuthSDK/Dependencies/GoogleHeaders/*.h'
diff --git a/AWSIoT.podspec b/AWSIoT.podspec
index 5ffee5a33e5..7dc35582c64 100644
--- a/AWSIoT.podspec
+++ b/AWSIoT.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSIoT'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSIoT/*.{h,m}', 'AWSIoT/**/*.{h,m}'
s.private_header_files = 'AWSIoT/Internal/*.h'
s.resource_bundle = { 'AWSIoT' => ['AWSIoT/PrivacyInfo.xcprivacy']}
diff --git a/AWSIoT/AWSIoTDataService.m b/AWSIoT/AWSIoTDataService.m
index de11253c381..14f4e2df1fa 100644
--- a/AWSIoT/AWSIoTDataService.m
+++ b/AWSIoT/AWSIoTDataService.m
@@ -25,7 +25,7 @@
#import "AWSIoTDataResources.h"
static NSString *const AWSInfoIoTData = @"IoTData";
-NSString *const AWSIoTDataSDKVersion = @"2.36.7";
+NSString *const AWSIoTDataSDKVersion = @"2.37.0";
@interface AWSIoTDataResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSIoT/AWSIoTService.m b/AWSIoT/AWSIoTService.m
index d099216f7b4..c90105955e7 100644
--- a/AWSIoT/AWSIoTService.m
+++ b/AWSIoT/AWSIoTService.m
@@ -25,7 +25,7 @@
#import "AWSIoTResources.h"
static NSString *const AWSInfoIoT = @"IoT";
-NSString *const AWSIoTSDKVersion = @"2.36.7";
+NSString *const AWSIoTSDKVersion = @"2.37.0";
@interface AWSIoTResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSIoT/Info.plist b/AWSIoT/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSIoT/Info.plist
+++ b/AWSIoT/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKMS.podspec b/AWSKMS.podspec
index 4a22dbb01d1..b86c5e67d61 100644
--- a/AWSKMS.podspec
+++ b/AWSKMS.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKMS'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKMS/*.{h,m}'
s.resource_bundle = { 'AWSKMS' => ['AWSKMS/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSKMS/AWSKMSService.m b/AWSKMS/AWSKMSService.m
index f818d100b2d..fefbaea9695 100644
--- a/AWSKMS/AWSKMSService.m
+++ b/AWSKMS/AWSKMSService.m
@@ -25,7 +25,7 @@
#import "AWSKMSResources.h"
static NSString *const AWSInfoKMS = @"KMS";
-NSString *const AWSKMSSDKVersion = @"2.36.7";
+NSString *const AWSKMSSDKVersion = @"2.37.0";
@interface AWSKMSResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKMS/Info.plist b/AWSKMS/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKMS/Info.plist
+++ b/AWSKMS/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKinesis.podspec b/AWSKinesis.podspec
index 87383c7fd6e..281d6108060 100644
--- a/AWSKinesis.podspec
+++ b/AWSKinesis.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKinesis'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKinesis/*.{h,m}', 'AWSKinesis/**/*.{h,m}'
s.private_header_files = 'AWSKinesis/Internal/*.h'
s.resource_bundle = { 'AWSKinesis' => ['AWSKinesis/PrivacyInfo.xcprivacy']}
diff --git a/AWSKinesis/AWSFirehoseService.m b/AWSKinesis/AWSFirehoseService.m
index af16855b3b9..3cc50cfb8cf 100644
--- a/AWSKinesis/AWSFirehoseService.m
+++ b/AWSKinesis/AWSFirehoseService.m
@@ -26,7 +26,7 @@
#import "AWSFirehoseSerializer.h"
static NSString *const AWSInfoFirehose = @"Firehose";
-NSString *const AWSFirehoseSDKVersion = @"2.36.7";
+NSString *const AWSFirehoseSDKVersion = @"2.37.0";
@interface AWSFirehoseResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesis/AWSKinesisService.m b/AWSKinesis/AWSKinesisService.m
index bbcdb811230..72f9e7e4dc4 100644
--- a/AWSKinesis/AWSKinesisService.m
+++ b/AWSKinesis/AWSKinesisService.m
@@ -28,7 +28,7 @@
#import "AWSKinesisSerializer.h"
static NSString *const AWSInfoKinesis = @"Kinesis";
-NSString *const AWSKinesisSDKVersion = @"2.36.7";
+NSString *const AWSKinesisSDKVersion = @"2.37.0";
@interface AWSKinesisResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesis/Info.plist b/AWSKinesis/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKinesis/Info.plist
+++ b/AWSKinesis/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKinesisVideo.podspec b/AWSKinesisVideo.podspec
index 23cc0e792c3..f8b8bcc140c 100644
--- a/AWSKinesisVideo.podspec
+++ b/AWSKinesisVideo.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKinesisVideo'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKinesisVideo/*.{h,m}'
s.resource_bundle = { 'AWSKinesisVideo' => ['AWSKinesisVideo/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSKinesisVideo/AWSKinesisVideoService.m b/AWSKinesisVideo/AWSKinesisVideoService.m
index 44cf19f123e..95b786f09e2 100644
--- a/AWSKinesisVideo/AWSKinesisVideoService.m
+++ b/AWSKinesisVideo/AWSKinesisVideoService.m
@@ -25,7 +25,7 @@
#import "AWSKinesisVideoResources.h"
static NSString *const AWSInfoKinesisVideo = @"KinesisVideo";
-NSString *const AWSKinesisVideoSDKVersion = @"2.36.7";
+NSString *const AWSKinesisVideoSDKVersion = @"2.37.0";
@interface AWSKinesisVideoResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesisVideo/Info.plist b/AWSKinesisVideo/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKinesisVideo/Info.plist
+++ b/AWSKinesisVideo/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKinesisVideoArchivedMedia.podspec b/AWSKinesisVideoArchivedMedia.podspec
index b339b08e784..06dfdea4316 100644
--- a/AWSKinesisVideoArchivedMedia.podspec
+++ b/AWSKinesisVideoArchivedMedia.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKinesisVideoArchivedMedia'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKinesisVideoArchivedMedia/*.{h,m}'
s.resource_bundle = { 'AWSKinesisVideoArchivedMedia' => ['AWSKinesisVideoArchivedMedia/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSKinesisVideoArchivedMedia/AWSKinesisVideoArchivedMediaService.m b/AWSKinesisVideoArchivedMedia/AWSKinesisVideoArchivedMediaService.m
index e7562c6b379..0c7968cac50 100644
--- a/AWSKinesisVideoArchivedMedia/AWSKinesisVideoArchivedMediaService.m
+++ b/AWSKinesisVideoArchivedMedia/AWSKinesisVideoArchivedMediaService.m
@@ -25,7 +25,7 @@
#import "AWSKinesisVideoArchivedMediaResources.h"
static NSString *const AWSInfoKinesisVideoArchivedMedia = @"KinesisVideoArchivedMedia";
-NSString *const AWSKinesisVideoArchivedMediaSDKVersion = @"2.36.7";
+NSString *const AWSKinesisVideoArchivedMediaSDKVersion = @"2.37.0";
@interface AWSKinesisVideoArchivedMediaResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesisVideoArchivedMedia/Info.plist b/AWSKinesisVideoArchivedMedia/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKinesisVideoArchivedMedia/Info.plist
+++ b/AWSKinesisVideoArchivedMedia/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKinesisVideoSignaling.podspec b/AWSKinesisVideoSignaling.podspec
index 87ac5ee6a91..c1980cb5b44 100644
--- a/AWSKinesisVideoSignaling.podspec
+++ b/AWSKinesisVideoSignaling.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKinesisVideoSignaling'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKinesisVideoSignaling/*.{h,m}'
s.resource_bundle = { 'AWSKinesisVideoSignaling' => ['AWSKinesisVideoSignaling/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSKinesisVideoSignaling/AWSKinesisVideoSignalingService.m b/AWSKinesisVideoSignaling/AWSKinesisVideoSignalingService.m
index cd0c7be0a8b..95378f73323 100644
--- a/AWSKinesisVideoSignaling/AWSKinesisVideoSignalingService.m
+++ b/AWSKinesisVideoSignaling/AWSKinesisVideoSignalingService.m
@@ -25,7 +25,7 @@
#import "AWSKinesisVideoSignalingResources.h"
static NSString *const AWSInfoKinesisVideoSignaling = @"KinesisVideoSignaling";
-NSString *const AWSKinesisVideoSignalingSDKVersion = @"2.36.7";
+NSString *const AWSKinesisVideoSignalingSDKVersion = @"2.37.0";
@interface AWSKinesisVideoSignalingResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesisVideoSignaling/Info.plist b/AWSKinesisVideoSignaling/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKinesisVideoSignaling/Info.plist
+++ b/AWSKinesisVideoSignaling/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSKinesisVideoWebRTCStorage.podspec b/AWSKinesisVideoWebRTCStorage.podspec
index 5fd2111db53..c5854445b8b 100644
--- a/AWSKinesisVideoWebRTCStorage.podspec
+++ b/AWSKinesisVideoWebRTCStorage.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSKinesisVideoWebRTCStorage'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSKinesisVideoWebRTCStorage/*.{h,m}'
s.resource_bundle = { 'AWSKinesisVideoWebRTCStorage' => ['AWSKinesisVideoWebRTCStorage/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSKinesisVideoWebRTCStorage/AWSKinesisVideoWebRTCStorageService.m b/AWSKinesisVideoWebRTCStorage/AWSKinesisVideoWebRTCStorageService.m
index 47c42fcffb5..2ed891e47c0 100644
--- a/AWSKinesisVideoWebRTCStorage/AWSKinesisVideoWebRTCStorageService.m
+++ b/AWSKinesisVideoWebRTCStorage/AWSKinesisVideoWebRTCStorageService.m
@@ -25,7 +25,7 @@
#import "AWSKinesisVideoWebRTCStorageResources.h"
static NSString *const AWSInfoKinesisVideoWebRTCStorage = @"KinesisVideoWebRTCStorage";
-NSString *const AWSKinesisVideoWebRTCStorageSDKVersion = @"2.36.7";
+NSString *const AWSKinesisVideoWebRTCStorageSDKVersion = @"2.37.0";
@interface AWSKinesisVideoWebRTCStorageResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSKinesisVideoWebRTCStorage/Info.plist b/AWSKinesisVideoWebRTCStorage/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSKinesisVideoWebRTCStorage/Info.plist
+++ b/AWSKinesisVideoWebRTCStorage/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSLambda.podspec b/AWSLambda.podspec
index 01f03d72269..ca2c739a4ca 100644
--- a/AWSLambda.podspec
+++ b/AWSLambda.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSLambda'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSLambda/*.{h,m}'
s.resource_bundle = { 'AWSLambda' => ['AWSLambda/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSLambda/AWSLambdaService.m b/AWSLambda/AWSLambdaService.m
index 720ec5cebf4..0cf8dcc19eb 100644
--- a/AWSLambda/AWSLambdaService.m
+++ b/AWSLambda/AWSLambdaService.m
@@ -26,7 +26,7 @@
#import "AWSLambdaRequestRetryHandler.h"
static NSString *const AWSInfoLambda = @"Lambda";
-NSString *const AWSLambdaSDKVersion = @"2.36.7";
+NSString *const AWSLambdaSDKVersion = @"2.37.0";
@interface AWSLambdaResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSLambda/Info.plist b/AWSLambda/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSLambda/Info.plist
+++ b/AWSLambda/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSLex.podspec b/AWSLex.podspec
index 79cc0947e1f..cae882a6cbe 100644
--- a/AWSLex.podspec
+++ b/AWSLex.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSLex'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSLex/*.{h,m}', 'AWSLex/Bluefront/include/*.h'
s.public_header_files = 'AWSLex/*.h'
s.private_header_files = 'AWSLex/Bluefront/include/*.h'
diff --git a/AWSLex/AWSLexInteractionKit.m b/AWSLex/AWSLexInteractionKit.m
index ebd8d32a738..c1cc367288c 100644
--- a/AWSLex/AWSLexInteractionKit.m
+++ b/AWSLex/AWSLexInteractionKit.m
@@ -22,7 +22,7 @@
#import
NSString *const AWSInfoInteractionKit = @"LexInteractionKit";
-NSString *const AWSInteractionKitSDKVersion = @"2.36.7";
+NSString *const AWSInteractionKitSDKVersion = @"2.37.0";
NSString *const AWSInternalLexInteractionKit = @"LexInteractionKitClient";
NSString *const AWSLexInteractionKitUserAgent = @"interactionkit";
NSString *const AWSLexInteractionKitErrorDomain = @"com.amazonaws.AWSLexInteractionKitErrorDomain";
diff --git a/AWSLex/AWSLexService.m b/AWSLex/AWSLexService.m
index 8c32a633a63..693e00979d3 100644
--- a/AWSLex/AWSLexService.m
+++ b/AWSLex/AWSLexService.m
@@ -27,7 +27,7 @@
#import "AWSLexSignature.h"
static NSString *const AWSInfoLex = @"Lex";
-NSString *const AWSLexSDKVersion = @"2.36.7";
+NSString *const AWSLexSDKVersion = @"2.37.0";
@interface AWSLexResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSLex/Info.plist b/AWSLex/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSLex/Info.plist
+++ b/AWSLex/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSLocation.podspec b/AWSLocation.podspec
index 730cf4d3fc6..581ebdb97cc 100644
--- a/AWSLocation.podspec
+++ b/AWSLocation.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSLocation'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSLocation/*.{h,m}', 'AWSLocation/AWSLocationTracker/**/*.swift'
s.resource_bundle = { 'AWSLocation' => ['AWSLocation/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSLocation/AWSLocationService.m b/AWSLocation/AWSLocationService.m
index 6f37f4348bd..936627e1629 100644
--- a/AWSLocation/AWSLocationService.m
+++ b/AWSLocation/AWSLocationService.m
@@ -25,7 +25,7 @@
#import "AWSLocationResources.h"
static NSString *const AWSInfoLocation = @"Location";
-NSString *const AWSLocationSDKVersion = @"2.36.7";
+NSString *const AWSLocationSDKVersion = @"2.37.0";
@interface AWSLocationResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSLocation/Info.plist b/AWSLocation/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSLocation/Info.plist
+++ b/AWSLocation/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSLocationXCF/Info.plist b/AWSLocationXCF/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSLocationXCF/Info.plist
+++ b/AWSLocationXCF/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSLogs.podspec b/AWSLogs.podspec
index 65e102a4792..efc47223b43 100644
--- a/AWSLogs.podspec
+++ b/AWSLogs.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSLogs'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSLogs/*.{h,m}'
s.resource_bundle = { 'AWSLogs' => ['AWSLogs/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSLogs/AWSLogsService.m b/AWSLogs/AWSLogsService.m
index 2a0d8789080..05284bb89d2 100644
--- a/AWSLogs/AWSLogsService.m
+++ b/AWSLogs/AWSLogsService.m
@@ -25,7 +25,7 @@
#import "AWSLogsResources.h"
static NSString *const AWSInfoLogs = @"Logs";
-NSString *const AWSLogsSDKVersion = @"2.36.7";
+NSString *const AWSLogsSDKVersion = @"2.37.0";
@interface AWSLogsResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSLogs/Info.plist b/AWSLogs/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSLogs/Info.plist
+++ b/AWSLogs/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSMachineLearning.podspec b/AWSMachineLearning.podspec
index 68588cc2fb5..5eb234e4c24 100644
--- a/AWSMachineLearning.podspec
+++ b/AWSMachineLearning.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSMachineLearning'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSMachineLearning/*.{h,m}'
s.resource_bundle = { 'AWSMachineLearning' => ['AWSMachineLearning/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSMachineLearning/AWSMachineLearningService.m b/AWSMachineLearning/AWSMachineLearningService.m
index a0f8b73c121..09ff1f06ce8 100644
--- a/AWSMachineLearning/AWSMachineLearningService.m
+++ b/AWSMachineLearning/AWSMachineLearningService.m
@@ -26,7 +26,7 @@
#import "AWSMachineLearningResources.h"
static NSString *const AWSInfoMachineLearning = @"MachineLearning";
-NSString *const AWSMachineLearningSDKVersion = @"2.36.7";
+NSString *const AWSMachineLearningSDKVersion = @"2.37.0";
@interface AWSMachineLearningResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSMachineLearning/Info.plist b/AWSMachineLearning/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSMachineLearning/Info.plist
+++ b/AWSMachineLearning/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSMobileClient.podspec b/AWSMobileClient.podspec
index 67646ca0336..26aa1422570 100644
--- a/AWSMobileClient.podspec
+++ b/AWSMobileClient.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSMobileClient'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -13,14 +13,14 @@ Pod::Spec.new do |s|
:tag => s.version}
s.requires_arc = true
- s.dependency 'AWSAuthCore', '2.36.7'
- s.dependency 'AWSCognitoIdentityProvider', '2.36.7'
+ s.dependency 'AWSAuthCore', '2.37.0'
+ s.dependency 'AWSCognitoIdentityProvider', '2.37.0'
# Include transitive dependencies to help CocoaPods resolve deeply nested
# dependency graphs; without this we get sporadic failures compiling when a
# project relies on AWSMobileClient
- s.dependency 'AWSCore', '2.36.7'
- s.dependency 'AWSCognitoIdentityProviderASF', '2.36.7'
+ s.dependency 'AWSCore', '2.37.0'
+ s.dependency 'AWSCognitoIdentityProviderASF', '2.37.0'
s.source_files = 'AWSAuthSDK/Sources/AWSMobileClient/*.{h,m}', 'AWSAuthSDK/Sources/AWSMobileClient/Internal/*.{h,m}', 'AWSAuthSDK/Sources/AWSMobileClient/**/*.swift', 'AWSCognitoAuth/**/*.{h,m,c}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSMobileClient/AWSMobileClient.h', 'AWSAuthSDK/Sources/AWSMobileClient/Internal/_AWSMobileClient.h', 'AWSCognitoAuth/*.h', 'AWSAuthSDK/Sources/AWSMobileClient/Internal/AWSCognitoAuth+Extensions.h', 'AWSAuthSDK/Sources/AWSMobileClient/Internal/AWSCognitoCredentialsProvider+Extension.h', 'AWSAuthSDK/Sources/AWSMobileClient/Internal/AWSCognitoIdentityUserPool+Extension.h'
diff --git a/AWSPinpoint.podspec b/AWSPinpoint.podspec
index 791d0a8213c..ce9e9c3b3b6 100644
--- a/AWSPinpoint.podspec
+++ b/AWSPinpoint.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSPinpoint'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSPinpoint/*.{h,m}', 'AWSPinpoint/**/*.{h,m}'
s.private_header_files = 'AWSPinpoint/Internal/*.h'
s.resource_bundle = { 'AWSPinpoint' => ['AWSPinpoint/PrivacyInfo.xcprivacy']}
diff --git a/AWSPinpoint/AWSPinpointTargeting/AWSPinpointTargetingService.m b/AWSPinpoint/AWSPinpointTargeting/AWSPinpointTargetingService.m
index c4a73a10e23..0a37ec98a48 100644
--- a/AWSPinpoint/AWSPinpointTargeting/AWSPinpointTargetingService.m
+++ b/AWSPinpoint/AWSPinpointTargeting/AWSPinpointTargetingService.m
@@ -25,7 +25,7 @@
#import "AWSPinpointTargetingResources.h"
static NSString *const AWSInfoPinpointTargeting = @"PinpointTargeting";
-NSString *const AWSPinpointTargetingSDKVersion = @"2.36.7";
+NSString *const AWSPinpointTargetingSDKVersion = @"2.37.0";
@interface AWSPinpointTargetingResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSPinpoint/Info.plist b/AWSPinpoint/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSPinpoint/Info.plist
+++ b/AWSPinpoint/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSPolly.podspec b/AWSPolly.podspec
index b94ab83a3bd..e341b3719fa 100644
--- a/AWSPolly.podspec
+++ b/AWSPolly.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSPolly'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSPolly/*.{h,m}'
s.resource_bundle = { 'AWSPolly' => ['AWSPolly/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSPolly/AWSPollyService.m b/AWSPolly/AWSPollyService.m
index fdbe26fbd82..cc110f0612b 100644
--- a/AWSPolly/AWSPollyService.m
+++ b/AWSPolly/AWSPollyService.m
@@ -25,7 +25,7 @@
#import "AWSPollyResources.h"
static NSString *const AWSInfoPolly = @"Polly";
-NSString *const AWSPollySDKVersion = @"2.36.7";
+NSString *const AWSPollySDKVersion = @"2.37.0";
@interface AWSPollyResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSPolly/AWSPollySynthesizeSpeechURLBuilder.m b/AWSPolly/AWSPollySynthesizeSpeechURLBuilder.m
index eb96c23cf8d..9ec544986ef 100644
--- a/AWSPolly/AWSPollySynthesizeSpeechURLBuilder.m
+++ b/AWSPolly/AWSPollySynthesizeSpeechURLBuilder.m
@@ -16,7 +16,7 @@
#import "AWSPollySynthesizeSpeechURLBuilder.h"
static NSString *const AWSInfoPollySynthesizeSpeechURLBuilder = @"PollySynthesizeSpeechUrlBuilder";
-static NSString *const AWSPollySDKVersion = @"2.36.7";
+static NSString *const AWSPollySDKVersion = @"2.37.0";
NSString *const AWSPollySynthesizeSpeechURLBuilderErrorDomain = @"com.amazonaws.AWSPollySynthesizeSpeechURLBuilderErrorDomain";
NSString *const AWSPollyPresignedUrlPath = @"v1/speech";
diff --git a/AWSPolly/Info.plist b/AWSPolly/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSPolly/Info.plist
+++ b/AWSPolly/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSRekognition.podspec b/AWSRekognition.podspec
index d2847c59d9c..dbcb568da9b 100644
--- a/AWSRekognition.podspec
+++ b/AWSRekognition.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSRekognition'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSRekognition/*.{h,m}'
s.resource_bundle = { 'AWSRekognition' => ['AWSRekognition/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSRekognition/AWSRekognitionService.m b/AWSRekognition/AWSRekognitionService.m
index 4641253c95e..405197a311e 100644
--- a/AWSRekognition/AWSRekognitionService.m
+++ b/AWSRekognition/AWSRekognitionService.m
@@ -25,7 +25,7 @@
#import "AWSRekognitionResources.h"
static NSString *const AWSInfoRekognition = @"Rekognition";
-NSString *const AWSRekognitionSDKVersion = @"2.36.7";
+NSString *const AWSRekognitionSDKVersion = @"2.37.0";
@interface AWSRekognitionResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSRekognition/Info.plist b/AWSRekognition/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSRekognition/Info.plist
+++ b/AWSRekognition/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSS3.podspec b/AWSS3.podspec
index 3a4d9c68d00..d048a8fb5a4 100644
--- a/AWSS3.podspec
+++ b/AWSS3.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSS3'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSS3/*.{h,m}'
s.resource_bundle = { 'AWSS3' => ['AWSS3/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSS3/AWSS3Model.h b/AWSS3/AWSS3Model.h
index e343b1cbc13..e2a6bf9fd1d 100644
--- a/AWSS3/AWSS3Model.h
+++ b/AWSS3/AWSS3Model.h
@@ -70,6 +70,7 @@ typedef NS_ENUM(NSInteger, AWSS3BucketLocationConstraint) {
AWSS3BucketLocationConstraintAPSoutheast2,
AWSS3BucketLocationConstraintAPSoutheast3,
AWSS3BucketLocationConstraintAPSoutheast4,
+ AWSS3BucketLocationConstraintAPSoutheast5,
AWSS3BucketLocationConstraintCACentral1,
AWSS3BucketLocationConstraintCAWest1,
AWSS3BucketLocationConstraintCNNorth1,
diff --git a/AWSS3/AWSS3Model.m b/AWSS3/AWSS3Model.m
index da3b5287ae4..72d3721ce7d 100644
--- a/AWSS3/AWSS3Model.m
+++ b/AWSS3/AWSS3Model.m
@@ -1226,6 +1226,9 @@ + (NSValueTransformer *)locationConstraintJSONTransformer {
if ([value caseInsensitiveCompare:@"ap-southeast-4"] == NSOrderedSame) {
return @(AWSS3BucketLocationConstraintAPSoutheast4);
}
+ if ([value caseInsensitiveCompare:@"ap-southeast-5"] == NSOrderedSame) {
+ return @(AWSS3BucketLocationConstraintAPSoutheast5);
+ }
if ([value caseInsensitiveCompare:@"ca-central-1"] == NSOrderedSame) {
return @(AWSS3BucketLocationConstraintCACentral1);
}
@@ -1319,6 +1322,8 @@ + (NSValueTransformer *)locationConstraintJSONTransformer {
return @"ap-southeast-3";
case AWSS3BucketLocationConstraintAPSoutheast4:
return @"ap-southeast-4";
+ case AWSS3BucketLocationConstraintAPSoutheast5:
+ return @"ap-southeast-5";
case AWSS3BucketLocationConstraintCACentral1:
return @"ca-central-1";
case AWSS3BucketLocationConstraintCAWest1:
@@ -2844,6 +2849,9 @@ + (NSValueTransformer *)locationConstraintJSONTransformer {
if ([value caseInsensitiveCompare:@"ap-southeast-4"] == NSOrderedSame) {
return @(AWSS3BucketLocationConstraintAPSoutheast4);
}
+ if ([value caseInsensitiveCompare:@"ap-southeast-5"] == NSOrderedSame) {
+ return @(AWSS3BucketLocationConstraintAPSoutheast5);
+ }
if ([value caseInsensitiveCompare:@"ca-central-1"] == NSOrderedSame) {
return @(AWSS3BucketLocationConstraintCACentral1);
}
@@ -2937,6 +2945,8 @@ + (NSValueTransformer *)locationConstraintJSONTransformer {
return @"ap-southeast-3";
case AWSS3BucketLocationConstraintAPSoutheast4:
return @"ap-southeast-4";
+ case AWSS3BucketLocationConstraintAPSoutheast5:
+ return @"ap-southeast-5";
case AWSS3BucketLocationConstraintCACentral1:
return @"ca-central-1";
case AWSS3BucketLocationConstraintCAWest1:
diff --git a/AWSS3/AWSS3PreSignedURL.m b/AWSS3/AWSS3PreSignedURL.m
index af7dd7e5a34..b0d9840138f 100644
--- a/AWSS3/AWSS3PreSignedURL.m
+++ b/AWSS3/AWSS3PreSignedURL.m
@@ -26,7 +26,7 @@
static NSString *const AWSS3PreSignedURLBuilderAcceleratedEndpoint = @"s3-accelerate.amazonaws.com";
static NSString *const AWSInfoS3PreSignedURLBuilder = @"S3PreSignedURLBuilder";
-static NSString *const AWSS3PreSignedURLBuilderSDKVersion = @"2.36.7";
+static NSString *const AWSS3PreSignedURLBuilderSDKVersion = @"2.37.0";
@interface AWSS3PreSignedURLBuilder()
diff --git a/AWSS3/AWSS3Resources.m b/AWSS3/AWSS3Resources.m
index def6d7b2a1f..d515ed81e0c 100644
--- a/AWSS3/AWSS3Resources.m
+++ b/AWSS3/AWSS3Resources.m
@@ -1375,6 +1375,7 @@ - (NSString *)definitionString {
\"ap-southeast-2\",\
\"ap-southeast-3\",\
\"ap-southeast-4\",\
+ \"ap-southeast-5\",\
\"ca-central-1\",\
\"ca-west-1\",\
\"cn-north-1\",\
diff --git a/AWSS3/AWSS3Service.m b/AWSS3/AWSS3Service.m
index eacb51fd9c8..f72902befde 100644
--- a/AWSS3/AWSS3Service.m
+++ b/AWSS3/AWSS3Service.m
@@ -27,7 +27,7 @@
#import "AWSS3Serializer.h"
static NSString *const AWSInfoS3 = @"S3";
-NSString *const AWSS3SDKVersion = @"2.36.7";
+NSString *const AWSS3SDKVersion = @"2.37.0";
diff --git a/AWSS3/Info.plist b/AWSS3/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSS3/Info.plist
+++ b/AWSS3/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSS3Tests/AWSS3PreSignedURLBuilderTests.m b/AWSS3Tests/AWSS3PreSignedURLBuilderTests.m
index 757634988bb..e28299caf8d 100644
--- a/AWSS3Tests/AWSS3PreSignedURLBuilderTests.m
+++ b/AWSS3Tests/AWSS3PreSignedURLBuilderTests.m
@@ -604,7 +604,6 @@ - (void)testGetObject {
switch (count) {
case 0:
preSignedURLBuilder = [AWSS3PreSignedURLBuilder defaultS3PreSignedURLBuilder];
- [getPreSignedURLRequest setValue:@"" forRequestParameter:AWSS3PresignedURLTorrent];
break;
case 2:
preSignedURLBuilder = [AWSS3PreSignedURLBuilder S3PreSignedURLBuilderForKey:testS3PresignedURLEUCentralKey];
@@ -648,7 +647,7 @@ - (void)testGetObject {
if (count == 0) {
XCTAssertTrue([data length] > 0);
NSString *responseContentTypeStr = [((NSHTTPURLResponse *)response) allHeaderFields][@"Content-Type"];
- XCTAssertEqualObjects(@"application/x-bittorrent", responseContentTypeStr);
+ XCTAssertEqualObjects(@"binary/octet-stream", responseContentTypeStr);
} else {
XCTAssertEqual(testObjectSize, [data length]);
}
diff --git a/AWSSES.podspec b/AWSSES.podspec
index 6c62f049a27..ec179197811 100644
--- a/AWSSES.podspec
+++ b/AWSSES.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSSES'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSSES/*.{h,m}'
s.resource_bundle = { 'AWSSES' => ['AWSSES/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSSES/AWSSESService.m b/AWSSES/AWSSESService.m
index e56f855b151..8b65bacb913 100644
--- a/AWSSES/AWSSESService.m
+++ b/AWSSES/AWSSESService.m
@@ -25,7 +25,7 @@
#import "AWSSESResources.h"
static NSString *const AWSInfoSES = @"SES";
-NSString *const AWSSESSDKVersion = @"2.36.7";
+NSString *const AWSSESSDKVersion = @"2.37.0";
@interface AWSSESResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSSES/Info.plist b/AWSSES/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSSES/Info.plist
+++ b/AWSSES/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSSNS.podspec b/AWSSNS.podspec
index 76e6e2ab288..5ca3b576764 100644
--- a/AWSSNS.podspec
+++ b/AWSSNS.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSSNS'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSSNS/*.{h,m}'
s.resource_bundle = { 'AWSSNS' => ['AWSSNS/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSSNS/AWSSNSService.m b/AWSSNS/AWSSNSService.m
index c73c4e4f571..3d50bbc79f8 100644
--- a/AWSSNS/AWSSNSService.m
+++ b/AWSSNS/AWSSNSService.m
@@ -25,7 +25,7 @@
#import "AWSSNSResources.h"
static NSString *const AWSInfoSNS = @"SNS";
-NSString *const AWSSNSSDKVersion = @"2.36.7";
+NSString *const AWSSNSSDKVersion = @"2.37.0";
@interface AWSSNSResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSSNS/Info.plist b/AWSSNS/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSSNS/Info.plist
+++ b/AWSSNS/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSSQS.podspec b/AWSSQS.podspec
index 1127e5d6fe4..cf7054dbc7d 100644
--- a/AWSSQS.podspec
+++ b/AWSSQS.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSSQS'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSSQS/*.{h,m}'
s.resource_bundle = { 'AWSSQS' => ['AWSSQS/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSSQS/AWSSQSService.m b/AWSSQS/AWSSQSService.m
index 5d4d8580418..a8218d2e26f 100644
--- a/AWSSQS/AWSSQSService.m
+++ b/AWSSQS/AWSSQSService.m
@@ -25,7 +25,7 @@
#import "AWSSQSResources.h"
static NSString *const AWSInfoSQS = @"SQS";
-NSString *const AWSSQSSDKVersion = @"2.36.7";
+NSString *const AWSSQSSDKVersion = @"2.37.0";
@interface AWSSQSResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSSQS/Info.plist b/AWSSQS/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSSQS/Info.plist
+++ b/AWSSQS/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSSageMakerRuntime.podspec b/AWSSageMakerRuntime.podspec
index 8c6018b299f..6c3ce8bbb06 100644
--- a/AWSSageMakerRuntime.podspec
+++ b/AWSSageMakerRuntime.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSSageMakerRuntime'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSSageMakerRuntime/*.{h,m}'
s.resource_bundle = { 'AWSSageMakerRuntime' => ['AWSSageMakerRuntime/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSSageMakerRuntime/AWSSageMakerRuntimeService.m b/AWSSageMakerRuntime/AWSSageMakerRuntimeService.m
index 0029c49891f..93792b11e63 100644
--- a/AWSSageMakerRuntime/AWSSageMakerRuntimeService.m
+++ b/AWSSageMakerRuntime/AWSSageMakerRuntimeService.m
@@ -25,7 +25,7 @@
#import "AWSSageMakerRuntimeResources.h"
static NSString *const AWSInfoSageMakerRuntime = @"SageMakerRuntime";
-NSString *const AWSSageMakerRuntimeSDKVersion = @"2.36.7";
+NSString *const AWSSageMakerRuntimeSDKVersion = @"2.37.0";
@interface AWSSageMakerRuntimeResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSSageMakerRuntime/Info.plist b/AWSSageMakerRuntime/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSSageMakerRuntime/Info.plist
+++ b/AWSSageMakerRuntime/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSSimpleDB.podspec b/AWSSimpleDB.podspec
index 58675fc2435..855594a0603 100644
--- a/AWSSimpleDB.podspec
+++ b/AWSSimpleDB.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSSimpleDB'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSSimpleDB/*.{h,m}'
s.resource_bundle = { 'AWSSimpleDB' => ['AWSSimpleDB/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSSimpleDB/AWSSimpleDBService.m b/AWSSimpleDB/AWSSimpleDBService.m
index 214ef63fa07..b7c382439cb 100644
--- a/AWSSimpleDB/AWSSimpleDBService.m
+++ b/AWSSimpleDB/AWSSimpleDBService.m
@@ -25,7 +25,7 @@
#import "AWSSimpleDBResources.h"
static NSString *const AWSInfoSimpleDB = @"SimpleDB";
-NSString *const AWSSimpleDBSDKVersion = @"2.36.7";
+NSString *const AWSSimpleDBSDKVersion = @"2.37.0";
@interface AWSSimpleDBResponseSerializer : AWSXMLResponseSerializer
diff --git a/AWSSimpleDB/Info.plist b/AWSSimpleDB/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSSimpleDB/Info.plist
+++ b/AWSSimpleDB/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSTextract.podspec b/AWSTextract.podspec
index 78c76564a84..6bd150af2f1 100644
--- a/AWSTextract.podspec
+++ b/AWSTextract.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSTextract'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSTextract/*.{h,m}'
s.resource_bundle = { 'AWSTextract' => ['AWSTextract/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSTextract/AWSTextractService.m b/AWSTextract/AWSTextractService.m
index a304b346eb6..ca9bbb3122c 100644
--- a/AWSTextract/AWSTextractService.m
+++ b/AWSTextract/AWSTextractService.m
@@ -25,7 +25,7 @@
#import "AWSTextractResources.h"
static NSString *const AWSInfoTextract = @"Textract";
-NSString *const AWSTextractSDKVersion = @"2.36.7";
+NSString *const AWSTextractSDKVersion = @"2.37.0";
@interface AWSTextractResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSTextract/Info.plist b/AWSTextract/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSTextract/Info.plist
+++ b/AWSTextract/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSTranscribe.podspec b/AWSTranscribe.podspec
index 3db02f99ad5..aaf4da29be7 100644
--- a/AWSTranscribe.podspec
+++ b/AWSTranscribe.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSTranscribe'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSTranscribe/*.{h,m}'
s.resource_bundle = { 'AWSTranscribe' => ['AWSTranscribe/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSTranscribe/AWSTranscribeService.m b/AWSTranscribe/AWSTranscribeService.m
index 51796e9d982..5b4f06a02bc 100644
--- a/AWSTranscribe/AWSTranscribeService.m
+++ b/AWSTranscribe/AWSTranscribeService.m
@@ -25,7 +25,7 @@
#import "AWSTranscribeResources.h"
static NSString *const AWSInfoTranscribe = @"Transcribe";
-NSString *const AWSTranscribeSDKVersion = @"2.36.7";
+NSString *const AWSTranscribeSDKVersion = @"2.37.0";
@interface AWSTranscribeResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSTranscribe/Info.plist b/AWSTranscribe/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSTranscribe/Info.plist
+++ b/AWSTranscribe/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSTranscribeStreaming.podspec b/AWSTranscribeStreaming.podspec
index dc89bf2ef14..6fe45e65238 100644
--- a/AWSTranscribeStreaming.podspec
+++ b/AWSTranscribeStreaming.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSTranscribeStreaming'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSTranscribeStreaming/*.{h,m}', 'AWSTranscribeStreaming/**/*.{h,m}', 'AWSIoT/Internal/SocketRocket/*.{h,m}'
s.private_header_files = 'AWSTranscribeStreaming/Internal/*.h', 'AWSIoT/Internal/SocketRocket/*.h'
s.resource_bundle = { 'AWSTranscribeStreaming' => ['AWSTranscribeStreaming/PrivacyInfo.xcprivacy']}
diff --git a/AWSTranscribeStreaming/AWSTranscribeStreamingService.m b/AWSTranscribeStreaming/AWSTranscribeStreamingService.m
index b463e07c62a..3def3f1a885 100644
--- a/AWSTranscribeStreaming/AWSTranscribeStreamingService.m
+++ b/AWSTranscribeStreaming/AWSTranscribeStreamingService.m
@@ -33,7 +33,7 @@
NSString *const AWSTranscribeStreamingClientErrorDomain = @"com.amazonaws.AWSTranscribeStreamingClientErrorDomain";
static NSString *const AWSInfoTranscribeStreaming = @"TranscribeStreaming";
-NSString *const AWSTranscribeStreamingSDKVersion = @"2.36.7";
+NSString *const AWSTranscribeStreamingSDKVersion = @"2.37.0";
@interface AWSTranscribeStreamingResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSTranscribeStreaming/Info.plist b/AWSTranscribeStreaming/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSTranscribeStreaming/Info.plist
+++ b/AWSTranscribeStreaming/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSTranslate.podspec b/AWSTranslate.podspec
index a132e43ecd1..902f5a7e43d 100644
--- a/AWSTranslate.podspec
+++ b/AWSTranslate.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSTranslate'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -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.36.7'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSTranslate/*.{h,m}'
s.resource_bundle = { 'AWSTranslate' => ['AWSTranslate/PrivacyInfo.xcprivacy']}
end
diff --git a/AWSTranslate/AWSTranslateService.m b/AWSTranslate/AWSTranslateService.m
index f008b08e569..b90cfe0f72b 100644
--- a/AWSTranslate/AWSTranslateService.m
+++ b/AWSTranslate/AWSTranslateService.m
@@ -25,7 +25,7 @@
#import "AWSTranslateResources.h"
static NSString *const AWSInfoTranslate = @"Translate";
-NSString *const AWSTranslateSDKVersion = @"2.36.7";
+NSString *const AWSTranslateSDKVersion = @"2.37.0";
@interface AWSTranslateResponseSerializer : AWSJSONResponseSerializer
diff --git a/AWSTranslate/Info.plist b/AWSTranslate/Info.plist
index d4c12db4ef8..481ffc88a66 100644
--- a/AWSTranslate/Info.plist
+++ b/AWSTranslate/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 2.36.7
+ 2.37.0
CFBundleSignature
????
CFBundleVersion
diff --git a/AWSUserPoolsSignIn.podspec b/AWSUserPoolsSignIn.podspec
index af79fc3c6ea..d980fb9ef07 100644
--- a/AWSUserPoolsSignIn.podspec
+++ b/AWSUserPoolsSignIn.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'AWSUserPoolsSignIn'
- s.version = '2.36.7'
+ s.version = '2.37.0'
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.'
@@ -12,9 +12,9 @@ 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 'AWSCognitoIdentityProvider', '2.36.7'
- s.dependency 'AWSAuthCore', '2.36.7'
- s.dependency 'AWSCore', '2.36.7'
+ s.dependency 'AWSCognitoIdentityProvider', '2.37.0'
+ s.dependency 'AWSAuthCore', '2.37.0'
+ s.dependency 'AWSCore', '2.37.0'
s.source_files = 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/**/*.{h,m}'
s.public_header_files = 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/*.{h}'
s.private_header_files = 'AWSAuthSDK/Sources/AWSUserPoolsSignIn/UserPoolsUI/*.{h}'
diff --git a/AWSiOSSDKv2.podspec b/AWSiOSSDKv2.podspec
index 15dbc25910d..875592f45a6 100644
--- a/AWSiOSSDKv2.podspec
+++ b/AWSiOSSDKv2.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'AWSiOSSDKv2'
- s.version = '2.36.7'
+ s.version = '2.37.0'
s.summary = 'Amazon Web Services SDK for iOS.'
s.deprecated = true
@@ -18,135 +18,135 @@ Pod::Spec.new do |s|
# Used by many of the service-api subspecs
s.subspec 'AWSCognitoIdentityProvider' do |sub|
- sub.dependency 'AWSCognitoIdentityProvider', '2.36.7'
+ sub.dependency 'AWSCognitoIdentityProvider', '2.37.0'
end
# Used by all service-api subspecs
s.subspec 'AWSCore' do |sub|
- sub.dependency 'AWSCore', '2.36.7'
+ sub.dependency 'AWSCore', '2.37.0'
end
# Service-api subspecs
s.subspec 'AWSAPIGateway' do |sub|
- sub.dependency 'AWSAPIGateway', '2.36.7'
+ sub.dependency 'AWSAPIGateway', '2.37.0'
end
s.subspec 'AutoScaling' do |sub|
- sub.dependency 'AWSAutoScaling', '2.36.7'
+ sub.dependency 'AWSAutoScaling', '2.37.0'
end
s.subspec 'CloudWatch' do |sub|
- sub.dependency 'AWSCloudWatch', '2.36.7'
+ sub.dependency 'AWSCloudWatch', '2.37.0'
end
s.subspec 'AWSComprehend' do |sub|
- sub.dependency 'AWSComprehend', '2.36.7'
+ sub.dependency 'AWSComprehend', '2.37.0'
end
s.subspec 'AWSConnect' do |sub|
- sub.dependency 'AWSConnect', '2.36.7'
+ sub.dependency 'AWSConnect', '2.37.0'
end
s.subspec 'AWSConnectParticipant' do |sub|
- sub.dependency 'AWSConnectParticipant', '2.36.7'
+ sub.dependency 'AWSConnectParticipant', '2.37.0'
end
s.subspec 'DynamoDB' do |sub|
- sub.dependency 'AWSDynamoDB', '2.36.7'
+ sub.dependency 'AWSDynamoDB', '2.37.0'
end
s.subspec 'EC2' do |sub|
- sub.dependency 'AWSEC2', '2.36.7'
+ sub.dependency 'AWSEC2', '2.37.0'
end
s.subspec 'ElasticLoadBalancing' do |sub|
- sub.dependency 'AWSElasticLoadBalancing', '2.36.7'
+ sub.dependency 'AWSElasticLoadBalancing', '2.37.0'
end
s.subspec 'AWSIoT' do |sub|
- sub.dependency 'AWSIoT', '2.36.7'
+ sub.dependency 'AWSIoT', '2.37.0'
end
s.subspec 'AWSKMS' do |sub|
- sub.dependency 'AWSKMS', '2.36.7'
+ sub.dependency 'AWSKMS', '2.37.0'
end
s.subspec 'Kinesis' do |sub|
- sub.dependency 'AWSKinesis', '2.36.7'
+ sub.dependency 'AWSKinesis', '2.37.0'
end
# KinesisVideo not released as part of AWSiOSSDKv2
# KinesisVideoArchivedMedia not released as part of AWSiOSSDKv2
s.subspec 'KinesisVideoSignaling' do |sub|
- sub.dependency 'AWSKinesisVideoSignaling', '2.36.7'
+ sub.dependency 'AWSKinesisVideoSignaling', '2.37.0'
end
s.subspec 'AWSLambda' do |sub|
- sub.dependency 'AWSLambda', '2.36.7'
+ sub.dependency 'AWSLambda', '2.37.0'
end
s.subspec 'AWSLex' do |sub|
- sub.dependency 'AWSLex', '2.36.7'
+ sub.dependency 'AWSLex', '2.37.0'
end
s.subspec 'AWSLogs' do |sub|
- sub.dependency 'AWSLogs', '2.36.7'
+ sub.dependency 'AWSLogs', '2.37.0'
end
s.subspec 'AWSMachineLearning' do |sub|
- sub.dependency 'AWSMachineLearning', '2.36.7'
+ sub.dependency 'AWSMachineLearning', '2.37.0'
end
s.subspec 'Pinpoint' do |sub|
- sub.dependency 'AWSPinpoint', '2.36.7'
+ sub.dependency 'AWSPinpoint', '2.37.0'
end
s.subspec 'AWSPolly' do |sub|
- sub.dependency 'AWSPolly', '2.36.7'
+ sub.dependency 'AWSPolly', '2.37.0'
end
s.subspec 'AWSRekognition' do |sub|
- sub.dependency 'AWSRekognition', '2.36.7'
+ sub.dependency 'AWSRekognition', '2.37.0'
end
s.subspec 'AWSS3' do |sub|
- sub.dependency 'AWSS3', '2.36.7'
+ sub.dependency 'AWSS3', '2.37.0'
end
s.subspec 'AWSSES' do |sub|
- sub.dependency 'AWSSES', '2.36.7'
+ sub.dependency 'AWSSES', '2.37.0'
end
s.subspec 'AWSSNS' do |sub|
- sub.dependency 'AWSSNS', '2.36.7'
+ sub.dependency 'AWSSNS', '2.37.0'
end
s.subspec 'AWSSQS' do |sub|
- sub.dependency 'AWSSQS', '2.36.7'
+ sub.dependency 'AWSSQS', '2.37.0'
end
s.subspec 'AWSSageMakerRuntime' do |sub|
- sub.dependency 'AWSSageMakerRuntime', '2.36.7'
+ sub.dependency 'AWSSageMakerRuntime', '2.37.0'
end
s.subspec 'AWSSimpleDB' do |sub|
- sub.dependency 'AWSSimpleDB', '2.36.7'
+ sub.dependency 'AWSSimpleDB', '2.37.0'
end
s.subspec 'AWSTextract' do |sub|
- sub.dependency 'AWSTextract', '2.36.7'
+ sub.dependency 'AWSTextract', '2.37.0'
end
s.subspec 'AWSTranscribe' do |sub|
- sub.dependency 'AWSTranscribe', '2.36.7'
+ sub.dependency 'AWSTranscribe', '2.37.0'
end
# note that AWSTranscribeStreaming requires iOS 9.0 or higher, and is
# therefore not included as a subspec
s.subspec 'AWSTranslate' do |sub|
- sub.dependency 'AWSTranslate', '2.36.7'
+ sub.dependency 'AWSTranslate', '2.37.0'
end
end
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 432e7899fe3..e6976e8ffd2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
-Features for next release
+## 2.37.0
+
+### New features
+- **AWSCore**
+ - Support for `ap-southeast-5` - Asia Pacific (Malaysia) (see [AWS Regional Services List](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/) for a list of services supported in the region)
+
## 2.36.7
- **AWSIoT**
diff --git a/CircleciScripts/generate_documentation.sh b/CircleciScripts/generate_documentation.sh
index 76e62b46d5a..a7785dface9 100644
--- a/CircleciScripts/generate_documentation.sh
+++ b/CircleciScripts/generate_documentation.sh
@@ -6,7 +6,7 @@
set -x
-SDK_VERSION="2.36.7"
+SDK_VERSION="2.37.0"
GITHUB_DOC_ROOT=https://aws-amplify.github.io
GITHUB_SOURCE_ROOT=https://github.com/aws-amplify/aws-sdk-ios
diff --git a/Gemfile b/Gemfile
index 08f8e596cc7..c5ee5e1537e 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,5 +5,4 @@ source "https://rubygems.org"
gem 'xcpretty', '0.3.0'
gem 'cocoapods', '1.11.3'
gem 'cocoapods-downloader', '1.6.3'
-gem 'jazzy', '0.14.2'
-gem "xcodeproj", git: "https://github.com/CocoaPods/Xcodeproj.git", :branch => "master", ref: "fe55cf5"
\ No newline at end of file
+gem 'jazzy', '0.14.2'
\ No newline at end of file
diff --git a/Gemfile.lock b/Gemfile.lock
index 9ca5fb0b228..fac2a1d73e8 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,17 +1,3 @@
-GIT
- remote: https://github.com/CocoaPods/Xcodeproj.git
- revision: fe55cf57badef2ca27fb9d4f801d9b834de1f871
- ref: fe55cf5
- branch: master
- specs:
- xcodeproj (1.24.0)
- CFPropertyList (>= 2.3.3, < 4.0)
- atomos (~> 0.1.3)
- claide (>= 1.0.2, < 2.0)
- colored2 (~> 3.1)
- nanaimo (~> 0.3.0)
- rexml (>= 3.3.2, < 4.0)
-
GEM
remote: https://rubygems.org/
specs:
@@ -105,7 +91,7 @@ GEM
open4 (1.3.4)
public_suffix (4.0.6)
redcarpet (3.5.1)
- rexml (3.3.2)
+ rexml (3.3.4)
strscan
rouge (2.0.7)
ruby-macho (2.5.1)
@@ -120,6 +106,13 @@ GEM
concurrent-ruby (~> 1.0)
xcinvoke (0.3.0)
liferaft (~> 0.0.6)
+ xcodeproj (1.25.0)
+ CFPropertyList (>= 2.3.3, < 4.0)
+ atomos (~> 0.1.3)
+ claide (>= 1.0.2, < 2.0)
+ colored2 (~> 3.1)
+ nanaimo (~> 0.3.0)
+ rexml (>= 3.3.2, < 4.0)
xcpretty (0.3.0)
rouge (~> 2.0.7)
zeitwerk (2.6.11)
@@ -131,8 +124,7 @@ DEPENDENCIES
cocoapods (= 1.11.3)
cocoapods-downloader (= 1.6.3)
jazzy (= 0.14.2)
- xcodeproj!
xcpretty (= 0.3.0)
BUNDLED WITH
- 2.3.7
+ 2.5.14