Skip to content

Releases: octokit/app.js

v13.0.1

08 Jul 00:10
1858980
Compare
Choose a tag to compare

13.0.1 (2022-07-08)

Bug Fixes

  • deps: update dependency @octokit/auth-app to v4 (#303) (1858980)

v13.0.0

27 Jun 20:01
Compare
Choose a tag to compare

13.0.0 (2022-06-27)

Continuous Integration

  • stop testing NodeJS v12, start testing v18 (#298) (0a5c918)

BREAKING CHANGES

  • Drop support for NodeJS v10, v12

v12.0.7

27 Jun 20:07
Compare
Choose a tag to compare

12.0.7 (2022-06-27)

Bug Fixes

  • deps: revert update dependency @octokit/webhooks to v10 (#297) (c322292)

v12.0.6

26 Jun 18:58
635708c
Compare
Choose a tag to compare

12.0.6 (2022-06-26)

Bug Fixes

  • deps: update dependency @octokit/webhooks to v10 (#294) (635708c)

v12.0.5

13 Sep 15:03
c386232
Compare
Choose a tag to compare

12.0.5 (2021-09-13)

Bug Fixes

v12.0.4

17 Aug 18:18
3583abb
Compare
Choose a tag to compare

12.0.4 (2021-08-17)

Bug Fixes

  • README: app.getInstallationOctokit() usage (3583abb)

v12.0.3

05 Jun 00:51
ed421d7
Compare
Choose a tag to compare

12.0.3 (2021-06-05)

Bug Fixes

  • make node middleware compatible with express (#253) (ed421d7)

v12.0.2

17 Apr 13:20
dafe265
Compare
Choose a tag to compare

12.0.2 (2021-04-17)

Bug Fixes

  • typescript: avoid import { App } from "../...d.ts" in types export (#237) (dafe265)

v12.0.1

17 Apr 12:51
256e722
Compare
Choose a tag to compare

12.0.1 (2021-04-17)

Bug Fixes

  • remove type imports from "http" for Deno compatibility (#235) (256e722)

v12.0.0

14 Apr 08:27
7c48a3a
Compare
Choose a tag to compare

12.0.0 (2021-04-14)

BREAKING CHANGES

  • sign and webhooks.sign no default to sha256 algorithm. In order to continue to use sha1, replace
sign(secret, payload)

with

sign({ secret, algorith: "sha1" }, payload)
  • webhooks.sign() and webhooks.verify() are now asynchronous
  • static sign and verify methods are no longer exported. Use @octokit/webhooks-methods package instead