@begin/data
Advanced tools
Comparing version 3.0.0 to 3.0.3
# Begin Data changelog | ||
--- | ||
## [3.0.3] 2021-10-14 | ||
### Fixed | ||
- Fixed issue where Begin Data may not work in unit tests with Sandbox >= 4.1 | ||
--- | ||
## [3.0.1 - 3.0.2] 2021-09-20 | ||
### Changed | ||
- Enforce minimum of Node 12 | ||
- Updated dependencies | ||
--- | ||
## [3.0.0] 2021-07-22 | ||
@@ -5,0 +22,0 @@ |
{ | ||
"name": "@begin/data", | ||
"version": "3.0.0", | ||
"version": "3.0.3", | ||
"description": "Begin Data is a durable and fast key/value document store built on top of DynamoDB", | ||
"main": "src/index.js", | ||
"main": "index.js", | ||
"scripts": { | ||
@@ -20,2 +20,5 @@ "lint": "eslint --fix .", | ||
}, | ||
"engines": { | ||
"node": ">=12" | ||
}, | ||
"dependencies": { | ||
@@ -27,9 +30,12 @@ "@begin/hashid": "^1.0.0", | ||
"devDependencies": { | ||
"@architect/eslint-config": "1.0.0", | ||
"@architect/sandbox": "4.0.1", | ||
"eslint": "^7.31.0", | ||
"@architect/eslint-config": "^1.0.1", | ||
"@architect/sandbox": "^4.2.1", | ||
"eslint": "^8.0.1", | ||
"tap-spec": "^5.0.0", | ||
"tape": "^5.2.2", | ||
"tape": "^5.3.1", | ||
"tiny-json-http": "^7.3.0" | ||
}, | ||
"eslintConfig": { | ||
"extends": "@architect/eslint-config" | ||
}, | ||
"keywords": [ | ||
@@ -43,6 +49,3 @@ "serverless", | ||
"infra" | ||
], | ||
"eslintConfig": { | ||
"extends": "@architect/eslint-config" | ||
} | ||
] | ||
} |
@@ -8,3 +8,3 @@ let aws = require('aws-sdk') | ||
// ARC_CLOUDFORMATION is present in live AWS deploys with Architect 6+ | ||
let arc6 = process.env.ARC_CLOUDFORMATION || process.env.ARC_HTTP === 'aws_proxy' | ||
let arc6 = process.env.ARC_CLOUDFORMATION || process.env.ARC_HTTP === 'aws_proxy' || process.env.ARC_ENV | ||
@@ -11,0 +11,0 @@ if (override) { |
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 1 instance 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
35331
15