Skip to content

Commit ec841bc

Browse files
author
garenwang
committed
# 5.9.4
1.修复已知bug
1 parent e65d00e commit ec841bc

File tree

9 files changed

+35
-27
lines changed

9 files changed

+35
-27
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.9.4
2+
1.修复已知bug
3+
14
# 5.9.3
25
- XCode10编译修复
36

QCloudCOSXML.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
22
s.name = "QCloudCOSXML"
33

44

5-
s.version = "5.9.3"
5+
s.version = "5.9.4"
66

77

88
s.summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
@@ -22,15 +22,15 @@ s.version = "5.9.3"
2222
s.subspec 'Default' do |default|
2323
default.source_files = 'QCloudCOSXML/Classes/**/*','QCloudCOSXML/Classes/QCloudCOSXML/*'
2424

25-
default.dependency "QCloudCore",'5.9.3'
25+
default.dependency "QCloudCore",'5.9.4'
2626
end
2727
s.subspec 'Slim' do |slim|
2828
slim.source_files = 'QCloudCOSXML/Classes/**/*','QCloudCOSXML/Classes/QCloudCOSXML/*'
29-
slim.dependency "QCloudCore/WithoutMTA",'5.9.3'
29+
slim.dependency "QCloudCore/WithoutMTA",'5.9.4'
3030
end
3131
s.subspec 'Transfer' do |transfer|
3232
transfer.source_files = 'QCloudCOSXML/Classes/*','QCloudCOSXML/Classes/Transfer/**/*','QCloudCOSXML/Classes/Base/**/*'
33-
transfer.dependency "QCloudCore",'5.9.3'
33+
transfer.dependency "QCloudCore/WithoutMTA",'5.9.4'
3434

3535
end
3636

QCloudCOSXML/Classes/QCloudCOSXMLVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
#ifndef QCloudCOSXMLModuleVersion_h
77
#define QCloudCOSXMLModuleVersion_h
8-
#define QCloudCOSXMLModuleVersionNumber 509002
8+
#define QCloudCOSXMLModuleVersionNumber 509004
99

1010
//dependency
1111

1212
//
1313
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleVersion;
1414
FOUNDATION_EXTERN NSString * const QCloudCOSXMLModuleName;
1515

16-
#endif
16+
#endif

QCloudCOSXML/Classes/QCloudCOSXMLVersion.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import "QCloudCOSXMLVersion.h"
2-
NSString * const QCloudCOSXMLModuleVersion = @"5.9.2";
2+
NSString * const QCloudCOSXMLModuleVersion = @"5.9.4";
33
NSString * const QCloudCOSXMLModuleName = @"QCloudCOSXML";
44
@interface QCloudQCloudCOSXMLLoad : NSObject
55
@end
@@ -26,4 +26,4 @@ + (void) load
2626
#pragma clang diagnostic pop
2727
}
2828
}
29-
@end
29+
@end

QCloudCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.name = "QCloudCore"
1111

1212

13-
s.version = "5.9.3"
13+
s.version = "5.9.4"
1414

1515

1616

QCloudCore/Classes/Base/QCloudBase/QualityAssurance/QualityDataUploader.m

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929

3030
#define kAdvancedEvents @[ @"QCloudCOSXMLUploadObjectRequest", @"QCloudCOSXMLCopyObjectRequest" ]
3131

32-
3332
NSString *const kQCloudUploadAppDebugKey = @"LOGDEBUGKEY00247";
3433

3534
NSString *const kQCloudUploadAppReleaseKey = @"0AND0VEVB24UBGDU";
3635

36+
3737
#pragma mark -commen key
3838
NSString *const kQCloudQualitySDKVersionKey = @"cossdk_version";
3939
NSString *const kQCloudQualitySDKVersionCodeKey = @"cossdk_version_code";
@@ -103,7 +103,7 @@ - (NSDictionary *)toUploadEventParamters {
103103
}
104104

