github-tools / github

A higher-level wrapper around the Github API. Intended for the browser.
BSD 3-Clause "New" or "Revised" License
3.6k stars 759 forks source link

Missing API Method To Get A Commit's Combined Status #426

Closed compumike08 closed 5 years ago

compumike08 commented 7 years ago

I looked all throughout the documentation, and I could not find any method in this library to invoke the GitHub API's combined status endpoint. It seems that support for it was never added to this library.

The combined status endpoint is not the same thing as listing the statuses for a commit (I know this library does support that). Listing all statuses for a commit shows every single status that has ever been set on the commit specified. In contrast, the combined status endpoint returns a single combined status which indicates only the overall combined status for the commit, taking into account only the most recent status set for each context.

The combined status endpoint allows a single call to the GitHub API to determine whether a specific commit ready to deploy or not, without having to parse through a list of every status on the commit, find the most recent statuses for each context, and then run through the logic manually to determine what the combined state should be based on the specific combination of states from the statuses of each context.

I'm not sure why the combined status endpoint got overlooked when creating this library, as it is not a new addition to the GitHub API (GitHub added it to their API back in 2014). The combined status endpoint is a very crucial endpoint, as it is the most reliable way to determine if a particular commit has passed all status checks and is ready to be deployed or not.

I used to use the Octokat.js library for an application I'm in the process of developing, but I didn't like the way Octokat.js handled pagination so I started to switch to this library instead. However when I realized that the combined status endpoint was not supported by this library I had to stop migrating, as I need support for the combined status endpoint in my application.

Is adding support for the combined status endpoint to this library something that can be done fairly quickly? I would greatly appreciate it if one this library's developers could give me an estimate of when support for the combined status endpoint could be added and released, as depending on how long it might take I may have to go back to using Octokat.js. Thanks.

clayreimann commented 7 years ago

The beauty of OSS is that you have the power to contribute. In fact it probably would have taken you less time to add the combined status API method. See how we've done the statuses method.

