diff --git a/Classes/Issues/IssuesViewController.swift b/Classes/Issues/IssuesViewController.swift index 3980ec60..87b76d8c 100644 --- a/Classes/Issues/IssuesViewController.swift +++ b/Classes/Issues/IssuesViewController.swift @@ -127,6 +127,7 @@ IssueManagingNavSectionControllerDelegate { feed.viewDidLoad() feed.adapter.dataSource = self + feed.collectionView.accessibilityIdentifier = "issues-collectionView" // setup after feed is lazy loaded setup(scrollView: feed.collectionView) diff --git a/Classes/Notifications/NotificationsViewController.swift b/Classes/Notifications/NotificationsViewController.swift index 02af9f35..49bfeaa9 100644 --- a/Classes/Notifications/NotificationsViewController.swift +++ b/Classes/Notifications/NotificationsViewController.swift @@ -62,6 +62,8 @@ FlatCacheListener { override func viewDidLoad() { super.viewDidLoad() + feed.collectionView.accessibilityIdentifier = "inbox-collectionView" + makeBackBarItemEmpty() resetRightBarItem() diff --git a/Classes/Systems/SetupMockNetworkEnvironment.m b/Classes/Systems/SetupMockNetworkEnvironment.m index 42ba8fff..26e522a8 100644 --- a/Classes/Systems/SetupMockNetworkEnvironment.m +++ b/Classes/Systems/SetupMockNetworkEnvironment.m @@ -15,6 +15,51 @@ #define RECORDING_ENABLED 0 #endif +@interface RecordedResponse: NSObject + +@property (nonatomic, strong) NSDictionary *headerFields; +@property (nonatomic, strong) NSURL *url; +@property (nonatomic, strong) NSData *data; +@property (nonatomic, assign) NSInteger statusCode; + +@end + +@implementation RecordedResponse + +- (instancetype)initWithCoder:(NSCoder *)aDecoder { + if (self = [super init]) { + _data = [aDecoder decodeObjectForKey:@"data"]; + _statusCode = [aDecoder decodeIntegerForKey:@"statusCode"]; + _url = [aDecoder decodeObjectForKey:@"url"]; + _headerFields = [aDecoder decodeObjectForKey:@"headerFields"]; + } + return self; +} + +- (void)encodeWithCoder:(NSCoder *)aCoder { + [aCoder encodeObject:self.data forKey:@"data"]; + [aCoder encodeInteger:self.statusCode forKey:@"statusCode"]; + [aCoder encodeObject:self.headerFields forKey:@"headerFields"]; + [aCoder encodeObject:self.url forKey:@"url"]; +} + +@end + +@interface NSString (EscapedFileName) + +- (NSString *)gh_escapedFileName; + +@end + +@implementation NSString (EscapedFileName) + +- (NSString *)gh_escapedFileName { + NSCharacterSet* illegalFileNameCharacters = [NSCharacterSet characterSetWithCharactersInString:@"/\\?%*|\"<>"]; + return [[self componentsSeparatedByCharactersInSet:illegalFileNameCharacters] componentsJoinedByString:@""]; +} + +@end + static NSString *projectPath(void) { // set to $(PROJECT_DIR) in env vars NSString *path = [[NSProcessInfo processInfo] environment][@"NETWORK_RECORD_PATH"]; @@ -32,22 +77,8 @@ static NSString *recordsPath(void) { } static NSString *requestKey(NSURLRequest *request) { - // dont key using the access token so that it can be faked in tests/playback - NSURLComponents *components = [NSURLComponents componentsWithURL:request.URL resolvingAgainstBaseURL:NO]; - NSMutableArray *queryItems = [[components queryItems] mutableCopy]; - [[components queryItems] enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(NSURLQueryItem *obj, NSUInteger idx, BOOL *stop) { - if ([obj.name isEqualToString:@"access_token"]) { - [queryItems removeObjectAtIndex:idx]; - } - }]; - [queryItems sortUsingComparator:^NSComparisonResult(NSURLQueryItem *obj1, NSURLQueryItem *obj2) { - return [obj1.name compare:obj2.name]; - }]; - components.queryItems = queryItems; - NSMutableString *raw = [NSMutableString new]; - [raw appendString:request.HTTPMethod ?: @""]; - [raw appendString:components.URL.absoluteString ?: @""]; + [raw appendString:request.HTTPMethod ?: @"GET"]; [raw appendString:[[NSString alloc] initWithData:request.HTTPBody encoding:NSUTF8StringEncoding] ?: @""]; const char *cStr = [raw UTF8String]; @@ -62,32 +93,65 @@ static NSString *requestKey(NSURLRequest *request) { } static NSString *requestPath(NSURLRequest *request) { - NSString *key = requestKey(request); - return [recordsPath() stringByAppendingPathComponent:key]; + NSString *path = recordsPath(); + for (NSString *component in [request.URL.host componentsSeparatedByString:@"."]) { + path = [path stringByAppendingPathComponent:component]; + } + path = [path stringByAppendingPathComponent:request.URL.path]; + + // dont key using the access token so that it can be faked in tests/playback + NSURLComponents *components = [NSURLComponents componentsWithURL:request.URL resolvingAgainstBaseURL:NO]; + NSMutableArray *queryItems = [[components queryItems] mutableCopy]; + [[components queryItems] enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(NSURLQueryItem *obj, NSUInteger idx, BOOL *stop) { + if ([obj.name isEqualToString:@"access_token"]) { + [queryItems removeObjectAtIndex:idx]; + } + }]; + [queryItems sortUsingComparator:^NSComparisonResult(NSURLQueryItem *obj1, NSURLQueryItem *obj2) { + return [obj1.name compare:obj2.name]; + }]; + components.queryItems = queryItems; + path = [path stringByAppendingPathComponent:[components.query gh_escapedFileName]]; + + if (![[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:nil]) { + [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil]; + } + + return [path stringByAppendingPathComponent:requestKey(request)]; } -static void store(NSCachedURLResponse *cachedResponse, NSURLRequest *request) { +static void store(NSURLResponse *response, NSData *data, NSURLRequest *request) { if (!RECORDING_ENABLED) { return; } - if (![cachedResponse.response isKindOfClass:[NSHTTPURLResponse class]] - || ![cachedResponse.response.MIMEType containsString:@"application/json"]) { + if (![response isKindOfClass:[NSHTTPURLResponse class]] + || ![response.MIMEType containsString:@"application/json"]) { return; } NSString *path = requestPath(request); if ([[NSFileManager defaultManager] fileExistsAtPath:path]) { NSLog(@"WARNING: Overwriting file for request %@", request.URL.absoluteString); } - [cachedResponse.data writeToFile:requestPath(request) atomically:YES]; + + NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; + + RecordedResponse *record = [RecordedResponse new]; + record.data = data; + record.statusCode = [httpResponse statusCode]; + record.url = response.URL; + record.headerFields = [httpResponse allHeaderFields]; + [NSKeyedArchiver archiveRootObject:record toFile:requestPath(request)]; } @interface PlaybackURLProtocol: NSURLProtocol @end -@interface RecordingURLCache : NSURLCache +@interface RecordingURLProtocol: NSURLProtocol @end +static NSURLSession *recordingSession = nil; + BOOL SetupMockNetworkEnvironment(NSURLSessionConfiguration *config) { const BOOL playbackEnabled = [[[NSProcessInfo processInfo] arguments] containsObject:@"--network-playback"]; @@ -96,11 +160,8 @@ BOOL SetupMockNetworkEnvironment(NSURLSessionConfiguration *config) { } if (RECORDING_ENABLED) { - NSURLCache *cache = [[RecordingURLCache alloc] initWithMemoryCapacity:4 * 1024 * 1024 - diskCapacity:20 * 1024 * 1024 - diskPath:nil]; - [NSURLCache setSharedURLCache:cache]; - config.URLCache = cache; + recordingSession = [NSURLSession sessionWithConfiguration:config]; + config.protocolClasses = @[[RecordingURLProtocol class]]; } if (playbackEnabled) { @@ -137,14 +198,14 @@ BOOL SetupMockNetworkEnvironment(NSURLSessionConfiguration *config) { NSURLRequest *request = _task.originalRequest ?: self.request; NSString *path = requestPath(request); NSLog(@"Loading request from disk: %@\n path: %@", request.URL.absoluteString, path); - NSData *data = [[NSData alloc] initWithContentsOfFile:path]; - NSCAssert(data.length > 0, @"Loaded empty data for request %@ at path %@", request.URL.absoluteString, path); - NSHTTPURLResponse *response = [[NSHTTPURLResponse alloc] initWithURL:request.URL - statusCode:200 + RecordedResponse *record = [NSKeyedUnarchiver unarchiveObjectWithFile:path]; + + NSHTTPURLResponse *response = [[NSHTTPURLResponse alloc] initWithURL:record.url + statusCode:record.statusCode HTTPVersion:(NSString *)kCFHTTPVersion1_1 - headerFields:nil]; - [self.client URLProtocol:self didLoadData:data]; + headerFields:record.headerFields]; + [self.client URLProtocol:self didLoadData:record.data]; [self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed]; [self.client URLProtocolDidFinishLoading:self]; } @@ -153,26 +214,44 @@ BOOL SetupMockNetworkEnvironment(NSURLSessionConfiguration *config) { @end -@implementation RecordingURLCache { - BOOL _isStoringRequest; +@implementation RecordingURLProtocol { + NSURLSessionTask *_task; } -- (void)storeCachedResponse:(NSCachedURLResponse *)cachedResponse forRequest:(NSURLRequest *)request { - if (!_isStoringRequest) { - store(cachedResponse, request); - } - _isStoringRequest = YES; - [super storeCachedResponse:cachedResponse forRequest:request]; - _isStoringRequest = NO; ++ (BOOL)canInitWithTask:(NSURLSessionTask *)task { + return YES; } -- (void)storeCachedResponse:(NSCachedURLResponse *)cachedResponse forDataTask:(NSURLSessionDataTask *)dataTask { - if (!_isStoringRequest) { - store(cachedResponse, dataTask.originalRequest); - } - _isStoringRequest = YES; - [super storeCachedResponse:cachedResponse forDataTask:dataTask]; - _isStoringRequest = NO; ++ (BOOL)canInitWithRequest:(NSURLRequest *)request { + return YES; } ++ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request { + return request; +} + +- (instancetype)initWithTask:(NSURLSessionTask *)task cachedResponse:(NSCachedURLResponse *)cachedResponse client:(id)client { + if (self = [super initWithTask:task cachedResponse:cachedResponse client:client]) { + _task = task; + } + return self; +} + +- (void)startLoading { + __weak typeof(self) weakSelf = self; + id client = self.client; + NSURLRequest *request = _task.originalRequest ?: self.request; + NSURLSessionDataTask *task = [recordingSession + dataTaskWithRequest:request + completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { + store(response, data, request); + [client URLProtocol:weakSelf didLoadData:data]; + [client URLProtocol:weakSelf didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed]; + [client URLProtocolDidFinishLoading:weakSelf]; + }]; + [task resume]; +} + +- (void)stopLoading {} + @end diff --git a/Freetime.xcodeproj/project.pbxproj b/Freetime.xcodeproj/project.pbxproj index 357c40fe..aad9cb51 100644 --- a/Freetime.xcodeproj/project.pbxproj +++ b/Freetime.xcodeproj/project.pbxproj @@ -289,6 +289,7 @@ 29B981FE201CE7E40002DA39 /* LoginUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29B981FD201CE7E40002DA39 /* LoginUITests.swift */; }; 29B98207201CEA1D0002DA39 /* Launch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29B98206201CEA1D0002DA39 /* Launch.swift */; }; 29B9820A201CEE730002DA39 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29B98208201CEE510002DA39 /* main.swift */; }; + 29B9820C201E540B0002DA39 /* InboxUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29B9820B201E540B0002DA39 /* InboxUITests.swift */; }; 29C0E7071ECBC6C50051D756 /* GithubClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29C0E7061ECBC6C50051D756 /* GithubClient.swift */; }; 29C167671ECA005500439D62 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29C167661ECA005500439D62 /* Constants.swift */; }; 29C167691ECA016500439D62 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29C167681ECA016500439D62 /* EmptyView.swift */; }; @@ -730,6 +731,7 @@ 29B981FF201CE7E40002DA39 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 29B98206201CEA1D0002DA39 /* Launch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Launch.swift; sourceTree = ""; }; 29B98208201CEE510002DA39 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = ""; }; + 29B9820B201E540B0002DA39 /* InboxUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InboxUITests.swift; sourceTree = ""; }; 29C0E7061ECBC6C50051D756 /* GithubClient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GithubClient.swift; sourceTree = ""; }; 29C167661ECA005500439D62 /* Constants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; 29C167681ECA016500439D62 /* EmptyView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EmptyView.swift; sourceTree = ""; }; @@ -1613,6 +1615,7 @@ isa = PBXGroup; children = ( 29B981FD201CE7E40002DA39 /* LoginUITests.swift */, + 29B9820B201E540B0002DA39 /* InboxUITests.swift */, 29B98206201CEA1D0002DA39 /* Launch.swift */, 29B981FF201CE7E40002DA39 /* Info.plist */, ); @@ -2727,6 +2730,7 @@ buildActionMask = 2147483647; files = ( 29B98207201CEA1D0002DA39 /* Launch.swift in Sources */, + 29B9820C201E540B0002DA39 /* InboxUITests.swift in Sources */, 29B981FE201CE7E40002DA39 /* LoginUITests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/Freetime.xcodeproj/xcshareddata/xcschemes/Freetime.xcscheme b/Freetime.xcodeproj/xcshareddata/xcschemes/Freetime.xcscheme index c3190663..564c6eb5 100644 --- a/Freetime.xcodeproj/xcshareddata/xcschemes/Freetime.xcscheme +++ b/Freetime.xcodeproj/xcshareddata/xcschemes/Freetime.xcscheme @@ -26,6 +26,7 @@ buildConfiguration = "Debug" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + disableMainThreadChecker = "YES" language = "" systemAttachmentLifetime = "keepNever" shouldUseLaunchSchemeArgsEnv = "YES"> diff --git a/FreetimeUITests/InboxUITests.swift b/FreetimeUITests/InboxUITests.swift new file mode 100644 index 00000000..611b9a45 --- /dev/null +++ b/FreetimeUITests/InboxUITests.swift @@ -0,0 +1,26 @@ +// +// InboxUITests.swift +// FreetimeUITests +// +// Created by Ryan Nystrom on 1/28/18. +// Copyright © 2018 Ryan Nystrom. All rights reserved. +// + +import XCTest + +class InboxUITests: XCTestCase { + + var app: XCUIApplication! + + override func setUp() { + super.setUp() + continueAfterFailure = false + app = launch(options: [.mockUser]) + } + + func test_tapNotification() { + app.collectionViews["inbox-collectionView"].cells.firstMatch.tap() + XCTAssertTrue(app.collectionViews["issues-collectionView"].exists) + } + +} diff --git a/records/11ab8bb9811f8ac210843290366f311e b/records/11ab8bb9811f8ac210843290366f311e deleted file mode 100644 index 45dcef97..00000000 --- a/records/11ab8bb9811f8ac210843290366f311e +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"fastlane","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/258?v=4","login":"kommen"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/474?v=4","login":"cbowns"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1060?v=4","login":"andrew"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1614?v=4","login":"brad"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2154?v=4","login":"bfolkens"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/2436?v=4","login":"DraXus"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2567?v=4","login":"tmm1"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/3312?v=4","login":"snatchev"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3500?v=4","login":"hotchpotch"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/5903?v=4","login":"benhanzl"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7315?v=4","login":"corymsmith"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/8459?v=4","login":"cpunion"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/13192?v=4","login":"reidab"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13697?v=4","login":"tcurdt"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13887?v=4","login":"jonklo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/14098?v=4","login":"svanzoest"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/14120?v=4","login":"carlosefonseca"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/15749?v=4","login":"danramteke"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/15887?v=4","login":"dataich"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/17814?v=4","login":"icyleaf"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"ohayon","avatarUrl":"https://avatars3.githubusercontent.com/u/2587018?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @Wojcik, apologies for the issue youre having. This is pretty interesting. \r\n\r\nMy first thought is: is there any chance that when you are running fastlane you are unsetting or overwriting your AWS credential environment variables? You could check this out by just adding a `puts `env`` in your Fastfile. 🐙 ","createdAt":"2017-12-05T19:34:15Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTQxNTc4NA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"Wojcik","avatarUrl":"https://avatars0.githubusercontent.com/u/2987936?v=4"},"editor":{"__typename":"User","login":"Wojcik"},"lastEditedAt":"2017-12-06T09:31:59Z","body":"I beleive that it's not connected to credentials because I'm getting objects from amazon buket and can access bucket properties etc. But as soon as I try to enumerate Aws::S3::ObjectSummary::Collection entity fastlane crashes here\r\n/Users/Ap/.rvm/gems/ruby-2.4.1/gems/aws-sdk-core-3.11.0/lib/aws-sdk-core/resources/collection.rb:56:in `each': [!] undefined method `each' for # even though there is a such method in collection.rb \r\n```ruby\r\n # @return [Enumerator]\r\n def each(&block)\r\n enum = Enumerator.new do |y|\r\n batch_enum.each do |batch|\r\n batch.each do |band|\r\n y.yield(band)\r\n end\r\n end\r\n end\r\n enum.each(&block) if block\r\n enum\r\n end\r\n```","createdAt":"2017-12-06T09:31:02Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTU4Mzc0MQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"Wojcik","avatarUrl":"https://avatars0.githubusercontent.com/u/2987936?v=4"},"editor":{"__typename":"User","login":"Wojcik"},"lastEditedAt":"2017-12-06T10:08:06Z","body":"This is strange\r\n* objects = bucket.objects\r\n* puts objects.class => Aws::S3::ObjectSummary::Collection (which is right)\r\n* puts objects.each.class => Enumerable::Enumerator (also correct)\r\n* puts objects.each.methods.sort =>` (! != !~ <=> == === =~ __id__ __send__ agree ask choose class clone dclone define_singleton_method display dup enum_for eql? equal? extend freeze frozen? gem get_binding hash inspect instance_eval instance_exec instance_of? instance_variable_defined? instance_variable_get instance_variable_set instance_variables is_a? itself kind_of? method methods nil? object_id or_ask private_methods protected_methods psych_to_yaml public_method public_methods public_send remove_instance_variable respond_to? say send singleton_class singleton_method singleton_methods taint tainted? tap to_enum to_json to_s to_yaml to_yaml_properties trust untaint untrust untrusted?) ` And this looks wrong","createdAt":"2017-12-06T10:06:37Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTU5Mjg1NA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"ohayon","avatarUrl":"https://avatars3.githubusercontent.com/u/2587018?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @Wojcik, this is pretty strange. And just to confirm here, you have fastlane installed via rubygems? What happens if you run similar code to test `each` in an `irb` session in the same directory from which you are executing fastlane?","createdAt":"2017-12-06T15:20:47Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTY3MTI2MA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"Wojcik","avatarUrl":"https://avatars0.githubusercontent.com/u/2987936?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @ohayon . Yes, fastlane installed via rubygems, today I tried to reinstall fastlane in rvm environment - same error.\r\n\r\nResults from irb session\r\n
\r\n2.4.1 :002 > require 'aws-sdk'\r\n => true\r\n2.4.1 :003 > s3 = Aws::S3::Resource.new(access_key_id:'*****', secret_access_key: '******', region:'eu-central-1')\r\n => #>\r\n2.4.1 :004 > bucket = s3.bucket(*****')\r\n => #>\r\n2.4.1 :005 > objects = bucket.objects\r\n => #:each>, @limit=nil, @size=nil>\r\n2.4.1 :006 > puts objects.each.methods.sort\r\n!\r\n!=\r\n!~\r\n<=>\r\n==\r\n===\r\n=~\r\n__id__\r\n__send__\r\nall?\r\nany?\r\nchunk\r\nchunk_while\r\nclass\r\nclone\r\ncollect\r\ncollect_concat\r\ncount\r\ncycle\r\ndclone\r\ndefine_singleton_method\r\ndetect\r\ndisplay\r\ndrop\r\ndrop_while\r\ndup\r\neach\r\neach_cons\r\neach_entry\r\neach_slice\r\neach_with_index\r\neach_with_object\r\nentries\r\nenum_for\r\neql?\r\nequal?\r\nextend\r\nfeed\r\nfind\r\nfind_all\r\nfind_index\r\nfirst\r\nflat_map\r\nfreeze\r\nfrozen?\r\ngrep\r\ngrep_v\r\ngroup_by\r\nhash\r\ninclude?\r\ninject\r\ninspect\r\ninstance_eval\r\ninstance_exec\r\ninstance_of?\r\ninstance_variable_defined?\r\ninstance_variable_get\r\ninstance_variable_set\r\ninstance_variables\r\nis_a?\r\nitself\r\nkind_of?\r\nlazy\r\nmap\r\nmax\r\nmax_by\r\nmember?\r\nmethod\r\nmethods\r\nmin\r\nmin_by\r\nminmax\r\nminmax_by\r\nnext\r\nnext_values\r\nnil?\r\nnone?\r\nobject_id\r\none?\r\npartition\r\npeek\r\npeek_values\r\nprivate_methods\r\nprotected_methods\r\npublic_method\r\npublic_methods\r\npublic_send\r\nreduce\r\nreject\r\nremove_instance_variable\r\nrespond_to?\r\nreverse_each\r\nrewind\r\nselect\r\nsend\r\nsingleton_class\r\nsingleton_method\r\nsingleton_methods\r\nsize\r\nslice_after\r\nslice_before\r\nslice_when\r\nsort\r\nsort_by\r\nsum\r\ntaint\r\ntainted?\r\ntake\r\ntake_while\r\ntap\r\nto_a\r\nto_enum\r\nto_h\r\nto_json\r\nto_s\r\nto_set\r\ntrust\r\nuniq\r\nuntaint\r\nuntrust\r\nuntrusted?\r\nwith_index\r\nwith_object\r\nzip\r\n
\r\nSo in irb it has all methods ","createdAt":"2017-12-06T15:49:13Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTY4MDUwMg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"jdee","avatarUrl":"https://avatars1.githubusercontent.com/u/121951?v=4"},"editor":null,"lastEditedAt":null,"body":"@Wojcik Here's a question: It works with `irb`. Are you using a Gemfile, and if so, does it work with `bundle console`? Can you try the same thing there? I wonder if it could be a dependency issue, where you're picking up a dependency from RubyGems that isn't in your bundle. It looks like somehow the Enumerable module isn't mixed into the Aws::S3::ObjectSummary::Collection class.","createdAt":"2017-12-06T19:06:23Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTc0MTkyMg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"kevinj","avatarUrl":"https://avatars3.githubusercontent.com/u/43563?v=4"},"editor":null,"lastEditedAt":null,"body":"I had this same problem and ended up finding an empty class definition for `Enumerator` here: https://github.com/ckruse/CFPropertyList/blob/master/lib/cfpropertylist/rbCFPropertyList.rb#L91-L95. After removing that, I can enumerate my s3 bucket again.","createdAt":"2017-12-13T16:12:32Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1MTQzOTIzNA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"jdee","avatarUrl":"https://avatars1.githubusercontent.com/u/121951?v=4"},"editor":null,"lastEditedAt":null,"body":"@kevinj Interesting. There were some changes around CFPropertyList in 2.69.0 and 2.69.1. Do you have this problem with those versions?\r\n","createdAt":"2017-12-13T16:47:57Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1MTQ1MDUzNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"jdee","avatarUrl":"https://avatars1.githubusercontent.com/u/121951?v=4"},"editor":null,"lastEditedAt":null,"body":"And if you're using >= 2.69.0, you can also try adding `require \"fastlane_core/core_ext/cfpropertylist\"` in your code. That extension fixes some conflicts between CFPropertyList and plist.","createdAt":"2017-12-13T16:49:10Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1MTQ1MDkyNA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fastlane-bot","avatarUrl":"https://avatars0.githubusercontent.com/u/17056452?v=4"},"editor":null,"lastEditedAt":null,"body":"There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.\n\nPlease make sure to update to the latest `fastlane` version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:","createdAt":"2018-01-27T16:52:18Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk5NzYyMw=="},{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"fastlane-bot"},"label":{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"},"createdAt":"2018-01-27T16:52:18Z","id":"MDEyOkxhYmVsZWRFdmVudDE0NDQ4NzMyOTA="}]},"milestone":null,"number":11114,"title":"undefined method `each' for #","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"}]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"Wojcik","avatarUrl":"https://avatars0.githubusercontent.com/u/2987936?v=4"},"editor":{"__typename":"User","login":"revolter"},"lastEditedAt":"2017-12-06T17:51:20Z","body":"### New Issue Checklist\r\n- [x] Updated fastlane to the latest version\r\n- [x] I read the [Contribution Guidelines](https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md)\r\n- [x] I read [docs.fastlane.tools](https://docs.fastlane.tools)\r\n- [x] I searched for [existing GitHub issues](https://github.com/fastlane/fastlane/issues)\r\n### Issue Description\r\nTrying to iterate over objects in an amazon bucket\r\n\r\n```\r\nbucket = s3.bucket('bucket_name')\r\n\r\nobjects = bucket.objects\r\n\r\nreturn objects.select do |icon| \r\n ((params[:app_release_time] <=> icon.last_modified) == -1) && icon.key.start_with?('production') && icon.key.include?('appLogo')\r\nend\r\n```\r\n\r\nCode works when running it in bash directly just in rb file like `ruby test.rb`\r\n\r\n```\r\n$ which ruby\r\n/usr/local/bin/ruby\r\n$ whereis ruby\r\n/usr/bin/ruby\r\n$ /usr/local/bin/ruby -v\r\nruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]\r\n```\r\n\r\nAnd it fails when it placed in a Fastlane action with next error\r\n\r\n##### Complete output when running fastlane, including the stack trace and command used\r\n\r\n
✅Stack trace ✅\r\n### Stack\r\n/usr/local/lib/ruby/gems/2.3.0/gems/aws-sdk-core-3.11.0/lib/aws-sdk-core/resources/collection.rb:56:in `each': [!] undefined method `each' for # (NoMethodError)\r\n\tfrom /Users/Aaaa/Projects/project/fastlane/actions/amazon_get_app_icons.rb:21:in `run'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:253:in `block (2 levels) in execute_action'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/actions/actions_helper.rb:50:in `execute_action'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:231:in `block in execute_action'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:227:in `chdir'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:227:in `execute_action'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:148:in `trigger_action_by_name'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/fast_file.rb:146:in `method_missing'\r\n\tfrom FastlaneContainerApp:201:in `block in parsing_binding'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/lane.rb:33:in `call'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:49:in `block in execute'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:45:in `chdir'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/runner.rb:45:in `execute'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/lane_manager.rb:54:in `cruise_lane'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/command_line_handler.rb:30:in `handle'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/commands_generator.rb:104:in `block (2 levels) in run'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/commander-fastlane-4.4.5/lib/commander/command.rb:178:in `call'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/commander-fastlane-4.4.5/lib/commander/command.rb:153:in `run'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/commander-fastlane-4.4.5/lib/commander/runner.rb:476:in `run_active_command'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb:66:in `run!'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/commander-fastlane-4.4.5/lib/commander/delegates.rb:15:in `run!'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/commands_generator.rb:304:in `run'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/commands_generator.rb:42:in `start'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/fastlane/lib/fastlane/cli_tools_distributor.rb:75:in `take_off'\r\n\tfrom /usr/local/lib/ruby/gems/2.3.0/gems/fastlane-2.68.1/bin/fastlane:20:in `'\r\n\tfrom /usr/local/bin/fastlane:23:in `load'\r\n\tfrom /usr/local/bin/fastlane:23:in `
'\r\n<\\details>\r\n\r\n### Environment\r\n
✅ fastlane environment ✅\r\n\r\n### Stack\r\n\r\n| Key | Value |\r\n| --------------------------- | ------------------------------------------- |\r\n| OS | 10.12.6 |\r\n| Ruby | 2.3.1 |\r\n| Bundler? | false |\r\n| Git | git version 2.13.6 (Apple Git-96) |\r\n| Installation Source | /usr/local/bin/fastlane |\r\n| Host | Mac OS X 10.12.6 (16G1036) |\r\n| Ruby Lib Dir | /usr/local/Cellar/ruby/2.3.1/lib |\r\n| OpenSSL Version | OpenSSL 1.0.2g 1 Mar 2016 |\r\n| Is contained | false |\r\n| Is homebrew | false |\r\n| Is installed via Fabric.app | false |\r\n| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |\r\n| Xcode Version | 9.1 |\r\n\r\n\r\n### System Locale\r\n\r\n| Variable | Value | |\r\n| -------- | ----------- | - |\r\n| LANG | en_US.UTF-8 | ✅ |\r\n| LC_ALL | en_US.UTF-8 | ✅ |\r\n| LANGUAGE | | |\r\n\r\n### fastlane gems\r\n\r\n| Gem | Version | Update-Status |\r\n| -------- | ------- | ------------- |\r\n| fastlane | 2.68.1 | ✅ Up-To-Date |\r\n\r\n\r\n### Loaded fastlane plugins:\r\n**No plugins Loaded**\r\n\r\n
Loaded gems\r\n\r\n| Gem | Version |\r\n| --------------------------------------- | ------------ |\r\n| did_you_mean | 1.0.2 |\r\n| slack-notifier | 1.5.1 |\r\n| CFPropertyList | 2.3.5 |\r\n| claide | 1.0.2 |\r\n| colored2 | 3.1.2 |\r\n| nanaimo | 0.2.3 |\r\n| xcodeproj | 1.5.3 |\r\n| rouge | 2.0.7 |\r\n| xcpretty | 0.2.8 |\r\n| terminal-notifier | 1.8.0 |\r\n| plist | 3.3.0 |\r\n| addressable | 2.5.2 |\r\n| multipart-post | 2.0.0 |\r\n| word_wrap | 1.0.0 |\r\n| public_suffix | 2.0.5 |\r\n| tty-screen | 0.6.3 |\r\n| babosa | 1.0.2 |\r\n| colored | 1.2 |\r\n| highline | 1.7.10 |\r\n| commander-fastlane | 4.4.5 |\r\n| excon | 0.59.0 |\r\n| faraday | 0.13.1 |\r\n| unf_ext | 0.0.7.4 |\r\n| unf | 0.1.4 |\r\n| domain_name | 0.5.20170404 |\r\n| http-cookie | 1.0.3 |\r\n| faraday-cookie_jar | 0.0.6 |\r\n| fastimage | 2.1.0 |\r\n| gh_inspector | 1.0.3 |\r\n| mini_magick | 4.5.1 |\r\n| multi_json | 1.12.2 |\r\n| multi_xml | 0.6.0 |\r\n| security | 0.1.3 |\r\n| xcpretty-travis-formatter | 1.0.0 |\r\n| dotenv | 2.2.1 |\r\n| bundler | 1.16.0 |\r\n| faraday_middleware | 0.12.2 |\r\n| declarative | 0.0.10 |\r\n| declarative-option | 0.1.0 |\r\n| representable | 3.0.4 |\r\n| mime-types-data | 3.2016.0521 |\r\n| mime-types | 3.1 |\r\n| little-plugger | 1.1.4 |\r\n| logging | 2.2.2 |\r\n| jwt | 2.1.0 |\r\n| memoist | 0.16.0 |\r\n| os | 0.9.6 |\r\n| signet | 0.8.1 |\r\n| googleauth | 0.6.2 |\r\n| httpclient | 2.8.3 |\r\n| google-api-client | 0.13.6 |\r\n| json | 2.1.0 |\r\n| io-console | 0.4.6 |\r\n| rubyzip | 1.2.1 |\r\n| unicode-display_width | 1.3.0 |\r\n| terminal-table | 1.8.0 |\r\n| jmespath | 1.3.1 |\r\n| aws-partitions | 1.44.0 |\r\n| aws-sigv4 | 1.0.2 |\r\n| aws-sdk-core | 3.11.0 |\r\n| aws-sdk-acm | 1.2.0 |\r\n| aws-sdk-apigateway | 1.7.0 |\r\n| aws-sdk-alexaforbusiness | 1.0.0 |\r\n| aws-sdk-appstream | 1.2.0 |\r\n| aws-sdk-appsync | 1.0.0 |\r\n| aws-sdk-applicationautoscaling | 1.6.0 |\r\n| aws-sdk-applicationdiscoveryservice | 1.0.0 |\r\n| aws-sdk-athena | 1.0.0 |\r\n| aws-sdk-autoscaling | 1.4.0 |\r\n| aws-sdk-batch | 1.3.0 |\r\n| aws-sdk-budgets | 1.3.0 |\r\n| aws-sdk-cloud9 | 1.0.0 |\r\n| aws-sdk-clouddirectory | 1.0.0 |\r\n| aws-sdk-cloudformation | 1.3.0 |\r\n| aws-sdk-cloudfront | 1.1.0 |\r\n| aws-sdk-cloudhsm | 1.3.0 |\r\n| aws-sdk-cloudhsmv2 | 1.1.0 |\r\n| aws-sdk-cloudsearch | 1.0.0 |\r\n| aws-sdk-cloudsearchdomain | 1.0.0 |\r\n| aws-sdk-cloudtrail | 1.0.0 |\r\n| aws-sdk-cloudwatch | 1.2.0 |\r\n| aws-sdk-cloudwatchevents | 1.1.0 |\r\n| aws-sdk-cloudwatchlogs | 1.2.0 |\r\n| aws-sdk-codebuild | 1.4.0 |\r\n| aws-sdk-codecommit | 1.2.0 |\r\n| aws-sdk-codedeploy | 1.1.0 |\r\n| aws-sdk-codepipeline | 1.1.0 |\r\n| aws-sdk-codestar | 1.1.0 |\r\n| aws-sdk-cognitoidentity | 1.0.0 |\r\n| aws-sdk-cognitoidentityprovider | 1.1.0 |\r\n| aws-sdk-cognitosync | 1.0.0 |\r\n| aws-sdk-comprehend | 1.0.0 |\r\n| aws-sdk-configservice | 1.4.0 |\r\n| aws-sdk-costexplorer | 1.0.0 |\r\n| aws-sdk-costandusagereportservice | 1.0.0 |\r\n| aws-sdk-dax | 1.0.0 |\r\n| aws-sdk-datapipeline | 1.0.0 |\r\n| aws-sdk-databasemigrationservice | 1.3.0 |\r\n| aws-sdk-devicefarm | 1.2.0 |\r\n| aws-sdk-directconnect | 1.1.0 |\r\n| aws-sdk-directoryservice | 1.0.0 |\r\n| aws-sdk-dynamodb | 1.3.0 |\r\n| aws-sdk-dynamodbstreams | 1.0.0 |\r\n| aws-sdk-ec2 | 1.21.0 |\r\n| aws-sdk-ecr | 1.2.0 |\r\n| aws-sdk-ecs | 1.6.0 |\r\n| aws-sdk-efs | 1.0.0 |\r\n| aws-sdk-emr | 1.1.0 |\r\n| aws-sdk-elasticache | 1.3.0 |\r\n| aws-sdk-elasticbeanstalk | 1.2.0 |\r\n| aws-sdk-elasticloadbalancing | 1.1.0 |\r\n| aws-sdk-elasticloadbalancingv2 | 1.6.0 |\r\n| aws-sdk-elastictranscoder | 1.0.0 |\r\n| aws-sdk-elasticsearchservice | 1.2.0 |\r\n| aws-sdk-firehose | 1.1.0 |\r\n| aws-sdk-gamelift | 1.1.0 |\r\n| aws-sdk-glacier | 1.5.0 |\r\n| aws-sdk-glue | 1.2.0 |\r\n| aws-sdk-greengrass | 1.2.0 |\r\n| aws-sdk-guardduty | 1.0.0 |\r\n| aws-sdk-health | 1.0.0 |\r\n| aws-sdk-iam | 1.3.0 |\r\n| aws-sigv2 | 1.0.1 |\r\n| aws-sdk-importexport | 1.0.0 |\r\n| aws-sdk-inspector | 1.1.0 |\r\n| aws-sdk-iot | 1.1.0 |\r\n| aws-sdk-iotdataplane | 1.0.0 |\r\n| aws-sdk-iotjobsdataplane | 1.0.0 |\r\n| aws-sdk-kms | 1.3.0 |\r\n| aws-sdk-kinesis | 1.1.0 |\r\n| aws-sdk-kinesisanalytics | 1.1.0 |\r\n| aws-sdk-kinesisvideo | 1.0.0 |\r\n| aws-sdk-kinesisvideoarchivedmedia | 1.0.0 |\r\n| aws-sdk-kinesisvideomedia | 1.0.0 |\r\n| aws-sdk-lambda | 1.2.0 |\r\n| aws-sdk-lambdapreview | 1.0.0 |\r\n| aws-sdk-lex | 1.2.0 |\r\n| aws-sdk-lexmodelbuildingservice | 1.2.0 |\r\n| aws-sdk-lightsail | 1.3.0 |\r\n| aws-sdk-mq | 1.0.0 |\r\n| aws-sdk-mturk | 1.1.0 |\r\n| aws-sdk-machinelearning | 1.0.0 |\r\n| aws-sdk-marketplacecommerceanalytics | 1.0.0 |\r\n| aws-sdk-marketplaceentitlementservice | 1.0.0 |\r\n| aws-sdk-marketplacemetering | 1.0.0 |\r\n| aws-sdk-mediaconvert | 1.0.0 |\r\n| aws-sdk-medialive | 1.0.0 |\r\n| aws-sdk-mediapackage | 1.0.0 |\r\n| aws-sdk-mediastore | 1.0.0 |\r\n| aws-sdk-mediastoredata | 1.0.0 |\r\n| aws-sdk-migrationhub | 1.0.0 |\r\n| aws-sdk-mobile | 1.0.0 |\r\n| aws-sdk-opsworks | 1.1.0 |\r\n| aws-sdk-opsworkscm | 1.2.0 |\r\n| aws-sdk-organizations | 1.7.0 |\r\n| aws-sdk-pinpoint | 1.2.0 |\r\n| aws-sdk-polly | 1.4.0 |\r\n| aws-sdk-pricing | 1.0.0 |\r\n| aws-sdk-rds | 1.8.0 |\r\n| aws-sdk-redshift | 1.1.0 |\r\n| aws-sdk-rekognition | 1.2.0 |\r\n| aws-sdk-resourcegroups | 1.0.0 |\r\n| aws-sdk-resourcegroupstaggingapi | 1.0.0 |\r\n| aws-sdk-route53 | 1.5.0 |\r\n| aws-sdk-route53domains | 1.1.0 |\r\n| aws-sdk-s3 | 1.8.0 |\r\n| aws-sdk-ses | 1.4.0 |\r\n| aws-sdk-sms | 1.0.0 |\r\n| aws-sdk-sns | 1.1.0 |\r\n| aws-sdk-sqs | 1.3.0 |\r\n| aws-sdk-ssm | 1.5.0 |\r\n| aws-sdk-swf | 1.0.0 |\r\n| aws-sdk-sagemaker | 1.1.0 |\r\n| aws-sdk-sagemakerruntime | 1.0.0 |\r\n| aws-sdk-serverlessapplicationrepository | 1.0.0 |\r\n| aws-sdk-servicecatalog | 1.1.0 |\r\n| aws-sdk-shield | 1.1.0 |\r\n| aws-sdk-simpledb | 1.0.0 |\r\n| aws-sdk-snowball | 1.1.0 |\r\n| aws-sdk-states | 1.2.0 |\r\n| aws-sdk-storagegateway | 1.2.0 |\r\n| aws-sdk-support | 1.0.0 |\r\n| aws-sdk-translate | 1.0.0 |\r\n| aws-sdk-waf | 1.3.0 |\r\n| aws-sdk-wafregional | 1.3.0 |\r\n| aws-sdk-workdocs | 1.1.0 |\r\n| aws-sdk-workspaces | 1.0.0 |\r\n| aws-sdk-xray | 1.1.0 |\r\n| aws-sdk-resources | 3.8.0 |\r\n| aws-sdk | 3.0.1 |\r\n| mini_portile2 | 2.3.0 |\r\n| nokogiri | 1.8.1 |\r\n
\r\n*generated on:* **2017-12-05**\r\n
","createdAt":"2017-12-05T16:23:41Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyNzk0Mzg2NDM="}}}} \ No newline at end of file diff --git a/records/14702616cc7628408e5101c6d1920685 b/records/14702616cc7628408e5101c6d1920685 deleted file mode 100644 index d1c7bdd2..00000000 --- a/records/14702616cc7628408e5101c6d1920685 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"fastlane","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/258?v=4","login":"kommen"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/474?v=4","login":"cbowns"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1060?v=4","login":"andrew"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1614?v=4","login":"brad"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2154?v=4","login":"bfolkens"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/2436?v=4","login":"DraXus"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2567?v=4","login":"tmm1"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/3312?v=4","login":"snatchev"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3500?v=4","login":"hotchpotch"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/5903?v=4","login":"benhanzl"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7315?v=4","login":"corymsmith"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/8459?v=4","login":"cpunion"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/13192?v=4","login":"reidab"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13697?v=4","login":"tcurdt"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13887?v=4","login":"jonklo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/14098?v=4","login":"svanzoest"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/14120?v=4","login":"carlosefonseca"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/15749?v=4","login":"danramteke"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/15887?v=4","login":"dataich"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/17814?v=4","login":"icyleaf"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":true,"startCursor":"OA=="},"nodes":[{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Also, it would be great to get some pointers on how to reproduce this to be able to work on a fix :) Thanks for the information, we'll ship a follow-up update shortly","createdAt":"2017-10-03T21:14:32Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzMzk4MDcwNw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"DDRBoxman","avatarUrl":"https://avatars0.githubusercontent.com/u/207897?v=4"},"editor":null,"lastEditedAt":null,"body":"I was actually at the limit of developer certificates after running it the first time. So it would just fail the second time because it couldn't make the new certificate, so no new commits.","createdAt":"2017-10-03T21:19:34Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzMzk4MTg4MQ=="},{"__typename":"ClosedEvent","closedCommit":null,"actor":{"__typename":"User","login":"KrauseFx"},"createdAt":"2017-10-03T21:19:42Z","id":"MDExOkNsb3NlZEV2ZW50MTI3Njg1NjMyOQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"raphaelcruzeiro","avatarUrl":"https://avatars3.githubusercontent.com/u/425640?v=4"},"editor":null,"lastEditedAt":null,"body":"@KrauseFx \r\nI'm trying this on 2.60.1 but it doesn't seem to be working. Match can't find the existing profile and won't create a new one because it reached the maximum number of profiles (even though there's only one on the developer portal). Any thought? I might me doing something wrong as this is my first attempt at Match.","createdAt":"2017-10-03T21:29:59Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[{"__typename":"User","login":"mobilechimp"},{"__typename":"User","login":"mpatzer"},{"__typename":"User","login":"momoDeako"}],"totalCount":4},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzMzk4NDQ1Nw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lesvie","avatarUrl":"https://avatars1.githubusercontent.com/u/1101035?v=4"},"editor":{"__typename":"User","login":"lesvie"},"lastEditedAt":"2017-10-03T21:34:53Z","body":"@raphaelcruzeiro i just updated to 2.60.1 and it works for me, try to do **fastlane match nuke development** OR **distribution** and recreate your provisions.","createdAt":"2017-10-03T21:34:32Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzMzk4NTU3Ng=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"raphaelcruzeiro","avatarUrl":"https://avatars3.githubusercontent.com/u/425640?v=4"},"editor":null,"lastEditedAt":null,"body":"@lesvie nuking it did the trick!","createdAt":"2017-10-03T21:39:08Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzMzk4NjY3Nw=="},{"__typename":"ReopenedEvent","actor":{"__typename":"User","login":"KrauseFx"},"createdAt":"2017-10-03T22:26:11Z","id":"MDEzOlJlb3BlbmVkRXZlbnQxMjc2OTUzNDgx"},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey everyone, it's great that you got it working again, however we'd love to fix whatever went wrong with 2.60.0, could you downgrade again and see if that version also works as expected, now that you fixed the problems with the account? :) ","createdAt":"2017-10-04T07:15:19Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDA2OTQ2Mw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"sittmannkatia","avatarUrl":"https://avatars3.githubusercontent.com/u/5580517?v=4"},"editor":null,"lastEditedAt":null,"body":"Mine is still not working if I'm 2.60.0. I did find a workaround that worked for us but probably not others. We run match in a lane where we also push to test flight so I had to nuke the certs before running that lane and then it created a new cert and pushed with that cert.","createdAt":"2017-10-04T12:36:37Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDE0MTE1Nw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"DDRBoxman","avatarUrl":"https://avatars0.githubusercontent.com/u/207897?v=4"},"editor":null,"lastEditedAt":null,"body":"Just downgraded to 2.26.0. I'm using the match repo that was generated from 2.58.0. And it successfully matches the certificate. So seems like repo generation is the issue. I'll go ahead and make a new repo to see if I can trick it into failing again.","createdAt":"2017-10-04T16:20:35Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDIxMDUxNA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"DDRBoxman","avatarUrl":"https://avatars0.githubusercontent.com/u/207897?v=4"},"editor":null,"lastEditedAt":null,"body":"Okay got it to replicate, @KrauseFx what do you need from me now?","createdAt":"2017-10-04T16:33:53Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDIxNDQyNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @DDRBoxman, awesome, thanks. \r\nit would be awesome to get the `--verbose` output when you run _match_ the first time (when it initially creates the profiles and certificates), and when you run it again and it doesn't work. Ideally you could also append screenshots of the list of modified files that match commited.","createdAt":"2017-10-05T09:06:41Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDQwNTc3MA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"DDRBoxman","avatarUrl":"https://avatars0.githubusercontent.com/u/207897?v=4"},"editor":null,"lastEditedAt":null,"body":"```\r\nfastlane match development --verbose\r\n[10:52:09]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\nSuccessfully loaded Appfile at path '/Users/ddrboxman/Development/swiftstar/iOS-Driver-new/fastlane/Appfile'\r\n- app_identifier: 'io.swiftstar.swiftstardriver'\r\n- apple_id: 'ddrboxman@gmail.com'\r\n- team_id: 'X9U7EAVQ73'\r\n-------\r\nINFO [2017-10-05 10:52:11.96]: Successfully loaded '/Users/ddrboxman/Development/swiftstar/iOS-Driver-new/fastlane/Matchfile' 📄\r\n\r\n+---------+-----------------------------------------+\r\n| Detected Values from './fastlane/Matchfile' |\r\n+---------+-----------------------------------------+\r\n| git_url | git@github.com:swiftstario/certtest.git |\r\n| type | development |\r\n+---------+-----------------------------------------+\r\n\r\nDEBUG [2017-10-05 10:52:11.96]: Taking value for 'team_id' from environment variable 'FASTLANE_TEAM_ID'\r\n\r\n+-----------------------+-----------------------------------------+\r\n| Summary for match 2.60.0 |\r\n+-----------------------+-----------------------------------------+\r\n| verbose | true |\r\n| git_url | git@github.com:swiftstario/certtest.git |\r\n| type | development |\r\n| git_branch | master |\r\n| app_identifier | io.swiftstar.swiftstardriver |\r\n| username | ddrboxman@gmail.com |\r\n| keychain_name | login.keychain |\r\n| readonly | false |\r\n| team_id | X9U7EAVQ73 |\r\n| force | false |\r\n| skip_confirmation | false |\r\n| shallow_clone | false |\r\n| clone_branch_directly | false |\r\n| force_for_new_devices | false |\r\n| skip_docs | false |\r\n| platform | ios |\r\n+-----------------------+-----------------------------------------+\r\n\r\nINFO [2017-10-05 10:52:11.97]: Cloning remote git repo...\r\nINFO [2017-10-05 10:52:11.97]: If cloning the repo takes too long, you can use the `clone_branch_directly` option in match.\r\nINFO [2017-10-05 10:52:11.97]: $ GIT_TERMINAL_PROMPT=0 git clone 'git@github.com:swiftstario/certtest.git' '/var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj'\r\nINFO [2017-10-05 10:52:11.97]: ▸ Cloning into '/var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj'...\r\nINFO [2017-10-05 10:52:12.51]: ▸ remote: Counting objects: 12, done.\r\nINFO [2017-10-05 10:52:12.51]: ▸ remote: Compressing objects: 100% (7/7), done.\r\nINFO [2017-10-05 10:52:12.51]: ▸ Receiving objects: 100% (12/12), 11.11 KiB | 0 bytes/s, done.\r\nINFO [2017-10-05 10:52:12.55]: ▸ remote: Total 12 (delta 0), reused 12 (delta 0), pack-reused 0\r\nINFO [2017-10-05 10:52:12.63]: 🔓 Successfully decrypted certificates repo\r\nINFO [2017-10-05 10:52:12.66]: Verifying that the certificate and profile are still valid on the Dev Portal...\r\nLoading session from '/Users/ddrboxman/.fastlane/spaceship/ddrboxman@gmail.com/cookie'\r\nWARN [2017-10-05 10:52:14.30]: Couldn't find a valid code signing identity in the git repo for development... creating one for you now\r\n\r\n+---------------+------------------------------------------------------+\r\n| Summary for cert 2.60.0 |\r\n+---------------+------------------------------------------------------+\r\n| development | true |\r\n| force | true |\r\n| username | ddrboxman@gmail.com |\r\n| team_id | X9U7EAVQ73 |\r\n| keychain_path | /Users/ddrboxman/Library/Keychains/login.keychain-db |\r\n| platform | ios |\r\n+---------------+------------------------------------------------------+\r\n\r\nINFO [2017-10-05 10:52:14.31]: Starting login with user 'ddrboxman@gmail.com'\r\nLoading session from '/Users/ddrboxman/.fastlane/spaceship/ddrboxman@gmail.com/cookie'\r\nINFO [2017-10-05 10:52:15.53]: Successfully logged in\r\nINFO [2017-10-05 10:52:16.49]: $ security import /var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj/certs/development/Z82TCNMYP8.p12 -k '/Users/ddrboxman/Library/Keychains/login.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security\r\nINFO [2017-10-05 10:52:16.59]: ▸ 1 key imported.\r\nINFO [2017-10-05 10:52:16.60]: $ security set-key-partition-list -S apple-tool:,apple: -k '' /Users/ddrboxman/Library/Keychains/login.keychain-db\r\nINFO [2017-10-05 10:52:16.84]: $ security import /var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj/certs/development/Z82TCNMYP8.cer -k '/Users/ddrboxman/Library/Keychains/login.keychain-db' -P '' -T /usr/bin/codesign -T /usr/bin/security\r\nINFO [2017-10-05 10:52:16.88]: ▸ 1 certificate imported.\r\nINFO [2017-10-05 10:52:16.90]: $ security set-key-partition-list -S apple-tool:,apple: -k '' /Users/ddrboxman/Library/Keychains/login.keychain-db\r\nINFO [2017-10-05 10:52:17.18]: Successfully generated Z82TCNMYP8 which was imported to the local machine.\r\nINFO [2017-10-05 10:52:17.18]: $ security list-keychains -d user\r\nINFO [2017-10-05 10:52:17.19]: ▸ \"/Users/ddrboxman/Library/Keychains/login.keychain-db\"\r\nINFO [2017-10-05 10:52:17.19]: ▸ \"/Users/ddrboxman/Library/Keychains/jenkins.keychain-db\"\r\nINFO [2017-10-05 10:52:17.19]: ▸ \"/Users/ddrboxman/Desktop/jenkins-keychain.keychain\"\r\nINFO [2017-10-05 10:52:17.19]: ▸ \"/Users/ddrboxman/Desktop/ticker-osx-keychain.keychain\"\r\nINFO [2017-10-05 10:52:17.19]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/ddrboxman/Library/Keychains/login.keychain-db\r\nINFO [2017-10-05 10:52:17.21]: ▸ keychain: \"/Users/ddrboxman/Library/Keychains/login.keychain-db\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ version: 512\r\nINFO [2017-10-05 10:52:17.21]: ▸ class: 0x80001000\r\nINFO [2017-10-05 10:52:17.21]: ▸ attributes:\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"alis\"=\"Apple Worldwide Developer Relations Certification Authority\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"cenc\"=0x00000003\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"ctyp\"=0x00000001\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"hpky\"=0x88271709A9B618608BECEBBAF64759C55254A3B7 \"\\210'\\027\\011\\251\\266\\030`\\213\\354\\353\\272\\366GY\\305RT\\243\\267\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"issu\"=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341 \"0b1\\0130\\011\\006\\003U\\004\\006\\023\\002US1\\0230\\021\\006\\003U\\004\\012\\023\\012APPLE INC.1&0$\\006\\003U\\004\\013\\023\\035APPLE CERTIFICATION AUTHORITY1\\0260\\024\\006\\003U\\004\\003\\023\\015APPLE ROOT CA\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"labl\"=\"Apple Worldwide Developer Relations Certification Authority\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"skid\"=0x88271709A9B618608BECEBBAF64759C55254A3B7 \"\\210'\\027\\011\\251\\266\\030`\\213\\354\\353\\272\\366GY\\305RT\\243\\267\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"snbr\"=0x01DEBCC4396DA010 \"\\001\\336\\274\\3049m\\240\\020\"\r\nINFO [2017-10-05 10:52:17.21]: ▸ \"subj\"=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479 \"0\\201\\2261\\0130\\011\\006\\003U\\004\\006\\023\\002US1\\0230\\021\\006\\003U\\004\\012\\014\\012Apple Inc.1,0*\\006\\003U\\004\\013\\014#Apple Worldwide Developer Relations1D0B\\006\\003U\\004\\003\\014;Apple Worldwide Developer Relations Certification Authority\"\r\nINFO [2017-10-05 10:52:17.64]: Verifying the certificate is properly installed locally...\r\nINFO [2017-10-05 10:52:17.64]: Successfully installed certificate Z82TCNMYP8\r\n\r\n+-------------------------------------+------------------------------------------------+\r\n| Summary for sigh 2.60.0 |\r\n+-------------------------------------+------------------------------------------------+\r\n| app_identifier | io.swiftstar.swiftstardriver |\r\n| username | ddrboxman@gmail.com |\r\n| force | true |\r\n| cert_id | Z82TCNMYP8 |\r\n| provisioning_name | match Development io.swiftstar.swiftstardriver |\r\n| ignore_profiles_with_different_name | true |\r\n| team_id | X9U7EAVQ73 |\r\n| platform | ios |\r\n| development | true |\r\n| adhoc | false |\r\n| skip_install | false |\r\n| skip_fetch_profiles | false |\r\n| skip_certificate_verification | false |\r\n+-------------------------------------+------------------------------------------------+\r\n\r\nINFO [2017-10-05 10:52:17.79]: Starting login with user 'ddrboxman@gmail.com'\r\nLoading session from '/Users/ddrboxman/.fastlane/spaceship/ddrboxman@gmail.com/cookie'\r\nINFO [2017-10-05 10:52:18.95]: Successfully logged in\r\nINFO [2017-10-05 10:52:18.95]: Fetching profiles...\r\nINFO [2017-10-05 10:52:19.27]: Verifying certificates...\r\nWARN [2017-10-05 10:52:19.40]: No existing profiles found, that match the certificates you have installed locally! Creating a new provisioning profile for you\r\nINFO [2017-10-05 10:52:20.05]: $ security list-keychains -d user\r\nINFO [2017-10-05 10:52:20.06]: ▸ \"/Users/ddrboxman/Library/Keychains/login.keychain-db\"\r\nINFO [2017-10-05 10:52:20.06]: ▸ \"/Users/ddrboxman/Library/Keychains/jenkins.keychain-db\"\r\nINFO [2017-10-05 10:52:20.06]: ▸ \"/Users/ddrboxman/Desktop/jenkins-keychain.keychain\"\r\nINFO [2017-10-05 10:52:20.06]: ▸ \"/Users/ddrboxman/Desktop/ticker-osx-keychain.keychain\"\r\nINFO [2017-10-05 10:52:20.06]: $ security find-certificate -c 'Apple Worldwide Developer Relations Certification Authority' /Users/ddrboxman/Library/Keychains/login.keychain-db\r\nINFO [2017-10-05 10:52:20.09]: ▸ keychain: \"/Users/ddrboxman/Library/Keychains/login.keychain-db\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ version: 512\r\nINFO [2017-10-05 10:52:20.09]: ▸ class: 0x80001000\r\nINFO [2017-10-05 10:52:20.09]: ▸ attributes:\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"alis\"=\"Apple Worldwide Developer Relations Certification Authority\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"cenc\"=0x00000003\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"ctyp\"=0x00000001\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"hpky\"=0x88271709A9B618608BECEBBAF64759C55254A3B7 \"\\210'\\027\\011\\251\\266\\030`\\213\\354\\353\\272\\366GY\\305RT\\243\\267\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"issu\"=0x3062310B300906035504061302555331133011060355040A130A4150504C4520494E432E31263024060355040B131D4150504C452043455254494649434154494F4E20415554484F52495459311630140603550403130D4150504C4520524F4F54204341 \"0b1\\0130\\011\\006\\003U\\004\\006\\023\\002US1\\0230\\021\\006\\003U\\004\\012\\023\\012APPLE INC.1&0$\\006\\003U\\004\\013\\023\\035APPLE CERTIFICATION AUTHORITY1\\0260\\024\\006\\003U\\004\\003\\023\\015APPLE ROOT CA\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"labl\"=\"Apple Worldwide Developer Relations Certification Authority\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"skid\"=0x88271709A9B618608BECEBBAF64759C55254A3B7 \"\\210'\\027\\011\\251\\266\\030`\\213\\354\\353\\272\\366GY\\305RT\\243\\267\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"snbr\"=0x01DEBCC4396DA010 \"\\001\\336\\274\\3049m\\240\\020\"\r\nINFO [2017-10-05 10:52:20.09]: ▸ \"subj\"=0x308196310B300906035504061302555331133011060355040A0C0A4170706C6520496E632E312C302A060355040B0C234170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E733144304206035504030C3B4170706C6520576F726C647769646520446576656C6F7065722052656C6174696F6E732043657274696669636174696F6E20417574686F72697479 \"0\\201\\2261\\0130\\011\\006\\003U\\004\\006\\023\\002US1\\0230\\021\\006\\003U\\004\\012\\014\\012Apple Inc.1,0*\\006\\003U\\004\\013\\014#Apple Worldwide Developer Relations1D0B\\006\\003U\\004\\003\\014;Apple Worldwide Developer Relations Certification Authority\"\r\nERROR [2017-10-05 10:52:20.62]: The name 'match Development io.swiftstar.swiftstardriver' is already taken, using another one.\r\nWARN [2017-10-05 10:52:20.62]: Creating new provisioning profile for 'io.swiftstar.swiftstardriver' with name 'match Development io.swiftstar.swiftstardriver 1507218740' for 'ios' platform\r\nWARN [2017-10-05 10:52:21.83]: Downloading provisioning profile...\r\nINFO [2017-10-05 10:52:22.18]: Successfully downloaded provisioning profile...\r\nINFO [2017-10-05 10:52:22.24]: Installing provisioning profile...\r\n/var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj/profiles/development/Development_io.swiftstar.swiftstardriver.mobileprovision\r\nINFO [2017-10-05 10:52:22.28]: Installing provisioning profile...\r\nWARN [2017-10-05 10:52:22.67]: Setting environment variable 'sigh_io.swiftstar.swiftstardriver_development' to '0ae18840-4429-4215-8cb8-fe208d512f59'\r\nWARN [2017-10-05 10:52:22.67]: Setting environment variable 'sigh_io.swiftstar.swiftstardriver_development_team-id' to 'X9U7EAVQ73'\r\nWARN [2017-10-05 10:52:22.67]: Setting environment variable 'sigh_io.swiftstar.swiftstardriver_development_profile-name' to 'match Development io.swiftstar.swiftstardriver 1507218740'\r\nWARN [2017-10-05 10:52:22.67]: Setting environment variable 'sigh_io.swiftstar.swiftstardriver_development_profile-path' to '/Users/ddrboxman/Library/MobileDevice/Provisioning Profiles/0ae18840-4429-4215-8cb8-fe208d512f59.mobileprovision'\r\nINFO [2017-10-05 10:52:22.71]: 🔒 Encrypted 'Z82TCNMYP8.cer'\r\nINFO [2017-10-05 10:52:22.75]: 🔒 Encrypted 'Z82TCNMYP8.p12'\r\nINFO [2017-10-05 10:52:22.79]: 🔒 Encrypted 'Development_io.swiftstar.swiftstardriver.mobileprovision'\r\nINFO [2017-10-05 10:52:22.79]: 🔒 Successfully encrypted certificates repo\r\nINFO [2017-10-05 10:52:22.79]: Pushing changes to remote git repo...\r\nINFO [2017-10-05 10:52:22.79]: $ git add /var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj/certs/development/Z82TCNMYP8.cer\r\nINFO [2017-10-05 10:52:22.79]: $ git add /var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6476-gd2baj/profiles/development/Development_io.swiftstar.swiftstardriver.mobileprovision\r\nINFO [2017-10-05 10:52:22.80]: $ git add match_version.txt\r\nINFO [2017-10-05 10:52:22.81]: $ git add README.md\r\nINFO [2017-10-05 10:52:22.81]: $ git commit -m \\[fastlane\\]\\ Updated\\ development\\ and\\ platform\\ ios\r\nINFO [2017-10-05 10:52:22.82]: ▸ [master 38400f7] [fastlane] Updated development and platform ios\r\nINFO [2017-10-05 10:52:22.82]: ▸ 4 files changed, 268 insertions(+)\r\nINFO [2017-10-05 10:52:22.82]: ▸ create mode 100644 README.md\r\nINFO [2017-10-05 10:52:22.82]: ▸ create mode 100644 certs/development/Z82TCNMYP8.cer\r\nINFO [2017-10-05 10:52:22.82]: ▸ create mode 100644 match_version.txt\r\nINFO [2017-10-05 10:52:22.82]: ▸ create mode 100644 profiles/development/Development_io.swiftstar.swiftstardriver.mobileprovision\r\nINFO [2017-10-05 10:52:22.82]: $ GIT_TERMINAL_PROMPT=0 git push origin master\r\nINFO [2017-10-05 10:52:23.35]: ▸ Counting objects: 10, done.\r\nINFO [2017-10-05 10:52:23.35]: ▸ Delta compression using up to 12 threads.\r\nINFO [2017-10-05 10:52:23.35]: ▸ Compressing objects: 100% (6/6), done.\r\nINFO [2017-10-05 10:52:23.35]: ▸ Writing objects: 100% (10/10), 10.99 KiB | 0 bytes/s, done.\r\nINFO [2017-10-05 10:52:23.35]: ▸ Total 10 (delta 0), reused 2 (delta 0)\r\nINFO [2017-10-05 10:52:25.05]: ▸ To github.com:swiftstario/certtest.git\r\nINFO [2017-10-05 10:52:25.05]: ▸ 0053d7e..38400f7 master -> master\r\n\r\n+---------------------+----------------------------------------------+----------------------------------------------+\r\n| Installed Provisioning Profile |\r\n+---------------------+----------------------------------------------+----------------------------------------------+\r\n| Parameter | Environment Variable | Value |\r\n+---------------------+----------------------------------------------+----------------------------------------------+\r\n| App Identifier | | io.swiftstar.swiftstardriver |\r\n| Type | | development |\r\n| Platform | | ios |\r\n| Profile UUID | sigh_io.swiftstar.swiftstardriver_developme | 0ae18840-4429-4215-8cb8-fe208d512f59 |\r\n| | nt | |\r\n| Profile Name | sigh_io.swiftstar.swiftstardriver_developme | match Development |\r\n| | nt_profile-name | io.swiftstar.swiftstardriver 1507218740 |\r\n| Profile Path | sigh_io.swiftstar.swiftstardriver_developme | /Users/ddrboxman/Library/MobileDevice/Provi |\r\n| | nt_profile-path | sioning |\r\n| | | Profiles/0ae18840-4429-4215-8cb8-fe208d512f |\r\n| | | 59.mobileprovision |\r\n| Development Team ID | sigh_io.swiftstar.swiftstardriver_developme | X9U7EAVQ73 |\r\n| | nt_team-id | |\r\n+---------------------+----------------------------------------------+----------------------------------------------+\r\n\r\nINFO [2017-10-05 10:52:25.06]: All required keys, certificates and provisioning profiles are installed 🙌\r\n```\r\n![screencapture-github-swiftstario-certtest-commit-38400f7f7f193668b59d6b00b97856bde204fc5c-1507218961156](https://user-images.githubusercontent.com/207897/31237221-e89bab9a-a9bb-11e7-85ae-09bcb6ba2f86.png)\r\n\r\n\r\n```\r\nfastlane match development --verbose\r\n[10:56:15]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\nSuccessfully loaded Appfile at path '/Users/ddrboxman/Development/swiftstar/iOS-Driver-new/fastlane/Appfile'\r\n- app_identifier: 'io.swiftstar.swiftstardriver'\r\n- apple_id: 'ddrboxman@gmail.com'\r\n- team_id: 'X9U7EAVQ73'\r\n-------\r\nINFO [2017-10-05 10:56:17.92]: Successfully loaded '/Users/ddrboxman/Development/swiftstar/iOS-Driver-new/fastlane/Matchfile' 📄\r\n\r\n+---------+-----------------------------------------+\r\n| Detected Values from './fastlane/Matchfile' |\r\n+---------+-----------------------------------------+\r\n| git_url | git@github.com:swiftstario/certtest.git |\r\n| type | development |\r\n+---------+-----------------------------------------+\r\n\r\nDEBUG [2017-10-05 10:56:17.92]: Taking value for 'team_id' from environment variable 'FASTLANE_TEAM_ID'\r\n\r\n+-----------------------+-----------------------------------------+\r\n| Summary for match 2.60.0 |\r\n+-----------------------+-----------------------------------------+\r\n| verbose | true |\r\n| git_url | git@github.com:swiftstario/certtest.git |\r\n| type | development |\r\n| git_branch | master |\r\n| app_identifier | io.swiftstar.swiftstardriver |\r\n| username | ddrboxman@gmail.com |\r\n| keychain_name | login.keychain |\r\n| readonly | false |\r\n| team_id | X9U7EAVQ73 |\r\n| force | false |\r\n| skip_confirmation | false |\r\n| shallow_clone | false |\r\n| clone_branch_directly | false |\r\n| force_for_new_devices | false |\r\n| skip_docs | false |\r\n| platform | ios |\r\n+-----------------------+-----------------------------------------+\r\n\r\nINFO [2017-10-05 10:56:17.93]: Cloning remote git repo...\r\nINFO [2017-10-05 10:56:17.93]: If cloning the repo takes too long, you can use the `clone_branch_directly` option in match.\r\nINFO [2017-10-05 10:56:17.93]: $ GIT_TERMINAL_PROMPT=0 git clone 'git@github.com:swiftstario/certtest.git' '/var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6590-jnodkn'\r\nINFO [2017-10-05 10:56:17.93]: ▸ Cloning into '/var/folders/hf/vcfpg1rd77qdcxmt5dwqr2nw0000gn/T/d20171005-6590-jnodkn'...\r\nINFO [2017-10-05 10:56:18.47]: ▸ remote: Counting objects: 20, done.\r\nINFO [2017-10-05 10:56:18.47]: ▸ remote: Compressing objects: 100% (12/12), done.\r\nINFO [2017-10-05 10:56:18.50]: ▸ remote: Total 20 (delta 2), reused 18 (delta 0), pack-reused 0\r\nINFO [2017-10-05 10:56:18.50]: ▸ Receiving objects: 100% (20/20), 21.13 KiB | 0 bytes/s, done.\r\nINFO [2017-10-05 10:56:18.50]: ▸ Resolving deltas: 100% (2/2), done.\r\nINFO [2017-10-05 10:56:18.62]: 🔓 Decrypted 'Z82TCNMYP8.cer'\r\nINFO [2017-10-05 10:56:18.66]: 🔓 Decrypted 'Development_io.swiftstar.swiftstardriver.mobileprovision'\r\nINFO [2017-10-05 10:56:18.66]: 🔓 Successfully decrypted certificates repo\r\nINFO [2017-10-05 10:56:18.69]: Verifying that the certificate and profile are still valid on the Dev Portal...\r\nLoading session from '/Users/ddrboxman/.fastlane/spaceship/ddrboxman@gmail.com/cookie'\r\nWARN [2017-10-05 10:56:20.40]: Couldn't find a valid code signing identity in the git repo for development... creating one for you now\r\n\r\n+---------------+------------------------------------------------------+\r\n| Summary for cert 2.60.0 |\r\n+---------------+------------------------------------------------------+\r\n| development | true |\r\n| force | true |\r\n| username | ddrboxman@gmail.com |\r\n| team_id | X9U7EAVQ73 |\r\n| keychain_path | /Users/ddrboxman/Library/Keychains/login.keychain-db |\r\n| platform | ios |\r\n+---------------+------------------------------------------------------+\r\n\r\nINFO [2017-10-05 10:56:20.41]: Starting login with user 'ddrboxman@gmail.com'\r\nLoading session from '/Users/ddrboxman/.fastlane/spaceship/ddrboxman@gmail.com/cookie'\r\nINFO [2017-10-05 10:56:21.65]: Successfully logged in\r\n\r\nLooking for related GitHub issues on fastlane/fastlane...\r\nSearch query: Could not create another Development certificate, reached the maximum number of available Development certificates.\r\n\r\nURL: https://api.github.com/search/issues?q=Could%20not%20create%20another%20Development%20certificate,%20reached%20the%20maximum%20number%20of%20available%20Development%20certificates.+repo:fastlane/fastlane\r\n➡️ Match can't find certificate in repo if run again.\r\n https://github.com/fastlane/fastlane/issues/10489 [open] 14 💬\r\n 6 hours ago\r\n\r\n➡️ match failed in development\r\n https://github.com/fastlane/fastlane/issues/9215 [closed] 8 💬\r\n a week ago\r\n\r\n➡️ [match] Ignoring file when decrypting certificates repo\r\n https://github.com/fastlane/fastlane/issues/9400 [closed] 5 💬\r\n 4 weeks ago\r\n\r\nand 21 more at: https://github.com/fastlane/fastlane/search?q=Could%20not%20create%20another%20Development%20certificate,%20reached%20the%20maximum%20number%20of%20available%20Development%20certificates.&type=Issues&utf8=✓\r\n\r\n🔗 You can ⌘ + double-click on links to open them directly in your browser.\r\n```\r\n\r\n","createdAt":"2017-10-05T15:57:02Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDUxMDI2NA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Awesome, thanks for this information - I'll take a closer look at this today 👍 ","createdAt":"2017-10-06T07:45:18Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDY4MzMwOQ=="},{"__typename":"CrossReferencedEvent","actor":{"__typename":"User","login":"KrauseFx"},"createdAt":"2017-10-06T07:55:19Z","source":{"__typename":"PullRequest","title":"[match] Only encrypt and commit files if they changed","number":10516,"closed":true,"merged":true,"repository":{"__typename":"Repository","name":"fastlane","owner":{"__typename":"Organization","login":"fastlane"}}},"id":"MDIwOkNyb3NzUmVmZXJlbmNlZEV2ZW50NDU5MjQwOTQw"},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Beautiful, thanks for your help, I can reproduce the issue and will work on a fix","createdAt":"2017-10-06T08:05:50Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDY4NzQ5OA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Alright, I got a fix ready https://github.com/fastlane/fastlane/pull/10516 👍 ","createdAt":"2017-10-06T09:06:12Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[{"__typename":"User","login":"blazmag"},{"__typename":"User","login":"sparkica"},{"__typename":"User","login":"mgj"}],"totalCount":4},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDcwMDYzMw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"blazmag","avatarUrl":"https://avatars1.githubusercontent.com/u/6486526?v=4"},"editor":null,"lastEditedAt":null,"body":"@KrauseFx any chance of #10516 happening as a hotfix 2.60.2? ","createdAt":"2017-10-06T13:19:20Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDc1MjI5Mw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"KrauseFx","avatarUrl":"https://avatars2.githubusercontent.com/u/869950?v=4"},"editor":null,"lastEditedAt":null,"body":"Yeah, it will be in the next release, maybe later today, or Monday morning :) ","createdAt":"2017-10-06T13:30:56Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDc1NTM1Mg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"blazmag","avatarUrl":"https://avatars1.githubusercontent.com/u/6486526?v=4"},"editor":null,"lastEditedAt":null,"body":"nice one, thanks! :+1: ","createdAt":"2017-10-06T13:37:41Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNDc1NzIwNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"ferasOS","avatarUrl":"https://avatars1.githubusercontent.com/u/22634359?v=4"},"editor":null,"lastEditedAt":null,"body":"I have 2.61 and I still have the same issue. \r\n\r\n","createdAt":"2017-10-11T11:10:34Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[{"__typename":"User","login":"NicolasLourenco"},{"__typename":"User","login":"joshstrange"},{"__typename":"User","login":"lauretmichiel1"}],"totalCount":4},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNTc3NjA4Mg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"joshstrange","avatarUrl":"https://avatars0.githubusercontent.com/u/462796?v=4"},"editor":{"__typename":"User","login":"joshstrange"},"lastEditedAt":"2017-10-11T14:47:19Z","body":"Same here: fastlane 2.61.0, I've cleared out certs in itunesconnect but still can't create distribution certs\r\n\r\n
✅ fastlane environment ✅\r\n\r\n### Stack\r\n\r\n| Key | Value |\r\n| --------------------------- | ------------------------------------------- |\r\n| OS | 10.12.6 |\r\n| Ruby | 2.2.4 |\r\n| Bundler? | false |\r\n| Git | git version 2.10.1 |\r\n| Installation Source | ~/.fastlane/bin/bundle/bin/fastlane |\r\n| Host | Mac OS X 10.12.6 (16G29) |\r\n| Ruby Lib Dir | ~/.fastlane/bin/bundle/lib |\r\n| OpenSSL Version | OpenSSL 1.0.2g 1 Mar 2016 |\r\n| Is contained | false |\r\n| Is homebrew | true |\r\n| Is installed via Fabric.app | false |\r\n| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |\r\n| Xcode Version | 9.0 |\r\n\r\n\r\n### System Locale\r\n\r\n| Variable | Value | |\r\n| -------- | ----------- | - |\r\n| LANG | en_US.UTF-8 | ✅ |\r\n| LC_ALL | en_US.UTF-8 | ✅ |\r\n| LANGUAGE | en_US.UTF-8 | ✅ |\r\n\r\n\r\n### fastlane files:\r\n\r\n
`./fastlane/Fastfile`\r\n\r\n```ruby\r\n# Customise this file, documentation can be found here:\r\n# https://docs.fastlane.tools/actions/\r\n# All available actions: https://docs.fastlane.tools/actions\r\n# can also be listed using the `fastlane actions` command\r\n\r\n# Change the syntax highlighting to Ruby\r\n# All lines starting with a # are ignored when running `fastlane`\r\n\r\n# If you want to automatically update fastlane if a new version is available:\r\n# update_fastlane\r\n\r\n# This is the minimum version number required.\r\n# Update this, if you use features of a newer version\r\nfastlane_version \"2.61.0\"\r\n\r\ndefault_platform :ios\r\n\r\nplatform :ios do\r\n before_all do\r\n # ENV[\"SLACK_URL\"] = \"https://hooks.slack.com/services/...\"\r\n # cocoapods\r\n # carthage\r\n end\r\n\r\n desc \"Runs all the tests\"\r\n lane :test do\r\n scan\r\n end\r\n\r\n desc \"Submit a new Beta Build to Apple TestFlight\"\r\n desc \"This will also make sure the profile is up to date\"\r\n lane :beta do\r\n # match(type: \"appstore\") # more information: https://codesigning.guide\r\n gym # Build your app - more options available\r\n pilot\r\n\r\n # sh \"your_script.sh\"\r\n # You can also use other beta testing services here (run `fastlane actions`)\r\n end\r\n\r\n desc \"Deploy a new version to the App Store\"\r\n lane :release do\r\n # match(type: \"appstore\")\r\n # snapshot\r\n gym # Build your app - more options available\r\n deliver(force: true)\r\n # frameit\r\n end\r\n\r\n # You can define as many lanes as you want\r\n\r\n after_all do |lane|\r\n # This block is called, only if the executed lane was successful\r\n\r\n # slack(\r\n # message: \"Successfully deployed new App Update.\"\r\n # )\r\n end\r\n\r\n error do |lane, exception|\r\n # slack(\r\n # message: exception.message,\r\n # success: false\r\n # )\r\n end\r\nend\r\n\r\n\r\n# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md\r\n# All available actions: https://docs.fastlane.tools/actions\r\n\r\n# fastlane reports which actions are used. No personal data is recorded.\r\n# Learn more at https://github.com/fastlane/fastlane#metrics\r\n\r\n```\r\n
\r\n\r\n
`./fastlane/Appfile`\r\n\r\n```ruby\r\napp_identifier \"XXXXXXXXXX\" # The bundle identifier of your app\r\napple_id \"XXXXXXXXXX\" # Your Apple email address\r\n\r\nteam_id \"XXXXXXXXXX\" # Developer Portal Team ID\r\n\r\n# you can even provide different app identifiers, Apple IDs and team names per lane:\r\n# More information: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md\r\n\r\n```\r\n
\r\n\r\n### fastlane gems\r\n\r\n| Gem | Version | Update-Status |\r\n| -------- | ------- | ------------- |\r\n| fastlane | 2.61.0 | ✅ Up-To-Date |\r\n\r\n\r\n### Loaded fastlane plugins:\r\n\r\n**No plugins Loaded**\r\n\r\n\r\n
Loaded gems\r\n\r\n| Gem | Version |\r\n| ------------------------- | ------------ |\r\n| slack-notifier | 1.5.1 |\r\n| CFPropertyList | 2.3.5 |\r\n| claide | 1.0.2 |\r\n| colored2 | 3.1.2 |\r\n| nanaimo | 0.2.3 |\r\n| xcodeproj | 1.5.2 |\r\n| rouge | 1.11.1 |\r\n| xcpretty | 0.2.6 |\r\n| terminal-notifier | 1.7.1 |\r\n| unicode-display_width | 1.1.3 |\r\n| terminal-table | 1.7.3 |\r\n| plist | 3.2.0 |\r\n| public_suffix | 2.0.5 |\r\n| addressable | 2.5.1 |\r\n| multipart-post | 2.0.0 |\r\n| word_wrap | 1.0.0 |\r\n| tty-screen | 0.5.0 |\r\n| babosa | 1.0.2 |\r\n| colored | 1.2 |\r\n| highline | 1.7.8 |\r\n| commander-fastlane | 4.4.5 |\r\n| excon | 0.55.0 |\r\n| faraday | 0.12.1 |\r\n| unf_ext | 0.0.7.4 |\r\n| unf | 0.1.4 |\r\n| domain_name | 0.5.20170404 |\r\n| http-cookie | 1.0.3 |\r\n| faraday-cookie_jar | 0.0.6 |\r\n| fastimage | 2.1.0 |\r\n| gh_inspector | 1.0.3 |\r\n| json | 1.8.1 |\r\n| mini_magick | 4.5.1 |\r\n| multi_json | 1.12.1 |\r\n| multi_xml | 0.6.0 |\r\n| rubyzip | 1.2.1 |\r\n| security | 0.1.3 |\r\n| xcpretty-travis-formatter | 0.0.4 |\r\n| dotenv | 2.2.0 |\r\n| bundler | 1.14.6 |\r\n| faraday_middleware | 0.11.0.1 |\r\n| uber | 0.0.15 |\r\n| declarative | 0.0.10 |\r\n| declarative-option | 0.1.0 |\r\n| representable | 3.0.4 |\r\n| retriable | 2.1.0 |\r\n| mime-types-data | 3.2016.0521 |\r\n| mime-types | 3.1 |\r\n| little-plugger | 1.1.4 |\r\n| logging | 2.2.2 |\r\n| jwt | 1.5.6 |\r\n| memoist | 0.15.0 |\r\n| os | 0.9.6 |\r\n| signet | 0.7.3 |\r\n| googleauth | 0.5.1 |\r\n| httpclient | 2.8.3 |\r\n| google-api-client | 0.13.6 |\r\n
\r\n\r\n\r\n*generated on:* **2017-10-11**\r\n
\r\n\r\n\r\n````\r\n❯❯❯ fastlane match appstore\r\n[10:42:40]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\n[10:42:43]: Successfully loaded '/Users/josh/git/mobile/XXXXXXXXXXX/fastlane/Matchfile' 📄\r\n\r\n+----------------+--------------------------------------+\r\n| Detected Values from './fastlane/Matchfile' |\r\n+----------------+--------------------------------------+\r\n| git_url | git@XXXXXXXXXXX:mobile/ios |\r\n| | -certificates.git |\r\n| type | development |\r\n| app_identifier | XXXXXXXXXXX |\r\n| username | XXXXXXXXXXX |\r\n+----------------+--------------------------------------+\r\n\r\n\r\n+-----------------------+--------------------------------------+\r\n| Summary for match 2.61.0 |\r\n+-----------------------+--------------------------------------+\r\n| git_url | git@XXXXXXXXXXX:mobile/ios |\r\n| | -certificates.git |\r\n| type | appstore |\r\n| app_identifier |XXXXXXXXXXX |\r\n| username | XXXXXXXXXXX |\r\n| git_branch | master |\r\n| keychain_name | login.keychain |\r\n| readonly | false |\r\n| team_id | XXXXXXXXXXX |\r\n| verbose | false |\r\n| force | false |\r\n| skip_confirmation | false |\r\n| shallow_clone | false |\r\n| clone_branch_directly | false |\r\n| force_for_new_devices | false |\r\n| skip_docs | false |\r\n| platform | ios |\r\n+-----------------------+--------------------------------------+\r\n[10:42:43]: Cloning remote git repo...\r\n[10:42:43]: If cloning the repo takes too long, you can use the `clone_branch_directly` option in match.\r\n[10:42:44]: 🔓 Successfully decrypted certificates repo\r\n[10:42:44]: Verifying that the certificate and profile are still valid on the Dev Portal...\r\n[10:42:46]: Couldn't find a valid code signing identity in the git repo for distribution... creating one for you now\r\n\r\n+---------------+--------------------------------------+\r\n| Summary for cert 2.61.0 |\r\n+---------------+--------------------------------------+\r\n| development | false |\r\n| force | true |\r\n| username | XXXXXXXXXXX |\r\n| team_id | XXXXXXXXXXX |\r\n| keychain_path | /Users/josh/Library/Keychains/login |\r\n| | .keychain-db |\r\n| platform | ios |\r\n+---------------+--------------------------------------+\r\n\r\n[10:42:46]: Starting login with user 'XXXXXXXXXXX'\r\n[10:42:47]: Successfully logged in\r\n\r\nLooking for related GitHub issues on fastlane/fastlane...\r\n\r\n➡️ Match can't find certificate in repo if run again.\r\n https://github.com/fastlane/fastlane/issues/10489 [open] 22 💬\r\n 3 hours ago\r\n\r\n➡️ [match] Ignoring file when decrypting certificates repo\r\n https://github.com/fastlane/fastlane/issues/9400 [closed] 5 💬\r\n 5 weeks ago\r\n\r\n➡️ How can I use 'match' to upload my existing distribution cert/key instead of creating a new one on portal?\r\n https://github.com/fastlane/fastlane/issues/8873 [closed] 3 💬\r\n 4 weeks ago\r\n\r\nand 16 more at: https://github.com/fastlane/fastlane/search?q=Could%20not%20create%20another%20Distribution%20certificate,%20reached%20the%20maximum%20number%20of%20available%20Distribution%20certificates.&type=Issues&utf8=✓\r\n\r\n🔗 You can ⌘ + double-click on links to open them directly in your browser.\r\n\r\n[!] Could not create another Distribution certificate, reached the maximum number of available Distribution certificates.\r\n\r\n````","createdAt":"2017-10-11T14:45:13Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNTgzNTAzNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"joshstrange","avatarUrl":"https://avatars0.githubusercontent.com/u/462796?v=4"},"editor":null,"lastEditedAt":null,"body":"I apologize, my issue must have been something different. I nuked my distribution certs and then it started working.","createdAt":"2017-10-11T15:51:16Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDMzNTg1NzAyMQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fastlane-bot","avatarUrl":"https://avatars0.githubusercontent.com/u/17056452?v=4"},"editor":null,"lastEditedAt":null,"body":"There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.\n\nPlease make sure to update to the latest `fastlane` version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:","createdAt":"2017-11-25T16:01:08Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0Njk0OTIxMA=="},{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"fastlane-bot"},"label":{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"},"createdAt":"2017-11-25T16:01:08Z","id":"MDEyOkxhYmVsZWRFdmVudDEzNTc4NzAwODM="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"gorbat-o","avatarUrl":"https://avatars1.githubusercontent.com/u/7542553?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey guys\r\nStill the problem with the last version 2.68.0 of cert","createdAt":"2017-12-01T11:23:46Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[{"__typename":"User","login":"nbomberger"},{"__typename":"User","login":"rogerkerse"},{"__typename":"User","login":"eldafito"}],"totalCount":4},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0ODQ3MTAzNA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"ohayon","avatarUrl":"https://avatars3.githubusercontent.com/u/2587018?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @gorbat-o, apologies that you are still having this issue. Would you mind sharing the output of your command line when you run your _fastlane_ command with `--verbose` so that we can see the whole context? Thanks! 🐙 ","createdAt":"2017-12-04T15:44:57Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM0OTAwMTUwMA=="},{"__typename":"UnlabeledEvent","actor":{"__typename":"User","login":"fastlane-bot"},"label":{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"},"createdAt":"2017-12-13T15:50:33Z","id":"MDE0OlVubGFiZWxlZEV2ZW50MTM4NTkwMTU2NA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fastlane-bot","avatarUrl":"https://avatars0.githubusercontent.com/u/17056452?v=4"},"editor":null,"lastEditedAt":null,"body":"There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates.\n\nPlease make sure to update to the latest `fastlane` version and check if that solves the issue. Let us know if that works for you by adding a comment :+1:","createdAt":"2018-01-27T15:52:22Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk5MzY2Mw=="},{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"fastlane-bot"},"label":{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"},"createdAt":"2018-01-27T15:52:23Z","id":"MDEyOkxhYmVsZWRFdmVudDE0NDQ4NTQyNzc="}]},"milestone":null,"number":10489,"title":"Match can't find certificate in repo if run again.","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"ededed","name":"status: waiting-for-reply"},{"__typename":"Label","color":"fad8c7","name":"tool: match"},{"__typename":"Label","color":"fc2929","name":"type: bug"}]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"DDRBoxman","avatarUrl":"https://avatars0.githubusercontent.com/u/207897?v=4"},"editor":null,"lastEditedAt":null,"body":"### New Issue Checklist\r\n\r\n- [x ] Updated fastlane to the latest version\r\n- [ x] I read the [Contribution Guidelines](https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md)\r\n- [ x] I read [docs.fastlane.tools](https://docs.fastlane.tools)\r\n- [ x] I searched for [existing GitHub issues](https://github.com/fastlane/fastlane/issues)\r\n\r\n### Issue Description\r\n\r\nI can run fastlane match development and it will generate and upload certificates to the repo. But if I run it again I get `Couldn't find a valid code signing identity in the git repo for development.`\r\n\r\n##### Complete output when running fastlane, including the stack trace and command used\r\n> You can use: `--capture_output` as the last commandline argument to get that collected for you\r\n\r\n```\r\nfastlane match development\r\n[14:38:06]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\n[14:38:08]: Successfully loaded '/Users/ddrboxman/Development/swiftstar/iOS-Driver-new/fastlane/Matchfile' 📄\r\n\r\n+---------+--------------------------------------+\r\n| Detected Values from './fastlane/Matchfile' |\r\n+---------+--------------------------------------+\r\n| git_url | git@github.com:swiftstario/certific |\r\n| | ates.git |\r\n| type | development |\r\n+---------+--------------------------------------+\r\n\r\n\r\n+-----------------------+--------------------------------------+\r\n| Summary for match 2.60.0 |\r\n+-----------------------+--------------------------------------+\r\n| git_url | git@github.com:swiftstario/certific |\r\n| | ates.git |\r\n| type | development |\r\n| git_branch | master |\r\n| app_identifier | io.swiftstar.swiftstardriver |\r\n| username | ddrboxman@gmail.com |\r\n| keychain_name | login.keychain |\r\n| readonly | false |\r\n| team_id | X9U7EAVQ73 |\r\n| verbose | false |\r\n| force | false |\r\n| skip_confirmation | false |\r\n| shallow_clone | false |\r\n| clone_branch_directly | false |\r\n| force_for_new_devices | false |\r\n| skip_docs | false |\r\n| platform | ios |\r\n+-----------------------+--------------------------------------+\r\n\r\n[14:38:08]: Cloning remote git repo...\r\n[14:38:08]: If cloning the repo takes too long, you can use the `clone_branch_directly` option in match.\r\n[14:38:09]: 🔓 Successfully decrypted certificates repo\r\n[14:38:09]: Verifying that the certificate and profile are still valid on the Dev Portal...\r\n[14:38:11]: Couldn't find a valid code signing identity in the git repo for development... creating one for you now\r\n\r\n+---------------+--------------------------------------+\r\n| Summary for cert 2.60.0 |\r\n+---------------+--------------------------------------+\r\n| development | true |\r\n| force | true |\r\n| username | ddrboxman@gmail.com |\r\n| team_id | X9U7EAVQ73 |\r\n| keychain_path | /Users/ddrboxman/Library/Keychains/ |\r\n| | login.keychain-db |\r\n| platform | ios |\r\n+---------------+--------------------------------------+\r\n\r\n[14:38:11]: Starting login with user 'ddrboxman@gmail.com'\r\n[14:38:12]: Successfully logged in\r\n\r\nLooking for related GitHub issues on fastlane/fastlane...\r\n\r\n➡️ match failed in development\r\n https://github.com/fastlane/fastlane/issues/9215 [closed] 8 💬\r\n a week ago\r\n\r\n➡️ [match] Ignoring file when decrypting certificates repo\r\n https://github.com/fastlane/fastlane/issues/9400 [closed] 5 💬\r\n 4 weeks ago\r\n\r\n➡️ Using Match with already existing profiles and certificates\r\n https://github.com/fastlane/fastlane/issues/8591 [closed] 9 💬\r\n 07 Jul 2017\r\n\r\nand 20 more at: https://github.com/fastlane/fastlane/search?q=Could%20not%20create%20another%20Development%20certificate,%20reached%20the%20maximum%20number%20of%20available%20Development%20certificates.&type=Issues&utf8=✓\r\n\r\n🔗 You can ⌘ + double-click on links to open them directly in your browser.\r\n\r\n[!] Could not create another Development certificate, reached the maximum number of available Development certificates. \r\n```\r\n\r\n### Environment\r\n\r\nPlease run `fastlane env` and copy the output below. This will help us help you :+1:\r\nIf you used `--capture_output` option please remove this block - as it is already included there.\r\n\r\n
✅ fastlane environment ✅\r\n\r\n### Stack\r\n\r\n| Key | Value |\r\n| --------------------------- | ------------------------------------------- |\r\n| OS | 10.12.6 |\r\n| Ruby | 2.2.4 |\r\n| Bundler? | false |\r\n| Git | git version 2.11.0 |\r\n| Installation Source | ~/.fastlane/bin/bundle/bin/fastlane |\r\n| Host | Mac OS X 10.12.6 (16G29) |\r\n| Ruby Lib Dir | ~/.fastlane/bin/bundle/lib |\r\n| OpenSSL Version | OpenSSL 1.0.2g 1 Mar 2016 |\r\n| Is contained | false |\r\n| Is homebrew | true |\r\n| Is installed via Fabric.app | false |\r\n| Xcode Path | /Applications/Xcode.app/Contents/Developer/ |\r\n| Xcode Version | 9.0 |\r\n\r\n\r\n### System Locale\r\n\r\n| Variable | Value | |\r\n| -------- | ----------- | - |\r\n| LANG | en_US.UTF-8 | ✅ |\r\n| LC_ALL | en_US.UTF-8 | ✅ |\r\n| LANGUAGE | en_US.UTF-8 | ✅ |\r\n\r\n\r\n### fastlane files:\r\n\r\n
`./fastlane/Fastfile`\r\n\r\n```ruby\r\n# Customise this file, documentation can be found here:\r\n# https://docs.fastlane.tools/actions/\r\n# All available actions: https://docs.fastlane.tools/actions\r\n# can also be listed using the `fastlane actions` command\r\n\r\n# Change the syntax highlighting to Ruby\r\n# All lines starting with a # are ignored when running `fastlane`\r\n\r\n# If you want to automatically update fastlane if a new version is available:\r\n# update_fastlane\r\n\r\n# This is the minimum version number required.\r\n# Update this, if you use features of a newer version\r\nfastlane_version \"2.60.0\"\r\n\r\ndefault_platform :ios\r\n\r\nplatform :ios do\r\n before_all do\r\n # ENV[\"SLACK_URL\"] = \"https://hooks.slack.com/services/...\"\r\n cocoapods\r\n # carthage\r\n end\r\n\r\n desc \"Runs all the tests\"\r\n lane :test do\r\n scan\r\n end\r\n\r\n desc \"Submit a new Beta Build to Apple TestFlight\"\r\n desc \"This will also make sure the profile is up to date\"\r\n lane :beta do\r\n # match(type: \"appstore\") # more information: https://codesigning.guide\r\n gym(scheme: \"SwiftstarDriver\") # Build your app - more options available\r\n pilot\r\n\r\n # sh \"your_script.sh\"\r\n # You can also use other beta testing services here (run `fastlane actions`)\r\n end\r\n\r\n desc \"Deploy a new version to the App Store\"\r\n lane :release do\r\n # match(type: \"appstore\")\r\n # snapshot\r\n gym(scheme: \"SwiftstarDriver\") # Build your app - more options available\r\n deliver(force: true)\r\n # frameit\r\n end\r\n\r\n # You can define as many lanes as you want\r\n\r\n after_all do |lane|\r\n # This block is called, only if the executed lane was successful\r\n\r\n # slack(\r\n # message: \"Successfully deployed new App Update.\"\r\n # )\r\n end\r\n\r\n error do |lane, exception|\r\n # slack(\r\n # message: exception.message,\r\n # success: false\r\n # )\r\n end\r\nend\r\n\r\n\r\n# More information about multiple platforms in fastlane: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md\r\n# All available actions: https://docs.fastlane.tools/actions\r\n\r\n# fastlane reports which actions are used. No personal data is recorded. \r\n# Learn more at https://github.com/fastlane/fastlane#metrics\r\n\r\n```\r\n
\r\n\r\n
`./fastlane/Appfile`\r\n\r\n```ruby\r\napp_identifier \"io.swiftstar.swiftstardriver\" # The bundle identifier of your app\r\napple_id \"ddrboxman@gmail.com\" # Your Apple email address\r\n\r\nteam_id \"X9U7EAVQ73\" # Developer Portal Team ID\r\n\r\n# you can even provide different app identifiers, Apple IDs and team names per lane:\r\n# More information: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Appfile.md\r\n\r\n```\r\n
\r\n\r\n### fastlane gems\r\n\r\n| Gem | Version | Update-Status |\r\n| -------- | ------- | ------------- |\r\n| fastlane | 2.60.0 | ✅ Up-To-Date |\r\n\r\n\r\n### Loaded fastlane plugins:\r\n\r\n**No plugins Loaded**\r\n\r\n\r\n
Loaded gems\r\n\r\n| Gem | Version |\r\n| ------------------------- | ------------ |\r\n| slack-notifier | 1.5.1 |\r\n| CFPropertyList | 2.3.5 |\r\n| claide | 1.0.2 |\r\n| colored2 | 3.1.2 |\r\n| nanaimo | 0.2.3 |\r\n| xcodeproj | 1.5.2 |\r\n| rouge | 1.11.1 |\r\n| xcpretty | 0.2.6 |\r\n| terminal-notifier | 1.7.1 |\r\n| unicode-display_width | 1.1.3 |\r\n| terminal-table | 1.7.3 |\r\n| plist | 3.2.0 |\r\n| public_suffix | 2.0.5 |\r\n| addressable | 2.5.1 |\r\n| multipart-post | 2.0.0 |\r\n| word_wrap | 1.0.0 |\r\n| tty-screen | 0.5.0 |\r\n| babosa | 1.0.2 |\r\n| colored | 1.2 |\r\n| highline | 1.7.8 |\r\n| commander-fastlane | 4.4.5 |\r\n| excon | 0.55.0 |\r\n| faraday | 0.12.1 |\r\n| unf_ext | 0.0.7.4 |\r\n| unf | 0.1.4 |\r\n| domain_name | 0.5.20170404 |\r\n| http-cookie | 1.0.3 |\r\n| faraday-cookie_jar | 0.0.6 |\r\n| fastimage | 2.1.0 |\r\n| gh_inspector | 1.0.3 |\r\n| json | 1.8.1 |\r\n| mini_magick | 4.5.1 |\r\n| multi_json | 1.12.1 |\r\n| multi_xml | 0.6.0 |\r\n| rubyzip | 1.2.1 |\r\n| security | 0.1.3 |\r\n| xcpretty-travis-formatter | 0.0.4 |\r\n| dotenv | 2.2.0 |\r\n| bundler | 1.14.6 |\r\n| faraday_middleware | 0.11.0.1 |\r\n| uber | 0.0.15 |\r\n| declarative | 0.0.10 |\r\n| declarative-option | 0.1.0 |\r\n| representable | 3.0.4 |\r\n| retriable | 2.1.0 |\r\n| mime-types-data | 3.2016.0521 |\r\n| mime-types | 3.1 |\r\n| little-plugger | 1.1.4 |\r\n| logging | 2.2.2 |\r\n| jwt | 1.5.6 |\r\n| memoist | 0.15.0 |\r\n| os | 0.9.6 |\r\n| signet | 0.7.3 |\r\n| googleauth | 0.5.1 |\r\n| httpclient | 2.8.3 |\r\n| google-api-client | 0.13.6 |\r\n
\r\n\r\n\r\n*generated on:* **2017-10-03**\r\n
\r\n","createdAt":"2017-10-03T19:39:26Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyNjI1NTk0MjM="}}}} \ No newline at end of file diff --git a/records/2c9335a5d3bb1a443ec66cb8f4137fcf b/records/2c9335a5d3bb1a443ec66cb8f4137fcf deleted file mode 100644 index 9a1d5ac8..00000000 --- a/records/2c9335a5d3bb1a443ec66cb8f4137fcf +++ /dev/null @@ -1 +0,0 @@ -{"status":"good","last_updated":"2018-01-22T18:36:22Z"} \ No newline at end of file diff --git a/records/381b095aea2443be261923166bea16d0 b/records/381b095aea2443be261923166bea16d0 deleted file mode 100644 index 13e6d654..00000000 --- a/records/381b095aea2443be261923166bea16d0 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"vapor","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/4560?v=4","login":"natebird"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/14161?v=4","login":"ts"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/23756?v=4","login":"mjmsmith"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/32922?v=4","login":"eneko"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/42901?v=4","login":"shnhrrsn"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/65520?v=4","login":"feinstruktur"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/71363?v=4","login":"mz2"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/81575?v=4","login":"sroebert"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/135608?v=4","login":"coryalder"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/143758?v=4","login":"sarbogast"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/147804?v=4","login":"mcfunley"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/165031?v=4","login":"jkubicek"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/178181?v=4","login":"ksmandersen"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/179868?v=4","login":"rugaard"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/213169?v=4","login":"tnantoka"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/222271?v=4","login":"haikusw"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/241156?v=4","login":"a2"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/305211?v=4","login":"Pearapps"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/351683?v=4","login":"barrault01"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/395836?v=4","login":"kgn"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"PullRequest","timeline":{"__typename":"PullRequestTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"Commit","author":{"__typename":"GitActor","user":{"__typename":"User","login":"gwynne","avatarUrl":"https://avatars3.githubusercontent.com/u/1130717?v=4"}},"oid":"cbb8a2737b6e8451255c5ac43ba6b69aee8b763c","messageHeadline":"Make the fields of `Proxy` readable outside of Vapor itself.","id":"MDY6Q29tbWl0NDk5MTAwOTU6Y2JiOGEyNzM3YjZlODQ1MTI1NWM1YWM0M2JhNmI2OWFlZThiNzYzYw=="},{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"gwynne"},"label":{"__typename":"Label","color":"fc2929","name":"bug"},"createdAt":"2018-01-27T13:16:17Z","id":"MDEyOkxhYmVsZWRFdmVudDE0NDQ4MTE4NjA="},{"__typename":"MilestonedEvent","createdAt":"2018-01-27T13:16:17Z","actor":{"__typename":"User","login":"gwynne"},"milestoneTitle":"2.4.3","id":"MDE1Ok1pbGVzdG9uZWRFdmVudDE0NDQ4MTE4NjE="}]},"reviewRequests":{"__typename":"ReviewRequestConnection","nodes":[]},"milestone":{"__typename":"Milestone","number":59,"title":"2.4.3","url":"https://github.com/vapor/vapor/milestone/59","dueOn":null,"openCount":{"__typename":"IssueConnection","totalCount":0},"totalCount":{"__typename":"IssueConnection","totalCount":0}},"number":1462,"title":"Make the fields of `Proxy` readable outside of Vapor itself.","merged":false,"changedFiles":1,"additions":3,"deletions":3,"assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"fc2929","name":"bug"}]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"gwynne","avatarUrl":"https://avatars3.githubusercontent.com/u/1130717?v=4"},"editor":null,"lastEditedAt":null,"body":"Vapor 2's `Proxy` structure is useful for storing proxy server information (amazing, isn't it?), but its fields have no access modifier, defaulting to `internal`, making it useless to anything other than the built-in `Client`s despite the struct itself being `public`. This PR makes the fields public as well so the structure can be reused - in particular, this enables apps to read the proxy settings from `Config/client.json` without rewriting the code already present in `ClientFactory`.\r\n\r\nCategorized as a bug because the current state does not appear to be the intended functionality.","createdAt":"2018-01-27T13:16:17Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDExOlB1bGxSZXF1ZXN0MTY1NTE3NTk1"}}}} \ No newline at end of file diff --git a/records/577770565104c2fb87a509d4c740c0cf b/records/577770565104c2fb87a509d4c740c0cf deleted file mode 100644 index bf07d094..00000000 --- a/records/577770565104c2fb87a509d4c740c0cf +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"iina","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/75213?v=4","login":"sevenfourk"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/120057?v=4","login":"metacosm"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/708277?v=4","login":"droid-Q"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/861659?v=4","login":"HarukaMa"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1141722?v=4","login":"superzazu"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1356659?v=4","login":"Andeling"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2270433?v=4","login":"LeoNatan"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2375962?v=4","login":"inflation"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3105373?v=4","login":"xu-cheng"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/3475083?v=4","login":"pNre"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3591338?v=4","login":"braineo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/4042863?v=4","login":"J-rg"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/4348897?v=4","login":"vit9696"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/4469383?v=4","login":"LEOYoon-Tsaw"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/5009493?v=4","login":"jwells89"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/5242016?v=4","login":"dreness"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/5794213?v=4","login":"cgand"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/6215387?v=4","login":"DrabWeb"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/7279067?v=4","login":"neesonqk"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7720052?v=4","login":"urmyfaith"}]},"defaultBranchRef":{"__typename":"Ref","name":"develop"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lhc70000","avatarUrl":"https://avatars3.githubusercontent.com/u/8478049?v=4"},"editor":{"__typename":"User","login":"lhc70000"},"lastEditedAt":"2018-01-27T12:20:59Z","body":"添加音频滤镜 `loudnorm` 试试(自定义 FFmpeg 滤镜里)?","createdAt":"2018-01-27T12:20:37Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MTIzMg=="},{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"lhc70000"},"label":{"__typename":"Label","color":"874190","name":"type: question"},"createdAt":"2018-01-27T12:20:43Z","id":"MDEyOkxhYmVsZWRFdmVudDE0NDQ3OTgxMjA="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"@lhc70000 让填写滤镜名和滤镜字符串。","createdAt":"2018-01-27T12:26:41Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MTUxNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lhc70000","avatarUrl":"https://avatars3.githubusercontent.com/u/8478049?v=4"},"editor":null,"lastEditedAt":null,"body":"@cv0cv0 滤镜名 `loudnorm`,字符串为空","createdAt":"2018-01-27T12:27:23Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MTU1MA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"@lhc70000 请检查你的参数格式。","createdAt":"2018-01-27T12:28:26Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MTYwNg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lhc70000","avatarUrl":"https://avatars3.githubusercontent.com/u/8478049?v=4"},"editor":null,"lastEditedAt":null,"body":"我发现这个 bug 还没修……估计没人试着加过音频滤镜……\r\n\r\n感谢提醒。","createdAt":"2018-01-27T12:35:51Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MjA0Nw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lhc70000","avatarUrl":"https://avatars3.githubusercontent.com/u/8478049?v=4"},"editor":null,"lastEditedAt":null,"body":"@cv0cv0 请问你可以上 Google Drive 么?平常使用什么文件分享工具?","createdAt":"2018-01-27T13:05:07Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4MzY1MA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"@lhc70000 可以。","createdAt":"2018-01-27T13:08:59Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4Mzg3Nw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"lhc70000","avatarUrl":"https://avatars3.githubusercontent.com/u/8478049?v=4"},"editor":null,"lastEditedAt":null,"body":"@cv0cv0 这个 build 应该可以了。\n\nhttps://drive.google.com/file/d/1bEW4CDwIkJ4N2tyGrF_jyuw3rMfMp9Gk/view?usp=sharing","createdAt":"2018-01-27T13:13:05Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4NDEzNw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"@lhc70000 Thank you.","createdAt":"2018-01-27T13:16:01Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4NDI2OQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"@lhc70000 可以了,并且生效了。非常感谢。","createdAt":"2018-01-27T13:25:08Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4NDc2Nw=="},{"__typename":"ClosedEvent","closedCommit":null,"actor":{"__typename":"User","login":"cv0cv0"},"createdAt":"2018-01-27T13:34:26Z","id":"MDExOkNsb3NlZEV2ZW50MTQ0NDgxNjQzMA=="}]},"milestone":null,"number":1428,"title":"怎么设置音频规格化?","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"874190","name":"type: question"}]},"closed":true,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"cv0cv0","avatarUrl":"https://avatars3.githubusercontent.com/u/18623780?v=4"},"editor":null,"lastEditedAt":null,"body":"看电影要么声音太小,要么太大。一惊一乍。potplayer这个功能默认是开启的。IINA找了一圈没找到在哪设置。","createdAt":"2018-01-27T12:19:17Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyOTIxMTYyNTE="}}}} \ No newline at end of file diff --git a/records/88c2c90accda043b581479a504239997 b/records/88c2c90accda043b581479a504239997 deleted file mode 100644 index b5507128..00000000 --- a/records/88c2c90accda043b581479a504239997 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"iina","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/75213?v=4","login":"sevenfourk"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/120057?v=4","login":"metacosm"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/708277?v=4","login":"droid-Q"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/861659?v=4","login":"HarukaMa"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1141722?v=4","login":"superzazu"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1356659?v=4","login":"Andeling"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2270433?v=4","login":"LeoNatan"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2375962?v=4","login":"inflation"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3105373?v=4","login":"xu-cheng"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/3475083?v=4","login":"pNre"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3591338?v=4","login":"braineo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/4042863?v=4","login":"J-rg"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/4348897?v=4","login":"vit9696"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/4469383?v=4","login":"LEOYoon-Tsaw"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/5009493?v=4","login":"jwells89"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/5242016?v=4","login":"dreness"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/5794213?v=4","login":"cgand"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/6215387?v=4","login":"DrabWeb"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/7279067?v=4","login":"neesonqk"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7720052?v=4","login":"urmyfaith"}]},"defaultBranchRef":{"__typename":"Ref","name":"develop"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":null},"nodes":[]},"milestone":null,"number":1429,"title":"(snow) crash","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"jerkstore369","avatarUrl":"https://avatars1.githubusercontent.com/u/33273805?v=4"},"editor":null,"lastEditedAt":null,"body":"https://pastebin.com/r1N6Lyc8\r\n\r\nI had a video paused for a while, minimized. Closed the macbook lid, next day, open it and I see iina has quit unexpectedly. Thanks.","createdAt":"2018-01-27T15:38:45Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyOTIxMjk1NzU="}}}} \ No newline at end of file diff --git a/records/9d202cba38591eca6ed2c34e2f4d08e3 b/records/9d202cba38591eca6ed2c34e2f4d08e3 deleted file mode 100644 index eaa9f767..00000000 --- a/records/9d202cba38591eca6ed2c34e2f4d08e3 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"fastlane","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/258?v=4","login":"kommen"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/474?v=4","login":"cbowns"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1060?v=4","login":"andrew"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1614?v=4","login":"brad"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2154?v=4","login":"bfolkens"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/2436?v=4","login":"DraXus"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2567?v=4","login":"tmm1"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/3312?v=4","login":"snatchev"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3500?v=4","login":"hotchpotch"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/5903?v=4","login":"benhanzl"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7315?v=4","login":"corymsmith"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/8459?v=4","login":"cpunion"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/13192?v=4","login":"reidab"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13697?v=4","login":"tcurdt"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13887?v=4","login":"jonklo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/14098?v=4","login":"svanzoest"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/14120?v=4","login":"carlosefonseca"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/15749?v=4","login":"danramteke"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/15887?v=4","login":"dataich"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/17814?v=4","login":"icyleaf"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fastlane-bot","avatarUrl":"https://avatars0.githubusercontent.com/u/17056452?v=4"},"editor":null,"lastEditedAt":null,"body":"It seems like you have not included the output of `fastlane env`\n\nTo make it easier for us help you resolve this issue, please update the issue to include the output of `fastlane env` :+1:","createdAt":"2018-01-27T01:20:08Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk0NzY5NQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"crakrause","avatarUrl":"https://avatars2.githubusercontent.com/u/35856101?v=4"},"editor":null,"lastEditedAt":null,"body":"SOLVED\r\nIssue can be closed.\r\n\r\nIt seems that a \"fastlane\" parent folder is required. If the path is \"fastlane/actions/..\" everything works!","createdAt":"2018-01-27T15:36:26Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk5MjY0MQ=="}]},"milestone":null,"number":11715,"title":"custom action is not not available after creation","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"crakrause","avatarUrl":"https://avatars2.githubusercontent.com/u/35856101?v=4"},"editor":{"__typename":"User","login":"crakrause"},"lastEditedAt":"2018-01-27T01:13:20Z","body":"\r\n\r\n### New Issue Checklist\r\n\r\n- [x] Updated fastlane to the latest version\r\n- [x] I read the [Contribution Guidelines](https://github.com/fastlane/fastlane/blob/master/CONTRIBUTING.md)\r\n- [x] I read [docs.fastlane.tools](https://docs.fastlane.tools)\r\n- [x] I searched for [existing GitHub issues](https://github.com/fastlane/fastlane/issues)\r\n\r\n### Issue Description\r\n\r\nAfter creation of a custom action with \"fastlane new_action\" the action folder and file is generated.\r\nIf i'm right it should be possibile to call the action from the same directory with \"fastlane run [new_action_name]\". In the output you can see that the action \"is not available\".\r\n\r\n##### OUTPUT\r\n\r\n```\r\n[root@localhost my_folder]# fastlane new_action\r\n[✔] 🚀\r\n[02:03:12]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\nMust be lower case, and use a '_' between words. Do not use '.'\r\nexamples: 'testflight', 'upload_to_s3'\r\n[02:03:12]: Name of your action: my_test_action\r\n[02:03:26]: Created new action file '/tmp/my_folder/actions/my_test_action.rb'. Edit it to implement your custom action.\r\n[root@localhost my_folder]# ls\r\nactions\r\n[root@localhost my_folder]# fastlane run my_test_action\r\n[✔] 🚀\r\n[02:03:36]: Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile\r\n\r\n[!] Action 'my_test_action' not available, run `fastlane actions` to get a full list\r\n```\r\n\r\n### Environment\r\n\r\n\r\n### fastlane gems\r\n\r\n| Gem | Version | Update-Status |\r\n| -------- | ------- | ------------- |\r\n| fastlane | 2.78.0 | ✅ Up-To-Date |\r\n\r\n| Gem | Version |\r\n| ------------------------- | ------------ |\r\n| executable-hooks | 1.3.2 |\r\n| bundler-unload | 1.0.2 |\r\n| rubygems-bundler | 1.4.4 |\r\n| bundler | 1.14.6 |\r\n| io-console | 0.4.3 |\r\n| slack-notifier | 2.3.2 |\r\n| CFPropertyList | 2.3.6 |\r\n| claide | 1.0.2 |\r\n| colored2 | 3.1.2 |\r\n| nanaimo | 0.2.3 |\r\n| xcodeproj | 1.5.4 |\r\n| rouge | 2.0.7 |\r\n| xcpretty | 0.2.8 |\r\n| terminal-notifier | 1.8.0 |\r\n| unicode-display_width | 1.3.0 |\r\n| terminal-table | 1.8.0 |\r\n| plist | 3.4.0 |\r\n| public_suffix | 2.0.5 |\r\n| addressable | 2.5.2 |\r\n| multipart-post | 2.0.0 |\r\n| word_wrap | 1.0.0 |\r\n| tty-screen | 0.6.4 |\r\n| tty-cursor | 0.5.0 |\r\n| tty-spinner | 0.8.0 |\r\n| babosa | 1.0.2 |\r\n| colored | 1.2 |\r\n| highline | 1.7.10 |\r\n| commander-fastlane | 4.4.5 |\r\n| excon | 0.60.0 |\r\n| unf_ext | 0.0.7.4 |\r\n| unf | 0.1.4 |\r\n| domain_name | 0.5.20170404 |\r\n| http-cookie | 1.0.3 |\r\n| faraday-cookie_jar | 0.0.6 |\r\n| fastimage | 2.1.1 |\r\n| gh_inspector | 1.0.3 |\r\n| mini_magick | 4.5.1 |\r\n| multi_xml | 0.6.0 |\r\n| rubyzip | 1.2.1 |\r\n| security | 0.1.3 |\r\n| xcpretty-travis-formatter | 1.0.0 |\r\n| dotenv | 2.2.1 |\r\n| faraday_middleware | 0.12.2 |\r\n| uber | 0.1.0 |\r\n| declarative | 0.0.10 |\r\n| declarative-option | 0.1.0 |\r\n| representable | 3.0.4 |\r\n| retriable | 3.1.1 |\r\n| mime-types-data | 3.2016.0521 |\r\n| mime-types | 3.1 |\r\n| little-plugger | 1.1.4 |\r\n| logging | 2.2.2 |\r\n| jwt | 2.1.0 |\r\n| memoist | 0.16.0 |\r\n| os | 0.9.6 |\r\n| signet | 0.8.1 |\r\n| googleauth | 0.6.2 |\r\n| httpclient | 2.8.3 |\r\n| google-api-client | 0.13.6 |\r\n| faraday | 0.14.0 |\r\n| json | 2.1.0 |\r\n\r\n","createdAt":"2018-01-27T01:13:10Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyOTIwNzYyNTA="}}}} \ No newline at end of file diff --git a/records/api/github/com/graphql/05f9b70e4825bd2a3c06249a36f90021 b/records/api/github/com/graphql/05f9b70e4825bd2a3c06249a36f90021 new file mode 100644 index 00000000..b2ca6329 Binary files /dev/null and b/records/api/github/com/graphql/05f9b70e4825bd2a3c06249a36f90021 differ diff --git a/records/api/github/com/graphql/276aa15414151a4d7b693bc479b26374 b/records/api/github/com/graphql/276aa15414151a4d7b693bc479b26374 new file mode 100644 index 00000000..6ec9ce1d Binary files /dev/null and b/records/api/github/com/graphql/276aa15414151a4d7b693bc479b26374 differ diff --git a/records/api/github/com/graphql/472b78dfa60f0b8c8fb3ee42224ebb60 b/records/api/github/com/graphql/472b78dfa60f0b8c8fb3ee42224ebb60 new file mode 100644 index 00000000..a02cff45 Binary files /dev/null and b/records/api/github/com/graphql/472b78dfa60f0b8c8fb3ee42224ebb60 differ diff --git a/records/api/github/com/graphql/607397559b7de2bb03eef38e9482be64 b/records/api/github/com/graphql/607397559b7de2bb03eef38e9482be64 new file mode 100644 index 00000000..994353be Binary files /dev/null and b/records/api/github/com/graphql/607397559b7de2bb03eef38e9482be64 differ diff --git a/records/api/github/com/graphql/6fb97e99c441454aace8ea8016ac2796 b/records/api/github/com/graphql/6fb97e99c441454aace8ea8016ac2796 new file mode 100644 index 00000000..740a304e Binary files /dev/null and b/records/api/github/com/graphql/6fb97e99c441454aace8ea8016ac2796 differ diff --git a/records/api/github/com/graphql/78995b13f45b2360a492364ac2e309c4 b/records/api/github/com/graphql/78995b13f45b2360a492364ac2e309c4 new file mode 100644 index 00000000..cb0483f7 Binary files /dev/null and b/records/api/github/com/graphql/78995b13f45b2360a492364ac2e309c4 differ diff --git a/records/api/github/com/graphql/a1810ef5c8fa9468f0db93ce0b4eb274 b/records/api/github/com/graphql/a1810ef5c8fa9468f0db93ce0b4eb274 new file mode 100644 index 00000000..fd9219e3 Binary files /dev/null and b/records/api/github/com/graphql/a1810ef5c8fa9468f0db93ce0b4eb274 differ diff --git a/records/api/github/com/graphql/b4dc689f18844a98ebf293145de5d3e1 b/records/api/github/com/graphql/b4dc689f18844a98ebf293145de5d3e1 new file mode 100644 index 00000000..ec216ed4 Binary files /dev/null and b/records/api/github/com/graphql/b4dc689f18844a98ebf293145de5d3e1 differ diff --git a/records/api/github/com/graphql/b73f2db3649bf9615b14b5f8acb71b0a b/records/api/github/com/graphql/b73f2db3649bf9615b14b5f8acb71b0a new file mode 100644 index 00000000..c95ec413 Binary files /dev/null and b/records/api/github/com/graphql/b73f2db3649bf9615b14b5f8acb71b0a differ diff --git a/records/api/github/com/graphql/c349b51fa938d9a210c4d568568dc09d b/records/api/github/com/graphql/c349b51fa938d9a210c4d568568dc09d new file mode 100644 index 00000000..c2bbcfb7 Binary files /dev/null and b/records/api/github/com/graphql/c349b51fa938d9a210c4d568568dc09d differ diff --git a/records/api/github/com/graphql/decddd7f4d6ca901e545beb347da5eb7 b/records/api/github/com/graphql/decddd7f4d6ca901e545beb347da5eb7 new file mode 100644 index 00000000..2f368ebd Binary files /dev/null and b/records/api/github/com/graphql/decddd7f4d6ca901e545beb347da5eb7 differ diff --git a/records/api/github/com/graphql/e640bbe6716bfa9367e25eb700d24a55 b/records/api/github/com/graphql/e640bbe6716bfa9367e25eb700d24a55 new file mode 100644 index 00000000..7b0d2f7a Binary files /dev/null and b/records/api/github/com/graphql/e640bbe6716bfa9367e25eb700d24a55 differ diff --git a/records/api/github/com/graphql/e802b77f5cf7ef6854370af2ce77a36d b/records/api/github/com/graphql/e802b77f5cf7ef6854370af2ce77a36d new file mode 100644 index 00000000..4e4c6984 Binary files /dev/null and b/records/api/github/com/graphql/e802b77f5cf7ef6854370af2ce77a36d differ diff --git a/records/api/github/com/notifications/all=false&page=1&participating=false&per_page=50/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/notifications/all=false&page=1&participating=false&per_page=50/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..a69a4a48 Binary files /dev/null and b/records/api/github/com/notifications/all=false&page=1&participating=false&per_page=50/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/api/github/com/repos/Instagram/IGListKit/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/repos/Instagram/IGListKit/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..4eac8d41 Binary files /dev/null and b/records/api/github/com/repos/Instagram/IGListKit/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/api/github/com/repos/TextureGroup/Texture/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/repos/TextureGroup/Texture/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..6c512bca Binary files /dev/null and b/records/api/github/com/repos/TextureGroup/Texture/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/api/github/com/repos/fastlane/fastlane/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/repos/fastlane/fastlane/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..2f3a0315 Binary files /dev/null and b/records/api/github/com/repos/fastlane/fastlane/collaborators/rnystromtest/permission/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/api/github/com/repos/rnystrom/GitHawk/readme/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/repos/rnystrom/GitHawk/readme/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..3821146e Binary files /dev/null and b/records/api/github/com/repos/rnystrom/GitHawk/readme/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/api/github/com/user/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/api/github/com/user/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..7cc3a59f Binary files /dev/null and b/records/api/github/com/user/7528035a93ee69cedb1dbddb2f0bfcc8 differ diff --git a/records/b0eecaf61d6ddca91466d0525c0684e8 b/records/b0eecaf61d6ddca91466d0525c0684e8 deleted file mode 100644 index 0e3c9927..00000000 --- a/records/b0eecaf61d6ddca91466d0525c0684e8 +++ /dev/null @@ -1 +0,0 @@ -{"login":"rnystromtest","id":28745486,"avatar_url":"https://avatars1.githubusercontent.com/u/28745486?v=4","gravatar_id":"","url":"https://api.github.com/users/rnystromtest","html_url":"https://github.com/rnystromtest","followers_url":"https://api.github.com/users/rnystromtest/followers","following_url":"https://api.github.com/users/rnystromtest/following{/other_user}","gists_url":"https://api.github.com/users/rnystromtest/gists{/gist_id}","starred_url":"https://api.github.com/users/rnystromtest/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rnystromtest/subscriptions","organizations_url":"https://api.github.com/users/rnystromtest/orgs","repos_url":"https://api.github.com/users/rnystromtest/repos","events_url":"https://api.github.com/users/rnystromtest/events{/privacy}","received_events_url":"https://api.github.com/users/rnystromtest/received_events","type":"User","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"public_repos":2,"public_gists":0,"followers":0,"following":0,"created_at":"2017-05-17T02:12:19Z","updated_at":"2018-01-23T12:42:42Z","private_gists":0,"total_private_repos":0,"owned_private_repos":0,"disk_usage":3,"collaborators":0,"two_factor_authentication":false,"plan":{"name":"free","space":976562499,"collaborators":0,"private_repos":0}} \ No newline at end of file diff --git a/records/b1bd71c7349857fbcbbf0286286d1d5f b/records/b1bd71c7349857fbcbbf0286286d1d5f deleted file mode 100644 index d84a6aa3..00000000 --- a/records/b1bd71c7349857fbcbbf0286286d1d5f +++ /dev/null @@ -1 +0,0 @@ -{"data":{"k297631233":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k282739475":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":10}}},"k263365731":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":28}}},"k297620512":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k297554276":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297604012":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":10}}},"k288244157":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":10}}},"k297609381":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k297609151":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k297606952":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k293060619":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":3}}},"k297547782":{"issueOrPullRequest":{"state":"MERGED","comments":{"totalCount":1}}},"k276967961":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297022703":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297597005":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297595651":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k297595378":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k292010271":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":5}}},"k296422598":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":8}}},"k297446074":{"issueOrPullRequest":{"state":"MERGED","comments":{"totalCount":1}}},"k243460686":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":4}}},"k245207176":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":7}}},"k272174411":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":7}}},"k295021613":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":3}}},"k283392597":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":8}}},"k297560743":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297554669":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k285054729":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":4}}},"k292388225":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":4}}},"k297449595":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297512889":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k261337046":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":12}}},"k295101301":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":3}}},"k297492985":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":1}}},"k294749174":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":6}}},"k294865401":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":9}}},"k297170830":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297206073":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k273015244":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":75}}},"k297462005":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":0}}},"k296229795":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":5}}},"k297385315":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297323053":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297271712":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k296904051":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":7}}},"k297390111":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k297178889":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":1}}},"k297410572":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k296013239":{"issueOrPullRequest":{"state":"OPEN","comments":{"totalCount":2}}},"k279174326":{"issueOrPullRequest":{"state":"CLOSED","comments":{"totalCount":11}}}}} \ No newline at end of file diff --git a/records/ca0b0068b1bf139805319867ba0d20d2 b/records/ca0b0068b1bf139805319867ba0d20d2 deleted file mode 100644 index fd294770..00000000 --- a/records/ca0b0068b1bf139805319867ba0d20d2 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"fastlane","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/258?v=4","login":"kommen"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/474?v=4","login":"cbowns"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/1060?v=4","login":"andrew"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/1614?v=4","login":"brad"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/2154?v=4","login":"bfolkens"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/2436?v=4","login":"DraXus"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/2567?v=4","login":"tmm1"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/3312?v=4","login":"snatchev"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/3500?v=4","login":"hotchpotch"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/5903?v=4","login":"benhanzl"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/7315?v=4","login":"corymsmith"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/8459?v=4","login":"cpunion"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/13192?v=4","login":"reidab"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13697?v=4","login":"tcurdt"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/13887?v=4","login":"jonklo"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/14098?v=4","login":"svanzoest"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/14120?v=4","login":"carlosefonseca"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/15749?v=4","login":"danramteke"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/15887?v=4","login":"dataich"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/17814?v=4","login":"icyleaf"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"PullRequest","timeline":{"__typename":"PullRequestTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"googlebot"},"label":{"__typename":"Label","color":"0e8a16","name":"cla: yes"},"createdAt":"2018-01-27T17:36:04Z","id":"MDEyOkxhYmVsZWRFdmVudDE0NDQ4ODc3MjQ="},{"__typename":"Commit","author":{"__typename":"GitActor","user":{"__typename":"User","login":"thii","avatarUrl":"https://avatars1.githubusercontent.com/u/4506500?v=4"}},"oid":"bd7bd019bad271631057a6ad5fd2572998758a97","messageHeadline":"Fix duplicate loading of Gymfile if there is only one Gymfile","id":"MDY6Q29tbWl0Mjc0NDI5Njc6YmQ3YmQwMTliYWQyNzE2MzEwNTdhNmFkNWZkMjU3Mjk5ODc1OGE5Nw=="}]},"reviewRequests":{"__typename":"ReviewRequestConnection","nodes":[]},"milestone":null,"number":11718,"title":"Fix duplicate loading of Gymfile","merged":false,"changedFiles":1,"additions":5,"deletions":2,"assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"0e8a16","name":"cla: yes"}]},"closed":false,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"thii","avatarUrl":"https://avatars1.githubusercontent.com/u/4506500?v=4"},"editor":{"__typename":"User","login":"thii"},"lastEditedAt":"2018-01-27T17:44:21Z","body":"`load_configuration_file` is already trying to look for Gymfile in `fastlane`, `.fastlane` and the project folders.\r\n\r\nhttps://github.com/fastlane/fastlane/blob/0c23d5e64f3c193ac013e9383551149ac6e8d88c/fastlane_core/lib/fastlane_core/configuration/configuration.rb#L163-L168\r\n\r\nhttps://github.com/fastlane/fastlane/blob/0c23d5e64f3c193ac013e9383551149ac6e8d88c/fastlane_core/lib/fastlane_core/configuration/configuration.rb#L196-L204","createdAt":"2018-01-27T17:36:02Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDExOlB1bGxSZXF1ZXN0MTY1NTI3NTQw"}}}} \ No newline at end of file diff --git a/records/d1374a79e5ab410d970a86e9eadcd4ea b/records/d1374a79e5ab410d970a86e9eadcd4ea deleted file mode 100644 index 41af5ec1..00000000 --- a/records/d1374a79e5ab410d970a86e9eadcd4ea +++ /dev/null @@ -1 +0,0 @@ -[{"id":"297631233","unread":true,"reason":"subscribed","updated_at":"2018-01-27T17:36:02Z","last_read_at":null,"subject":{"title":"Fix duplicate loading of Gymfile","url":"https://api.github.com/repos/fastlane/fastlane/pulls/11718","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/pulls/11718","type":"PullRequest"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297631233","subscription_url":"https://api.github.com/notifications/threads/297631233/subscription"},{"id":"282739475","unread":true,"reason":"subscribed","updated_at":"2018-01-27T16:52:18Z","last_read_at":null,"subject":{"title":"undefined method `each' for #","url":"https://api.github.com/repos/fastlane/fastlane/issues/11114","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360997623","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/282739475","subscription_url":"https://api.github.com/notifications/threads/282739475/subscription"},{"id":"263365731","unread":true,"reason":"subscribed","updated_at":"2018-01-27T15:52:23Z","last_read_at":null,"subject":{"title":"Match can't find certificate in repo if run again.","url":"https://api.github.com/repos/fastlane/fastlane/issues/10489","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360993663","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/263365731","subscription_url":"https://api.github.com/notifications/threads/263365731/subscription"},{"id":"297620512","unread":true,"reason":"subscribed","updated_at":"2018-01-27T15:38:45Z","last_read_at":null,"subject":{"title":"(snow) crash","url":"https://api.github.com/repos/lhc70000/iina/issues/1429","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/1429","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/297620512","subscription_url":"https://api.github.com/notifications/threads/297620512/subscription"},{"id":"297554276","unread":true,"reason":"subscribed","updated_at":"2018-01-27T15:36:26Z","last_read_at":null,"subject":{"title":"custom action is not not available after creation","url":"https://api.github.com/repos/fastlane/fastlane/issues/11715","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360992641","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297554276","subscription_url":"https://api.github.com/notifications/threads/297554276/subscription"},{"id":"297604012","unread":true,"reason":"subscribed","updated_at":"2018-01-27T13:34:26Z","last_read_at":null,"subject":{"title":"怎么设置音频规格化?","url":"https://api.github.com/repos/lhc70000/iina/issues/1428","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/1428","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/297604012","subscription_url":"https://api.github.com/notifications/threads/297604012/subscription"},{"id":"288244157","unread":true,"reason":"subscribed","updated_at":"2018-01-27T13:26:04Z","last_read_at":"2018-01-15T00:27:33Z","subject":{"title":"how to use task \" requestCompositeParameters \" with bodyEncoding which is URLEncoding","url":"https://api.github.com/repos/Moya/Moya/issues/1516","latest_comment_url":"https://api.github.com/repos/Moya/Moya/issues/comments/360984801","type":"Issue"},"repository":{"id":23013268,"name":"Moya","full_name":"Moya/Moya","owner":{"login":"Moya","id":13662162,"avatar_url":"https://avatars3.githubusercontent.com/u/13662162?v=4","gravatar_id":"","url":"https://api.github.com/users/Moya","html_url":"https://github.com/Moya","followers_url":"https://api.github.com/users/Moya/followers","following_url":"https://api.github.com/users/Moya/following{/other_user}","gists_url":"https://api.github.com/users/Moya/gists{/gist_id}","starred_url":"https://api.github.com/users/Moya/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Moya/subscriptions","organizations_url":"https://api.github.com/users/Moya/orgs","repos_url":"https://api.github.com/users/Moya/repos","events_url":"https://api.github.com/users/Moya/events{/privacy}","received_events_url":"https://api.github.com/users/Moya/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Moya/Moya","description":"Network abstraction layer written in Swift.","fork":false,"url":"https://api.github.com/repos/Moya/Moya","forks_url":"https://api.github.com/repos/Moya/Moya/forks","keys_url":"https://api.github.com/repos/Moya/Moya/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Moya/Moya/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Moya/Moya/teams","hooks_url":"https://api.github.com/repos/Moya/Moya/hooks","issue_events_url":"https://api.github.com/repos/Moya/Moya/issues/events{/number}","events_url":"https://api.github.com/repos/Moya/Moya/events","assignees_url":"https://api.github.com/repos/Moya/Moya/assignees{/user}","branches_url":"https://api.github.com/repos/Moya/Moya/branches{/branch}","tags_url":"https://api.github.com/repos/Moya/Moya/tags","blobs_url":"https://api.github.com/repos/Moya/Moya/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Moya/Moya/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Moya/Moya/git/refs{/sha}","trees_url":"https://api.github.com/repos/Moya/Moya/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Moya/Moya/statuses/{sha}","languages_url":"https://api.github.com/repos/Moya/Moya/languages","stargazers_url":"https://api.github.com/repos/Moya/Moya/stargazers","contributors_url":"https://api.github.com/repos/Moya/Moya/contributors","subscribers_url":"https://api.github.com/repos/Moya/Moya/subscribers","subscription_url":"https://api.github.com/repos/Moya/Moya/subscription","commits_url":"https://api.github.com/repos/Moya/Moya/commits{/sha}","git_commits_url":"https://api.github.com/repos/Moya/Moya/git/commits{/sha}","comments_url":"https://api.github.com/repos/Moya/Moya/comments{/number}","issue_comment_url":"https://api.github.com/repos/Moya/Moya/issues/comments{/number}","contents_url":"https://api.github.com/repos/Moya/Moya/contents/{+path}","compare_url":"https://api.github.com/repos/Moya/Moya/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Moya/Moya/merges","archive_url":"https://api.github.com/repos/Moya/Moya/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Moya/Moya/downloads","issues_url":"https://api.github.com/repos/Moya/Moya/issues{/number}","pulls_url":"https://api.github.com/repos/Moya/Moya/pulls{/number}","milestones_url":"https://api.github.com/repos/Moya/Moya/milestones{/number}","notifications_url":"https://api.github.com/repos/Moya/Moya/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Moya/Moya/labels{/name}","releases_url":"https://api.github.com/repos/Moya/Moya/releases{/id}","deployments_url":"https://api.github.com/repos/Moya/Moya/deployments"},"url":"https://api.github.com/notifications/threads/288244157","subscription_url":"https://api.github.com/notifications/threads/288244157/subscription"},{"id":"297609381","unread":true,"reason":"subscribed","updated_at":"2018-01-27T13:16:17Z","last_read_at":null,"subject":{"title":"Make the fields of `Proxy` readable outside of Vapor itself.","url":"https://api.github.com/repos/vapor/vapor/pulls/1462","latest_comment_url":"https://api.github.com/repos/vapor/vapor/pulls/1462","type":"PullRequest"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297609381","subscription_url":"https://api.github.com/notifications/threads/297609381/subscription"},{"id":"297609151","unread":true,"reason":"subscribed","updated_at":"2018-01-27T13:13:01Z","last_read_at":null,"subject":{"title":"Vapor 3's Client does not handle redirects","url":"https://api.github.com/repos/vapor/vapor/issues/1461","latest_comment_url":"https://api.github.com/repos/vapor/vapor/issues/1461","type":"Issue"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297609151","subscription_url":"https://api.github.com/notifications/threads/297609151/subscription"},{"id":"297606952","unread":true,"reason":"subscribed","updated_at":"2018-01-27T12:41:02Z","last_read_at":null,"subject":{"title":"Vapor 3's Client needs support for HTTP proxy configuration","url":"https://api.github.com/repos/vapor/vapor/issues/1460","latest_comment_url":"https://api.github.com/repos/vapor/vapor/issues/1460","type":"Issue"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297606952","subscription_url":"https://api.github.com/notifications/threads/297606952/subscription"},{"id":"293060619","unread":true,"reason":"subscribed","updated_at":"2018-01-27T12:21:48Z","last_read_at":null,"subject":{"title":"不知道ass字幕能不能做到样式不变的情况下自定义字体","url":"https://api.github.com/repos/lhc70000/iina/issues/1371","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360981288","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/293060619","subscription_url":"https://api.github.com/notifications/threads/293060619/subscription"},{"id":"297547782","unread":true,"reason":"subscribed","updated_at":"2018-01-27T12:02:34Z","last_read_at":null,"subject":{"title":"Generate xml for Android colors","url":"https://api.github.com/repos/airbnb/Lona/pulls/77","latest_comment_url":"https://api.github.com/repos/airbnb/Lona/issues/comments/360942181","type":"PullRequest"},"repository":{"id":106618491,"name":"Lona","full_name":"airbnb/Lona","owner":{"login":"airbnb","id":698437,"avatar_url":"https://avatars3.githubusercontent.com/u/698437?v=4","gravatar_id":"","url":"https://api.github.com/users/airbnb","html_url":"https://github.com/airbnb","followers_url":"https://api.github.com/users/airbnb/followers","following_url":"https://api.github.com/users/airbnb/following{/other_user}","gists_url":"https://api.github.com/users/airbnb/gists{/gist_id}","starred_url":"https://api.github.com/users/airbnb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/airbnb/subscriptions","organizations_url":"https://api.github.com/users/airbnb/orgs","repos_url":"https://api.github.com/users/airbnb/repos","events_url":"https://api.github.com/users/airbnb/events{/privacy}","received_events_url":"https://api.github.com/users/airbnb/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/airbnb/Lona","description":"A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, images, and other artifacts.","fork":false,"url":"https://api.github.com/repos/airbnb/Lona","forks_url":"https://api.github.com/repos/airbnb/Lona/forks","keys_url":"https://api.github.com/repos/airbnb/Lona/keys{/key_id}","collaborators_url":"https://api.github.com/repos/airbnb/Lona/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/airbnb/Lona/teams","hooks_url":"https://api.github.com/repos/airbnb/Lona/hooks","issue_events_url":"https://api.github.com/repos/airbnb/Lona/issues/events{/number}","events_url":"https://api.github.com/repos/airbnb/Lona/events","assignees_url":"https://api.github.com/repos/airbnb/Lona/assignees{/user}","branches_url":"https://api.github.com/repos/airbnb/Lona/branches{/branch}","tags_url":"https://api.github.com/repos/airbnb/Lona/tags","blobs_url":"https://api.github.com/repos/airbnb/Lona/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/airbnb/Lona/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/airbnb/Lona/git/refs{/sha}","trees_url":"https://api.github.com/repos/airbnb/Lona/git/trees{/sha}","statuses_url":"https://api.github.com/repos/airbnb/Lona/statuses/{sha}","languages_url":"https://api.github.com/repos/airbnb/Lona/languages","stargazers_url":"https://api.github.com/repos/airbnb/Lona/stargazers","contributors_url":"https://api.github.com/repos/airbnb/Lona/contributors","subscribers_url":"https://api.github.com/repos/airbnb/Lona/subscribers","subscription_url":"https://api.github.com/repos/airbnb/Lona/subscription","commits_url":"https://api.github.com/repos/airbnb/Lona/commits{/sha}","git_commits_url":"https://api.github.com/repos/airbnb/Lona/git/commits{/sha}","comments_url":"https://api.github.com/repos/airbnb/Lona/comments{/number}","issue_comment_url":"https://api.github.com/repos/airbnb/Lona/issues/comments{/number}","contents_url":"https://api.github.com/repos/airbnb/Lona/contents/{+path}","compare_url":"https://api.github.com/repos/airbnb/Lona/compare/{base}...{head}","merges_url":"https://api.github.com/repos/airbnb/Lona/merges","archive_url":"https://api.github.com/repos/airbnb/Lona/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/airbnb/Lona/downloads","issues_url":"https://api.github.com/repos/airbnb/Lona/issues{/number}","pulls_url":"https://api.github.com/repos/airbnb/Lona/pulls{/number}","milestones_url":"https://api.github.com/repos/airbnb/Lona/milestones{/number}","notifications_url":"https://api.github.com/repos/airbnb/Lona/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/airbnb/Lona/labels{/name}","releases_url":"https://api.github.com/repos/airbnb/Lona/releases{/id}","deployments_url":"https://api.github.com/repos/airbnb/Lona/deployments"},"url":"https://api.github.com/notifications/threads/297547782","subscription_url":"https://api.github.com/notifications/threads/297547782/subscription"},{"id":"276967961","unread":true,"reason":"subscribed","updated_at":"2018-01-27T11:52:20Z","last_read_at":null,"subject":{"title":"Deliver doesn't download TV metadata from combined app record","url":"https://api.github.com/repos/fastlane/fastlane/issues/10917","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360979799","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/276967961","subscription_url":"https://api.github.com/notifications/threads/276967961/subscription"},{"id":"297022703","unread":true,"reason":"subscribed","updated_at":"2018-01-27T11:18:01Z","last_read_at":null,"subject":{"title":"Touchbar slider is not updating in Music Mode","url":"https://api.github.com/repos/lhc70000/iina/issues/1422","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360978024","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/297022703","subscription_url":"https://api.github.com/notifications/threads/297022703/subscription"},{"id":"297597005","unread":true,"reason":"subscribed","updated_at":"2018-01-27T10:40:09Z","last_read_at":null,"subject":{"title":"archive failed","url":"https://api.github.com/repos/fastlane/fastlane/issues/11717","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360976158","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297597005","subscription_url":"https://api.github.com/notifications/threads/297597005/subscription"},{"id":"297595651","unread":true,"reason":"subscribed","updated_at":"2018-01-27T10:15:33Z","last_read_at":null,"subject":{"title":"Build Vapor 1 with Xcode 9.2","url":"https://api.github.com/repos/vapor/vapor/pulls/1459","latest_comment_url":"https://api.github.com/repos/vapor/vapor/pulls/1459","type":"PullRequest"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297595651","subscription_url":"https://api.github.com/notifications/threads/297595651/subscription"},{"id":"297595378","unread":true,"reason":"subscribed","updated_at":"2018-01-27T10:10:47Z","last_read_at":null,"subject":{"title":"Some German Localisation Flaws","url":"https://api.github.com/repos/lhc70000/iina/issues/1427","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/1427","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/297595378","subscription_url":"https://api.github.com/notifications/threads/297595378/subscription"},{"id":"292010271","unread":true,"reason":"subscribed","updated_at":"2018-01-27T07:01:02Z","last_read_at":null,"subject":{"title":"Request cancellation","url":"https://api.github.com/repos/Moya/Moya/issues/1543","latest_comment_url":"https://api.github.com/repos/Moya/Moya/issues/comments/360965623","type":"Issue"},"repository":{"id":23013268,"name":"Moya","full_name":"Moya/Moya","owner":{"login":"Moya","id":13662162,"avatar_url":"https://avatars3.githubusercontent.com/u/13662162?v=4","gravatar_id":"","url":"https://api.github.com/users/Moya","html_url":"https://github.com/Moya","followers_url":"https://api.github.com/users/Moya/followers","following_url":"https://api.github.com/users/Moya/following{/other_user}","gists_url":"https://api.github.com/users/Moya/gists{/gist_id}","starred_url":"https://api.github.com/users/Moya/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Moya/subscriptions","organizations_url":"https://api.github.com/users/Moya/orgs","repos_url":"https://api.github.com/users/Moya/repos","events_url":"https://api.github.com/users/Moya/events{/privacy}","received_events_url":"https://api.github.com/users/Moya/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Moya/Moya","description":"Network abstraction layer written in Swift.","fork":false,"url":"https://api.github.com/repos/Moya/Moya","forks_url":"https://api.github.com/repos/Moya/Moya/forks","keys_url":"https://api.github.com/repos/Moya/Moya/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Moya/Moya/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Moya/Moya/teams","hooks_url":"https://api.github.com/repos/Moya/Moya/hooks","issue_events_url":"https://api.github.com/repos/Moya/Moya/issues/events{/number}","events_url":"https://api.github.com/repos/Moya/Moya/events","assignees_url":"https://api.github.com/repos/Moya/Moya/assignees{/user}","branches_url":"https://api.github.com/repos/Moya/Moya/branches{/branch}","tags_url":"https://api.github.com/repos/Moya/Moya/tags","blobs_url":"https://api.github.com/repos/Moya/Moya/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Moya/Moya/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Moya/Moya/git/refs{/sha}","trees_url":"https://api.github.com/repos/Moya/Moya/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Moya/Moya/statuses/{sha}","languages_url":"https://api.github.com/repos/Moya/Moya/languages","stargazers_url":"https://api.github.com/repos/Moya/Moya/stargazers","contributors_url":"https://api.github.com/repos/Moya/Moya/contributors","subscribers_url":"https://api.github.com/repos/Moya/Moya/subscribers","subscription_url":"https://api.github.com/repos/Moya/Moya/subscription","commits_url":"https://api.github.com/repos/Moya/Moya/commits{/sha}","git_commits_url":"https://api.github.com/repos/Moya/Moya/git/commits{/sha}","comments_url":"https://api.github.com/repos/Moya/Moya/comments{/number}","issue_comment_url":"https://api.github.com/repos/Moya/Moya/issues/comments{/number}","contents_url":"https://api.github.com/repos/Moya/Moya/contents/{+path}","compare_url":"https://api.github.com/repos/Moya/Moya/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Moya/Moya/merges","archive_url":"https://api.github.com/repos/Moya/Moya/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Moya/Moya/downloads","issues_url":"https://api.github.com/repos/Moya/Moya/issues{/number}","pulls_url":"https://api.github.com/repos/Moya/Moya/pulls{/number}","milestones_url":"https://api.github.com/repos/Moya/Moya/milestones{/number}","notifications_url":"https://api.github.com/repos/Moya/Moya/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Moya/Moya/labels{/name}","releases_url":"https://api.github.com/repos/Moya/Moya/releases{/id}","deployments_url":"https://api.github.com/repos/Moya/Moya/deployments"},"url":"https://api.github.com/notifications/threads/292010271","subscription_url":"https://api.github.com/notifications/threads/292010271/subscription"},{"id":"296422598","unread":true,"reason":"subscribed","updated_at":"2018-01-27T06:52:32Z","last_read_at":null,"subject":{"title":"About function \"Always Top\"","url":"https://api.github.com/repos/lhc70000/iina/issues/1414","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360965259","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/296422598","subscription_url":"https://api.github.com/notifications/threads/296422598/subscription"},{"id":"297446074","unread":true,"reason":"subscribed","updated_at":"2018-01-26T19:22:00Z","last_read_at":null,"subject":{"title":"Use @available if available to silence a warning.","url":"https://api.github.com/repos/AFNetworking/AFNetworking/pulls/4138","latest_comment_url":"https://api.github.com/repos/AFNetworking/AFNetworking/issues/comments/360879523","type":"PullRequest"},"repository":{"id":1828795,"name":"AFNetworking","full_name":"AFNetworking/AFNetworking","owner":{"login":"AFNetworking","id":1181541,"avatar_url":"https://avatars2.githubusercontent.com/u/1181541?v=4","gravatar_id":"","url":"https://api.github.com/users/AFNetworking","html_url":"https://github.com/AFNetworking","followers_url":"https://api.github.com/users/AFNetworking/followers","following_url":"https://api.github.com/users/AFNetworking/following{/other_user}","gists_url":"https://api.github.com/users/AFNetworking/gists{/gist_id}","starred_url":"https://api.github.com/users/AFNetworking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AFNetworking/subscriptions","organizations_url":"https://api.github.com/users/AFNetworking/orgs","repos_url":"https://api.github.com/users/AFNetworking/repos","events_url":"https://api.github.com/users/AFNetworking/events{/privacy}","received_events_url":"https://api.github.com/users/AFNetworking/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/AFNetworking/AFNetworking","description":"A delightful networking framework for iOS, macOS, watchOS, and tvOS.","fork":false,"url":"https://api.github.com/repos/AFNetworking/AFNetworking","forks_url":"https://api.github.com/repos/AFNetworking/AFNetworking/forks","keys_url":"https://api.github.com/repos/AFNetworking/AFNetworking/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AFNetworking/AFNetworking/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AFNetworking/AFNetworking/teams","hooks_url":"https://api.github.com/repos/AFNetworking/AFNetworking/hooks","issue_events_url":"https://api.github.com/repos/AFNetworking/AFNetworking/issues/events{/number}","events_url":"https://api.github.com/repos/AFNetworking/AFNetworking/events","assignees_url":"https://api.github.com/repos/AFNetworking/AFNetworking/assignees{/user}","branches_url":"https://api.github.com/repos/AFNetworking/AFNetworking/branches{/branch}","tags_url":"https://api.github.com/repos/AFNetworking/AFNetworking/tags","blobs_url":"https://api.github.com/repos/AFNetworking/AFNetworking/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AFNetworking/AFNetworking/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AFNetworking/AFNetworking/git/refs{/sha}","trees_url":"https://api.github.com/repos/AFNetworking/AFNetworking/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AFNetworking/AFNetworking/statuses/{sha}","languages_url":"https://api.github.com/repos/AFNetworking/AFNetworking/languages","stargazers_url":"https://api.github.com/repos/AFNetworking/AFNetworking/stargazers","contributors_url":"https://api.github.com/repos/AFNetworking/AFNetworking/contributors","subscribers_url":"https://api.github.com/repos/AFNetworking/AFNetworking/subscribers","subscription_url":"https://api.github.com/repos/AFNetworking/AFNetworking/subscription","commits_url":"https://api.github.com/repos/AFNetworking/AFNetworking/commits{/sha}","git_commits_url":"https://api.github.com/repos/AFNetworking/AFNetworking/git/commits{/sha}","comments_url":"https://api.github.com/repos/AFNetworking/AFNetworking/comments{/number}","issue_comment_url":"https://api.github.com/repos/AFNetworking/AFNetworking/issues/comments{/number}","contents_url":"https://api.github.com/repos/AFNetworking/AFNetworking/contents/{+path}","compare_url":"https://api.github.com/repos/AFNetworking/AFNetworking/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AFNetworking/AFNetworking/merges","archive_url":"https://api.github.com/repos/AFNetworking/AFNetworking/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AFNetworking/AFNetworking/downloads","issues_url":"https://api.github.com/repos/AFNetworking/AFNetworking/issues{/number}","pulls_url":"https://api.github.com/repos/AFNetworking/AFNetworking/pulls{/number}","milestones_url":"https://api.github.com/repos/AFNetworking/AFNetworking/milestones{/number}","notifications_url":"https://api.github.com/repos/AFNetworking/AFNetworking/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AFNetworking/AFNetworking/labels{/name}","releases_url":"https://api.github.com/repos/AFNetworking/AFNetworking/releases{/id}","deployments_url":"https://api.github.com/repos/AFNetworking/AFNetworking/deployments"},"url":"https://api.github.com/notifications/threads/297446074","subscription_url":"https://api.github.com/notifications/threads/297446074/subscription"},{"id":"243460686","unread":true,"reason":"subscribed","updated_at":"2018-01-27T05:05:16Z","last_read_at":null,"subject":{"title":"LFU","url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls/506","latest_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/comments/360960709","type":"PullRequest"},"repository":{"id":50447720,"name":"swift-algorithm-club","full_name":"raywenderlich/swift-algorithm-club","owner":{"login":"raywenderlich","id":4722515,"avatar_url":"https://avatars1.githubusercontent.com/u/4722515?v=4","gravatar_id":"","url":"https://api.github.com/users/raywenderlich","html_url":"https://github.com/raywenderlich","followers_url":"https://api.github.com/users/raywenderlich/followers","following_url":"https://api.github.com/users/raywenderlich/following{/other_user}","gists_url":"https://api.github.com/users/raywenderlich/gists{/gist_id}","starred_url":"https://api.github.com/users/raywenderlich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raywenderlich/subscriptions","organizations_url":"https://api.github.com/users/raywenderlich/orgs","repos_url":"https://api.github.com/users/raywenderlich/repos","events_url":"https://api.github.com/users/raywenderlich/events{/privacy}","received_events_url":"https://api.github.com/users/raywenderlich/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/raywenderlich/swift-algorithm-club","description":"Algorithms and data structures in Swift, with explanations!","fork":false,"url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club","forks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/forks","keys_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/keys{/key_id}","collaborators_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/teams","hooks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/hooks","issue_events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/events{/number}","events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/events","assignees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/assignees{/user}","branches_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/branches{/branch}","tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/tags","blobs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/refs{/sha}","trees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/trees{/sha}","statuses_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/statuses/{sha}","languages_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/languages","stargazers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/stargazers","contributors_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contributors","subscribers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscribers","subscription_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscription","commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/commits{/sha}","git_commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/commits{/sha}","comments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/comments{/number}","issue_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/comments{/number}","contents_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contents/{+path}","compare_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/compare/{base}...{head}","merges_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/merges","archive_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/downloads","issues_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues{/number}","pulls_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls{/number}","milestones_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/milestones{/number}","notifications_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/labels{/name}","releases_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/releases{/id}","deployments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/deployments"},"url":"https://api.github.com/notifications/threads/243460686","subscription_url":"https://api.github.com/notifications/threads/243460686/subscription"},{"id":"245207176","unread":true,"reason":"subscribed","updated_at":"2018-01-27T04:49:14Z","last_read_at":null,"subject":{"title":"Improvement of Red Black Tree","url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls/520","latest_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/comments/360960052","type":"PullRequest"},"repository":{"id":50447720,"name":"swift-algorithm-club","full_name":"raywenderlich/swift-algorithm-club","owner":{"login":"raywenderlich","id":4722515,"avatar_url":"https://avatars1.githubusercontent.com/u/4722515?v=4","gravatar_id":"","url":"https://api.github.com/users/raywenderlich","html_url":"https://github.com/raywenderlich","followers_url":"https://api.github.com/users/raywenderlich/followers","following_url":"https://api.github.com/users/raywenderlich/following{/other_user}","gists_url":"https://api.github.com/users/raywenderlich/gists{/gist_id}","starred_url":"https://api.github.com/users/raywenderlich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raywenderlich/subscriptions","organizations_url":"https://api.github.com/users/raywenderlich/orgs","repos_url":"https://api.github.com/users/raywenderlich/repos","events_url":"https://api.github.com/users/raywenderlich/events{/privacy}","received_events_url":"https://api.github.com/users/raywenderlich/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/raywenderlich/swift-algorithm-club","description":"Algorithms and data structures in Swift, with explanations!","fork":false,"url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club","forks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/forks","keys_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/keys{/key_id}","collaborators_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/teams","hooks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/hooks","issue_events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/events{/number}","events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/events","assignees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/assignees{/user}","branches_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/branches{/branch}","tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/tags","blobs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/refs{/sha}","trees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/trees{/sha}","statuses_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/statuses/{sha}","languages_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/languages","stargazers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/stargazers","contributors_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contributors","subscribers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscribers","subscription_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscription","commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/commits{/sha}","git_commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/commits{/sha}","comments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/comments{/number}","issue_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/comments{/number}","contents_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contents/{+path}","compare_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/compare/{base}...{head}","merges_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/merges","archive_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/downloads","issues_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues{/number}","pulls_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls{/number}","milestones_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/milestones{/number}","notifications_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/labels{/name}","releases_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/releases{/id}","deployments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/deployments"},"url":"https://api.github.com/notifications/threads/245207176","subscription_url":"https://api.github.com/notifications/threads/245207176/subscription"},{"id":"272174411","unread":true,"reason":"subscribed","updated_at":"2018-01-27T04:22:21Z","last_read_at":null,"subject":{"title":"Code signing is required for product type 'App Extension' in SDK 'iOS 11.0'","url":"https://api.github.com/repos/fastlane/fastlane/issues/10767","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360958862","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/272174411","subscription_url":"https://api.github.com/notifications/threads/272174411/subscription"},{"id":"295021613","unread":true,"reason":"subscribed","updated_at":"2018-01-27T03:40:04Z","last_read_at":null,"subject":{"title":"mount iso from samba and play the bluyray ,throughput too low cannot play. ","url":"https://api.github.com/repos/lhc70000/iina/issues/1400","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360956983","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/295021613","subscription_url":"https://api.github.com/notifications/threads/295021613/subscription"},{"id":"283392597","unread":true,"reason":"subscribed","updated_at":"2018-01-27T03:02:18Z","last_read_at":null,"subject":{"title":"/Library/Ruby/Gems/2.0.0/gems/fastlane-2.67.0/gym/lib/gym/generators/package_command_generator_xcode7.rb:124:in `block in keys_to_symbols': ","url":"https://api.github.com/repos/fastlane/fastlane/issues/11138","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360955020","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/283392597","subscription_url":"https://api.github.com/notifications/threads/283392597/subscription"},{"id":"297560743","unread":true,"reason":"subscribed","updated_at":"2018-01-27T02:20:09Z","last_read_at":null,"subject":{"title":"Find the currently published version number on App Store","url":"https://api.github.com/repos/fastlane/fastlane/issues/11716","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360952432","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297560743","subscription_url":"https://api.github.com/notifications/threads/297560743/subscription"},{"id":"297554669","unread":true,"reason":"subscribed","updated_at":"2018-01-27T01:16:41Z","last_read_at":null,"subject":{"title":"chttp refactor","url":"https://api.github.com/repos/vapor/vapor/pulls/1458","latest_comment_url":"https://api.github.com/repos/vapor/vapor/pulls/1458","type":"PullRequest"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297554669","subscription_url":"https://api.github.com/notifications/threads/297554669/subscription"},{"id":"285054729","unread":true,"reason":"subscribed","updated_at":"2018-01-26T23:34:22Z","last_read_at":null,"subject":{"title":"Scan doesn't reuse compiled files from gym","url":"https://api.github.com/repos/fastlane/fastlane/issues/11190","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/11190","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/285054729","subscription_url":"https://api.github.com/notifications/threads/285054729/subscription"},{"id":"292388225","unread":true,"reason":"subscribed","updated_at":"2018-01-26T22:49:55Z","last_read_at":null,"subject":{"title":"Issue #11497: [screengrab] Adding Falcon as a ScreenshotStrategy","url":"https://api.github.com/repos/fastlane/fastlane/pulls/11535","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360926427","type":"PullRequest"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/292388225","subscription_url":"https://api.github.com/notifications/threads/292388225/subscription"},{"id":"297449595","unread":true,"reason":"subscribed","updated_at":"2018-01-26T22:35:48Z","last_read_at":null,"subject":{"title":"Redis Pooling","url":"https://api.github.com/repos/vapor/vapor/issues/1457","latest_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments/360923647","type":"Issue"},"repository":{"id":49910095,"name":"vapor","full_name":"vapor/vapor","owner":{"login":"vapor","id":17364220,"avatar_url":"https://avatars1.githubusercontent.com/u/17364220?v=4","gravatar_id":"","url":"https://api.github.com/users/vapor","html_url":"https://github.com/vapor","followers_url":"https://api.github.com/users/vapor/followers","following_url":"https://api.github.com/users/vapor/following{/other_user}","gists_url":"https://api.github.com/users/vapor/gists{/gist_id}","starred_url":"https://api.github.com/users/vapor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vapor/subscriptions","organizations_url":"https://api.github.com/users/vapor/orgs","repos_url":"https://api.github.com/users/vapor/repos","events_url":"https://api.github.com/users/vapor/events{/privacy}","received_events_url":"https://api.github.com/users/vapor/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/vapor/vapor","description":"💧 A server-side Swift web framework.","fork":false,"url":"https://api.github.com/repos/vapor/vapor","forks_url":"https://api.github.com/repos/vapor/vapor/forks","keys_url":"https://api.github.com/repos/vapor/vapor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vapor/vapor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vapor/vapor/teams","hooks_url":"https://api.github.com/repos/vapor/vapor/hooks","issue_events_url":"https://api.github.com/repos/vapor/vapor/issues/events{/number}","events_url":"https://api.github.com/repos/vapor/vapor/events","assignees_url":"https://api.github.com/repos/vapor/vapor/assignees{/user}","branches_url":"https://api.github.com/repos/vapor/vapor/branches{/branch}","tags_url":"https://api.github.com/repos/vapor/vapor/tags","blobs_url":"https://api.github.com/repos/vapor/vapor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vapor/vapor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vapor/vapor/git/refs{/sha}","trees_url":"https://api.github.com/repos/vapor/vapor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vapor/vapor/statuses/{sha}","languages_url":"https://api.github.com/repos/vapor/vapor/languages","stargazers_url":"https://api.github.com/repos/vapor/vapor/stargazers","contributors_url":"https://api.github.com/repos/vapor/vapor/contributors","subscribers_url":"https://api.github.com/repos/vapor/vapor/subscribers","subscription_url":"https://api.github.com/repos/vapor/vapor/subscription","commits_url":"https://api.github.com/repos/vapor/vapor/commits{/sha}","git_commits_url":"https://api.github.com/repos/vapor/vapor/git/commits{/sha}","comments_url":"https://api.github.com/repos/vapor/vapor/comments{/number}","issue_comment_url":"https://api.github.com/repos/vapor/vapor/issues/comments{/number}","contents_url":"https://api.github.com/repos/vapor/vapor/contents/{+path}","compare_url":"https://api.github.com/repos/vapor/vapor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vapor/vapor/merges","archive_url":"https://api.github.com/repos/vapor/vapor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vapor/vapor/downloads","issues_url":"https://api.github.com/repos/vapor/vapor/issues{/number}","pulls_url":"https://api.github.com/repos/vapor/vapor/pulls{/number}","milestones_url":"https://api.github.com/repos/vapor/vapor/milestones{/number}","notifications_url":"https://api.github.com/repos/vapor/vapor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vapor/vapor/labels{/name}","releases_url":"https://api.github.com/repos/vapor/vapor/releases{/id}","deployments_url":"https://api.github.com/repos/vapor/vapor/deployments"},"url":"https://api.github.com/notifications/threads/297449595","subscription_url":"https://api.github.com/notifications/threads/297449595/subscription"},{"id":"297512889","unread":true,"reason":"subscribed","updated_at":"2018-01-26T21:50:09Z","last_read_at":null,"subject":{"title":"cert doesn't import certs into the setup_travis's newly created keychain ","url":"https://api.github.com/repos/fastlane/fastlane/issues/11714","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360913975","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297512889","subscription_url":"https://api.github.com/notifications/threads/297512889/subscription"},{"id":"261337046","unread":true,"reason":"subscribed","updated_at":"2018-01-26T21:17:53Z","last_read_at":null,"subject":{"title":"Provided xcconfig is not used for provisioning profile selection","url":"https://api.github.com/repos/fastlane/fastlane/issues/10424","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360906726","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/261337046","subscription_url":"https://api.github.com/notifications/threads/261337046/subscription"},{"id":"295101301","unread":true,"reason":"subscribed","updated_at":"2018-01-26T21:16:56Z","last_read_at":null,"subject":{"title":"1080p video cropping bug","url":"https://api.github.com/repos/lhc70000/iina/issues/1403","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360906496","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/295101301","subscription_url":"https://api.github.com/notifications/threads/295101301/subscription"},{"id":"297492985","unread":true,"reason":"subscribed","updated_at":"2018-01-26T20:40:08Z","last_read_at":null,"subject":{"title":"Demo Account in pilot","url":"https://api.github.com/repos/fastlane/fastlane/issues/11713","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360898350","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297492985","subscription_url":"https://api.github.com/notifications/threads/297492985/subscription"},{"id":"294749174","unread":true,"reason":"subscribed","updated_at":"2018-01-26T19:58:10Z","last_read_at":null,"subject":{"title":"[ASPrimitiveTraitCollection] Always treat preferredContentSize as a potential nil #trivial","url":"https://api.github.com/repos/TextureGroup/Texture/pulls/757","latest_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments/360888908","type":"PullRequest"},"repository":{"id":81514066,"name":"Texture","full_name":"TextureGroup/Texture","owner":{"login":"TextureGroup","id":25676156,"avatar_url":"https://avatars3.githubusercontent.com/u/25676156?v=4","gravatar_id":"","url":"https://api.github.com/users/TextureGroup","html_url":"https://github.com/TextureGroup","followers_url":"https://api.github.com/users/TextureGroup/followers","following_url":"https://api.github.com/users/TextureGroup/following{/other_user}","gists_url":"https://api.github.com/users/TextureGroup/gists{/gist_id}","starred_url":"https://api.github.com/users/TextureGroup/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TextureGroup/subscriptions","organizations_url":"https://api.github.com/users/TextureGroup/orgs","repos_url":"https://api.github.com/users/TextureGroup/repos","events_url":"https://api.github.com/users/TextureGroup/events{/privacy}","received_events_url":"https://api.github.com/users/TextureGroup/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TextureGroup/Texture","description":"Smooth asynchronous user interfaces for iOS apps.","fork":false,"url":"https://api.github.com/repos/TextureGroup/Texture","forks_url":"https://api.github.com/repos/TextureGroup/Texture/forks","keys_url":"https://api.github.com/repos/TextureGroup/Texture/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TextureGroup/Texture/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TextureGroup/Texture/teams","hooks_url":"https://api.github.com/repos/TextureGroup/Texture/hooks","issue_events_url":"https://api.github.com/repos/TextureGroup/Texture/issues/events{/number}","events_url":"https://api.github.com/repos/TextureGroup/Texture/events","assignees_url":"https://api.github.com/repos/TextureGroup/Texture/assignees{/user}","branches_url":"https://api.github.com/repos/TextureGroup/Texture/branches{/branch}","tags_url":"https://api.github.com/repos/TextureGroup/Texture/tags","blobs_url":"https://api.github.com/repos/TextureGroup/Texture/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TextureGroup/Texture/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TextureGroup/Texture/git/refs{/sha}","trees_url":"https://api.github.com/repos/TextureGroup/Texture/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TextureGroup/Texture/statuses/{sha}","languages_url":"https://api.github.com/repos/TextureGroup/Texture/languages","stargazers_url":"https://api.github.com/repos/TextureGroup/Texture/stargazers","contributors_url":"https://api.github.com/repos/TextureGroup/Texture/contributors","subscribers_url":"https://api.github.com/repos/TextureGroup/Texture/subscribers","subscription_url":"https://api.github.com/repos/TextureGroup/Texture/subscription","commits_url":"https://api.github.com/repos/TextureGroup/Texture/commits{/sha}","git_commits_url":"https://api.github.com/repos/TextureGroup/Texture/git/commits{/sha}","comments_url":"https://api.github.com/repos/TextureGroup/Texture/comments{/number}","issue_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments{/number}","contents_url":"https://api.github.com/repos/TextureGroup/Texture/contents/{+path}","compare_url":"https://api.github.com/repos/TextureGroup/Texture/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TextureGroup/Texture/merges","archive_url":"https://api.github.com/repos/TextureGroup/Texture/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TextureGroup/Texture/downloads","issues_url":"https://api.github.com/repos/TextureGroup/Texture/issues{/number}","pulls_url":"https://api.github.com/repos/TextureGroup/Texture/pulls{/number}","milestones_url":"https://api.github.com/repos/TextureGroup/Texture/milestones{/number}","notifications_url":"https://api.github.com/repos/TextureGroup/Texture/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TextureGroup/Texture/labels{/name}","releases_url":"https://api.github.com/repos/TextureGroup/Texture/releases{/id}","deployments_url":"https://api.github.com/repos/TextureGroup/Texture/deployments"},"url":"https://api.github.com/notifications/threads/294749174","subscription_url":"https://api.github.com/notifications/threads/294749174/subscription"},{"id":"294865401","unread":true,"reason":"subscribed","updated_at":"2018-01-26T19:37:27Z","last_read_at":null,"subject":{"title":"Player doesn't display tags for some of the URLs feeded.","url":"https://api.github.com/repos/lhc70000/iina/issues/1395","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360883575","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/294865401","subscription_url":"https://api.github.com/notifications/threads/294865401/subscription"},{"id":"297170830","unread":true,"reason":"subscribed","updated_at":"2018-01-26T19:12:51Z","last_read_at":null,"subject":{"title":"Oversaturated HEVC 10bit - all the time","url":"https://api.github.com/repos/lhc70000/iina/issues/1424","latest_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments/360877105","type":"Issue"},"repository":{"id":76838017,"name":"iina","full_name":"lhc70000/iina","owner":{"login":"lhc70000","id":8478049,"avatar_url":"https://avatars3.githubusercontent.com/u/8478049?v=4","gravatar_id":"","url":"https://api.github.com/users/lhc70000","html_url":"https://github.com/lhc70000","followers_url":"https://api.github.com/users/lhc70000/followers","following_url":"https://api.github.com/users/lhc70000/following{/other_user}","gists_url":"https://api.github.com/users/lhc70000/gists{/gist_id}","starred_url":"https://api.github.com/users/lhc70000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhc70000/subscriptions","organizations_url":"https://api.github.com/users/lhc70000/orgs","repos_url":"https://api.github.com/users/lhc70000/repos","events_url":"https://api.github.com/users/lhc70000/events{/privacy}","received_events_url":"https://api.github.com/users/lhc70000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lhc70000/iina","description":"The modern video player for macOS.","fork":false,"url":"https://api.github.com/repos/lhc70000/iina","forks_url":"https://api.github.com/repos/lhc70000/iina/forks","keys_url":"https://api.github.com/repos/lhc70000/iina/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lhc70000/iina/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lhc70000/iina/teams","hooks_url":"https://api.github.com/repos/lhc70000/iina/hooks","issue_events_url":"https://api.github.com/repos/lhc70000/iina/issues/events{/number}","events_url":"https://api.github.com/repos/lhc70000/iina/events","assignees_url":"https://api.github.com/repos/lhc70000/iina/assignees{/user}","branches_url":"https://api.github.com/repos/lhc70000/iina/branches{/branch}","tags_url":"https://api.github.com/repos/lhc70000/iina/tags","blobs_url":"https://api.github.com/repos/lhc70000/iina/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lhc70000/iina/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lhc70000/iina/git/refs{/sha}","trees_url":"https://api.github.com/repos/lhc70000/iina/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lhc70000/iina/statuses/{sha}","languages_url":"https://api.github.com/repos/lhc70000/iina/languages","stargazers_url":"https://api.github.com/repos/lhc70000/iina/stargazers","contributors_url":"https://api.github.com/repos/lhc70000/iina/contributors","subscribers_url":"https://api.github.com/repos/lhc70000/iina/subscribers","subscription_url":"https://api.github.com/repos/lhc70000/iina/subscription","commits_url":"https://api.github.com/repos/lhc70000/iina/commits{/sha}","git_commits_url":"https://api.github.com/repos/lhc70000/iina/git/commits{/sha}","comments_url":"https://api.github.com/repos/lhc70000/iina/comments{/number}","issue_comment_url":"https://api.github.com/repos/lhc70000/iina/issues/comments{/number}","contents_url":"https://api.github.com/repos/lhc70000/iina/contents/{+path}","compare_url":"https://api.github.com/repos/lhc70000/iina/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lhc70000/iina/merges","archive_url":"https://api.github.com/repos/lhc70000/iina/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lhc70000/iina/downloads","issues_url":"https://api.github.com/repos/lhc70000/iina/issues{/number}","pulls_url":"https://api.github.com/repos/lhc70000/iina/pulls{/number}","milestones_url":"https://api.github.com/repos/lhc70000/iina/milestones{/number}","notifications_url":"https://api.github.com/repos/lhc70000/iina/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lhc70000/iina/labels{/name}","releases_url":"https://api.github.com/repos/lhc70000/iina/releases{/id}","deployments_url":"https://api.github.com/repos/lhc70000/iina/deployments"},"url":"https://api.github.com/notifications/threads/297170830","subscription_url":"https://api.github.com/notifications/threads/297170830/subscription"},{"id":"297206073","unread":true,"reason":"subscribed","updated_at":"2018-01-26T19:02:03Z","last_read_at":null,"subject":{"title":"Update PINCache","url":"https://api.github.com/repos/TextureGroup/Texture/pulls/769","latest_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments/360874247","type":"PullRequest"},"repository":{"id":81514066,"name":"Texture","full_name":"TextureGroup/Texture","owner":{"login":"TextureGroup","id":25676156,"avatar_url":"https://avatars3.githubusercontent.com/u/25676156?v=4","gravatar_id":"","url":"https://api.github.com/users/TextureGroup","html_url":"https://github.com/TextureGroup","followers_url":"https://api.github.com/users/TextureGroup/followers","following_url":"https://api.github.com/users/TextureGroup/following{/other_user}","gists_url":"https://api.github.com/users/TextureGroup/gists{/gist_id}","starred_url":"https://api.github.com/users/TextureGroup/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TextureGroup/subscriptions","organizations_url":"https://api.github.com/users/TextureGroup/orgs","repos_url":"https://api.github.com/users/TextureGroup/repos","events_url":"https://api.github.com/users/TextureGroup/events{/privacy}","received_events_url":"https://api.github.com/users/TextureGroup/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TextureGroup/Texture","description":"Smooth asynchronous user interfaces for iOS apps.","fork":false,"url":"https://api.github.com/repos/TextureGroup/Texture","forks_url":"https://api.github.com/repos/TextureGroup/Texture/forks","keys_url":"https://api.github.com/repos/TextureGroup/Texture/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TextureGroup/Texture/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TextureGroup/Texture/teams","hooks_url":"https://api.github.com/repos/TextureGroup/Texture/hooks","issue_events_url":"https://api.github.com/repos/TextureGroup/Texture/issues/events{/number}","events_url":"https://api.github.com/repos/TextureGroup/Texture/events","assignees_url":"https://api.github.com/repos/TextureGroup/Texture/assignees{/user}","branches_url":"https://api.github.com/repos/TextureGroup/Texture/branches{/branch}","tags_url":"https://api.github.com/repos/TextureGroup/Texture/tags","blobs_url":"https://api.github.com/repos/TextureGroup/Texture/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TextureGroup/Texture/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TextureGroup/Texture/git/refs{/sha}","trees_url":"https://api.github.com/repos/TextureGroup/Texture/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TextureGroup/Texture/statuses/{sha}","languages_url":"https://api.github.com/repos/TextureGroup/Texture/languages","stargazers_url":"https://api.github.com/repos/TextureGroup/Texture/stargazers","contributors_url":"https://api.github.com/repos/TextureGroup/Texture/contributors","subscribers_url":"https://api.github.com/repos/TextureGroup/Texture/subscribers","subscription_url":"https://api.github.com/repos/TextureGroup/Texture/subscription","commits_url":"https://api.github.com/repos/TextureGroup/Texture/commits{/sha}","git_commits_url":"https://api.github.com/repos/TextureGroup/Texture/git/commits{/sha}","comments_url":"https://api.github.com/repos/TextureGroup/Texture/comments{/number}","issue_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments{/number}","contents_url":"https://api.github.com/repos/TextureGroup/Texture/contents/{+path}","compare_url":"https://api.github.com/repos/TextureGroup/Texture/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TextureGroup/Texture/merges","archive_url":"https://api.github.com/repos/TextureGroup/Texture/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TextureGroup/Texture/downloads","issues_url":"https://api.github.com/repos/TextureGroup/Texture/issues{/number}","pulls_url":"https://api.github.com/repos/TextureGroup/Texture/pulls{/number}","milestones_url":"https://api.github.com/repos/TextureGroup/Texture/milestones{/number}","notifications_url":"https://api.github.com/repos/TextureGroup/Texture/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TextureGroup/Texture/labels{/name}","releases_url":"https://api.github.com/repos/TextureGroup/Texture/releases{/id}","deployments_url":"https://api.github.com/repos/TextureGroup/Texture/deployments"},"url":"https://api.github.com/notifications/threads/297206073","subscription_url":"https://api.github.com/notifications/threads/297206073/subscription"},{"id":"273015244","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:59:36Z","last_read_at":null,"subject":{"title":"iTunes account blocked/corrupted by fastlane sigh download","url":"https://api.github.com/repos/fastlane/fastlane/issues/10793","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360873573","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/273015244","subscription_url":"https://api.github.com/notifications/threads/273015244/subscription"},{"id":"297462005","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:56:50Z","last_read_at":null,"subject":{"title":"Fix typo: bottom-left -> bottom-right","url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls/686","latest_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls/686","type":"PullRequest"},"repository":{"id":50447720,"name":"swift-algorithm-club","full_name":"raywenderlich/swift-algorithm-club","owner":{"login":"raywenderlich","id":4722515,"avatar_url":"https://avatars1.githubusercontent.com/u/4722515?v=4","gravatar_id":"","url":"https://api.github.com/users/raywenderlich","html_url":"https://github.com/raywenderlich","followers_url":"https://api.github.com/users/raywenderlich/followers","following_url":"https://api.github.com/users/raywenderlich/following{/other_user}","gists_url":"https://api.github.com/users/raywenderlich/gists{/gist_id}","starred_url":"https://api.github.com/users/raywenderlich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/raywenderlich/subscriptions","organizations_url":"https://api.github.com/users/raywenderlich/orgs","repos_url":"https://api.github.com/users/raywenderlich/repos","events_url":"https://api.github.com/users/raywenderlich/events{/privacy}","received_events_url":"https://api.github.com/users/raywenderlich/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/raywenderlich/swift-algorithm-club","description":"Algorithms and data structures in Swift, with explanations!","fork":false,"url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club","forks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/forks","keys_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/keys{/key_id}","collaborators_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/teams","hooks_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/hooks","issue_events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/events{/number}","events_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/events","assignees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/assignees{/user}","branches_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/branches{/branch}","tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/tags","blobs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/refs{/sha}","trees_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/trees{/sha}","statuses_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/statuses/{sha}","languages_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/languages","stargazers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/stargazers","contributors_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contributors","subscribers_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscribers","subscription_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/subscription","commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/commits{/sha}","git_commits_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/git/commits{/sha}","comments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/comments{/number}","issue_comment_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues/comments{/number}","contents_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/contents/{+path}","compare_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/compare/{base}...{head}","merges_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/merges","archive_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/downloads","issues_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/issues{/number}","pulls_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/pulls{/number}","milestones_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/milestones{/number}","notifications_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/labels{/name}","releases_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/releases{/id}","deployments_url":"https://api.github.com/repos/raywenderlich/swift-algorithm-club/deployments"},"url":"https://api.github.com/notifications/threads/297462005","subscription_url":"https://api.github.com/notifications/threads/297462005/subscription"},{"id":"296229795","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:42:34Z","last_read_at":null,"subject":{"title":"reset_git_repo not working - file key format","url":"https://api.github.com/repos/fastlane/fastlane/issues/11669","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360869086","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/296229795","subscription_url":"https://api.github.com/notifications/threads/296229795/subscription"},{"id":"297385315","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:17:18Z","last_read_at":null,"subject":{"title":"Fastlane swift commit version bump unexpected uncommitted changes","url":"https://api.github.com/repos/fastlane/fastlane/issues/11709","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360862452","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297385315","subscription_url":"https://api.github.com/notifications/threads/297385315/subscription"},{"id":"297323053","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:15:41Z","last_read_at":null,"subject":{"title":"Hardcoded log-file paths lead to permission errors when embedding ruby gems in macOS app","url":"https://api.github.com/repos/fastlane/fastlane/issues/11708","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360862019","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297323053","subscription_url":"https://api.github.com/notifications/threads/297323053/subscription"},{"id":"297271712","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:14:07Z","last_read_at":null,"subject":{"title":"Improvement idea: pinpoint lines where loading a configuration file failed.","url":"https://api.github.com/repos/fastlane/fastlane/issues/11706","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360861612","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297271712","subscription_url":"https://api.github.com/notifications/threads/297271712/subscription"},{"id":"296904051","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:12:23Z","last_read_at":null,"subject":{"title":"How to set path to info.plist for different targets?","url":"https://api.github.com/repos/fastlane/fastlane/issues/11692","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360861151","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/296904051","subscription_url":"https://api.github.com/notifications/threads/296904051/subscription"},{"id":"297390111","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:10:20Z","last_read_at":null,"subject":{"title":"[snapshot] using with React Native","url":"https://api.github.com/repos/fastlane/fastlane/issues/11710","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360860615","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297390111","subscription_url":"https://api.github.com/notifications/threads/297390111/subscription"},{"id":"297178889","unread":true,"reason":"subscribed","updated_at":"2018-01-26T18:02:37Z","last_read_at":null,"subject":{"title":"Fix misprint","url":"https://api.github.com/repos/TextureGroup/Texture/pulls/768","latest_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments/360635160","type":"PullRequest"},"repository":{"id":81514066,"name":"Texture","full_name":"TextureGroup/Texture","owner":{"login":"TextureGroup","id":25676156,"avatar_url":"https://avatars3.githubusercontent.com/u/25676156?v=4","gravatar_id":"","url":"https://api.github.com/users/TextureGroup","html_url":"https://github.com/TextureGroup","followers_url":"https://api.github.com/users/TextureGroup/followers","following_url":"https://api.github.com/users/TextureGroup/following{/other_user}","gists_url":"https://api.github.com/users/TextureGroup/gists{/gist_id}","starred_url":"https://api.github.com/users/TextureGroup/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TextureGroup/subscriptions","organizations_url":"https://api.github.com/users/TextureGroup/orgs","repos_url":"https://api.github.com/users/TextureGroup/repos","events_url":"https://api.github.com/users/TextureGroup/events{/privacy}","received_events_url":"https://api.github.com/users/TextureGroup/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/TextureGroup/Texture","description":"Smooth asynchronous user interfaces for iOS apps.","fork":false,"url":"https://api.github.com/repos/TextureGroup/Texture","forks_url":"https://api.github.com/repos/TextureGroup/Texture/forks","keys_url":"https://api.github.com/repos/TextureGroup/Texture/keys{/key_id}","collaborators_url":"https://api.github.com/repos/TextureGroup/Texture/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/TextureGroup/Texture/teams","hooks_url":"https://api.github.com/repos/TextureGroup/Texture/hooks","issue_events_url":"https://api.github.com/repos/TextureGroup/Texture/issues/events{/number}","events_url":"https://api.github.com/repos/TextureGroup/Texture/events","assignees_url":"https://api.github.com/repos/TextureGroup/Texture/assignees{/user}","branches_url":"https://api.github.com/repos/TextureGroup/Texture/branches{/branch}","tags_url":"https://api.github.com/repos/TextureGroup/Texture/tags","blobs_url":"https://api.github.com/repos/TextureGroup/Texture/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/TextureGroup/Texture/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/TextureGroup/Texture/git/refs{/sha}","trees_url":"https://api.github.com/repos/TextureGroup/Texture/git/trees{/sha}","statuses_url":"https://api.github.com/repos/TextureGroup/Texture/statuses/{sha}","languages_url":"https://api.github.com/repos/TextureGroup/Texture/languages","stargazers_url":"https://api.github.com/repos/TextureGroup/Texture/stargazers","contributors_url":"https://api.github.com/repos/TextureGroup/Texture/contributors","subscribers_url":"https://api.github.com/repos/TextureGroup/Texture/subscribers","subscription_url":"https://api.github.com/repos/TextureGroup/Texture/subscription","commits_url":"https://api.github.com/repos/TextureGroup/Texture/commits{/sha}","git_commits_url":"https://api.github.com/repos/TextureGroup/Texture/git/commits{/sha}","comments_url":"https://api.github.com/repos/TextureGroup/Texture/comments{/number}","issue_comment_url":"https://api.github.com/repos/TextureGroup/Texture/issues/comments{/number}","contents_url":"https://api.github.com/repos/TextureGroup/Texture/contents/{+path}","compare_url":"https://api.github.com/repos/TextureGroup/Texture/compare/{base}...{head}","merges_url":"https://api.github.com/repos/TextureGroup/Texture/merges","archive_url":"https://api.github.com/repos/TextureGroup/Texture/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/TextureGroup/Texture/downloads","issues_url":"https://api.github.com/repos/TextureGroup/Texture/issues{/number}","pulls_url":"https://api.github.com/repos/TextureGroup/Texture/pulls{/number}","milestones_url":"https://api.github.com/repos/TextureGroup/Texture/milestones{/number}","notifications_url":"https://api.github.com/repos/TextureGroup/Texture/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/TextureGroup/Texture/labels{/name}","releases_url":"https://api.github.com/repos/TextureGroup/Texture/releases{/id}","deployments_url":"https://api.github.com/repos/TextureGroup/Texture/deployments"},"url":"https://api.github.com/notifications/threads/297178889","subscription_url":"https://api.github.com/notifications/threads/297178889/subscription"},{"id":"297410572","unread":true,"reason":"subscribed","updated_at":"2018-01-26T17:46:04Z","last_read_at":null,"subject":{"title":"last_testflight_build_number always assumes the build number is an int, truncates real value","url":"https://api.github.com/repos/fastlane/fastlane/issues/11712","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360854434","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/297410572","subscription_url":"https://api.github.com/notifications/threads/297410572/subscription"},{"id":"296013239","unread":true,"reason":"subscribed","updated_at":"2018-01-26T17:37:31Z","last_read_at":null,"subject":{"title":"upload_trailer fails, if you provide no preview_image. simple solution available","url":"https://api.github.com/repos/fastlane/fastlane/issues/11658","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments/360852262","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/296013239","subscription_url":"https://api.github.com/notifications/threads/296013239/subscription"},{"id":"279174326","unread":true,"reason":"subscribed","updated_at":"2018-01-26T17:28:25Z","last_read_at":null,"subject":{"title":"CodeSign fails in Jenkins/SSH while using Match","url":"https://api.github.com/repos/fastlane/fastlane/issues/11015","latest_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/11015","type":"Issue"},"repository":{"id":27442967,"name":"fastlane","full_name":"fastlane/fastlane","owner":{"login":"fastlane","id":11098337,"avatar_url":"https://avatars2.githubusercontent.com/u/11098337?v=4","gravatar_id":"","url":"https://api.github.com/users/fastlane","html_url":"https://github.com/fastlane","followers_url":"https://api.github.com/users/fastlane/followers","following_url":"https://api.github.com/users/fastlane/following{/other_user}","gists_url":"https://api.github.com/users/fastlane/gists{/gist_id}","starred_url":"https://api.github.com/users/fastlane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fastlane/subscriptions","organizations_url":"https://api.github.com/users/fastlane/orgs","repos_url":"https://api.github.com/users/fastlane/repos","events_url":"https://api.github.com/users/fastlane/events{/privacy}","received_events_url":"https://api.github.com/users/fastlane/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/fastlane/fastlane","description":"🚀 The easiest way to automate building and releasing your iOS and Android apps","fork":false,"url":"https://api.github.com/repos/fastlane/fastlane","forks_url":"https://api.github.com/repos/fastlane/fastlane/forks","keys_url":"https://api.github.com/repos/fastlane/fastlane/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fastlane/fastlane/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fastlane/fastlane/teams","hooks_url":"https://api.github.com/repos/fastlane/fastlane/hooks","issue_events_url":"https://api.github.com/repos/fastlane/fastlane/issues/events{/number}","events_url":"https://api.github.com/repos/fastlane/fastlane/events","assignees_url":"https://api.github.com/repos/fastlane/fastlane/assignees{/user}","branches_url":"https://api.github.com/repos/fastlane/fastlane/branches{/branch}","tags_url":"https://api.github.com/repos/fastlane/fastlane/tags","blobs_url":"https://api.github.com/repos/fastlane/fastlane/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fastlane/fastlane/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fastlane/fastlane/git/refs{/sha}","trees_url":"https://api.github.com/repos/fastlane/fastlane/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fastlane/fastlane/statuses/{sha}","languages_url":"https://api.github.com/repos/fastlane/fastlane/languages","stargazers_url":"https://api.github.com/repos/fastlane/fastlane/stargazers","contributors_url":"https://api.github.com/repos/fastlane/fastlane/contributors","subscribers_url":"https://api.github.com/repos/fastlane/fastlane/subscribers","subscription_url":"https://api.github.com/repos/fastlane/fastlane/subscription","commits_url":"https://api.github.com/repos/fastlane/fastlane/commits{/sha}","git_commits_url":"https://api.github.com/repos/fastlane/fastlane/git/commits{/sha}","comments_url":"https://api.github.com/repos/fastlane/fastlane/comments{/number}","issue_comment_url":"https://api.github.com/repos/fastlane/fastlane/issues/comments{/number}","contents_url":"https://api.github.com/repos/fastlane/fastlane/contents/{+path}","compare_url":"https://api.github.com/repos/fastlane/fastlane/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fastlane/fastlane/merges","archive_url":"https://api.github.com/repos/fastlane/fastlane/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fastlane/fastlane/downloads","issues_url":"https://api.github.com/repos/fastlane/fastlane/issues{/number}","pulls_url":"https://api.github.com/repos/fastlane/fastlane/pulls{/number}","milestones_url":"https://api.github.com/repos/fastlane/fastlane/milestones{/number}","notifications_url":"https://api.github.com/repos/fastlane/fastlane/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fastlane/fastlane/labels{/name}","releases_url":"https://api.github.com/repos/fastlane/fastlane/releases{/id}","deployments_url":"https://api.github.com/repos/fastlane/fastlane/deployments"},"url":"https://api.github.com/notifications/threads/279174326","subscription_url":"https://api.github.com/notifications/threads/279174326/subscription"}] \ No newline at end of file diff --git a/records/df3c2eca8f8913b33797978e21e118f3 b/records/df3c2eca8f8913b33797978e21e118f3 deleted file mode 100644 index 0e13bd80..00000000 --- a/records/df3c2eca8f8913b33797978e21e118f3 +++ /dev/null @@ -1 +0,0 @@ -{"data":{"repository":{"__typename":"Repository","name":"Moya","hasIssuesEnabled":true,"viewerCanAdminister":false,"mentionableUsers":{"__typename":"UserConnection","nodes":[{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/658?v=4","login":"stephencelis"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/12459?v=4","login":"steam"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/17361?v=4","login":"shanev"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/18548?v=4","login":"rickerbh"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/23498?v=4","login":"dylan"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/27510?v=4","login":"lowell"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/27570?v=4","login":"colinta"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/45840?v=4","login":"spookyvision"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/49038?v=4","login":"orta"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/49706?v=4","login":"juhagman"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/52437?v=4","login":"tp"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/56807?v=4","login":"sirlantis"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/59564?v=4","login":"joshuatbrown"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/66176?v=4","login":"tomj"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/67312?v=4","login":"jessearmand"},{"__typename":"User","avatarUrl":"https://avatars3.githubusercontent.com/u/113033?v=4","login":"mpurland"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/115241?v=4","login":"marcin-zbijowski"},{"__typename":"User","avatarUrl":"https://avatars0.githubusercontent.com/u/118992?v=4","login":"neonichu"},{"__typename":"User","avatarUrl":"https://avatars1.githubusercontent.com/u/130834?v=4","login":"evermeer"},{"__typename":"User","avatarUrl":"https://avatars2.githubusercontent.com/u/134170?v=4","login":"Thomvis"}]},"defaultBranchRef":{"__typename":"Ref","name":"master"},"issueOrPullRequest":{"__typename":"Issue","timeline":{"__typename":"IssueTimelineConnection","pageInfo":{"__typename":"PageInfo","hasPreviousPage":false,"startCursor":"MQ=="},"nodes":[{"__typename":"LabeledEvent","actor":{"__typename":"User","login":"SD10"},"label":{"__typename":"Label","color":"cc317c","name":"question"},"createdAt":"2017-12-23T19:58:33Z","id":"MDEyOkxhYmVsZWRFdmVudDE0MDA0NzM3MzI="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"sunshinejr","avatarUrl":"https://avatars3.githubusercontent.com/u/5232779?v=4"},"editor":null,"lastEditedAt":null,"body":"Hey @fengerxixi, you could need to use `.requestParameters` instead of `.requestCompositeParameters`:\r\n```swift\r\nreturn .requestParameters(parameters: parameters, encoding: URLEncoding.default)\r\n```\r\n\r\nBecause the only reason `requestCompositeParameters` exists is if you want to use url parameters and body parameters at once.","createdAt":"2017-12-23T21:45:49Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1Mzc0OTk1MQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fengerxixi","avatarUrl":"https://avatars0.githubusercontent.com/u/7982569?v=4"},"editor":{"__typename":"User","login":"fengerxixi"},"lastEditedAt":"2017-12-25T01:49:24Z","body":"Thanks for your reply @sunshinejr . But my project is indeed to use url parameters and body parameters at once. At the same time my body parameters need to be encoded by URLEncoding, so `.requestParameters` cant resolve my problem。\r\nNow i use ` .requestCompositeData` to encode my bodyParameters. If `.requestCompositeParameters` can support bodyParameter encoded by URLEncoding that would be greate.\r\n\r\n``` \r\nfunc formData(_ parameters: [String: Any]) -> Data {\r\n var components: [(String, String)] = []\r\n for key in parameters.keys.sorted(by: <) {\r\n let value = parameters[key]!\r\n components += URLEncoding.default.queryComponents(fromKey: key, value: value)\r\n }\r\n let bodyString = components.map { \"\\($0)=\\($1)\" }.joined(separator: \"&\")\r\n return bodyString.data(using: .utf8, allowLossyConversion: false)!\r\n }\r\n``` \r\n``` \r\nlet jsonData = post.toJSONString()!\r\n return .requestCompositeData(bodyData: formData([\"jsonData\": jsonData]), urlParameters: [ \"key\" : UserDefaults.LoginData.string(forKey: .key)!])\r\n```","createdAt":"2017-12-25T01:44:23Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1MzgxMzYyMg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"SD10","avatarUrl":"https://avatars0.githubusercontent.com/u/7445580?v=4"},"editor":null,"lastEditedAt":null,"body":"Interesting, I remember adding this restriction. @fengerxixi Why are you using `URLEncoding` for the body parameters?","createdAt":"2017-12-25T17:20:38Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1Mzg4MTE5OA=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fengerxixi","avatarUrl":"https://avatars0.githubusercontent.com/u/7982569?v=4"},"editor":null,"lastEditedAt":null,"body":"@SD10 Because my service interface need body parameters to be a form data, so i need to use URLEncoding for the body parameters. The interface is a post method, and it needs body parameters and url parameters at once.","createdAt":"2017-12-26T01:48:19Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1MzkwMjc5MQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"Bot","login":"stale","avatarUrl":"https://avatars2.githubusercontent.com/u/26350515?v=4"},"editor":null,"lastEditedAt":null,"body":"This issue has been marked as stale because it has not had recent activity. It will be closed if no further activity occurs. \n","createdAt":"2018-01-09T03:39:29Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1NjE3MDk2OQ=="},{"__typename":"LabeledEvent","actor":{"__typename":"Bot","login":"stale"},"label":{"__typename":"Label","color":"bfdadc","name":"stale"},"createdAt":"2018-01-09T03:39:30Z","id":"MDEyOkxhYmVsZWRFdmVudDE0MTQ4OTEzNTY="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"Bot","login":"stale","avatarUrl":"https://avatars2.githubusercontent.com/u/26350515?v=4"},"editor":null,"lastEditedAt":null,"body":"This issue has been auto-closed because there hasn't been any activity for at least 21 days. However, we really appreciate your contribution, so thank you for that! 🙏 Also, feel free to [open a new issue](https://github.com/Moya/Moya/issues/new) if you still experience this problem 👍.\n","createdAt":"2018-01-16T04:00:08Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM1Nzg0NzgxMA=="},{"__typename":"ClosedEvent","closedCommit":null,"actor":{"__typename":"Bot","login":"stale"},"createdAt":"2018-01-16T04:00:09Z","id":"MDExOkNsb3NlZEV2ZW50MTQyNTQwMDE1NQ=="},{"__typename":"ReopenedEvent","actor":{"__typename":"User","login":"sunshinejr"},"createdAt":"2018-01-25T22:22:37Z","id":"MDEzOlJlb3BlbmVkRXZlbnQxNDQyNjI3OTIy"},{"__typename":"UnlabeledEvent","actor":{"__typename":"Bot","login":"stale"},"label":{"__typename":"Label","color":"bfdadc","name":"stale"},"createdAt":"2018-01-25T22:22:39Z","id":"MDE0OlVubGFiZWxlZEV2ZW50MTQ0MjYyNzk2MQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"sunshinejr","avatarUrl":"https://avatars3.githubusercontent.com/u/5232779?v=4"},"editor":{"__typename":"User","login":"sunshinejr"},"lastEditedAt":"2018-01-26T09:39:52Z","body":"Hmm, I guess we could remove the `fatalError`. What we really wanted was to avoid a situation where you would use `URLEncoding.queryString` as `ParameterEncoding` for body parameters (or `URLEncoding.methodDependent` where `method` would be `get`, `head`, `delete`). Right now we block users from encoding parameters using `URLEncoding` in the `httpBody`.\r\n\r\nWhat we could do: instead of blocking `URLEncoding` as `parameterEncoding` for `bodyParameters`, we could block `URLEncoding.methodDependent` and `URLEncoding.queryString` and say that only `URLEncoding` we accept in `bodyParameters` is `URLEncoding.httpBody`. \r\n\r\nOpinions, @fengerxixi @SD10?","createdAt":"2018-01-25T22:35:59Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDYyMzgyNQ=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"SD10","avatarUrl":"https://avatars0.githubusercontent.com/u/7445580?v=4"},"editor":null,"lastEditedAt":null,"body":"@sunshinejr Thanks for not letting this slip by. I think that’s a great idea if it works for @fengerxixi \n\nSent with GitHawk","createdAt":"2018-01-26T01:05:13Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDY1MzA3OA=="},{"__typename":"CrossReferencedEvent","actor":{"__typename":"User","login":"sunshinejr"},"createdAt":"2018-01-26T14:02:01Z","source":{"__typename":"PullRequest","title":"Allow URLEncoding.httpBody as bodyEncoding in Task","number":1557,"closed":true,"merged":true,"repository":{"__typename":"Repository","name":"Moya","owner":{"__typename":"Organization","login":"Moya"}}},"id":"MDIwOkNyb3NzUmVmZXJlbmNlZEV2ZW50NTcwNTY1MzE4"},{"__typename":"ClosedEvent","closedCommit":null,"actor":{"__typename":"User","login":"SD10"},"createdAt":"2018-01-26T15:58:49Z","id":"MDExOkNsb3NlZEV2ZW50MTQ0Mzg0NjM2Nw=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"sunshinejr","avatarUrl":"https://avatars3.githubusercontent.com/u/5232779?v=4"},"editor":null,"lastEditedAt":null,"body":"@fengerxixi Hey, just a heads-up that we enabled `URLEncoding.httpBody` as `bodyEncoding` argument. It is also released in the newest Moya 10.0.2, thanks to @SD10. If this doesn't resolve your issue, please let us know!","createdAt":"2018-01-26T21:30:39Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDkwOTU0Mg=="},{"__typename":"IssueComment","viewerCanDelete":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fengerxixi","avatarUrl":"https://avatars0.githubusercontent.com/u/7982569?v=4"},"editor":null,"lastEditedAt":null,"body":"@sunshinejr @SD10 ,thanks a lot. I update Moya to 10.0.2 and it woks really well.","createdAt":"2018-01-27T13:26:04Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[{"__typename":"User","login":"SD10"},{"__typename":"User","login":"sunshinejr"}],"totalCount":2},"content":"HEART"}],"id":"MDEyOklzc3VlQ29tbWVudDM2MDk4NDgwMQ=="}]},"milestone":null,"number":1516,"title":"how to use task \" requestCompositeParameters \" with bodyEncoding which is URLEncoding","assignees":{"__typename":"UserConnection","nodes":[]},"labels":{"__typename":"LabelConnection","nodes":[{"__typename":"Label","color":"cc317c","name":"question"}]},"closed":true,"locked":false,"viewerCanUpdate":false,"author":{"__typename":"User","login":"fengerxixi","avatarUrl":"https://avatars0.githubusercontent.com/u/7982569?v=4"},"editor":null,"lastEditedAt":null,"body":"I have a question when i use moya 10.0\r\n\r\nin my task i want to post some parameters with form not json, so i use URLEncoding.default to encode bodyParameters. \r\n\r\nbut i found moya dont support this, and note me \"URLEncoding is disallowed as bodyEncoding.\"\r\nso how can i use URLEncoding to encode my bodyParameters like below.\r\n\r\n```swift\r\n let paramams = [\"stationId\": stationId, \"jsonData\" : jsonData] as [String : Any]\r\n return .requestCompositeParameters(bodyParameters: paramams, bodyEncoding: URLEncoding.default, urlParameters: [\"key\" : key])\r\n```\r\n\r\n","createdAt":"2017-12-23T03:53:31Z","viewerDidAuthor":false,"viewerCanReact":true,"reactionGroups":[{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_UP"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"THUMBS_DOWN"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"LAUGH"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HOORAY"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"CONFUSED"},{"__typename":"ReactionGroup","viewerHasReacted":false,"users":{"__typename":"ReactingUserConnection","nodes":[],"totalCount":0},"content":"HEART"}],"id":"MDU6SXNzdWUyODQyODM5Nzg="}}}} \ No newline at end of file diff --git a/records/status/github/com/api/status.json/7528035a93ee69cedb1dbddb2f0bfcc8 b/records/status/github/com/api/status.json/7528035a93ee69cedb1dbddb2f0bfcc8 new file mode 100644 index 00000000..3e6db0a8 Binary files /dev/null and b/records/status/github/com/api/status.json/7528035a93ee69cedb1dbddb2f0bfcc8 differ