105105
return
106-
@{ kQCloudQualityErrorStatusCodeKey : [NSString stringWithFormat:@"%ld", (long)self.code], kQCloudQualityErrorCodeKey :errorCode ,kQCloudQualityErrorTypeKey:error_name,kQCloudQualityErrorIDKey:requestID,kQCloudQualityErrorMessageKey:errorMsg};
106+
@{ kQCloudQualityErrorStatusCodeKey : [NSString stringWithFormat:@"%ld", (long)self.code], kQCloudQualityErrorCodeKey :errorCode ? errorCode : @"" ,kQCloudQualityErrorTypeKey:error_name?error_name : @"",kQCloudQualityErrorIDKey:requestID?requestID : @"",kQCloudQualityErrorMessageKey:errorMsg?errorMsg:@""};
107107
}
108108

109109
@end
@@ -204,7 +204,7 @@ + (void)internalUploadRequest:(QCloudAbstractRequest *)request event:(NSString *
204204
QCloudHTTPRequest *httpReq = (QCloudHTTPRequest*)request;
205205
paramter[kQCloudQualityRegionKey] = httpReq.runOnService.configuration.endpoint.regionName;
206206
paramter[kQCloudQualityRequestPathKey] = httpReq.urlRequest.URL.path;
207-
207+
208208
}
209209
[self startReportSDKWithEventKey:eventKey paramters:paramter];
210210
}
@@ -229,6 +229,7 @@ + (void)startReportSDKWithEventKey:(NSString *)eventKey paramters:(NSMutableDict
229229
}
230230

231231
+ (void)startReportWithEventKey:(NSString *)eventKey appkey:(NSString *)appkey paramters:(NSDictionary *)paramter {
232+
232233
QCloudLogInfo(@"beacon paramter = %@",paramter);
233234
Class cls = NSClassFromString(@"BeaconReport");
234235
if (cls) {

QCloudCore/Classes/Base/QCloudCoreVersion.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
#ifndef QCloudCoreModuleVersion_h
77
#define QCloudCoreModuleVersion_h
8-
#define QCloudCoreModuleVersionNumber 509002
8+
#define QCloudCoreModuleVersionNumber 509004
99

10-
// dependency
10+
//dependency
1111

1212
//
13-
FOUNDATION_EXTERN NSString *const QCloudCoreModuleVersion;
14-
FOUNDATION_EXTERN NSString *const QCloudCoreModuleName;
13+
FOUNDATION_EXTERN NSString * const QCloudCoreModuleVersion;
14+
FOUNDATION_EXTERN NSString * const QCloudCoreModuleName;
1515

16-
#endif
16+
#endif
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
#import "QCloudCoreVersion.h"
2-
NSString *const QCloudCoreModuleVersion = @"5.9.2";
3-
NSString *const QCloudCoreModuleName = @"QCloudCore";
2+
NSString * const QCloudCoreModuleVersion = @"5.9.4";
3+
NSString * const QCloudCoreModuleName = @"QCloudCore";
44
@interface QCloudQCloudCoreLoad : NSObject
55
@end
66

77
@implementation QCloudQCloudCoreLoad
8-
+ (void)load {
8+
+ (void) load
9+
{
910
Class cla = NSClassFromString(@"QCloudSDKModuleManager");
1011
if (cla) {
11-
NSMutableDictionary *module = [@{ @"name" : QCloudCoreModuleName, @"version" : QCloudCoreModuleVersion } mutableCopy];
12+
NSMutableDictionary* module = [@{
13+
@"name" : QCloudCoreModuleName,
14+
@"version" : QCloudCoreModuleVersion
15+
} mutableCopy];
1216

13-
NSString *buglyID = @"";
14-
if (buglyID.length > 0) {
15-
module[@"crashID"] = buglyID;
16-
}
17+
NSString* buglyID = @"";
18+
if (buglyID.length > 0) {
19+
module[@"crashID"] = buglyID;
20+
}
1721

1822
#pragma clang diagnostic push
1923
#pragma clang diagnostic ignored "-Wundeclared-selector"
@@ -22,4 +26,4 @@ + (void)load {
2226
#pragma clang diagnostic pop
2327
}
2428
}
25-
@end
29+
@end

QCloudQuic.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.name = "QCloudQuic"
1111

1212

13-
s.version = "5.9.3"
13+
s.version = "5.9.4"
1414

1515

1616
s.summary = "QCloudQuic 腾讯云iOS-SDK组件"

0 commit comments

Comments
 (0)