From 804311dd51c04804184bfa958f828983532e75d4 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 3 Sep 2022 00:40:14 -0700 Subject: [PATCH] Fixed MongoDB module version. --- meshcentral.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshcentral.js b/meshcentral.js index 78df7821..5a46e5da 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -3962,7 +3962,7 @@ function mainStart() { if (config.settings.mqtt != null) { modules.push('aedes@0.39.0'); } // Add MQTT Modules if (config.settings.mysql != null) { modules.push('mysql'); } // Add MySQL. //if (config.settings.mysql != null) { modules.push('@mysql/xdevapi'); } // Add MySQL, official driver (https://dev.mysql.com/doc/dev/connector-nodejs/8.0/) - if (config.settings.mongodb != null) { modules.push('mongodb@4.1.0'); modules.push('saslprep'); } // Add MongoDB, official driver. + if (config.settings.mongodb != null) { modules.push('mongodb@4.9.1'); modules.push('saslprep'); } // Add MongoDB, official driver. if (config.settings.postgres != null) { modules.push('pg@8.7.1'); modules.push('pgtools@0.3.2'); } // Add Postgres, Postgres driver. if (config.settings.mariadb != null) { modules.push('mariadb'); } // Add MariaDB, official driver. if (config.settings.acebase != null) { modules.push('acebase'); } // Add AceBase, official driver.