From 6231b03f9275ae5b48a6eb574e87c54bfd68d9b0 Mon Sep 17 00:00:00 2001 From: TamHH Date: Thu, 19 Dec 2019 15:14:19 +0700 Subject: [PATCH 01/11] issue: #207: missing session token --- NCMB/NCMBUser.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NCMB/NCMBUser.m b/NCMB/NCMBUser.m index d05926c1..1948cb26 100644 --- a/NCMB/NCMBUser.m +++ b/NCMB/NCMBUser.m @@ -988,6 +988,10 @@ -(void)afterSave:(NSDictionary*)response operations:(NSMutableDictionary *)opera } [estimatedData setObject:converted forKey:@"authData"]; } + if ([response objectForKey:@"sessionToken"]){ + [self setSessionToken:[response objectForKey:@"sessionToken"]]; + } + [NCMBUser saveToFileCurrentUser:self]; } From 3a9f26a886bdca831755314773aacab3e269ba00 Mon Sep 17 00:00:00 2001 From: TamHH Date: Mon, 23 Dec 2019 16:05:08 +0700 Subject: [PATCH 02/11] issue: #207: Add testCode --- NCMBTests/NCMBTests/NCMBUserSpec.m | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 201f89b9..004879b4 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -2799,6 +2799,41 @@ -(NSMutableDictionary *)beforeConnection; expect(error.code).to.equal(@400000); expect([error localizedDescription]).to.equal(@"Bad Request."); }); + + it(@"Login with Anynomus", ^{ + [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; + } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { + + NSMutableDictionary *anonymousAuth = [NSMutableDictionary dictionary]; + + NSDictionary *anonymousInfo = @{@"id" : @"4FF8631B-AAF2-4FF5-A61F-4C56ED6AF4AF"}; + [anonymousAuth setObject:anonymousInfo forKey:@"anonymous"]; + + NSMutableDictionary *responseDic = [@{@"createDate" : @"2014-06-03T11:28:30.348Z", + @"objectId" : @"e4YWYnYtcptTIV23", + @"sessionToken" : @"yDCY0ggL8hZghFQ70aiutHtJL" + } mutableCopy]; + [responseDic setObject:anonymousAuth forKey:@"authData"]; + + NSError *convertErr = nil; + NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic + options:0 + error:&convertErr]; + NSLog(@"Data: %@", responseData); + return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; + }]; + + waitUntil(^(DoneCallback done) { + [NCMBAnonymousUtils logInWithBlock:^(NCMBUser *user, NSError *error) { + NCMBUser *currentUser = [NCMBUser currentUser]; + expect(currentUser.objectId).to.equal(@"e4YWYnYtcptTIV23"); + expect(currentUser.sessionToken).to.equal(@"yDCY0ggL8hZghFQ70aiutHtJL"); + done(); + }]; + }); + + }); afterEach(^{ From 26f440e604076f1842ee554473c4707750db653b Mon Sep 17 00:00:00 2001 From: TamHH Date: Mon, 23 Dec 2019 16:10:12 +0700 Subject: [PATCH 03/11] issue: #207: Remove log code --- NCMBTests/NCMBTests/NCMBUserSpec.m | 1 - 1 file changed, 1 deletion(-) diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 004879b4..8d142631 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -2820,7 +2820,6 @@ -(NSMutableDictionary *)beforeConnection; NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic options:0 error:&convertErr]; - NSLog(@"Data: %@", responseData); return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; }]; From 2bcd6856618ac4f40e99589b798c0e009ad075c0 Mon Sep 17 00:00:00 2001 From: TamHH Date: Thu, 26 Dec 2019 09:27:03 +0700 Subject: [PATCH 04/11] issue: #207: add testcode for signupwith: facebook, twiter, google --- NCMBTests/NCMBTests/NCMBUserSpec.m | 130 +++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 8d142631..82190189 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -2833,6 +2833,136 @@ -(NSMutableDictionary *)beforeConnection; }); }); + + it(@"Login with Facebok", ^{ + [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; + } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { + + NSMutableDictionary *facebookAuth = [NSMutableDictionary dictionary]; + + NSDictionary *facebookInfo = @{@"id" : @"facebookId", + @"access_token" : @"facebookToken", + @"expiration_date":@{@"__type" : @"Date",@"iso" : @"2016-09-06T05:41:33.466Z"} + }; + [facebookAuth setObject:facebookInfo forKey:@"facebook"]; + + NSMutableDictionary *responseDic = [@{@"createDate" : @"2014-06-03T11:28:30.348Z", + @"objectId" : @"e4YWYnYtcptTIV23", + @"sessionToken" : @"yDCY0ggL8hZghFQ70aiutHtJL" + } mutableCopy]; + [responseDic setObject:facebookAuth forKey:@"authData"]; + + NSError *convertErr = nil; + NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic + options:0 + error:&convertErr]; + return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; + }]; + + waitUntil(^(DoneCallback done) { + NSDictionary *facebookInfo = @{@"id" : @"facebookId", + @"access_token" : @"facebookToken", + @"expiration_date":@{@"__type" : @"Date",@"iso" : @"2016-09-06T05:41:33.466Z"} + }; + NCMBUser *user = [NCMBUser user]; + [user signUpWithFacebookToken:facebookInfo withBlock:^(NSError *error) { + NCMBUser *currentUser = [NCMBUser currentUser]; + expect(currentUser.objectId).to.equal(@"e4YWYnYtcptTIV23"); + expect(currentUser.sessionToken).to.equal(@"yDCY0ggL8hZghFQ70aiutHtJL"); + done(); + }]; + }); + + }); + + it(@"Login with Twitter", ^{ + [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; + } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { + + NSMutableDictionary *twitterAuth = [NSMutableDictionary dictionary]; + + NSDictionary *twitterInfo = @{@"consumer_secret" : @"twitterSecret", + @"id" : @"twitterId", + @"oauth_consumer_key" : @"twitterConsumuerKey", + @"oauth_token" : @"twitterOauthToken", + @"oauth_token_secret" : @"twitterOauthTokenSecret", + @"screen_name" : @"NCMBSupport" + }; + [twitterAuth setObject:twitterInfo forKey:@"twitter"]; + + NSMutableDictionary *responseDic = [@{@"createDate" : @"2014-06-03T11:28:30.348Z", + @"objectId" : @"e4YWYnYtcptTIV23", + @"sessionToken" : @"yDCY0ggL8hZghFQ70aiutHtJL" + } mutableCopy]; + [responseDic setObject:twitterAuth forKey:@"authData"]; + + NSError *convertErr = nil; + NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic + options:0 + error:&convertErr]; + return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; + }]; + + waitUntil(^(DoneCallback done) { + NSDictionary *twitterInfo = @{@"consumer_secret" : @"twitterSecret", + @"id" : @"twitterId", + @"oauth_consumer_key" : @"twitterConsumuerKey", + @"oauth_token" : @"twitterOauthToken", + @"oauth_token_secret" : @"twitterOauthTokenSecret", + @"screen_name" : @"NCMBSupport" + }; + NCMBUser *user = [NCMBUser user]; + [user signUpWithTwitterToken:twitterInfo withBlock:^(NSError *error) { + NCMBUser *currentUser = [NCMBUser currentUser]; + expect(currentUser.objectId).to.equal(@"e4YWYnYtcptTIV23"); + expect(currentUser.sessionToken).to.equal(@"yDCY0ggL8hZghFQ70aiutHtJL"); + done(); + }]; + }); + + }); + + it(@"Login with Google", ^{ + [OHHTTPStubs stubRequestsPassingTest:^BOOL(NSURLRequest *request) { + return [request.URL.host isEqualToString:@"mbaas.api.nifcloud.com"]; + } withStubResponse:^OHHTTPStubsResponse*(NSURLRequest *request) { + + NSMutableDictionary *googleAuth = [NSMutableDictionary dictionary]; + + NSDictionary *googleInfo = @{@"id" : @"googleId", + @"access_token" : @"googleAccessToken" + }; + [googleAuth setObject:googleInfo forKey:@"google"]; + + NSMutableDictionary *responseDic = [@{@"createDate" : @"2014-06-03T11:28:30.348Z", + @"objectId" : @"e4YWYnYtcptTIV23", + @"sessionToken" : @"yDCY0ggL8hZghFQ70aiutHtJL" + } mutableCopy]; + [responseDic setObject:googleAuth forKey:@"authData"]; + + NSError *convertErr = nil; + NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseDic + options:0 + error:&convertErr]; + return [OHHTTPStubsResponse responseWithData:responseData statusCode:201 headers:@{@"Content-Type":@"application/json;charset=UTF-8"}]; + }]; + + waitUntil(^(DoneCallback done) { + NSDictionary *googleInfo = @{@"id" : @"googleId", + @"access_token" : @"googleAccessToken" + }; + NCMBUser *user = [NCMBUser user]; + [user signUpWithGoogleToken:googleInfo withBlock:^(NSError *error) { + NCMBUser *currentUser = [NCMBUser currentUser]; + expect(currentUser.objectId).to.equal(@"e4YWYnYtcptTIV23"); + expect(currentUser.sessionToken).to.equal(@"yDCY0ggL8hZghFQ70aiutHtJL"); + done(); + }]; + }); + + }); afterEach(^{ From 01253307c8a8408d3d27edfc7b41732568524a9e Mon Sep 17 00:00:00 2001 From: TamHH Date: Thu, 6 Feb 2020 15:36:45 +0700 Subject: [PATCH 05/11] Issue #212: exist sns key after sign up failed. --- NCMB/NCMBUser.m | 7 +++++ NCMBTests/NCMBTests/NCMBUserSpec.m | 41 ++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/NCMB/NCMBUser.m b/NCMB/NCMBUser.m index 1948cb26..c6c550ff 100644 --- a/NCMB/NCMBUser.m +++ b/NCMB/NCMBUser.m @@ -253,12 +253,19 @@ - (void)signUpInBackgroundWithTarget:(id)target selector:(SEL)selector{ - (void)signUpWithToken:(NSDictionary *)snsInfo withType:(NSString *)type withBlock:(NCMBErrorResultBlock)block{ //既存のauthDataのtype情報のみ更新する NSMutableDictionary *userAuthData = [NSMutableDictionary dictionary]; + NSMutableDictionary *localAuthData = [NSMutableDictionary dictionary]; if([[self objectForKey:@"authData"] isKindOfClass:[NSDictionary class]]){ userAuthData = [NSMutableDictionary dictionaryWithDictionary:[self objectForKey:@"authData"]]; + localAuthData = [NSMutableDictionary dictionaryWithDictionary:[self objectForKey:@"authData"]]; } [userAuthData setObject:snsInfo forKey:type]; [self setObject:userAuthData forKey:@"authData"]; [self signUpInBackgroundWithBlock:^(NSError *error) { + if (error) { + [self setObject:localAuthData forKey:@"authData"]; + } + // ログインユーザーをファイルに保存する + [NCMBUser saveToFileCurrentUser:self]; [self executeUserCallback:block error:error]; }]; } diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 82190189..4d605123 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -2964,6 +2964,47 @@ -(NSMutableDictionary *)beforeConnection; }); + it(@"should case of network error are not signUp with google token and return existing token", ^{ + + NSDictionary *googleInfo = @{@"id" : @"googleId", + @"access_token" : @"googleAccessToken" + }; + + NSDictionary *twitterInfo = @{@"consumer_secret" : @"twitterSecret", + @"id" : @"twitterId", + @"oauth_consumer_key" : @"twitterConsumuerKey", + @"oauth_token" : @"twitterOauthToken", + @"oauth_token_secret" : @"twitterOauthTokenSecret", + @"screen_name" : @"NCMBSupport" + }; + + NCMBUser *user = [NCMBUser user]; + id mock = OCMPartialMock(user); + + NSMutableDictionary *twitterAuth = [NSMutableDictionary dictionary]; + [twitterAuth setObject:twitterInfo forKey:@"twitter"]; + [mock setObject:twitterAuth forKey:@"authData"]; + + void (^invocation)(NSInvocation *) = ^(NSInvocation *invocation) { + __unsafe_unretained void (^block) (NSError *error); + [invocation getArgument:&block atIndex:2]; + NSError *e = [NSError errorWithDomain:@"NCMBErrorDomain" + code:-1 + userInfo:nil]; + block(e); + }; + + OCMStub([mock saveInBackgroundWithBlock:OCMOCK_ANY]).andDo(invocation); + + [mock signUpWithGoogleToken:googleInfo withBlock:^(NSError *error) { + expect(error).to.beTruthy(); + if(error) { + expect([[mock objectForKey:@"authData"]objectForKey:@"google"]).to.beNil(); + expect([[mock objectForKey:@"authData"]objectForKey:@"twitter"]).to.equal(twitterInfo); + } + }]; + }); + afterEach(^{ }); From cd7fc80e77d55cff98454129d20bb5ce0b2ca4a2 Mon Sep 17 00:00:00 2001 From: TamHH Date: Mon, 17 Feb 2020 09:18:38 +0700 Subject: [PATCH 06/11] Issue #212: fix comment. --- NCMB/NCMBUser.m | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/NCMB/NCMBUser.m b/NCMB/NCMBUser.m index c6c550ff..7805354c 100644 --- a/NCMB/NCMBUser.m +++ b/NCMB/NCMBUser.m @@ -253,19 +253,17 @@ - (void)signUpInBackgroundWithTarget:(id)target selector:(SEL)selector{ - (void)signUpWithToken:(NSDictionary *)snsInfo withType:(NSString *)type withBlock:(NCMBErrorResultBlock)block{ //既存のauthDataのtype情報のみ更新する NSMutableDictionary *userAuthData = [NSMutableDictionary dictionary]; - NSMutableDictionary *localAuthData = [NSMutableDictionary dictionary]; if([[self objectForKey:@"authData"] isKindOfClass:[NSDictionary class]]){ userAuthData = [NSMutableDictionary dictionaryWithDictionary:[self objectForKey:@"authData"]]; - localAuthData = [NSMutableDictionary dictionaryWithDictionary:[self objectForKey:@"authData"]]; } [userAuthData setObject:snsInfo forKey:type]; [self setObject:userAuthData forKey:@"authData"]; [self signUpInBackgroundWithBlock:^(NSError *error) { if (error) { - [self setObject:localAuthData forKey:@"authData"]; + [userAuthData removeObjectForKey:type]; + [self setObject:userAuthData forKey:@"authData"]; + [NCMBUser saveToFileCurrentUser:self]; } - // ログインユーザーをファイルに保存する - [NCMBUser saveToFileCurrentUser:self]; [self executeUserCallback:block error:error]; }]; } From 64d05cf8d0c18dafc84ebad7e5f2127fd1d1cdd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jimmy=20Hu=E1=BB=B3nh?= <38197708+vfa-tamhh@users.noreply.github.com> Date: Mon, 17 Feb 2020 16:26:00 +0700 Subject: [PATCH 07/11] Update NCMBUser.m Issue #1153: Fix comment: remove save local file --- NCMB/NCMBUser.m | 1 - 1 file changed, 1 deletion(-) diff --git a/NCMB/NCMBUser.m b/NCMB/NCMBUser.m index 7805354c..5cc79f76 100644 --- a/NCMB/NCMBUser.m +++ b/NCMB/NCMBUser.m @@ -262,7 +262,6 @@ - (void)signUpWithToken:(NSDictionary *)snsInfo withType:(NSString *)type withBl if (error) { [userAuthData removeObjectForKey:type]; [self setObject:userAuthData forKey:@"authData"]; - [NCMBUser saveToFileCurrentUser:self]; } [self executeUserCallback:block error:error]; }]; From b829a17782880fed10e29e9f27b35ad8e9d96d66 Mon Sep 17 00:00:00 2001 From: kobayashi-masaya Date: Fri, 28 Feb 2020 13:46:58 +0900 Subject: [PATCH 08/11] Update version string to v3.0.4 --- NCMB.podspec | 4 ++-- NCMB/NCMBConstants.h | 2 +- NCMB/NCMB_Info.plist | 2 +- NCMBTests/NCMBTests/NCMBInstallationSpec.m | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NCMB.podspec b/NCMB.podspec index e1540124..19f03d08 100644 --- a/NCMB.podspec +++ b/NCMB.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "NCMB" - s.version = "3.0.3" + s.version = "3.0.4" s.summary = "NCMB is SDK for NIFCLOUD mobile backend." s.description = <<-DESC NCMB is SDK for NIFCLOUD mobile backend. @@ -15,7 +15,7 @@ Pod::Spec.new do |s| s.license = "Apache License, Version 2.0" s.author = "FUJITSU CLOUD TECHNOLOGIES LIMITED" s.platform = :ios, "5.1" - s.source = { :git => 'https://github.com/NIFCLOUD-mbaas/ncmb_ios.git', :tag => 'v3.0.3' } + s.source = { :git => 'https://github.com/NIFCLOUD-mbaas/ncmb_ios.git', :tag => 'v3.0.4' } s.source_files = "NCMB/**/*.{h,m,c}" s.frameworks = "Foundation", "UIKit", "MobileCoreServices", "AudioToolbox", "SystemConfiguration" s.requires_arc = true diff --git a/NCMB/NCMBConstants.h b/NCMB/NCMBConstants.h index 79c60900..4e56b48c 100644 --- a/NCMB/NCMBConstants.h +++ b/NCMB/NCMBConstants.h @@ -22,7 +22,7 @@ #pragma mark - error #define ERRORDOMAIN @"NCMBErrorDomain" -#define SDK_VERSION @"3.0.3" +#define SDK_VERSION @"3.0.4" #define DATA_MAIN_PATH [NSHomeDirectory() stringByAppendingPathComponent:@"Library/"] #define COMMAND_CACHE_FOLDER_PATH [NSString stringWithFormat:@"%@/Private Documents/NCMB/Command Cache/", DATA_MAIN_PATH] diff --git a/NCMB/NCMB_Info.plist b/NCMB/NCMB_Info.plist index 68c10b7b..de0bacba 100644 --- a/NCMB/NCMB_Info.plist +++ b/NCMB/NCMB_Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.0.3 + 3.0.4 CFBundleSignature ???? CFBundleVersion diff --git a/NCMBTests/NCMBTests/NCMBInstallationSpec.m b/NCMBTests/NCMBTests/NCMBInstallationSpec.m index e5c56a4a..3eac9dfe 100644 --- a/NCMBTests/NCMBTests/NCMBInstallationSpec.m +++ b/NCMBTests/NCMBTests/NCMBInstallationSpec.m @@ -54,7 +54,7 @@ -(NSMutableDictionary *)beforeConnection; }, @"applicationName" : @"aaaa", @"objectId" : @"EVMu2ne7bjzZhOW2", - @"sdkVersion" : @"3.0.3" + @"sdkVersion" : @"3.0.4" }; NSDictionary *responseInstallation = @{@"channels" : @[ From 9e4e12b32397c71e3276e0b9a7f297f870697deb Mon Sep 17 00:00:00 2001 From: kobayashi-masaya Date: Fri, 28 Feb 2020 14:02:43 +0900 Subject: [PATCH 09/11] Update support version checked date --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 776d6fc9..529fa624 100644 --- a/Readme.md +++ b/Readme.md @@ -35,7 +35,7 @@ ※なお、mobile backend にて大規模な改修が行われた際は、1年半以内のSDKであっても対応出来ない場合がございます。
その際は[informationブログ](https://mbaas.nifcloud.com/info/)にてお知らせいたします。予めご了承ください。 -- v3.0.0 ~ (※2019年12月時点) +- v3.0.0 ~ (※2020年3月時点) ## ライセンス From 73ab3a18a713a03c31f51c11f80e31daae3ffb13 Mon Sep 17 00:00:00 2001 From: kobayashi-masaya Date: Fri, 28 Feb 2020 14:22:23 +0900 Subject: [PATCH 10/11] Update licence year to 2020 --- LICENSE | 4 ++-- NCMB/NCMB.h | 2 +- NCMB/NCMB.m | 2 +- NCMB/NCMBACL.h | 2 +- NCMB/NCMBACL.m | 2 +- NCMB/NCMBAnalytics.h | 2 +- NCMB/NCMBAnalytics.m | 2 +- NCMB/NCMBAnonymousUtils.h | 2 +- NCMB/NCMBAnonymousUtils.m | 2 +- NCMB/NCMBConstants.h | 2 +- NCMB/NCMBDateFormat.h | 2 +- NCMB/NCMBDateFormat.m | 2 +- NCMB/NCMBError.h | 2 +- NCMB/NCMBError.m | 2 +- NCMB/NCMBFile.h | 2 +- NCMB/NCMBFile.m | 2 +- NCMB/NCMBGeoPoint.h | 2 +- NCMB/NCMBGeoPoint.m | 2 +- NCMB/NCMBInstallation.h | 2 +- NCMB/NCMBInstallation.m | 2 +- NCMB/NCMBObject+Subclass.h | 2 +- NCMB/NCMBObject.h | 2 +- NCMB/NCMBObject.m | 2 +- NCMB/NCMBPush.h | 2 +- NCMB/NCMBPush.m | 2 +- NCMB/NCMBQuery.h | 2 +- NCMB/NCMBQuery.m | 2 +- NCMB/NCMBReachability/NCMBReachability.h | 2 +- NCMB/NCMBReachability/NCMBReachability.m | 2 +- NCMB/NCMBRelation.h | 2 +- NCMB/NCMBRelation.m | 2 +- NCMB/NCMBRequest/NCMBRequest.h | 2 +- NCMB/NCMBRequest/NCMBRequest.m | 2 +- NCMB/NCMBRichPush/NCMBCloseImageView.h | 2 +- NCMB/NCMBRichPush/NCMBCloseImageView.m | 2 +- NCMB/NCMBRichPush/NCMBRichPushView.h | 2 +- NCMB/NCMBRichPush/NCMBRichPushView.m | 2 +- NCMB/NCMBRole.h | 2 +- NCMB/NCMBRole.m | 2 +- NCMB/NCMBScript.h | 2 +- NCMB/NCMBScript.m | 2 +- NCMB/NCMBScriptService/NCMBScriptService.h | 2 +- NCMB/NCMBScriptService/NCMBScriptService.m | 2 +- NCMB/NCMBSubclassing.h | 2 +- NCMB/NCMBURLSession/NCMBURLSession.h | 2 +- NCMB/NCMBURLSession/NCMBURLSession.m | 2 +- NCMB/NCMBUser.h | 2 +- NCMB/NCMBUser.m | 2 +- NCMB/NSDataBase64Encode/NSDataBase64Encode.h | 2 +- NCMB/NSDataBase64Encode/NSDataBase64Encode.m | 2 +- NCMB/Operations/NCMBAddOperation.h | 2 +- NCMB/Operations/NCMBAddOperation.m | 2 +- NCMB/Operations/NCMBAddUniqueOperation.h | 2 +- NCMB/Operations/NCMBAddUniqueOperation.m | 2 +- NCMB/Operations/NCMBDeleteOperation.h | 2 +- NCMB/Operations/NCMBDeleteOperation.m | 2 +- NCMB/Operations/NCMBIncrementOperation.h | 2 +- NCMB/Operations/NCMBIncrementOperation.m | 2 +- NCMB/Operations/NCMBRelationOperation.h | 2 +- NCMB/Operations/NCMBRelationOperation.m | 2 +- NCMB/Operations/NCMBRemoveOperation.h | 2 +- NCMB/Operations/NCMBRemoveOperation.m | 2 +- NCMB/Operations/NCMBSetOperation.h | 2 +- NCMB/Operations/NCMBSetOperation.m | 2 +- NCMB/PrivateHeaders/NCMBObject+Private.h | 2 +- NCMB/PrivateHeaders/NCMBQuery+Private.h | 2 +- NCMB/PrivateHeaders/NCMBRelation+Private.h | 2 +- NCMB/PrivateHeaders/NCMBUser+Private.h | 2 +- NCMB/SubClassHandler/SubClassHandler.h | 2 +- NCMB/SubClassHandler/SubClassHandler.m | 2 +- NCMBTests/NCMBTests/NCMBFileSpec.m | 2 +- NCMBTests/NCMBTests/NCMBInstallationSpec.m | 2 +- NCMBTests/NCMBTests/NCMBObjectSpec.m | 2 +- NCMBTests/NCMBTests/NCMBQuerySpec.m | 2 +- NCMBTests/NCMBTests/NCMBRequestSpec.m | 2 +- NCMBTests/NCMBTests/NCMBRoleSpec.m | 2 +- NCMBTests/NCMBTests/NCMBScriptServiceSpec.m | 2 +- NCMBTests/NCMBTests/NCMBScriptSpec.m | 2 +- NCMBTests/NCMBTests/NCMBSpec.m | 2 +- NCMBTests/NCMBTests/NCMBUserSpec.m | 2 +- 80 files changed, 81 insertions(+), 81 deletions(-) diff --git a/LICENSE b/LICENSE index 05702678..7cabdcdc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -206,7 +206,7 @@ And it is licensed under the MIT license. See the bottom of LICENSE file for the same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [2019] [FUJITSU CLOUD TECHNOLOGIES LIMITED] + Copyright [2020] [FUJITSU CLOUD TECHNOLOGIES LIMITED] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMB.h b/NCMB/NCMB.h index 52b84aad..96fb0ccd 100644 --- a/NCMB/NCMB.h +++ b/NCMB/NCMB.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMB.m b/NCMB/NCMB.m index eb71b742..786da449 100644 --- a/NCMB/NCMB.m +++ b/NCMB/NCMB.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBACL.h b/NCMB/NCMBACL.h index e1a7324d..a20894f0 100644 --- a/NCMB/NCMBACL.h +++ b/NCMB/NCMBACL.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBACL.m b/NCMB/NCMBACL.m index 38f22c3c..7ec809bd 100644 --- a/NCMB/NCMBACL.m +++ b/NCMB/NCMBACL.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBAnalytics.h b/NCMB/NCMBAnalytics.h index 93e6caf9..056665b1 100644 --- a/NCMB/NCMBAnalytics.h +++ b/NCMB/NCMBAnalytics.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBAnalytics.m b/NCMB/NCMBAnalytics.m index 982674b1..3c8f36b1 100644 --- a/NCMB/NCMBAnalytics.m +++ b/NCMB/NCMBAnalytics.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBAnonymousUtils.h b/NCMB/NCMBAnonymousUtils.h index ff31fe7a..d0cff2cb 100644 --- a/NCMB/NCMBAnonymousUtils.h +++ b/NCMB/NCMBAnonymousUtils.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBAnonymousUtils.m b/NCMB/NCMBAnonymousUtils.m index c4bbac93..1d630a90 100644 --- a/NCMB/NCMBAnonymousUtils.m +++ b/NCMB/NCMBAnonymousUtils.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBConstants.h b/NCMB/NCMBConstants.h index 4e56b48c..d7fb18cb 100644 --- a/NCMB/NCMBConstants.h +++ b/NCMB/NCMBConstants.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBDateFormat.h b/NCMB/NCMBDateFormat.h index 186820bb..ee87f9f0 100644 --- a/NCMB/NCMBDateFormat.h +++ b/NCMB/NCMBDateFormat.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBDateFormat.m b/NCMB/NCMBDateFormat.m index c1d08283..e472e365 100644 --- a/NCMB/NCMBDateFormat.m +++ b/NCMB/NCMBDateFormat.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBError.h b/NCMB/NCMBError.h index 521e6478..fd2a4efc 100644 --- a/NCMB/NCMBError.h +++ b/NCMB/NCMBError.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBError.m b/NCMB/NCMBError.m index fadee6f0..5976cc41 100644 --- a/NCMB/NCMBError.m +++ b/NCMB/NCMBError.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBFile.h b/NCMB/NCMBFile.h index 0d80b06e..89072135 100644 --- a/NCMB/NCMBFile.h +++ b/NCMB/NCMBFile.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBFile.m b/NCMB/NCMBFile.m index e1bbc9af..5ccf3d93 100644 --- a/NCMB/NCMBFile.m +++ b/NCMB/NCMBFile.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBGeoPoint.h b/NCMB/NCMBGeoPoint.h index 2431c17b..adeb67d0 100644 --- a/NCMB/NCMBGeoPoint.h +++ b/NCMB/NCMBGeoPoint.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBGeoPoint.m b/NCMB/NCMBGeoPoint.m index f3ecbc96..74c37720 100644 --- a/NCMB/NCMBGeoPoint.m +++ b/NCMB/NCMBGeoPoint.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBInstallation.h b/NCMB/NCMBInstallation.h index eb95c577..e0fcda0f 100644 --- a/NCMB/NCMBInstallation.h +++ b/NCMB/NCMBInstallation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBInstallation.m b/NCMB/NCMBInstallation.m index b6f1e36e..d9362d08 100644 --- a/NCMB/NCMBInstallation.m +++ b/NCMB/NCMBInstallation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBObject+Subclass.h b/NCMB/NCMBObject+Subclass.h index f25732f5..6b865f7b 100644 --- a/NCMB/NCMBObject+Subclass.h +++ b/NCMB/NCMBObject+Subclass.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBObject.h b/NCMB/NCMBObject.h index 69232bac..5920fd14 100644 --- a/NCMB/NCMBObject.h +++ b/NCMB/NCMBObject.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBObject.m b/NCMB/NCMBObject.m index 88d48d7b..2e6f570e 100644 --- a/NCMB/NCMBObject.m +++ b/NCMB/NCMBObject.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBPush.h b/NCMB/NCMBPush.h index 6fdbf381..d56ea9f2 100644 --- a/NCMB/NCMBPush.h +++ b/NCMB/NCMBPush.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBPush.m b/NCMB/NCMBPush.m index 8d80fb49..7a64a32c 100644 --- a/NCMB/NCMBPush.m +++ b/NCMB/NCMBPush.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBQuery.h b/NCMB/NCMBQuery.h index 4944ff0c..40a971a4 100644 --- a/NCMB/NCMBQuery.h +++ b/NCMB/NCMBQuery.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBQuery.m b/NCMB/NCMBQuery.m index 534fb21c..16bbdb73 100644 --- a/NCMB/NCMBQuery.m +++ b/NCMB/NCMBQuery.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBReachability/NCMBReachability.h b/NCMB/NCMBReachability/NCMBReachability.h index 087fd944..e40e7af5 100644 --- a/NCMB/NCMBReachability/NCMBReachability.h +++ b/NCMB/NCMBReachability/NCMBReachability.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBReachability/NCMBReachability.m b/NCMB/NCMBReachability/NCMBReachability.m index 24880951..0717ec0d 100644 --- a/NCMB/NCMBReachability/NCMBReachability.m +++ b/NCMB/NCMBReachability/NCMBReachability.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRelation.h b/NCMB/NCMBRelation.h index a03c0acf..286076ee 100644 --- a/NCMB/NCMBRelation.h +++ b/NCMB/NCMBRelation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRelation.m b/NCMB/NCMBRelation.m index 82db6dc6..d1626bc3 100644 --- a/NCMB/NCMBRelation.m +++ b/NCMB/NCMBRelation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRequest/NCMBRequest.h b/NCMB/NCMBRequest/NCMBRequest.h index dfdf213e..d486af92 100644 --- a/NCMB/NCMBRequest/NCMBRequest.h +++ b/NCMB/NCMBRequest/NCMBRequest.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRequest/NCMBRequest.m b/NCMB/NCMBRequest/NCMBRequest.m index 34632ec7..6fd94faa 100644 --- a/NCMB/NCMBRequest/NCMBRequest.m +++ b/NCMB/NCMBRequest/NCMBRequest.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRichPush/NCMBCloseImageView.h b/NCMB/NCMBRichPush/NCMBCloseImageView.h index 6f447bc3..737b4c6a 100644 --- a/NCMB/NCMBRichPush/NCMBCloseImageView.h +++ b/NCMB/NCMBRichPush/NCMBCloseImageView.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRichPush/NCMBCloseImageView.m b/NCMB/NCMBRichPush/NCMBCloseImageView.m index ffdd72a1..e2482bf6 100644 --- a/NCMB/NCMBRichPush/NCMBCloseImageView.m +++ b/NCMB/NCMBRichPush/NCMBCloseImageView.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRichPush/NCMBRichPushView.h b/NCMB/NCMBRichPush/NCMBRichPushView.h index 894dad22..656f8a12 100644 --- a/NCMB/NCMBRichPush/NCMBRichPushView.h +++ b/NCMB/NCMBRichPush/NCMBRichPushView.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRichPush/NCMBRichPushView.m b/NCMB/NCMBRichPush/NCMBRichPushView.m index 4bbb0abd..5ab78c27 100644 --- a/NCMB/NCMBRichPush/NCMBRichPushView.m +++ b/NCMB/NCMBRichPush/NCMBRichPushView.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRole.h b/NCMB/NCMBRole.h index 0c16861a..8611e051 100644 --- a/NCMB/NCMBRole.h +++ b/NCMB/NCMBRole.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBRole.m b/NCMB/NCMBRole.m index 310e63c1..37c45954 100644 --- a/NCMB/NCMBRole.m +++ b/NCMB/NCMBRole.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBScript.h b/NCMB/NCMBScript.h index 663bcdfa..2d5f472b 100644 --- a/NCMB/NCMBScript.h +++ b/NCMB/NCMBScript.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBScript.m b/NCMB/NCMBScript.m index 94879c44..4ce5bc75 100644 --- a/NCMB/NCMBScript.m +++ b/NCMB/NCMBScript.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBScriptService/NCMBScriptService.h b/NCMB/NCMBScriptService/NCMBScriptService.h index 5b182378..d26957d0 100644 --- a/NCMB/NCMBScriptService/NCMBScriptService.h +++ b/NCMB/NCMBScriptService/NCMBScriptService.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBScriptService/NCMBScriptService.m b/NCMB/NCMBScriptService/NCMBScriptService.m index 8ba17991..6167ee9c 100644 --- a/NCMB/NCMBScriptService/NCMBScriptService.m +++ b/NCMB/NCMBScriptService/NCMBScriptService.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBSubclassing.h b/NCMB/NCMBSubclassing.h index 3f8dbc87..0679d551 100644 --- a/NCMB/NCMBSubclassing.h +++ b/NCMB/NCMBSubclassing.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBURLSession/NCMBURLSession.h b/NCMB/NCMBURLSession/NCMBURLSession.h index 4821e78c..7bb0c89a 100644 --- a/NCMB/NCMBURLSession/NCMBURLSession.h +++ b/NCMB/NCMBURLSession/NCMBURLSession.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBURLSession/NCMBURLSession.m b/NCMB/NCMBURLSession/NCMBURLSession.m index ea6419f2..259a27e9 100644 --- a/NCMB/NCMBURLSession/NCMBURLSession.m +++ b/NCMB/NCMBURLSession/NCMBURLSession.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBUser.h b/NCMB/NCMBUser.h index 4610aefa..330a582c 100644 --- a/NCMB/NCMBUser.h +++ b/NCMB/NCMBUser.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NCMBUser.m b/NCMB/NCMBUser.m index 5cc79f76..c2312a5b 100644 --- a/NCMB/NCMBUser.m +++ b/NCMB/NCMBUser.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NSDataBase64Encode/NSDataBase64Encode.h b/NCMB/NSDataBase64Encode/NSDataBase64Encode.h index acbbadbc..a5db70ef 100644 --- a/NCMB/NSDataBase64Encode/NSDataBase64Encode.h +++ b/NCMB/NSDataBase64Encode/NSDataBase64Encode.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/NSDataBase64Encode/NSDataBase64Encode.m b/NCMB/NSDataBase64Encode/NSDataBase64Encode.m index e2237485..28825de6 100644 --- a/NCMB/NSDataBase64Encode/NSDataBase64Encode.m +++ b/NCMB/NSDataBase64Encode/NSDataBase64Encode.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBAddOperation.h b/NCMB/Operations/NCMBAddOperation.h index 36b25ed4..73596007 100644 --- a/NCMB/Operations/NCMBAddOperation.h +++ b/NCMB/Operations/NCMBAddOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBAddOperation.m b/NCMB/Operations/NCMBAddOperation.m index 02fcc221..f6a366e1 100644 --- a/NCMB/Operations/NCMBAddOperation.m +++ b/NCMB/Operations/NCMBAddOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBAddUniqueOperation.h b/NCMB/Operations/NCMBAddUniqueOperation.h index 9ebecbe7..188f07af 100644 --- a/NCMB/Operations/NCMBAddUniqueOperation.h +++ b/NCMB/Operations/NCMBAddUniqueOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBAddUniqueOperation.m b/NCMB/Operations/NCMBAddUniqueOperation.m index 1cb190ee..fb200879 100644 --- a/NCMB/Operations/NCMBAddUniqueOperation.m +++ b/NCMB/Operations/NCMBAddUniqueOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBDeleteOperation.h b/NCMB/Operations/NCMBDeleteOperation.h index b0dfb13e..3c475490 100644 --- a/NCMB/Operations/NCMBDeleteOperation.h +++ b/NCMB/Operations/NCMBDeleteOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBDeleteOperation.m b/NCMB/Operations/NCMBDeleteOperation.m index 992ab087..3f31aaee 100644 --- a/NCMB/Operations/NCMBDeleteOperation.m +++ b/NCMB/Operations/NCMBDeleteOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBIncrementOperation.h b/NCMB/Operations/NCMBIncrementOperation.h index e8b73b86..2fce0485 100644 --- a/NCMB/Operations/NCMBIncrementOperation.h +++ b/NCMB/Operations/NCMBIncrementOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBIncrementOperation.m b/NCMB/Operations/NCMBIncrementOperation.m index 6e100d95..e99e1ebb 100644 --- a/NCMB/Operations/NCMBIncrementOperation.m +++ b/NCMB/Operations/NCMBIncrementOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBRelationOperation.h b/NCMB/Operations/NCMBRelationOperation.h index dee96d91..1101cd44 100644 --- a/NCMB/Operations/NCMBRelationOperation.h +++ b/NCMB/Operations/NCMBRelationOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBRelationOperation.m b/NCMB/Operations/NCMBRelationOperation.m index 01f76aac..b7f890d8 100644 --- a/NCMB/Operations/NCMBRelationOperation.m +++ b/NCMB/Operations/NCMBRelationOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBRemoveOperation.h b/NCMB/Operations/NCMBRemoveOperation.h index 790f7816..77e9d9a9 100644 --- a/NCMB/Operations/NCMBRemoveOperation.h +++ b/NCMB/Operations/NCMBRemoveOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBRemoveOperation.m b/NCMB/Operations/NCMBRemoveOperation.m index e26fc776..ccc879f3 100644 --- a/NCMB/Operations/NCMBRemoveOperation.m +++ b/NCMB/Operations/NCMBRemoveOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBSetOperation.h b/NCMB/Operations/NCMBSetOperation.h index 22b8e302..6044ab73 100644 --- a/NCMB/Operations/NCMBSetOperation.h +++ b/NCMB/Operations/NCMBSetOperation.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/Operations/NCMBSetOperation.m b/NCMB/Operations/NCMBSetOperation.m index 1e6bf47f..ff8d97eb 100644 --- a/NCMB/Operations/NCMBSetOperation.m +++ b/NCMB/Operations/NCMBSetOperation.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/PrivateHeaders/NCMBObject+Private.h b/NCMB/PrivateHeaders/NCMBObject+Private.h index 4aa871e2..3268cc7d 100644 --- a/NCMB/PrivateHeaders/NCMBObject+Private.h +++ b/NCMB/PrivateHeaders/NCMBObject+Private.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/PrivateHeaders/NCMBQuery+Private.h b/NCMB/PrivateHeaders/NCMBQuery+Private.h index a7b3e923..41516280 100644 --- a/NCMB/PrivateHeaders/NCMBQuery+Private.h +++ b/NCMB/PrivateHeaders/NCMBQuery+Private.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/PrivateHeaders/NCMBRelation+Private.h b/NCMB/PrivateHeaders/NCMBRelation+Private.h index 119ee51b..e99c1250 100644 --- a/NCMB/PrivateHeaders/NCMBRelation+Private.h +++ b/NCMB/PrivateHeaders/NCMBRelation+Private.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/PrivateHeaders/NCMBUser+Private.h b/NCMB/PrivateHeaders/NCMBUser+Private.h index c4d56ffc..cfb371af 100644 --- a/NCMB/PrivateHeaders/NCMBUser+Private.h +++ b/NCMB/PrivateHeaders/NCMBUser+Private.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/SubClassHandler/SubClassHandler.h b/NCMB/SubClassHandler/SubClassHandler.h index c64e42c0..13f2c117 100644 --- a/NCMB/SubClassHandler/SubClassHandler.h +++ b/NCMB/SubClassHandler/SubClassHandler.h @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMB/SubClassHandler/SubClassHandler.m b/NCMB/SubClassHandler/SubClassHandler.m index 7db0d1c4..2d4f07b2 100644 --- a/NCMB/SubClassHandler/SubClassHandler.m +++ b/NCMB/SubClassHandler/SubClassHandler.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBFileSpec.m b/NCMBTests/NCMBTests/NCMBFileSpec.m index 50164b22..e0f4cc9e 100644 --- a/NCMBTests/NCMBTests/NCMBFileSpec.m +++ b/NCMBTests/NCMBTests/NCMBFileSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBInstallationSpec.m b/NCMBTests/NCMBTests/NCMBInstallationSpec.m index 3eac9dfe..10882527 100644 --- a/NCMBTests/NCMBTests/NCMBInstallationSpec.m +++ b/NCMBTests/NCMBTests/NCMBInstallationSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBObjectSpec.m b/NCMBTests/NCMBTests/NCMBObjectSpec.m index 943b1294..0a028e53 100644 --- a/NCMBTests/NCMBTests/NCMBObjectSpec.m +++ b/NCMBTests/NCMBTests/NCMBObjectSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBQuerySpec.m b/NCMBTests/NCMBTests/NCMBQuerySpec.m index 164f145a..2d45f43d 100644 --- a/NCMBTests/NCMBTests/NCMBQuerySpec.m +++ b/NCMBTests/NCMBTests/NCMBQuerySpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBRequestSpec.m b/NCMBTests/NCMBTests/NCMBRequestSpec.m index 0c302748..1bdad1a5 100644 --- a/NCMBTests/NCMBTests/NCMBRequestSpec.m +++ b/NCMBTests/NCMBTests/NCMBRequestSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBRoleSpec.m b/NCMBTests/NCMBTests/NCMBRoleSpec.m index 5f5bfe5a..ea724494 100644 --- a/NCMBTests/NCMBTests/NCMBRoleSpec.m +++ b/NCMBTests/NCMBTests/NCMBRoleSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m b/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m index a4f33d39..53f7acde 100644 --- a/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m +++ b/NCMBTests/NCMBTests/NCMBScriptServiceSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBScriptSpec.m b/NCMBTests/NCMBTests/NCMBScriptSpec.m index f69290ab..83c488b1 100644 --- a/NCMBTests/NCMBTests/NCMBScriptSpec.m +++ b/NCMBTests/NCMBTests/NCMBScriptSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBSpec.m b/NCMBTests/NCMBTests/NCMBSpec.m index 85ba80dd..c6483460 100644 --- a/NCMBTests/NCMBTests/NCMBSpec.m +++ b/NCMBTests/NCMBTests/NCMBSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NCMBTests/NCMBTests/NCMBUserSpec.m b/NCMBTests/NCMBTests/NCMBUserSpec.m index 4d605123..b9485f24 100644 --- a/NCMBTests/NCMBTests/NCMBUserSpec.m +++ b/NCMBTests/NCMBTests/NCMBUserSpec.m @@ -1,5 +1,5 @@ /* - Copyright 2017-2019 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. + Copyright 2017-2020 FUJITSU CLOUD TECHNOLOGIES LIMITED All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 39cc4952a99bc0f1871e8656b5a0112bb1c9c0ea Mon Sep 17 00:00:00 2001 From: kobayashi-masaya Date: Fri, 28 Feb 2020 18:30:55 +0900 Subject: [PATCH 11/11] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 68e8f48c..bd9b97be 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -8,7 +8,7 @@ ### バグ報告をする前の確認 - SDKのバグについては、Github issuesで管理します - - REST APIやダッシュボードのバグは、[不具合報告フォーム](https://inquiry.nifty.com/webeq/pub/mbaas/bug_report)からご連絡ください + - REST APIやダッシュボードのバグは、[不具合報告フォーム](https://inquiry.nifcloud.com/webeq/pub/mbaas/bug_report)からご連絡ください - issueを作成する前に、正しいリポジトリかを確認してください - Openになっているissueで、すでに報告されていないかを確認してください @@ -20,7 +20,7 @@ ## 要望の追加 - 要望を追加する場合は、フリーフォーマットでissueを作成してください - - REST APIやダッシュボードの改善要望は、[改善要望フォーム](https://inquiry.nifty.com/webeq/pub/mbaas/improvement)からご連絡ください + - REST APIやダッシュボードの改善要望は、[改善要望フォーム](https://inquiry.nifcloud.com/webeq/pub/mbaas/improvement)からご連絡ください ## プルリクエストを作成する @@ -34,7 +34,7 @@ ### Before submitting a bug report - We use Github issues to track SDKs' bugs - - Please report bugs of the REST API, Dashboard using this Trouble Report Form [Support page](https://inquiry.nifty.com/webeq/pub/mbaas/bug_report) + - Please report bugs of the REST API, Dashboard using this Trouble Report Form [Support page](https://inquiry.nifcloud.com/webeq/pub/mbaas/bug_report) - Please check that you report bug for corresponding repository - Please check that if is already reported @@ -46,7 +46,7 @@ ## Request for enhancements - Please register Request for enhancements issues in free format - - Please send request for enhancement of the REST API, Dashboard using this [Enhancement Request Form](https://inquiry.nifty.com/webeq/pub/mbaas/improvement) + - Please send request for enhancement of the REST API, Dashboard using this [Enhancement Request Form](https://inquiry.nifcloud.com/webeq/pub/mbaas/improvement) ## Pull Requests