Git Product home page Git Product logo

slamscan's Introduction

 _______    ___      _______  __   __          _______  _______  _______  __    _
|       |  |   |    |   _   ||  |_|  |        |       ||       ||   _   ||  |  | |
|  _____|  |   |    |  |_|  ||       |        |  _____||       ||  |_|  ||   |_| |
| |_____   |   |    |       ||       |        | |_____ |       ||       ||       |
|_____  |  |   |___ |       ||       |        |_____  ||      _||       ||  _    |
 _____| |  |       ||   _   || ||_|| |         _____| ||     |_ |   _   || | |   |
|_______|3 |_______||__| |__||_|   |_|bda Clam|_______||_______||__| |__||_|  |__|

Build status Coverage status Maintainability status Analytics FOSSA Status

Originally written in 2017, and rewritten based off upsidetravel/bucket-antivirus-function, the goal of this project was to efficiently virus scan files that are uploaded to a S3 bucket and notify the results of the scan. This is now just a relic that goes largely unused, but serves as a demo for the couple of people that wanted to see how I'd rewrite something in a "modern" way.

S3 is configured to call a node handler when a S3 PUT event is received. The node handler calls out to clamscan and then publishes to SNS with the results. SNS can be configured to POST to a webhook or PUT in a SQS queue for later processing.

Unfortunately due to size limitations, its not possible to keep the virus definitions in the package, but rather they need to be uploaded to S3 where the Lambda process can then download. If you're processing files quite closely together, the Lambda container may still be around and so the virus definitions won't need to be re-downloaded.

Dependencies

brew install nvm clamav
nvm install 8

brew cask install docker
open /Applications/Docker.app

Installation

npm install

# Or this, for safety
npm ci

Testing

# Lint and test
npm test

# Run tests with coverage
npm run cover

Deployment

# The equivalent of `NODE_ENV=prd npx sls deploy --stage deploy`
npm run deploy

# The equivalent of `npx sls invoke --stage deploy --function updateDefinitions`
npm run seed

Configuration

You'll need to specify some S3 buckets for scanFile to monitor before you're all good to go:

  1. Define SLAMSCAN_SPACE_DELIMITED_SOURCE_BUCKETS at deploy time, say foo, bar and baz to be created automatically.
    SLAMSCAN_SPACE_DELIMITED_SOURCE_BUCKETS='foo bar baz' npm run deploy
    • This is not recommended since the bucket lifecycles are tied to the lifecycle of this serverless service – i.e. running npm run remove will delete your buckets and their contents.
  2. For existing S3 buckets, or otherwise self-managed buckets, add the appropriate (S3 PUT) triggers here.

License

FOSSA Status

slamscan's People

Contributors

randytarampi avatar greenkeeper[bot] avatar snyk-bot avatar semantic-release-bot avatar c-cooperjones avatar fossabot avatar

Stargazers

Steve Coffman avatar

Watchers

 avatar James Cloos avatar

slamscan's Issues

An in-range update of nyc is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency nyc was updated from 15.0.0 to 15.0.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

