Releases: probot/adapter-aws-lambda-serverless
Releases · probot/adapter-aws-lambda-serverless
v2.0.0
2.0.0 (2021-02-10)
Features
BREAKING CHANGES
- The package was renamed from
@probot/serverless-lambda
to @probot/adapter-aws-lambda-serverless
for consistency with the other adapters
- Usage changed
Before
// handler.js
const { serverless } = require("@probot/serverless-lambda");
const appFn = require("./");
module.exports.probot = serverless(appFn);
After
const { createLambdaFunction, createProbot } = require("@probot/adapter-aws-lambda-serverless");
const appFn = require("./");
module.exports.webhooks = createLambdaFunction(appFn, { probot: createProbot() });
v1.0.2
1.0.2 (2020-11-20)
Bug Fixes
- deps: add missing @probot/get-private-key dependency (7166e97)
v1.0.1
1.0.1 (2020-11-20)
Bug Fixes
v1.0.0
1.0.0 (2020-11-05)
Continuous Integration
- remove node 8 tests, add node 14 tests (2338f05)
BREAKING CHANGES
- drop official support for Node 8
v0.5.3
0.5.3 (2020-09-17)
Bug Fixes
- remove undocumented legacy callbacks (#18) (0e6f825)
v0.5.2
0.5.2 (2020-09-17)
Bug Fixes
- serverless: gracefully fail with 400 for null body (#38) (6e689c7)
v0.5.1
0.5.1 (2020-09-17)
Bug Fixes
- make package compatible with probot v10 (#46) (2da7507)
v0.3.0
Fix: undefined event name in webhook handler #14
Docs: Call out custom routes usage gotcha #17
Chore: Update dependencies 12e3a2a