chore: Update Baileys version and re-enable instance management methods

- Switched Baileys dependency to EvolutionAPI repository
- Re-enabled delInstanceTime and deleteTempInstances methods in monitoring services
- Updated CHANGELOG.md to version 1.8.5
This commit is contained in:
Davidson Gomes 2025-01-31 13:52:02 -03:00
parent 6990a2c9c0
commit cc6adf0ee2
4 changed files with 17 additions and 5 deletions

View File

@ -1,4 +1,16 @@
# 1.8.3 (develop)
# 1.8.5 (develop)
### Fixed
* Update Baileys Version
# 1.8.4 (2025-01-31 10:00)
### Features
* Added prefix key to queue name in RabbitMQ
# 1.8.3 (2024-11-29 10:00)
### Fixed

View File

@ -42,14 +42,14 @@
"homepage": "https://github.com/EvolutionAPI/evolution-api#readme",
"dependencies": {
"@adiwajshing/keyed-db": "^0.2.4",
"@aws-sdk/client-sqs": "^3.569.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@figuro/chatwoot-sdk": "^1.1.16",
"@hapi/boom": "^10.0.1",
"@sentry/node": "^7.59.2",
"amqplib": "^0.10.3",
"@aws-sdk/client-sqs": "^3.569.0",
"axios": "^1.6.5",
"baileys": "github:renatoiub/Baileys",
"baileys": "github:EvolutionAPI/Baileys",
"class-validator": "^0.14.1",
"compression": "^1.7.4",
"cors": "^2.8.5",

View File

@ -141,7 +141,7 @@ export class InstanceController {
this.logger.verbose('instance: ' + instance.instanceName + ' created');
this.waMonitor.waInstances[instance.instanceName] = instance;
// this.waMonitor.delInstanceTime(instance.instanceName);
this.waMonitor.delInstanceTime(instance.instanceName);
this.logger.verbose('generating hash');
const hash = await this.authService.generateHash(

View File

@ -414,7 +414,7 @@ export class WAMonitoringService {
this.logger.verbose('Database enabled');
await this.repository.dbServer.connect();
const collections: any[] = await this.dbInstance.collections();
// await this.deleteTempInstances(collections);
await this.deleteTempInstances(collections);
if (collections.length > 0) {
this.logger.verbose('Reading collections and setting instances');
await Promise.all(collections.map((coll) => this.setInstance(coll.namespace.replace(/^[\w-]+\./, ''))));