If you submit a PR then I'm sure one of us will gladly review it, but we've only added the features that we need. That's not to say that your feature will never make it into the library but we haven't needed it yet (and don't have time to work on this library right now) so I can't give you an estimate on landing this feature.

compumike08 commented 7 years ago

@clayreimann: I would have, however the current build status of your master branch is failing. I looked at the latest build job on master in your Travis CI, and it says 3 tests failed. I also forked your repo and tried to build your master branch locally myself. When I ran the build tests, it showed 5 tests were failing. I didn't want to try adding any code while the existing code already had failing tests. Are the test failures something you can fix?

I'm attaching my npm-debug.log file (I had to change the extension from .log to .txt in order to upload it to this GitHub comment).

Here is the output I got when I ran the tests locally:

$ npm run test

> github-api@3.1.0 test D:\Application_Dev_Workspaces\github
> mocha --opts ./mocha.opts test/*.spec.js

  Github
    with authentication
      √ should authenticate and return no errors
    without authentication
      √ should read public information
    with bad authentication
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): TypeError: Cannot read property 'data' of undefined
      √ should fail authentication and return err

  Rate limit error
    √ should reject promise with 403 error
    √ should call callback

  Rate limit OK
    √ should resolve promise
    √ should call callback with array of results

  Gist
    reading
      √ should read a gist
    creating/modifiying
      √ should create gist
      √ should star a gist
      √ should create a comment a gist
      √ should list comments
      √ should get comment
      √ should edit comment
      √ should delete comment
      √ should update gist
      √ should list commits
      √ should get revision
    deleting
      √ should delete gist

  Issue
    reading
      √ should list issues
      √ should get issue
      √ should get issue events
      √ should get all milestones
      √ should get a single milestone
    creating/editing/deleting
      √ should create issue
      √ should edit issue
      √ should post issue comment
      √ should list issue comments
      √ should get a single issue comment
      √ should edit issue comment
      √ should delete issue comment
      √ should create a milestone
      √ should update a milestone
      √ should delete a milestone
      √ should create a label
      √ should retrieve a single label
      √ should update a label
      √ should list labels
      √ should delete a label

  Markdown
    √ should convert markdown to html as plain Markdown
    √ should convert markdown to html as GFM

  Organization
    reading
      √ should show user's organisation repos
      √ should list the users in the organization
      √ should test for membership
    creating/updating
      √ should create an organization repo
      √ should create an organization team
      1) should list the teams in the organization
      √ should create a project
      √ should list repo projects

  Project
    √ should get repo project
    √ should update a project
    √ should create a repo project column
    √ should list repo project columns
    √ should get repo project column
    √ should update a repo project column
    √ should create repo project card
    √ should list cards of a project
    √ should list cards of a column
    √ should get repo project card
    √ should update repo project card
    √ should move repo project card
    √ should move repo project column
    √ should delete repo project card
    √ should delete repo project column
    √ should delete repo project

  RateLimit
    √ should get rate limit

  Repository
    reading
      √ should get repo details
      √ should get blob
      √ should get a branch
      √ should show repo contents
      √ should show repo content raw
      √ should show repo readme
      √ should get ref from repo
      √ should get tree
      √ should fork repo
      √ should list forks of repo
      √ should list commits with no options
      √ should list commits with all options
      √ should get the latest commit from master
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 6): TypeError: Cannot read property 'data' of undefined
      √ should fail when null ref is passed
      √ should show repo contributors
{}
      2) should show repo contributor stats
      √ should list repo branches
      √ should get commit from repo
      √ should get statuses for a SHA from a repo
      √ should get a SHA from a repo
      √ should get a repo by fullname
      √ should check if the repo is starred
    creating/modifiying
      √ should create repo
      √ should be able to edit repository information
      √ should show repo collaborators
      √ should test whether user is collaborator
      √ should write to repo (2520ms)
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 10): TypeError: Cannot read property 'data' of undefined
      √ should rename files (5434ms)
      √ should create a new branch
      √ should write to repo branch
      √ should compare two branches
      √ should submit a pull request (2960ms)
      √ should create ref on repo
      √ should update commit status
      √ should delete ref on repo
      √ should list tags on repo
      √ should list pulls on repo
      √ should get pull requests on repo
      √ should delete a file on the repo (2515ms)
      √ should write author and committer to repo
      √ should be able to write all the unicode
      √ should pass a regression test for _request (#14)
      √ should be able to write an image to the repo
      √ should be able to write a string blob to the repo
      √ should be able to write a file blob to the repo
      √ should star the repo
      √ should unstar the repo
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 19): TypeError: Cannot read property 'data' of undefined
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 20): TypeError: Cannot read property 'data' of undefined
      √ should fail on broken commit
      √ should create a release
      √ should edit a release
      √ should read all releases
      √ should read a release
      3) should delete a release
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 22): TypeError: Cannot read property 'data' of undefined
      √ should create a project
      √ should list repo projects
    deleting
      √ should delete the repo

  Search
    √ should search repositories
    √ should search code
    √ should search issues
    √ should search users

  Team
skiped fixed-test-repo-1 creation
skiped fixed-test-repo-1 creation
    4) "before all" hook

  Team
    √ should update team
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 26): TypeError: Cannot read property 'data' of undefined
    5) should add membership for a given user
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 28): TypeError: Cannot read property 'data' of undefined
    √ should add membership as a maintainer for a given user
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 30): TypeError: Cannot read property 'data' of undefined
    √ should add/remove team management of repo
(node:8760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 32): TypeError: Cannot read property 'data' of undefined

  User
    √ should get user repos (3232ms)
    √ should get user repos with options
    √ should get user orgs
    √ should get user gists
    √ should get user notifications
    √ should get user notifications with options
    √ should get the user's profile
    √ should show user's starred repos
    √ should follow user
    √ should unfollow user
    √ should list the email addresses of the user

  137 passing (2m)
  5 failing

  1) Organization creating/updating should list the teams in the organization:
     TypeError: Cannot read property 'page' of undefined
      at D:/Application_Dev_Workspaces/github/lib/Requestable.js:259:35
      at process._tickCallback (internal/process/next_tick.js:103:7)

  2) Repository reading should show repo contributor stats:
     Uncaught AssertionError: {} must be an array
      at D:/Application_Dev_Workspaces/github/test/repository.spec.js:199:43
      at Timeout.delay [as _onTimeout] (D:/Application_Dev_Workspaces/github/test/helpers/callbacks.js:13:16)

  3) Repository creating/modifiying should delete a release:
     AssertionError: {"path":"/repos/mikedeboertest/1487790833678-21265/releases/5539238","request":{"transformRequest":{},"transformResponse":{},"timeout":0,"xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN","maxContentLength":-1,"headers":{"Accept":"application/vnd.github.v3+json","Content-Type":"application/json;charset=UTF-8","Authorization":"Basic bWlrZWRlYm9lcnRlc3Q6dGVzdDEzMjQ=","User-Agent":"axios/0.15.3"},"method":"DELETE","url":"https://api.github.com/repos/mikedeboertest/1487790833678-21265/releases/5539238","params":{},"data":null,"responseType":"json"},"response":{"status":405,"statusText":"Not Allowed","headers":{"server":"GitHub.com","date":"Wed, 22 Feb 2017 19:15:33 GMT","content-type":"text/html","content-length":"166","connection":"close","x-github-request-id":"EEFC:29C2:9A480EF:C5D4783:58ADE34A"},"config":{"transformRequest":{},"transformResponse":{},"timeout":0,"xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN","maxContentLength":-1,"headers":{"Accept":"application/vnd.github.v3+json","Content-Type":"application/json;charset=UTF-8","Authorization":"Basic bWlrZWRlYm9lcnRlc3Q6dGVzdDEzMjQ=","User-Agent":"axios/0.15.3"},"method":"DELETE","url":"https://api.github.com/repos/mikedeboertest/1487790833678-21265/releases/5539238","params":{},"data":null,"responseType":"json"},"request":{"_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":false,"ended":false,"finished":false,"decodeStrings":true,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":true,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":false,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":true,"domain":null,"_events":{},"_eventsCount":2,"_maxListeners":"[Undefined]","_options":{"maxRedirects":21,"protocol":"https:","hostname":"api.github.com","port":443,"path":"/repos/mikedeboertest/1487790833678-21265/releases/5539238","method":"DELETE","headers":{"Accept":"application/vnd.github.v3+json","Content-Type":"application/json;charset=UTF-8","Authorization":"Basic bWlrZWRlYm9lcnRlc3Q6dGVzdDEzMjQ=","User-Agent":"axios/0.15.3"},"agent":"[Undefined]","auth":"[Undefined]","proto":"https","host":"api.github.com:443"},"_redirectCount":0,"_currentRequest":{"domain":null,"_events":{},"_eventsCount":4,"_maxListeners":"[Undefined]","output":[],"outputEncodings":[],"outputCallbacks":[],"outputSize":0,"writable":true,"_last":true,"upgrading":false,"chunkedEncoding":false,"shouldKeepAlive":false,"useChunkedEncodingByDefault":false,"sendDate":false,"_removedHeader":{},"_contentLength":0,"_hasBody":true,"_trailer":"","finished":true,"_headerSent":true,"socket":{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1},"connection":{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1},"_header":"DELETE /repos/mikedeboertest/1487790833678-21265/releases/5539238 HTTP/1.1\r\nAccept: application/vnd.github.v3+json\r\nContent-Type: application/json;charset=UTF-8\r\nAuthorization: Basic bWlrZWRlYm9lcnRlc3Q6dGVzdDEzMjQ=\r\nUser-Agent: axios/0.15.3\r\nHost: api.github.com\r\nConnection: close\r\n\r\n","_headers":{"accept":"application/vnd.github.v3+json","content-type":"application/json;charset=UTF-8","authorization":"Basic bWlrZWRlYm9lcnRlc3Q6dGVzdDEzMjQ=","user-agent":"axios/0.15.3","host":"api.github.com"},"_headerNames":{"accept":"Accept","content-type":"Content-Type","authorization":"Authorization","user-agent":"User-Agent","host":"Host"},"_onPendingData":null,"agent":{"domain":null,"_events":{},"_eventsCount":1,"_maxListeners":"[Undefined]","defaultPort":443,"protocol":"https:","options":{"path":null},"requests":{},"sockets":{"api.github.com:443::::::::":[{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1}]},"freeSockets":{},"keepAliveMsecs":1000,"keepAlive":false,"maxSockets":null,"maxFreeSockets":256,"maxCachedSessions":100,"_sessionCache":{"map":{"api.github.com:443::::::::":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]}},"list":["api.github.com:443::::::::"]}},"socketPath":"[Undefined]","timeout":"[Undefined]","method":"DELETE","path":"/repos/mikedeboertest/1487790833678-21265/releases/5539238","_ended":true,"_redirectable":"[Circular ~.response.request]","parser":null,"res":{"_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":true,"endEmitted":true,"reading":false,"sync":true,"needReadable":false,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_events":{"end":[null,null]},"_eventsCount":3,"_maxListeners":"[Undefined]","socket":{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1},"connection":{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1},"httpVersionMajor":1,"httpVersionMinor":1,"httpVersion":"1.1","complete":true,"headers":{"server":"GitHub.com","date":"Wed, 22 Feb 2017 19:15:33 GMT","content-type":"text/html","content-length":"166","connection":"close","x-github-request-id":"EEFC:29C2:9A480EF:C5D4783:58ADE34A"},"rawHeaders":["Server","GitHub.com","Date","Wed, 22 Feb 2017 19:15:33 GMT","Content-Type","text/html","Content-Length","166","Connection","close","X-GitHub-Request-Id","EEFC:29C2:9A480EF:C5D4783:58ADE34A"],"trailers":{},"rawTrailers":[],"upgrade":false,"url":"","method":null,"statusCode":405,"statusMessage":"Not Allowed","client":{"_tlsOptions":{"pipe":null,"secureContext":{"context":{},"singleUse":true},"isServer":false,"requestCert":true,"rejectUnauthorized":true,"session":{"type":"Buffer","data":[48,130,7,216,2,1,1,2,2,3,3,4,2,192,47,4,32,120,174,102,250,102,210,139,98,13,100,31,217,211,0,188,72,205,242,28,190,180,131,20,52,114,193,234,54,22,46,42,108,4,48,161,167,228,55,163,132,61,54,60,111,193,151,42,46,21,228,175,79,246,220,66,11,200,114,186,223,192,132,212,248,164,84,242,59,109,16,223,107,121,128,14,246,147,191,31,154,65,46,161,6,2,4,88,173,226,242,162,4,2,2,1,44,163,130,7,81,48,130,7,77,48,130,6,53,160,3,2,1,2,2,16,13,157,221,231,207,172,97,154,195,134,111,174,53,69,138,148,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,48,112,49,11,48,9,6,3,85,4,6,19,2,85,83,49,21,48,19,6,3,85,4,10,19,12,68,105,103,105,67,101,114,116,32,73,110,99,49,25,48,23,6,3,85,4,11,19,16,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,49,47,48,45,6,3,85,4,3,19,38,68,105,103,105,67,101,114,116,32,83,72,65,50,32,72,105,103,104,32,65,115,115,117,114,97,110,99,101,32,83,101,114,118,101,114,32,67,65,48,30,23,13,49,55,48,49,49,56,48,48,48,48,48,48,90,23,13,50,48,48,52,49,55,49,50,48,48,48,48,90,48,104,49,11,48,9,6,3,85,4,6,19,2,85,83,49,19,48,17,6,3,85,4,8,19,10,67,97,108,105,102,111,114,110,105,97,49,22,48,20,6,3,85,4,7,19,13,83,97,110,32,70,114,97,110,99,105,115,99,111,49,21,48,19,6,3,85,4,10,19,12,71,105,116,72,117,98,44,32,73,110,99,46,49,21,48,19,6,3,85,4,3,12,12,42,46,103,105,116,104,117,98,46,99,111,109,48,130,1,34,48,13,6,9,42,134,72,134,247,13,1,1,1,5,0,3,130,1,15,0,48,130,1,10,2,130,1,1,0,169,192,143,48,73,45,187,18,232,12,12,93,29,8,8,247,145,112,120,126,5,107,175,139,178,85,54,170,105,148,4,95,169,187,134,78,82,250,72,67,21,84,231,10,157,89,172,89,106,236,70,214,118,20,78,176,22,116,246,245,159,75,166,128,187,6,19,181,152,92,153,208,60,151,176,32,174,16,134,230,180,46,202,226,172,135,71,145,204,7,67,205,205,17,136,254,150,204,33,131,71,212,65,68,109,211,165,45,107,150,164,46,139,195,116,147,203,169,59,147,75,249,236,132,230,187,234,20,116,162,229,167,174,171,156,44,189,108,205,203,215,254,134,193,248,219,27,154,190,124,50,184,60,166,180,31,70,130,186,137,188,229,103,43,21,243,202,143,112,42,92,231,185,106,233,0,74,67,97,125,90,4,12,178,196,34,129,119,211,54,111,37,0,4,62,47,168,2,102,120,29,224,167,199,96,244,137,96,13,59,160,85,166,185,35,154,150,8,116,209,104,124,61,72,238,68,106,220,55,21,169,154,7,192,45,1,199,21,136,40,13,192,254,107,207,134,160,153,62,25,210,93,222,137,224,101,2,3,1,0,1,163,130,3,233,48,130,3,229,48,31,6,3,85,29,35,4,24,48,22,128,20,81,104,255,144,175,2,7,117,60,204,217,101,100,98,162,18,184,89,114,59,48,29,6,3,85,29,14,4,22,4,20,234,97,82,178,254,10,64,128,229,32,138,48,55,36,160,234,166,108,106,170,48,35,6,3,85,29,17,4,28,48,26,130,12,42,46,103,105,116,104,117,98,46,99,111,109,130,10,103,105,116,104,117,98,46,99,111,109,48,14,6,3,85,29,15,1,1,255,4,4,3,2,5,160,48,29,6,3,85,29,37,4,22,48,20,6,8,43,6,1,5,5,7,3,1,6,8,43,6,1,5,5,7,3,2,48,117,6,3,85,29,31,4,110,48,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,51,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,52,160,50,160,48,134,46,104,116,116,112,58,47,47,99,114,108,52,46,100,105,103,105,99,101,114,116,46,99,111,109,47,115,104,97,50,45,104,97,45,115,101,114,118,101,114,45,103,53,46,99,114,108,48,76,6,3,85,29,32,4,69,48,67,48,55,6,9,96,134,72,1,134,253,108,1,1,48,42,48,40,6,8,43,6,1,5,5,7,2,1,22,28,104,116,116,112,115,58,47,47,119,119,119,46,100,105,103,105,99,101,114,116,46,99,111,109,47,67,80,83,48,8,6,6,103,129,12,1,2,2,48,129,131,6,8,43,6,1,5,5,7,1,1,4,119,48,117,48,36,6,8,43,6,1,5,5,7,48,1,134,24,104,116,116,112,58,47,47,111,99,115,112,46,100,105,103,105,99,101,114,116,46,99,111,109,48,77,6,8,43,6,1,5,5,7,48,2,134,65,104,116,116,112,58,47,47,99,97,99,101,114,116,115,46,100,105,103,105,99,101,114,116,46,99,111,109,47,68,105,103,105,67,101,114,116,83,72,65,50,72,105,103,104,65,115,115,117,114,97,110,99,101,83,101,114,118,101,114,67,65,46,99,114,116,48,12,6,3,85,29,19,1,1,255,4,2,48,0,48,130,1,244,6,10,43,6,1,4,1,214,121,2,4,2,4,130,1,228,4,130,1,224,1,222,0,117,0,164,185,9,144,180,24,88,20,135,187,19,162,204,103,112,10,60,53,152,4,249,27,223,184,227,119,205,14,200,13,220,16,0,0,1,89,178,156,62,75,0,0,4,3,0,70,48,68,2,32,30,172,14,239,209,181,83,71,86,229,41,62,136,204,65,93,52,6,210,244,157,190,176,194,50,55,160,218,119,196,6,66,2,32,3,222,30,42,40,231,215,103,17,58,26,243,52,62,190,182,21,86,252,247,72,153,76,211,18,135,66,24,88,26,8,245,0,118,0,86,20,6,154,47,215,194,236,211,245,225,189,68,178,62,199,70,118,185,188,153,17,92,192,239,148,152,85,214,137,208,221,0,0,1,89,178,156,63,28,0,0,4,3,0,71,48,69,2,32,36,166,105,146,192,40,130,198,45,124,189,181,176,194,69,202,138,199,130,154,93,163,133,32,44,84,28,176,218,190,27,211,2,33,0,138,37,239,185,202,245,101,129,220,160,157,98,199,239,212,3,37,184,75,45,126,73,242,49,87,255,207,86,227,46,152,87,0,117,0,238,75,189,183,117,206,96,186,225,66,105,31,171,225,158,102,163,15,126,95,176,114,216,131,0,196,123,137,122,168,253,203,0,0,1,89,178,156,64,46,0,0,4,3,0,70,48,68,2,32,114,171,204,14,72,111,51,68,24,202,246,54,102,230,112,153,220,185,68,217,30,193,209,38,165,52,120,38,92,137,169,249,2,32,70,24,133,249,105,213,148,110,59,133,90,32,91,213,153,196,145,139,7,243,95,232,205,182,6,155,156,88,223,162,36,199,0,118,0,187,217,223,188,31,138,113,181,147,148,35,151,170,146,123,71,56,87,149,10,171,82,232,26,144,150,100,54,142,30,209,133,0,0,1,89,178,156,62,93,0,0,4,3,0,71,48,69,2,33,0,146,76,189,9,93,253,206,253,2,216,69,18,61,54,169,87,90,205,255,210,154,57,27,250,8,13,252,56,235,72,29,188,2,32,6,18,52,176,196,40,248,175,227,231,82,12,197,181,68,91,46,135,228,222,32,47,16,34,227,244,214,78,217,38,91,117,48,13,6,9,42,134,72,134,247,13,1,1,11,5,0,3,130,1,1,0,124,131,47,73,74,189,103,129,20,158,34,61,239,166,142,145,116,210,63,6,188,25,63,138,23,57,75,165,204,143,153,197,63,199,192,19,166,213,44,1,25,210,247,166,51,199,176,86,181,200,105,173,123,3,88,167,69,46,9,144,253,132,211,118,5,31,203,244,50,203,182,218,38,240,178,47,0,95,225,194,105,176,23,88,104,172,92,138,7,182,118,112,9,142,5,72,190,95,35,16,238,36,250,80,249,5,104,42,66,4,68,148,53,227,209,37,85,65,13,112,119,67,25,76,165,165,13,86,241,152,171,23,206,238,72,210,69,130,27,175,230,124,23,9,115,238,135,248,0,86,115,86,8,43,234,75,63,88,195,97,192,188,194,63,95,70,68,194,165,149,191,222,86,127,54,223,172,156,205,110,141,52,89,237,20,193,149,17,182,184,146,233,33,125,121,38,40,82,166,177,43,222,237,253,68,117,41,28,227,131,44,220,213,3,14,183,205,242,106,8,155,207,181,160,171,251,242,151,42,186,159,142,79,89,249,238,205,154,15,136,196,231,248,51,243,49,110,140,120,40,155,203,149,127,41,193,164,2,4,0,166,16,4,14,97,112,105,46,103,105,116,104,117,98,46,99,111,109]},"NPNProtocols":"[Undefined]","ALPNProtocols":"[Undefined]","requestOCSP":"[Undefined]"},"_secureEstablished":true,"_securePending":false,"_newSessionPending":false,"_controlReleased":true,"_SNICallback":null,"servername":null,"npnProtocol":"[Undefined]","alpnProtocol":false,"authorized":true,"authorizationError":null,"encrypted":true,"_events":{"close":[null,null,null,null],"end":[null]},"_eventsCount":9,"connecting":false,"_hadError":false,"_handle":null,"_parent":null,"_host":"api.github.com","_readableState":{"objectMode":false,"highWaterMark":16384,"buffer":{"head":null,"tail":null,"length":0},"length":0,"pipes":null,"pipesCount":0,"flowing":true,"ended":false,"endEmitted":false,"reading":true,"sync":false,"needReadable":true,"emittedReadable":false,"readableListening":false,"resumeScheduled":false,"defaultEncoding":"utf8","ranOut":false,"awaitDrain":0,"readingMore":false,"decoder":null,"encoding":null},"readable":false,"domain":null,"_maxListeners":"[Undefined]","_writableState":{"objectMode":false,"highWaterMark":16384,"needDrain":false,"ending":true,"ended":true,"finished":true,"decodeStrings":false,"defaultEncoding":"utf8","length":0,"writing":false,"corked":0,"sync":false,"bufferProcessing":false,"writecb":null,"writelen":0,"bufferedRequest":null,"lastBufferedRequest":null,"pendingcb":0,"prefinished":true,"errorEmitted":false,"bufferedRequestCount":0,"corkedRequestsFree":{"next":null,"entry":null}},"writable":false,"allowHalfOpen":false,"destroyed":true,"_bytesDispatched":286,"_sockname":null,"_pendingData":null,"_pendingEncoding":"","server":"[Undefined]","_server":null,"ssl":null,"_requestCert":true,"_rejectUnauthorized":true,"parser":null,"_httpMessage":"[Circular ~.response.request._currentRequest]","_consuming":true,"_idleNext":null,"_idlePrev":null,"_idleTimeout":-1},"_consuming":true,"_dumped":false,"req":"[Circular ~.response.request._currentRequest]","responseUrl":"https://api.github.com:443"}},"_currentUrl":"https://api.github.com:443"},"data":"<html>\r\n<head><title>405 Not Allowed</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>405 Not Allowed</h1></center>\r\n<hr><center>nginx</center>\r\n</body>\r\n</html>\r\n"},"status":"[Undefined]","message":"405 error making request DELETE https://api.github.com/repos/mikedeboertest/1487790833678-21265/releases/5539238: \"Not Allowed\""} must not exist
      at successCallback (D:/Application_Dev_Workspaces/github/test/helpers/callbacks.js:8:29)
      at handler (D:/Application_Dev_Workspaces/github/lib/Requestable.js:308:10)
      at process._tickCallback (internal/process/next_tick.js:103:7)

  4) Team "before all" hook:
     TypeError: Cannot read property 'page' of undefined
      at D:/Application_Dev_Workspaces/github/lib/Requestable.js:259:35
      at process._tickCallback (internal/process/next_tick.js:103:7)

  5) Team should add membership for a given user:

      AssertionError: "maintainer" must equal "member"
      + expected - actual

      -maintainer
      +member

      at D:/Application_Dev_Workspaces/github/test/team.spec.js:166:29
      at process._tickCallback (internal/process/next_tick.js:103:7)

npm ERR! Windows_NT 10.0.14393
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "test"
npm ERR! node v6.9.1
npm ERR! npm  v3.10.8
npm ERR! code ELIFECYCLE
npm ERR! github-api@3.1.0 test: `mocha --opts ./mocha.opts test/*.spec.js`
npm ERR! Exit status 5
npm ERR!
npm ERR! Failed at the github-api@3.1.0 test script 'mocha --opts ./mocha.opts test/*.spec.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the github-api package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     mocha --opts ./mocha.opts test/*.spec.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs github-api
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls github-api
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     D:\Application_Dev_Workspaces\github\npm-debug.log
compumike08 commented 7 years ago

@clayreimann: I went ahead and added the combined status API to this library and created a pull request #429. Can you please let me know if there is anything else I need to do before my pull request can be merged and the new code to be published to the npm repository?

j-rewerts commented 5 years ago

This functionality is out in v3.3.0 now. Apologies for the delay!