Releases: octokit/oauth-app.js
Releases · octokit/oauth-app.js
v3.2.0
v3.1.0
v3.0.1
v3.0.0
Apologies for the breaking changes without previous deprecations. We had to compromise due to lack of time.
BREAKING CHANGES
- stateless methods have been removed. Use
@octokit/oauth-methods
instead - You must now set
clientType
to"github-app"
for usage with GitHub Apps getNodeMiddleware()
export has been removed. UsecreateNodeMiddleware()
insteadconst { token, scopes } = app.createToken(options)
is nowconst { authentication: { token, scopes } } = app.createToken(options)
const url = app.getAuthorizationUrl()
is nowconst { url } = app.getWebFlowAuthorizationUrl()
;before_delete
action removed fortoken
andauthorization
events. We could add them back, but it would require an additional request, we'd like to see if there are people why actually use these events.
Features
v2.1.0
v2.0.5
v2.0.4
v2.0.3
2.0.3 (2020-12-13)
Bug Fixes
- README: reference all available API endpoints in code example (#180) thanks @chopfitzroy (ebec749)