Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dbritto-dev/aws-lambda-puppeteer-bootstrap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0
Choose a base ref
...
head repository: dbritto-dev/aws-lambda-puppeteer-bootstrap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 3 files changed
  • 2 contributors

Commits on Oct 17, 2020

  1. Update packages

    dbritto-dev committed Oct 17, 2020
    Copy the full SHA
    f7ad595 View commit details
  2. Minor changes

    dbritto-dev committed Oct 17, 2020
    Copy the full SHA
    5af22fb View commit details
  3. Merge pull request #1 from danilobrinu/updates

    Update packages and add minor changes
    dbritto-dev authored Oct 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9649460 View commit details
  4. Bump decompress from 4.2.0 to 4.2.1

    Bumps [decompress](https://github.com/kevva/decompress) from 4.2.0 to 4.2.1.
    - [Release notes](https://github.com/kevva/decompress/releases)
    - [Commits](kevva/decompress@v4.2.0...v4.2.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b787759 View commit details
  5. Merge pull request #2 from danilobrinu/dependabot/npm_and_yarn/decomp…

    …ress-4.2.1
    
    Bump decompress from 4.2.0 to 4.2.1
    dbritto-dev authored Oct 17, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d61aa42 View commit details

Commits on May 29, 2021

  1. Bump ws from 7.3.1 to 7.4.6

    Bumps [ws](https://github.com/websockets/ws) from 7.3.1 to 7.4.6.
    - [Release notes](https://github.com/websockets/ws/releases)
    - [Commits](websockets/ws@7.3.1...7.4.6)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored May 29, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6c2ab26 View commit details

Commits on Feb 11, 2022

  1. Bump pathval from 1.1.0 to 1.1.1

    Bumps [pathval](https://github.com/chaijs/pathval) from 1.1.0 to 1.1.1.
    - [Release notes](https://github.com/chaijs/pathval/releases)
    - [Changelog](https://github.com/chaijs/pathval/blob/master/CHANGELOG.md)
    - [Commits](chaijs/pathval@v1.1.0...v1.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: pathval
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    25ce827 View commit details
  2. Merge pull request #4 from dbritto-dev/dependabot/npm_and_yarn/pathva…

    …l-1.1.1
    
    Bump pathval from 1.1.0 to 1.1.1
    dbritto-dev authored Feb 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c20c93d View commit details
  3. Merge pull request #3 from dbritto-dev/dependabot/npm_and_yarn/ws-7.4.6

    Bump ws from 7.3.1 to 7.4.6
    dbritto-dev authored Feb 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6d1192a View commit details
Showing with 274 additions and 188 deletions.
  1. +2 −1 index.js
  2. +1 −1 package.json
  3. +271 −186 yarn.lock
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -131,6 +131,7 @@ exports.handler = async (evt, ctx, cb) => {

await browser.close()

await cleanup()

done(result)
cleanup()
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"aws-puppeteer-lambda": "^1.0.2",
"puppeteer-core": "^1.9.0"
"puppeteer-core": "^5.3.1"
}
}
Loading