Update Fix

This commit is contained in:
2026-03-15 12:30:40 +01:00
parent 311ba5e7f3
commit 50be8e25f3
176 changed files with 4075 additions and 3013 deletions

8
node_modules/mysql2/promise.js generated vendored
View File

@@ -1,6 +1,6 @@
'use strict';
const SqlString = require('sqlstring');
const SqlString = require('sql-escaper');
const EventEmitter = require('events').EventEmitter;
const parserCache = require('./lib/parsers/parser_cache.js');
const PoolCluster = require('./lib/pool_cluster.js');
@@ -134,6 +134,12 @@ class PromisePoolCluster extends EventEmitter {
});
});
}
async [Symbol.asyncDispose]() {
if (!this.poolCluster._closed) {
await this.end();
}
}
}
/**