Skip to content

Commit b7c4d59

Browse files
author
AWS
committed
The AWS Mobile SDK for iOS 2.5.2.
1 parent f350ca1 commit b7c4d59

File tree

123 files changed

+16271
-784
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+16271
-784
lines changed

.github/CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contributing to the AWS SDK for iOS
2+
3+
We work hard to provide a high-quality and useful SDK, and we greatly value feedback and contributions from our
4+
community. Whether it's a new feature, correction, or additional documentation, we welcome your pull requests.
5+
Please submit any [issues][issues] or [pull requests][pull-requests] through GitHub.
6+
7+
## What you should keep in mind
8+
9+
1. The SDK is released under license as described in [license] file in the root directory. Any code you submit will be released under that license. For substantial contributions, we may ask you to sign a [Contributor License Agreement (CLA)][cla].
10+
2. We try to maintain a high percentage of code coverage in our unit tests. If you make changes to the code, please add, update, and/or remove unit tests as appropriate.
11+
3. We may choose not to accept pull requests that change core services, such as the master header files e.g `AWSDynamoDB.h`, the service files `AWSDynamoDBResources.*` , `AWSDynamoDBServices.*`, `AWSDynamoDBModel.*`.
12+
We generate these files based on our internal knowledge of the AWS services. If there is something incorrect
13+
with or missing from a service description, it may be more appropriate to [submit an issue][issues].
14+
4. If your code does not include adequate tests, we may ask you to update your pull requests before we accept them. We also reserve the right to deny any pull requests that do not align with our standards or goals.
15+
5. If you would like to implement support for a significant feature that is not yet available in the SDK, please talk to us beforehand to avoid any duplication of effort.
16+
17+
## What we are looking for
18+
19+
We are open to anything that improves the SDK and doesn't unnecessarily cause backwards-incompatible changes. If you are unsure if your idea is something we would be open to, please ask us; Open an issue, send us an email. Specifically, here are a few things that we would
20+
appreciate help on:
21+
22+
1. **Docs** – We greatly appreciate contributions to our documentation. The API reference docs are written as code comments. The [developer guide][dev-guide] are written as markdown templates.
23+
2. **Tests** – We maintain high code coverage, but if there are any tests you feel are missing, please add them.
24+
3. **Convenience features** – Are there any features you feel would add value to the SDK? Contributions in this area would be greatly appreciated.
25+
4. If you have some other ideas, please let us know!
26+
27+
[issues]: https://github.com/aws/aws-sdk-ios/issues
28+
[pull-requests]: https://github.com/aws/aws-sdk-ios/pulls
29+
[license]: https://github.com/aws/aws-sdk-ios/blob/master/LICENSE.txt
30+
[cla]: http://en.wikipedia.org/wiki/Contributor_License_Agreement
31+
[dev-guide]: https://github.com/awsdocs/aws-ios-developer-guide

.github/ISSUE_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### To help us solve your problem better, please answer the following list of questions.
2+
3+
* What service are you using?
4+
5+
* In what version of SDK are you facing the problem?
6+
7+
* Is the issue limited to Simulators / Actual Devices?
8+
9+
* Can your problem be resolved if you bump to a higher version of SDK?
10+
11+
* Is this problem related to specific iOS version?
12+
13+
* How are you consuming the SDK? CocoaPods / Carthage / Prebuilt frameworks?
14+
15+
* Can you give us steps to reproduce with a minimal, complete, and verifiable example? Please include any specific network conditions that might be required to reproduce the problem.
16+
17+
18+
If you need help with understanding how to implement something in particular then we suggest that you first look into our [developer guide](https://docs.aws.amazon.com/mobile/sdkforios/developerguide/). You can also simplify your process of creating an application by using [Mobile Hub](https://console.aws.amazon.com/mobilehub/home#/).

AWSAPIGateway.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'AWSAPIGateway'
4-
s.version = '2.5.1'
4+
s.version = '2.5.2'
55
s.summary = 'Amazon Web Services SDK for iOS.'
66

77
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|
1313
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
1414
:tag => s.version}
1515
s.requires_arc = true
16-
s.dependency 'AWSCore', '2.5.1'
16+
s.dependency 'AWSCore', '2.5.2'
1717

1818
s.source_files = 'AWSAPIGateway/*.{h,m}'
1919
end

AWSAPIGateway/AWSAPIGatewayClient.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

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

26-
static NSString *const AWSAPIGatewaySDKVersion = @"2.5.1";
26+
static NSString *const AWSAPIGatewaySDKVersion = @"2.5.2";
2727

2828
static int defaultChunkSize = 1024;
2929

AWSAPIGateway/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.5.1</string>
18+
<string>2.5.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

AWSAPIGatewayTests/AWSAPIGatewayInvokeTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class TestAPIGatewayInvoke: XCTestCase {
124124

125125
var headerParameter = headerParameters
126126
headerParameter!["Content-Length"] = "\(rawDataBody!.count)"
127-
print(headerParameter)
127+
print(headerParameter!.description)
128128

129129
let inputStream = InputStream(data: rawDataBody!)
130130

AWSAutoScaling.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AWSAutoScaling'
3-
s.version = '2.5.1'
3+
s.version = '2.5.2'
44
s.summary = 'Amazon Web Services SDK for iOS.'
55

66
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
@@ -12,6 +12,6 @@ Pod::Spec.new do |s|
1212
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
1313
:tag => s.version}
1414
s.requires_arc = true
15-
s.dependency 'AWSCore', '2.5.1'
15+
s.dependency 'AWSCore', '2.5.2'
1616
s.source_files = 'AWSAutoScaling/*.{h,m}'
1717
end

AWSAutoScaling/AWSAutoScalingService.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#import "AWSAutoScalingResources.h"
2727

2828
static NSString *const AWSInfoAutoScaling = @"AutoScaling";
29-
static NSString *const AWSAutoScalingSDKVersion = @"2.5.1";
29+
static NSString *const AWSAutoScalingSDKVersion = @"2.5.2";
3030

3131

3232
@interface AWSAutoScalingResponseSerializer : AWSXMLResponseSerializer

AWSAutoScaling/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.5.1</string>
18+
<string>2.5.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

AWSCloudWatch.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AWSCloudWatch'
3-
s.version = '2.5.1'
3+
s.version = '2.5.2'
44
s.summary = 'Amazon Web Services SDK for iOS.'
55

66
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
@@ -12,6 +12,6 @@ Pod::Spec.new do |s|
1212
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
1313
:tag => s.version}
1414
s.requires_arc = true
15-
s.dependency 'AWSCore', '2.5.1'
15+
s.dependency 'AWSCore', '2.5.2'
1616
s.source_files = 'AWSCloudWatch/*.{h,m}'
1717
end

0 commit comments

Comments
 (0)