nyc is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 12 commits.

  • d9a76d5 chore(release): 15.0.1
  • 3a577f0 fix: Ignore insignificant lines when coalesce text report (#1300)
  • df34c1c fix: Data merge concurrency limit to prevent OOM (#1293)
  • befbf08 chore: A test where nyc output help text to stderr was flaky (#1269)
  • 9260a70 docs: Remove nyc containing object in json config examples (#1276)
  • bed4729 chore: Minor Markdown tweaks (#1256)
  • fcacc46 chore: Update node-preload to v0.2.1 (#1257)
  • 8b4a148 chore: Update standard to v14.3.1 (#1250)
  • 676ca86 chore: Switch to AppVeyor for Windows testing (#1255)
  • fcd2115 chore: Conditionally set envPath.APPDATA for tests (#1254)
  • 3445b19 chore: Remove the unused uuid dependency (#1252)
  • 559ada2 chore: Remove the unused js-yaml dependency. (#1247)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency @randy.tarampi/serverless was updated from 6.1.16 to 6.1.17.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 22 commits.

  • 5464645 release: Prepare release v6.1.17.
  • d9f65df fix(travis): We need to git commit before we git tag -a.
  • 74b8f52 chore(travis): Explicitly disable npm caching so we don't double cache node_modules.
  • 5e576fa fix(jsonresume-theme): Prefer npx resume instead of yarn resume.
  • 93b3c3a chore(travis): Set up caching for yarn@1.
  • 5f38ffb chore(package): Prefer to node -p ... instead of node -e 'console.log(...)''.
  • afde585 fix(service): Fix local test setup.
  • 4480f0c fix(jsonresume-theme): Use require.resolve to copy assets on build.
  • c41972c Merge pull request #710 from randytarampi/snyk-fix-ade9d592f84e584b7ce1c4ec33917151
  • 1802482 fix(package): Roll back to yarn@1.
  • b61ec4b fix: packages/jsonresume-theme/package.json & packages/jsonresume-theme/.snyk to reduce vulnerabilities
  • e2e5b2d fix: packages/jsonresume-theme/package.json & packages/jsonresume-theme/.snyk to reduce vulnerabilities
  • 2620d88 fix(package): Roll back to yarn@1.
  • 1461cf0 fix(package): Fix bad references to @randy.tarampi/views/templates/index.pug.
  • cb89626 chore(travis): Just git tag -a with the message from the release commit...

There are 22 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of semantic-release is breaking the build 🚨

The devDependency semantic-release was updated from 17.0.3 to 17.0.4.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

semantic-release is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v17.0.4

17.0.4 (2020-02-17)

Bug Fixes

  • add repositoryUrl in logs (55be0ba)
Commits

The new version differs by 4 commits.

  • 55be0ba fix: add repositoryUrl in logs
  • ec516a3 docs(configuration): fix CLI usage with --branches option (#1465)
  • 5f89e6b chore(package): update nock to version 12.0.0
  • 195e5b1 chore(package): update xo to version 0.26.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @semantic-release/git is breaking the build 🚨

The devDependency @semantic-release/git was updated from 7.0.11 to 7.0.12.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@semantic-release/git is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • βœ… coverage/coveralls: First build on greenkeeper/@semantic-release/git-7.0.12 at 92.437% (Details).
  • ❌ Travis CI - Branch: The build errored.

Release Notes for v7.0.12

7.0.12 (2019-05-14)

Bug Fixes

  • package: update fs-extra to version 8.0.0 (712d684)
Commits

The new version differs by 4 commits.

  • 712d684 fix(package): update fs-extra to version 8.0.0
  • 185f94e chore(package): update tempy to version 0.3.0
  • 7f516ac chore(package): update nyc to version 14.0.0
  • a24f2db chore(package): update file-url to version 3.0.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of webpack is breaking the build 🚨

The devDependency webpack was updated from 4.41.6 to 4.42.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

webpack is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v4.42.0

Bugfixes

  • Disable constant replacements in "use asm" scope
  • Update schema to disallow functions for output.hotUpdateChunkFilename as this doesn't work
  • Hoist exports in concatenated module to handle circular references with non-concatenated modules correctly
  • Flag all modules as used in DLLs to fix missing exports
Commits

The new version differs by 11 commits.

  • 29d851b 4.42.0
  • 07a4b28 Merge pull request #10478 from webpack/bugfix/all-modules-dll
  • c1aa9d4 flag all modules as used for Dll
  • d147689 Merge pull request #10431 from webpack/bugfix/concat-circular-4
  • d76761d hoist exports to the top of a concatenated module
  • 534d78f Merge pull request #10393 from webpack/schema/disallow-function-hotchunkfilename
  • d46ddc2 disallow function for output.hotUpdateChunkFilename
  • 95409bd Merge pull request #10294 from ngg/asmjs-4
  • 7a30012 spacing
  • 284e97f add detectStrictMode method for backward-compat
  • a7a07bc do not evaluate constants in asm.js, fix IIFE mode detection

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

The devDependency sinon was updated from 7.3.0 to 7.3.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 6 commits.

  • 3812a7d Update docs/changelog.md and set new release id in docs/_config.yml
  • 93bef55 Add release documentation for v7.3.1
  • e02c192 7.3.1
  • 8ee1d35 Update CHANGELOG.md and AUTHORS for new release
  • bc53d82 Fix security issues
  • 1a09166 Update @sinonjs/samsam to v3.3.1

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency @randy.tarampi/serverless was updated from 6.1.15 to 6.1.16.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 5 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 4.0.5 to 4.0.6.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 5 commits.

  • e4e865e release(travis): Release v4.0.6.
  • 95c4014 Merge pull request #497 from randytarampi/greenkeeper/default/aws-sdk-2.447.0
  • 83daf8f Merge branch 'master' into greenkeeper/default/aws-sdk-2.447.0
  • 804f9a2 fix(jsx): Don't bother babelizing materialize, etc.
  • 3d62f10 chore(greenkeeper): [email protected].

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of babel-eslint is breaking the build 🚨

The devDependency babel-eslint was updated from 10.0.3 to 10.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

babel-eslint is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 2 commits.

  • 4bd049e 10.1.0
  • 2c754a8 Update Babel to ^7.7.0 and enable Flow enums parsing (#812)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

The devDependency sinon was updated from 7.3.1 to 7.3.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 6 commits.

  • 15a9d65 Update docs/changelog.md and set new release id in docs/_config.yml
  • 5d770e0 Add release documentation for v7.3.2
  • 585a1e9 7.3.2
  • b51901d Update CHANGELOG.md and AUTHORS for new release
  • 83861a7 Update Lolex to bring in fix for sinonjs/lolex#232
  • 2430fd9 Documentation (#2004)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of babel7 is breaking the build 🚨

There have been updates to the babel7 monorepo:

    • The devDependency @babel/cli was updated from 7.8.3 to 7.8.4.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Action required: Greenkeeper could not be activated 🚨

🚨 You need to enable Continuous Integration on Greenkeeper branches of this repository. 🚨

To enable Greenkeeper, you need to make sure that a commit status is reported on all branches. This is required by Greenkeeper because it uses your CI build statuses to figure out when to notify you about breaking changes.

Since we didn’t receive a CI status on the greenkeeper/initial branch, it’s possible that you don’t have CI set up yet. We recommend using Travis CI, but Greenkeeper will work with every other CI service as well.

If you have already set up a CI for this repository, you might need to check how it’s configured. Make sure it is set to run on all new branches. If you don’t want it to run on absolutely every branch, you can whitelist branches starting with greenkeeper/.

Once you have installed and configured CI on this repository correctly, you’ll need to re-trigger Greenkeeper’s initial pull request. To do this, please click the 'fix repo' button on account.greenkeeper.io.

An in-range update of babel7 is breaking the build 🚨

There have been updates to the babel7 monorepo:

    • The devDependency @babel/cli was updated from 7.7.7 to 7.8.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 4.0.8 to 4.0.9.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 22 commits.

There are 22 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

The devDependency sinon was updated from 8.0.4 to 8.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 8 commits.

  • 384732e Update docs/changelog.md and set new release id in docs/_config.yml
  • dbfe691 Add release documentation for v8.1.0
  • cb8f3b7 8.1.0
  • 3c6fd39 Update CHANGELOG.md and AUTHORS for new release
  • cd27e25 Update @sinonjs/samsam to latest
  • 7c79e80 Merge pull request #2199 from RealZogger/getCall-negative
  • d851a5e Add clarifying comment for negative indices
  • 6d59744 Support negative indices in getCall

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/lambda-logger is breaking the build 🚨

The dependency @randy.tarampi/lambda-logger was updated from 6.1.10 to 6.1.11.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/lambda-logger is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 7 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 4.0.10 to 4.0.11.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 59 commits.

There are 59 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of webpack is breaking the build 🚨

The devDependency webpack was updated from 4.41.5 to 4.41.6.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

webpack is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v4.41.6

Bugfixes

  • Windows network paths are considered as absolute paths
  • fix hanging of FlagDependencyExportsPlugin when using export * in a circular matter
Commits

The new version differs by 12 commits.

  • 71be3bf 4.41.6
  • 0b8ef22 Merge pull request #10344 from webpack/bugfix/hang-circular-reexport
  • 614ea54 only retrigger flagging exports in dependencies when exports really changed
  • 627510d Merge pull request #10255 from jeffin143/fix-10247
  • e826575 correct windows paths must use \ and not /
  • 5e9f083 Merge pull request #10240 from jeffin143/fix-10217
  • d8c74b6 fix: better handle absolute paths
  • ef73991 update webpackOption.d.ts
  • 2101892 add chunkid declaration
  • 4bb706f Fix lint issue
  • 2394136 added variable declarations in files where required
  • 148c4be get rid of some hacks in declarations file for webpack-4

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of snyk is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency snyk was updated from 1.312.0 to 1.313.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

snyk is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for v1.313.0

1.313.0 (2020-04-27)

Features

  • enable experimental docker-archive scanning (5e627c6)
Commits

The new version differs by 2 commits.

  • b59f0b5 Merge pull request #1087 from snyk/feat/experimental-docker-archive
  • 5e627c6 feat: enable experimental docker-archive scanning

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency @randy.tarampi/serverless was updated from 6.1.13 to 6.1.14.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 45 commits.

  • f10875a release(travis): Release v6.1.14.
  • fa16746 Revert "chore(package): Run a yarn upgrade."
  • 842963d chore(package): Run a yarn upgrade.
  • 0ecccdd chore(job-application): Just use bluebird to specify concurrency for puppeteer promises...
  • db34d44 chore(job-application): Fix the module scope in the README.
  • 0b7e9f8 chore(resume): Drop a word here to save on a line.
  • 44b53f4 fix(css): Fix .text's box-shadow on puppeteer PDFs.
  • 8b03368 chore(package): Update yarn.lock for 27ae149.
  • 589822b chore(travis): Cache yarn directories.
  • 27ae149 Merge pull request #701 from randytarampi/greenkeeper/default/react-helmet-6.0.0
  • 35660da chore(greenkeeper): Adjust code for [email protected].
  • c7e19d6 Merge pull request #706 from randytarampi/greenkeeper/monorepo.babel7-20200407210918
  • 3fa0ac4 chore(package): update lockfile yarn.lock
  • 421be78 chore(greenkeeper): @babel/[email protected].
  • 24cbe51 chore(greenkeeper): @babel/[email protected].

There are 45 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of babel-plugin-istanbul is breaking the build 🚨

The devDependency babel-plugin-istanbul was updated from 5.1.1 to 5.1.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

babel-plugin-istanbul is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 6 commits.

  • 1a274e2 chore(release): 5.1.2
  • 1dd35b7 chore: Update dependencies
  • 4d07ddd Update mocha to the latest version πŸš€ (#196)
  • 62c750e chore: Update dependencies
  • 201a933 fix: Ensure correct scope references after traversal (#192)
  • 8e827c6 chore: Update standard-version to the latest version πŸš€ (#195)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of mocha is breaking the build 🚨

The devDependency mocha was updated from 7.0.0 to 7.0.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v7.0.1

7.0.1 / 2020-01-25

πŸ› Fixes

  • #4165: Fix exception when skipping tests programmatically (@juergba)
  • #4153: Restore backwards compatibility for reporterOptions (@holm)
  • #4150: Fix recovery of an open test upon uncaught exception (@juergba)
  • #4147: Fix regression of leaking uncaught exception handler (@juergba)

πŸ“– Documentation

πŸ”© Other

Commits

The new version differs by 9 commits.

  • d0f04e9 Release v7.0.1
  • 2277958 update CHANGELOG for v7.0.1 [ci skip]
  • 0be3f78 Fix exception when skipping tests programmatically (#4165)
  • c0f1d14 uncaughtException: fix recovery when current test is still running (#4150)
  • 9c10ada Fix backwards compability break for reporterOptions
  • a24683f Throw a descriptive error when a non-function is given to a runnable (#4133)
  • 579fd09 update copyright & trademark notices per OJSF; closes #4145
  • 0e1ccbb Fix leaking global 'uncaughtException' handler (#4147)
  • 7d78f20 Broken links in docs (#4140)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-import is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-plugin-import was updated from 2.20.1 to 2.20.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-import is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 14 commits.

  • 71ca88f Bump to v2.20.2
  • a618f88 [Tests] pin esquery, due to breaking change in a minor version
  • 9c5899e utils: v2.6.0
  • efb5f07 [Tests] use babel instead of NODE_PATH
  • 1a3a128 [Fix] first: Add a way to disable absolute-first explicitly
  • efd6be1 [Fix] no-unused-modules: handle export { default } from syntax
  • adbced7 utils: [New] Print more helpful info if parsing fails
  • b6242b0 [fix] no-duplicates: fix fixer on cases with default import
  • 41aaa18 resolvers/node: [New] add .node extension
  • 12971f5 [Fix] order: recognize ".." as a "parent" path
  • 47f912e [Fix] order: fix isExternalModule detection on windows
  • 8905007 [Tests] appveyor: on node 8-12, use npm 6.10.3
  • 2beec94 [meta] use in-publish in prepublish
  • 1fbef73 [meta] fix changelog link

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 3.9.4 to 3.9.5.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 93 commits.

There are 93 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of coveralls is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency coveralls was updated from 3.0.9 to 3.0.10.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

coveralls is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for CodeFresh support, Maintenance

Added:

  • CodeFresh support (@suda)

Improved:

Updated:

Commits

The new version differs by 6 commits.

  • 2ea7be3 bump version
  • 5e976c5 Only coverage report on test success, fixes #230
  • 3d83b4f Set service_name and/or repo_token from .coveralls.yml regardless of if $COVERALLS_REPO_TOKEN is set (#272)
  • 710c504 Add Codefresh support
  • 8c4ba99 CI: switch to actions/checkout@v2
  • eb1a3c9 278 Upgrades minimist dependency to 1.2.5

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @semantic-release/changelog is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency @semantic-release/changelog was updated from 5.0.0 to 5.0.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@semantic-release/changelog is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v5.0.1

5.0.1 (2020-03-27)

Bug Fixes

  • package: update fs-extra to version 9.0.0 (997fe15)
Commits

The new version differs by 7 commits.

  • 997fe15 fix(package): update fs-extra to version 9.0.0
  • b291e0c chore(package): update tempy to version 0.5.0
  • 256de6a chore(package): update xo to version 0.27.0
  • 649fc14 chore(package): update sinon to version 9.0.0
  • f95b777 chore(package): update xo to version 0.26.0
  • 4f26efb chore(package): update tempy to version 0.4.0
  • 7164218 chore: remove publishConfig.tag config

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 4.0.13 to 4.0.14.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 26 commits.

There are 26 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of webpack-bundle-analyzer is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency webpack-bundle-analyzer was updated from 3.6.0 to 3.6.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

webpack-bundle-analyzer is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 17 commits.

  • 660dba6 v3.6.1
  • 387d7f9 Merge pull request #339 from webpack-contrib/update-some-deps
  • e90b3b1 Downgrade terser-webpack-plugin because v2 requires at least Node v8.9
  • 45ffbf9 Update some dependencies to get rid of vulnerability warnings
  • dd4a03a Merge pull request #328 from pustovalov/node-ci
  • f2f7fda Add Node 12 to CI
  • 7cefb58 Merge pull request #314 from mhxbe/bugfix/page-title-hours-minutes
  • 2596783 Consolidate changelog whitespace
  • 3faca9d Merge branch 'master' into bugfix/page-title-hours-minutes
  • f614bd1 Update CHANGELOG.md
  • 4b58fae Revert .padStart to .slice since padStart is not supported in Node v6
  • c95df99 Fix changelog missing v3.6.0 section
  • f04ab3e Use .padStart(2,0) to prefix one-digit numbers with zero
  • 5219462 Merge branch 'bugfix/page-title-hours-minutes' of github.com:mhxbe/webpack-bundle-analyzer into bugfix/page-title-hours-minutes
  • 27b2de0 Use .slice() in favor of soon to be deprecated .substr()

There are 17 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of serverless-mocha-plugin is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency serverless-mocha-plugin was updated from 1.11.0 to 1.12.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

serverless-mocha-plugin is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 24 commits.

  • 04842c5 Merge pull request #123 from 0xkalle/master
  • 0c67f77 add quotes
  • 7a43d8c adjust startOffline.sh to new serverless offline version, add note on how to adjust
  • fd9b82c Merge pull request #122 from nordcloud/support-ts-filenames
  • 1c5e87a Support .test.js naming convention and also .ts file extensions
  • 5475d41 Merge pull request #120 from nordcloud/documentation-of-get-wrapper
  • 81e86df Updated documentation related with getWrapper() and added link to lambda-wrapper module.
  • dac9a7d Merge pull request #119 from nordcloud/support-new-runtime
  • 83d16b3 Update travix configuration
  • cb3a881 Remove context argument
  • 3444c67 Prepare for next release
  • 5f3b305 Updated templates to prefer async/await style
  • 92a410e Support new nodejs12.x runtime
  • 7e50529 Merge pull request #101 from c0d3d/allow-missing-prefix
  • 59b4165 Fix linting issue

There are 24 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 6.1.10 to 6.1.11.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 7 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of semantic-release is breaking the build 🚨

The devDependency semantic-release was updated from 16.0.3 to 16.0.4.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

semantic-release is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v16.0.4

16.0.4 (2020-01-27)

Bug Fixes

  • correct error when remote repository has no branches (c6b1076)
Commits

The new version differs by 1 commits.

  • c6b1076 fix: correct error when remote repository has no branches

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of babel-loader is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency babel-loader was updated from 8.0.6 to 8.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

babel-loader is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for 8.1.0
Commits

The new version differs by 18 commits.

  • 3ff9926 8.1.0
  • 0817bb6 Bump deps for audit (#834)
  • ecb2b02 Bump acorn from 6.3.0 to 6.4.1 (#828)
  • 13a8238 feat: expose webpack target via babel caller (#826)
  • b568420 Merge pull request #814 from nicolo-ribaudo/tla
  • 1c35731 Update src/injectCaller.js
  • 5f55638 Add schema validation (#822)
  • 8b47312 Merge pull request #821 from PatNeedham/docs/contributing-typo
  • a967311 docs(contributing): fix typo
  • 758d4b5 docs(readme): fix typo (#818)
  • 8a0a25a Add supportsTopLevelAwait to caller
  • 15df92f chore: Do not run node 6 in appveyor
  • 26d1676 chore: Upgrade more dev dependencies
  • 26aa687 chore: Update some dev dependencies
  • a961168 Bump eslint-utils from 1.3.1 to 1.4.2 (#806)

There are 18 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of semantic-release is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency semantic-release was updated from 17.0.4 to 17.0.5.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

semantic-release is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v17.0.5

17.0.5 (2020-04-16)

Bug Fixes

  • adapt for semver to version 7.3.2 (0363790)
Commits

The new version differs by 11 commits.

  • 0363790 fix: adapt for semver to version 7.3.2
  • 93cb766 chore(package): update semver to version 7.3.2
  • caa3526 style: xo
  • ed5f26d chore(package): update xo to version 0.29.0
  • ff1d53d docs: add @google/semantic-release-replace-plugin to plugin list (#1509)
  • f899fa9 chore(package): update xo to version 0.28.1
  • b5488ae chore(package): update fs-extra to version 9.0.0
  • da5d1cf chore(package): update tempy to version 0.5.0
  • da5d06c docs: fix formatting for GitBook
  • b85adbd chore(package): update xo to version 0.27.0
  • bce633a chore(package): update sinon to version 9.0.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/lambda-logger is breaking the build 🚨

The dependency @randy.tarampi/lambda-logger was updated from 6.0.4 to 6.0.5.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/lambda-logger is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 3 commits.

  • dfb1cd6 release(travis): Release v6.0.5.
  • 9fca940 fix(jsx): Fix tab highlighting during tab switching.
  • 4f5414e fix(jsx): Fix tab highlighting on initial load.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/lambda-logger is breaking the build 🚨


☝️ Important announcement: Greenkeeper will be saying goodbye πŸ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The dependency @randy.tarampi/lambda-logger was updated from 6.1.13 to 6.1.14.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/lambda-logger is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 45 commits.

  • f10875a release(travis): Release v6.1.14.
  • fa16746 Revert "chore(package): Run a yarn upgrade."
  • 842963d chore(package): Run a yarn upgrade.
  • 0ecccdd chore(job-application): Just use bluebird to specify concurrency for puppeteer promises...
  • db34d44 chore(job-application): Fix the module scope in the README.
  • 0b7e9f8 chore(resume): Drop a word here to save on a line.
  • 44b53f4 fix(css): Fix .text's box-shadow on puppeteer PDFs.
  • 8b03368 chore(package): Update yarn.lock for 27ae149.
  • 589822b chore(travis): Cache yarn directories.
  • 27ae149 Merge pull request #701 from randytarampi/greenkeeper/default/react-helmet-6.0.0
  • 35660da chore(greenkeeper): Adjust code for [email protected].
  • c7e19d6 Merge pull request #706 from randytarampi/greenkeeper/monorepo.babel7-20200407210918
  • 3fa0ac4 chore(package): update lockfile yarn.lock
  • 421be78 chore(greenkeeper): @babel/[email protected].
  • 24cbe51 chore(greenkeeper): @babel/[email protected].

There are 45 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 6.0.2 to 6.0.3.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 12 commits.

  • 115c1ff release(travis): Release v6.0.3.
  • 53df730 fix: Don't serve our test web app out of dev.randytarampi.ca, but out of www.dev.randytarampi.ca.
  • ae75750 fix(service): Specifically use a cert for service.dev.randytarampi.ca.
  • 7f6fbf0 chore(jsx): ESLint.
  • e3e6c22 fix(jsx): This now lives on travis-ci.com.
  • 18ffb10 fix: serverless-domain-manager uses the *.randytarampi.ca certificate in all environments.
  • 5c4bafc chore: I live in Berlin now.
  • 99cb3d5 fix(jsx): PrintableHeader addresses shouldn't necessarily need a Location.region.
  • 54c7e42 fix(www): We should really unregisterServiceWorkerAndReload on SW updates.
  • ac071fa fix(jsx): PostMarkers need to pass their InfoBoxes' children a react-redux Provider with the correct store.
  • 053db42 fix(jsx): Suppress PostsComponent propTypes error.
  • 8447792 fix(jsx): Suppress GoogleMapComponent constructor error.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-import is breaking the build 🚨

The devDependency eslint-plugin-import was updated from 2.20.0 to 2.20.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-import is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Commits

The new version differs by 23 commits.

  • 45f0860 Bump to v2.20.1
  • 5d00854 [Fix] order: Fix alphabetize for mixed requires and imports
  • bbd166b [Fix] export: Handle function overloading in *.d.ts
  • 4665ec5 [Fix] no-absolute-path: fix a crash with invalid import syntax
  • 392c6b9 [Fix] named: for importing from a module which re-exports named exports from a node_modules module
  • cc5bde5 [Tests] named: add failing test for #1446
  • aff3a46 [meta] fix "files" field to include/exclude the proper files
  • 986ba74 docs: fix a few spelling mistakes
  • 6274d96 [Tests] set eslint-plugin/consistent-output lint rule to always require test case output assertions
  • a4d301b [meta] add missing changelog links
  • 2d42464 [Tests] only run the linter once, not on every build
  • 26f232b [Tests] add eslint-plugin-eslint-plugin internally and fix violations
  • 99647f1 [Docs]: Update Tidelift language to enterprise
  • f84d457 no-duplicates: allow duplicate if one is namespace and other not
  • 7e71b50 [Fix] extensions: Fix scope regex

There are 23 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of snyk is breaking the build 🚨

The dependency snyk was updated from 1.291.0 to 1.292.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

snyk is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for v1.292.0

1.292.0 (2020-02-17)

Features

  • delete unused hook.js code (abf633b)
Commits

The new version differs by 9 commits.

  • 7332f38 Merge pull request #1004 from snyk/feat/delete-hook-code
  • 0d50497 Merge pull request #1000 from snyk/chore/convert-tests-to-ts
  • 64961ce chore: convert tests to ts
  • 3472201 chore: drop unused types
  • abf633b feat: delete unused hook.js code
  • 54a92e3 Merge pull request #1006 from snyk/chore/fix-assertion-node-12
  • b4f465a chore: fix for node 12 assertion error
  • 82d877b Merge pull request #999 from snyk/chore/convert-yarn-to-ts
  • 2441311 chore: convert yarn util to ts

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of snyk is breaking the build 🚨

The dependency snyk was updated from 1.292.0 to 1.293.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

snyk is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for v1.293.0

1.293.0 (2020-02-18)

Features

  • move windows tests to CircelCI from AppVeyor (72f3e9c)
Commits

The new version differs by 2 commits.

  • a867b58 Merge pull request #1008 from snyk/feat/circle-matrix
  • 72f3e9c feat: move windows tests to CircelCI from AppVeyor

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of serverless is breaking the build 🚨

The devDependency serverless was updated from 1.61.1 to 1.61.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

serverless is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for 1.61.2 (2020-01-15)

Bug Fixes


Comparison since last release

Commits

The new version differs by 4 commits.

  • db4ff0b chore: Release v1.61.2
  • 546abeb chore: Bump dependencies
  • c7fea34 fix: Separate AWS region and credentials resolution concern
  • 526b21b refactor: corrected spelling errors (#7218)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of serverless is breaking the build 🚨

The devDependency serverless was updated from 1.63.0 to 1.64.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

serverless is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for 1.64.0 (2020-02-18)

Features

Bug Fixes


Comparison since last release

Commits

The new version differs by 25 commits.

  • b05b934 chore: Release v1.64.0
  • 1c7bab5 chore: Update dependencies
  • 59634e7 docs: Document components debugging and custom domains(#7347)
  • fbf99fa feat(AWS HTTP API): JWT authorizers support
  • 1dcc53b refactor(AWS HTTP API): Nest routeTargetData in config
  • 9b701a4 feat(AWS APIGW): Support logs.restApi.roleManagedExternally (#7333)
  • ca69387 feat(AWS HTTP API): CORS configuration
  • adcf5be test: Utility to extened pre-prepared fixtures
  • dfeca8e test(AWS HTTP API): Rename fixture
  • 29b37d7 ci: Workaround npm crash on Windows
  • 44c2342 fix(AWS HTTP API): Publish to default stage
  • ed4b6ef test(AWS HTTP API): Fix typo
  • 3910df1 feat: Support provider.alb.targetGroupPrefix setting (#7322)
  • 9eba218 feat: Support Kinesis Enhanced Fan-out (Consumer) streams (#7320)
  • 7abb23e feat: Support managedExternally option for authorizers (#7327)

There are 25 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of snyk is breaking the build 🚨

The dependency snyk was updated from 1.279.0 to 1.279.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

snyk is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Release Notes for v1.279.1

1.279.1 (2020-01-22)

Bug Fixes

  • snyk always being added as dependency when running wizard (49b0cd3)
Commits

The new version differs by 4 commits.

  • 240f623 Merge pull request #947 from snyk/fix/wizard-adding-snyk-dependency
  • 49b0cd3 fix: snyk always being added as dependency when running wizard
  • ab83ab8 Merge pull request #961 from snyk/chore/convert-exec-version-to-ts
  • 7d4a91c chore: convert get version and exec to ts

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of @randy.tarampi/serverless is breaking the build 🚨

The dependency @randy.tarampi/serverless was updated from 3.9.8 to 3.9.9.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@randy.tarampi/serverless is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details

Commits

The new version differs by 16 commits.

There are 16 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of mocha is breaking the build 🚨

The devDependency mocha was updated from 7.0.1 to 7.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details

Release Notes for v7.1.0

7.1.0 / 2020-02-26

πŸŽ‰ Enhancements

#4038: Add Node.js native ESM support (@giltayar)

Mocha supports writing your test files as ES modules:

  • Node.js only v12.11.0 and above
  • Node.js below v13.2.0, you must set --experimental-modules option
  • current limitations: please check our documentation
  • for programmatic usage: see API: loadFilesAsync()

Note: Node.JS native ECMAScript Modules implementation has status: Stability: 1 - Experimental

πŸ› Fixes

πŸ“– Documentation

πŸ”© Other

Commits

The new version differs by 10 commits.

  • 09b948b Release v7.1.0
  • d43092e update CHANGELOG for v7.1.0 [ci skip]
  • 57be455 Add support for Node.JS native ES modules (#4038)
  • a995e33 Fix: programmatic API cannot access retried test objects (#4181)
  • ac12f2c Browser: fix 'allowUncaught' handling (#4174)
  • 2ff1cb2 uncaughtException: refactor, move and add tests
  • b431609 docs: update browser options
  • 883ae4b ESLint: use 'const' instead of 'let'
  • 2a1b637 Upgrade: ESLint v6.8 (#4138)
  • dbba276 Manage author list in AUTHORS instead of package.json (#4058)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.