thenativeweb / node-eventstore

EventStore Implementation in node.js
http://eventstore.js.org/
MIT License
538 stars 117 forks source link

Update mongo methods to non-deprecated versions #138

Closed tpaulshippy closed 5 years ago

tpaulshippy commented 5 years ago

The remove, insert, and update methods have been deprecated. The latest version of mongo has new method names (as of at the latest April 2015, see commit at https://github.com/mongodb/node-mongodb-native/commit/9e96e9de0ac50fb6e64f6f9cc2f83559ac7f5fb6).

nanov commented 5 years ago

It seems that you've might missed something, as tests break. I will dive into it deeper tomorrow and update the deprecated methods.

nanov commented 5 years ago

I have updated the deprecated methods to their non-deprecated versions. Landed in 14.4.4.

tpaulshippy commented 5 years ago

Thank you!