You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

cqrs-eventdenormalizer

Package Overview
Dependencies
Maintainers
2
Versions
169
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

4

lib/denormalizer.js

@@ -530,6 +530,6 @@ 'use strict';

handle: function (evt, callback) {
if (!evt || !_.isObject(evt)) {
if (!evt || !_.isObject(evt) || !dotty.exists(evt, this.definitions.event.name)) {
var err = new Error('Please pass a valid event!');
debug(err);
throw err;
return callback([err]);
}

@@ -536,0 +536,0 @@

{
"author": "adrai",
"name": "cqrs-eventdenormalizer",
"version": "1.0.2",
"version": "1.0.3",
"private": false,

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -482,2 +482,7 @@ # Introduction

// grab the missing events, depending from info values...
// info.aggregateId
// info.aggregateRevision
// info.aggregate
// info.context
// info.guardRevision
// and call replay...

@@ -484,0 +489,0 @@ denormalizer.replay([/* ordered array of events */], function (err) {

@@ -0,1 +1,4 @@

## v1.0.3
- handle crappy events with an error
## v1.0.2

@@ -2,0 +5,0 @@ - update viewmodel

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc