@architect/data
Advanced tools
Comparing version 2.0.14 to 2.0.15
@@ -9,2 +9,16 @@ # Architect Data changelog | ||
## [2.0.15] - 2019-03-22 | ||
### Fixed | ||
- Adds callback continuation missing from `data.update()` /ht @galley-solutions | ||
### Changed | ||
- Updated dependencies | ||
--- | ||
## [2.0.14] - 2019-02-08 | ||
@@ -11,0 +25,0 @@ |
{ | ||
"name": "@architect/data", | ||
"version": "2.0.14", | ||
"version": "2.0.15", | ||
"description": "Dynamically generate a DynamoDB data access layer from an .arc file", | ||
"homepage": "https://github.com/arc-repos/arc-data", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/arc-repos/arc-data" | ||
}, | ||
"bugs": "https://github.com/arc-repos/arc-data/issues", | ||
"main": "index.js", | ||
@@ -26,8 +32,8 @@ "scripts": { | ||
"devDependencies": { | ||
"@architect/architect": "^5.5.0", | ||
"aws-sdk": "^2.400.0", | ||
"eslint": "^5.13.0", | ||
"@architect/architect": "^5.5.10", | ||
"aws-sdk": "^2.427.0", | ||
"eslint": "^5.15.3", | ||
"run-parallel": "^1.1.9", | ||
"tap-spec": "^5.0.0", | ||
"tape": "^4.9.2" | ||
"tape": "^4.10.1" | ||
}, | ||
@@ -34,0 +40,0 @@ "prettier": { |
@@ -58,5 +58,5 @@ var _db = require('./db') | ||
params.TableName = TableName | ||
_doc.update(params, function _update(err) { | ||
_doc.update(params, function _update(err, results) { | ||
if (err) callback(err) | ||
else callback() | ||
else callback(err, results) | ||
}) | ||
@@ -96,2 +96,1 @@ } | ||
} | ||
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
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
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
11654
0
9