Socket
Socket
Sign inDemoInstall

@architect/data

Package Overview
Dependencies
9
Maintainers
7
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.14 to 2.0.15

14

changelog.md

@@ -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 @@

16

package.json
{
"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 @@ }

}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc