ueberdb2 4.2.23 → 4.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -282121,6 +282121,9 @@ const Database$7 = class Database extends AbstractDatabase {
282121
282121
  if ("speeds" in this._mysqlSettings) {
282122
282122
  delete this._mysqlSettings.speeds;
282123
282123
  }
282124
+ if ("filename" in this._mysqlSettings) {
282125
+ delete this._mysqlSettings.filename;
282126
+ }
282124
282127
  this._pool = mysql2Exports.createPool(this._mysqlSettings);
282125
282128
  const { database, charset } = this._mysqlSettings;
282126
282129
  const sqlCreate = `${'CREATE TABLE IF NOT EXISTS `store` ( ' +
package/package.json CHANGED
@@ -62,7 +62,7 @@
62
62
  "url": "https://github.com/ether/ueberDB.git"
63
63
  },
64
64
  "main": "./dist/index.js",
65
- "version": "4.2.23",
65
+ "version": "4.2.24",
66
66
  "bugs": {
67
67
  "url": "https://github.com/ether/ueberDB/issues"
68
68
  },