Upgrade to newly release mongodb 1.3.17, instead of using git version.

This commit is contained in:
Nick Martin
2013-08-07 14:38:35 -07:00
parent 83a34947ee
commit 1be3c1e547
2 changed files with 2 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
{
"dependencies": {
"mongodb": {
"from": "https://github.com/mongodb/node-mongodb-native/tarball/02a5723aa51e9fdbad743a1117655e535880b3db",
"version": "1.3.17",
"dependencies": {
"bson": {
"version": "0.2.2"

View File

@@ -12,10 +12,7 @@ Package.describe({
internal: true
});
// Use soon-to-be-released mongo driver version 1.3.16. It includes a
// fix for a connection storm that impacted production hosting.
// Change this to 1.3.16 once NPM is updated.
Npm.depends({mongodb: "https://github.com/mongodb/node-mongodb-native/tarball/02a5723aa51e9fdbad743a1117655e535880b3db"});
Npm.depends({mongodb: "1.3.17"});
Package.on_use(function (api) {
api.use(['random', 'ejson', 'json', 'underscore', 'minimongo', 'logging',