Skip to content

Releases: octokit/webhooks-methods.js

v3.0.3

05 Jun 21:40
3d307b7
Compare
Choose a tag to compare

3.0.3 (2023-06-05)

Bug Fixes

v3.0.2

08 Jan 19:38
a705a9e
Compare
Choose a tag to compare

3.0.2 (2023-01-08)

Bug Fixes

  • adjust docs on how to stringify parsed object payloads (#112) (a705a9e), closes #111

v3.0.1

04 Oct 00:27
19eb9e5
Compare
Choose a tag to compare

3.0.1 (2022-10-04)

Bug Fixes

  • correct behaviour of functions in the web module to correspond to the one from the node module (#46) (19eb9e5)

v3.0.0

07 Jul 22:55
399eea3
Compare
Choose a tag to compare

3.0.0 (2022-07-07)

Continuous Integration

  • stop testing against NodeJS v10, v12 (#58) (399eea3)

BREAKING CHANGES

  • Drop support for NodeJS v10, v12

v2.0.0

17 Jun 19:31
fb84879
Compare
Choose a tag to compare

BREAKING CHANGES

sign or verify no longer accept an object for the event payload argument.

If you only have access to an already parsed object, stringify it with

const eventPayloadString = (
  JSON.stringify(eventPayload, null, 2) + "\n"
).replace(/[^\\]\\u[\da-f]{4}/g, (s) => {
  return s.substr(0, 3) + s.substr(3).toUpperCase();
});

v1.0.0

10 Apr 22:17
634fd12
Compare
Choose a tag to compare

1.0.0 (2021-04-10)

Features