-
Notifications
You must be signed in to change notification settings - Fork 3
Update mongodb driver to v3 #268
Comments
Here's a summary of the required changes I found while going through the Connection
function (err, client) {
// ...
const db = client.db("meteor");
if (db.server.config.isMasterDoc) {
// ... Of course, the database name isn't always Removed functions
Renamed option
|
Using arrayFilters is working with rawCollection but not through meteor. Will this be added soon? I'm on 1.7-rc.3. |
BTW I believe if you call |
@dobesv This feature was added to |
The driver has been updated in Meteor 1.7. |
On Meteor 1.7.0.5 and
fails whereas
passes. |
There is no third argument to |
What could we do?
I propose to update
mongodb: "2.2.33"
tomongodb: "3.0.2"
inpackages/npm-mongo/package.js
.Why?
I wanted to use
The filtered positional operator
described in docs of mongodb on this page:It works only for newest mongodb driver. Article about this in under link:
In this article there is written:
Overview of the suggested solution
Simple change of version is not enough. @hwillson described this problem in this closed pull request:
I do not know details mentioned by him, but I am interested in any help.
The text was updated successfully, but these errors were encountered: