Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Probot v11 #59

Merged
merged 5 commits into from
Feb 10, 2021
Merged

feat: Probot v11 #59

merged 5 commits into from
Feb 10, 2021

Commits on Feb 9, 2021

  1. feat: Probot v11

    BREAKING CHANGE: The package was renamed from `@probot/serverless-lambda` to `@probot/adapter-aws-lambda-serverless` for consistency with the other adapters
    
    BREAKING CHANGE: Usage changed
    
    Before
    
    ```js
    // handler.js
    const { serverless } = require("@probot/serverless-lambda");
    const appFn = require("./");
    module.exports.probot = serverless(appFn);
    ```
    
    After
    
    ```js
    const { createLambdaFunction, createProbot } = require("@probot/adapter-aws-lambda-serverless");
    const appFn = require("./");
    module.exports.webhooks = createLambdaFunction(appFn, { probot: createProbot() });
    ```
    gr2m committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    7d99eca View commit details
    Browse the repository at this point in the history
  2. docs(README): add examples

    gr2m committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    90d3599 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. Configuration menu
    Copy the full SHA
    6cf8ece View commit details
    Browse the repository at this point in the history
  2. Update lambda-function.js

    Co-authored-by: Tommy Byrd <[email protected]>
    gr2m and tcbyrd authored Feb 10, 2021
    Configuration menu
    Copy the full SHA
    e339399 View commit details
    Browse the repository at this point in the history
  3. Update lambda-function.js

    gr2m authored Feb 10, 2021
    Configuration menu
    Copy the full SHA
    1293726 View commit details
    Browse the repository at this point in the history