Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@begin/data

Package Overview
Dependencies
Maintainers
3
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@begin/data - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

3

changelog.md

@@ -5,3 +5,3 @@ # Begin Data changelog

## [1.2.0] 2020-02-12
## [1.2.0 - 1.2.1] 2020-02-12 - 2020-04-13

@@ -12,2 +12,3 @@ ### Added

- Added some nice performance improvements related to connection reuse in live AWS
- `incr` and `decr` now set the default property value to be incremented or decremented to zero

@@ -14,0 +15,0 @@

{
"name": "@begin/data",
"version": "1.2.0",
"version": "1.2.1",
"description": "Begin Data is a durable and fast key/value document store built on top of DynamoDB",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -48,5 +48,6 @@ /**

Key: getKey({table, key}),
UpdateExpression: `set ${prop} = ${prop} ${isIncr?'+':'-'} :val`,
UpdateExpression: `SET ${prop} = if_not_exists(${prop}, :zero) ${isIncr?'+':'-'} :val`,
ExpressionAttributeValues:{
':val': 1
':val': 1,
':zero': 0
},

@@ -53,0 +54,0 @@ ReturnValues: 'ALL_NEW'

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc