lambda-local
Advanced tools
Comparing version 1.6.2 to 1.6.3
# ChangeLog | ||
## 1.6.3 (2019/07/04) | ||
* Security updates (update dependencies that had vulnerabilities: [mocha](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md#614--2019-04-18)). | ||
* Pick up AWS profile from env `AWS_PROFILE` or `AWS_DEFAULT_PROFILE` (thanks to @illusori) | ||
## 1.6.2 (2019/04/30) | ||
@@ -8,2 +12,3 @@ * Documentation changes. No API changes | ||
* Update for Winston 3 | ||
* Refactor console output manager | ||
@@ -10,0 +15,0 @@ ## 1.5.3 (2019/04/15) |
@@ -52,3 +52,3 @@ 'use strict'; | ||
profilePath = opts.profilePath, | ||
profileName = opts.profileName, | ||
profileName = opts.profileName || process.env['AWS_PROFILE'] || process.env['AWS_DEFAULT_PROFILE'], | ||
region = opts.region, | ||
@@ -55,0 +55,0 @@ environment = opts.environment, |
{ | ||
"name": "lambda-local", | ||
"version": "1.6.2", | ||
"version": "1.6.3", | ||
"description": "Commandline tool to run Lambda functions on your local machine.", | ||
@@ -24,5 +24,5 @@ "keywords": [ | ||
"dependencies": { | ||
"aws-sdk": "^2.437.0", | ||
"aws-sdk": "^2.488.0", | ||
"commander": "^2.20.0", | ||
"dotenv": "^7.0.0", | ||
"dotenv": "^8.0.0", | ||
"mute": "^2.0.6", | ||
@@ -33,4 +33,4 @@ "winston": "^3.2.1" | ||
"chai": "^4.2.0", | ||
"mocha": "^6.1.3", | ||
"sinon": "^1.17.6" | ||
"mocha": "^6.1.4", | ||
"sinon": "^7.3.2" | ||
}, | ||
@@ -37,0 +37,0 @@ "scripts": { |
@@ -8,3 +8,3 @@ # Lambda-local | ||
Lambda-local lets you test Amazon Lambda functions on your local machine, by providing a simplisitc API and command-line tool. | ||
Lambda-local lets you test Amazon Lambda functions on your local machine, by providing a simplistic API and command-line tool. | ||
@@ -11,0 +11,0 @@ The `context` of the Lambda function is already loaded so you do not have to worry about it. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79397
56
57
+ Addeddotenv@8.6.0(transitive)
- Removeddotenv@7.0.0(transitive)
Updatedaws-sdk@^2.488.0
Updateddotenv@^8.0.0