mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	bump mongo node for close PR
This commit is contained in:
		@@ -19,7 +19,7 @@ Run the following command in your Node-RED user directory - typically `~/.node-r
 | 
				
			|||||||
```
 | 
					```
 | 
				
			||||||
        npm install node-red-node-mongodb
 | 
					        npm install node-red-node-mongodb
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
Note that this package requires a MongoDB client package at least version 3.6.1 - if you have an older (version 2) client,
 | 
					Note that this package requires a MongoDB client package at least version 3.6.3 - if you have an older (version 2) client,
 | 
				
			||||||
you may need to remove that before installing this
 | 
					you may need to remove that before installing this
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
        npm remove mongodb
 | 
					        npm remove mongodb
 | 
				
			||||||
@@ -29,10 +29,10 @@ you may need to remove that before installing this
 | 
				
			|||||||
Usage
 | 
					Usage
 | 
				
			||||||
-----
 | 
					-----
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Nodes to save and retrieve data in a MongoDB instance - the database server can be local (mongodb//:localhost:27017), remote (mongodb://hostname.network:27017), 
 | 
					Nodes to save and retrieve data in a MongoDB instance - the database server can be local (mongodb//:localhost:27017), remote (mongodb://hostname.network:27017),
 | 
				
			||||||
replica-set or cluster (mongodb://hostnameA.network:27017,hostnameB.network:27017), and DNS seedlist cluster (mongodb+srv://clustername.network).  
 | 
					replica-set or cluster (mongodb://hostnameA.network:27017,hostnameB.network:27017), and DNS seedlist cluster (mongodb+srv://clustername.network).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Reference [MongoDB docs](https://docs.mongodb.com/manual/reference/connection-string/) to see which connection method (host or clustered) to use for your MongoDB instance. 
 | 
					Reference [MongoDB docs](https://docs.mongodb.com/manual/reference/connection-string/) to see which connection method (host or clustered) to use for your MongoDB instance.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Input
 | 
					### Input
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,9 +1,9 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    "name"          : "node-red-node-mongodb",
 | 
					    "name"          : "node-red-node-mongodb",
 | 
				
			||||||
    "version"       : "0.2.4",
 | 
					    "version"       : "0.2.5",
 | 
				
			||||||
    "description"   : "Node-RED nodes to talk to an Mongo database",
 | 
					    "description"   : "Node-RED nodes to talk to a Mongo database",
 | 
				
			||||||
    "dependencies"  : {
 | 
					    "dependencies"  : {
 | 
				
			||||||
        "mongodb"   : "^3.6.2"
 | 
					        "mongodb"   : "^3.6.3"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "repository" : {
 | 
					    "repository" : {
 | 
				
			||||||
        "type":"git",
 | 
					        "type":"git",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user