eventstore
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -87,2 +87,5 @@ 'use strict'; | ||
function (err) { if (err) { debug(err); } }); | ||
self.events.ensureIndex({ commitStamp: 1, streamRevision: 1, commitSequence: 1 }, | ||
function (err) { if (err) { debug(err); } }); | ||
@@ -89,0 +92,0 @@ self.snapshots = new mongo.Collection(client, options.snapshotsCollectionName); |
@@ -43,2 +43,5 @@ 'use strict'; | ||
this.events.ensureIndex({ commitStamp: 1, streamRevision: 1, commitSequence: 1 }, | ||
function (err) { if (err) { debug(err); } }); | ||
this.snapshots = this.db.collection(options.snapshotsCollectionName + '.tingo'); | ||
@@ -45,0 +48,0 @@ this.snapshots.ensureIndex({ streamId: 1, aggregateId: 1, aggregate: 1, context: 1, commitStamp: 1, revision: 1, version: 1 }, |
{ | ||
"author": "adrai", | ||
"name": "eventstore", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"contributors": [ | ||
@@ -6,0 +6,0 @@ { |
@@ -0,1 +1,4 @@ | ||
#### v1.0.5 | ||
- mongodb get all events fix [#20](https://github.com/adrai/node-eventstore/pull/20) thanks to [nikolaylukyanchuk](https://github.com/nikolaylukyanchuk) | ||
#### v1.0.4 | ||
@@ -2,0 +5,0 @@ - mongodb get all events fix [#20](https://github.com/adrai/node-eventstore/pull/20) thanks to [nikolaylukyanchuk](https://github.com/nikolaylukyanchuk) |
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
77352
1910