Tags: aoberoi/node-github
Tags
fix(typescript): improve default response type (octokit#683)
feat: error on 304s (octokit#673) 304s are only returned if according headers are sent. Caching has to be handled by user
breaking: remove `.get{Scope name}Api()` methods
BREAKING CHANGE: `.get{Scope name}Api()` methods have been removed.
Before you could do this
```js
const reposApi = github.getReposApi()
```
Which is the same as doing
```js
const reposApi = github.repos
```
So we removed it :)
fix: whitelist X-GitHub-SSO header in response (octokit#663)
PreviousNext