Skip to content

Commit 91426a8

Browse files
author
AWS
committed
The AWS Mobile SDK for iOS 2.5.4.
1 parent 1a3a40f commit 91426a8

File tree

246 files changed

+10597
-1110
lines changed

Some content is hidden

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

246 files changed

+10597
-1110
lines changed

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.3'
4+
s.version = '2.5.4'
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.3'
16+
s.dependency 'AWSCore', '2.5.4'
1717

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

AWSAPIGateway/AWSAPIGatewayClient.m

Lines changed: 9 additions & 9 deletions
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.3";
26+
static NSString *const AWSAPIGatewaySDKVersion = @"2.5.4";
2727

2828
static int defaultChunkSize = 1024;
2929

@@ -145,7 +145,7 @@ - (instancetype)init {
145145

146146
NSData *data = [oStream propertyForKey: NSStreamDataWrittenToMemoryStreamKey];
147147
if (!data) {
148-
AWSLogVerbose(@"No data written to memory!");
148+
AWSDDLogVerbose(@"No data written to memory!");
149149
} else {
150150
request.HTTPBody = data;
151151
}
@@ -156,7 +156,7 @@ - (instancetype)init {
156156
}
157157

158158
if (!request.HTTPBody && ![apiRequest.HTTPBody isKindOfClass:[NSInputStream class]]) {
159-
AWSLogError(@"Failed to set a request body. %@", error);
159+
AWSDDLogError(@"Failed to set a request body. %@", error);
160160
}
161161
}
162162
return nil;
@@ -200,7 +200,7 @@ - (instancetype)init {
200200
statusCode:HTTPStatusCode]];
201201
}
202202
};
203-
AWSLogVerbose(@"%@",request);
203+
AWSDDLogVerbose(@"%@",request);
204204
NSURLSessionDataTask *sessionTask = [self.session dataTaskWithRequest:request
205205
completionHandler:completionHandler];
206206
[sessionTask resume];
@@ -232,7 +232,7 @@ - (AWSTask *)invokeHTTPRequest:(NSString *)HTTPMethod
232232
options:0
233233
error:&error];
234234
if (!request.HTTPBody) {
235-
AWSLogError(@"Failed to serialize a request body. %@", error);
235+
AWSDDLogError(@"Failed to serialize a request body. %@", error);
236236
}
237237
}
238238

@@ -275,7 +275,7 @@ - (AWSTask *)invokeHTTPRequest:(NSString *)HTTPMethod
275275
if (!JSONObject) {
276276
NSString *bodyString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
277277
if ([bodyString length] > 0) {
278-
AWSLogError(@"The body is not in JSON format. Body: %@\nError: %@", bodyString, error);
278+
AWSDDLogError(@"The body is not in JSON format. Body: %@\nError: %@", bodyString, error);
279279
}
280280
[completionSource setError:error];
281281
return;
@@ -321,7 +321,7 @@ - (AWSTask *)invokeHTTPRequest:(NSString *)HTTPMethod
321321
fromJSONDictionary:JSONObject
322322
error:&responseSerializationError];
323323
if (!JSONObject) {
324-
AWSLogError(@"Failed to serialize the body JSON. %@", responseSerializationError);
324+
AWSDDLogError(@"Failed to serialize the body JSON. %@", responseSerializationError);
325325
}
326326
}
327327
if ([JSONObject isKindOfClass:[NSArray class]]) {
@@ -333,7 +333,7 @@ - (AWSTask *)invokeHTTPRequest:(NSString *)HTTPMethod
333333
error:&responseSerializationError];
334334
[models addObject:model];
335335
if (!JSONObject) {
336-
AWSLogError(@"Failed to serialize the body JSON. %@", responseSerializationError);
336+
AWSDDLogError(@"Failed to serialize the body JSON. %@", responseSerializationError);
337337
}
338338
}
339339
JSONObject = models;
@@ -423,7 +423,7 @@ - (NSString *)encodeQueryStringValue:(id)value {
423423
return mutableString;
424424
}
425425

426-
AWSLogError(@"value[%@] is invalid.", value);
426+
AWSDDLogError(@"value[%@] is invalid.", value);
427427
return [[value description] aws_stringWithURLEncoding];
428428
}
429429

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.3</string>
18+
<string>2.5.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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.3'
3+
s.version = '2.5.4'
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.3'
15+
s.dependency 'AWSCore', '2.5.4'
1616
s.source_files = 'AWSAutoScaling/*.{h,m}'
1717
end

AWSAutoScaling/AWSAutoScalingResources.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//
1515

1616
#import "AWSAutoScalingResources.h"
17-
#import <AWSCore/AWSLogging.h>
17+
#import <AWSCore/AWSCocoaLumberjack.h>
1818

1919
@interface AWSAutoScalingResources ()
2020

@@ -48,7 +48,7 @@ - (instancetype)init {
4848
error:&error];
4949
if (_definitionDictionary == nil) {
5050
if (error) {
51-
AWSLogError(@"Failed to parse JSON service definition: %@",error);
51+
AWSDDLogError(@"Failed to parse JSON service definition: %@",error);
5252
}
5353
}
5454
}

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.3";
29+
static NSString *const AWSAutoScalingSDKVersion = @"2.5.4";
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.3</string>
18+
<string>2.5.4</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.3'
3+
s.version = '2.5.4'
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.3'
15+
s.dependency 'AWSCore', '2.5.4'
1616
s.source_files = 'AWSCloudWatch/*.{h,m}'
1717
end

AWSCloudWatch/AWSCloudWatchResources.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//
1515

1616
#import "AWSCloudWatchResources.h"
17-
#import <AWSCore/AWSLogging.h>
17+
#import <AWSCore/AWSCocoaLumberjack.h>
1818

1919
@interface AWSCloudWatchResources ()
2020

@@ -48,7 +48,7 @@ - (instancetype)init {
4848
error:&error];
4949
if (_definitionDictionary == nil) {
5050
if (error) {
51-
AWSLogError(@"Failed to parse JSON service definition: %@",error);
51+
AWSDDLogError(@"Failed to parse JSON service definition: %@",error);
5252
}
5353
}
5454
}

AWSCloudWatch/AWSCloudWatchService.m

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

2828
static NSString *const AWSInfoCloudWatch = @"CloudWatch";
29-
static NSString *const AWSCloudWatchSDKVersion = @"2.5.3";
29+
static NSString *const AWSCloudWatchSDKVersion = @"2.5.4";
3030

3131

3232
@interface AWSCloudWatchResponseSerializer : AWSXMLResponseSerializer

0 commit comments

Comments
 (0)