Skip to content

Commit 3454bec

Browse files
committed
Merge branch 'release/2.3.6'
2 parents d48fbc3 + 8c27f11 commit 3454bec

File tree

9 files changed

+2651
-1800
lines changed

9 files changed

+2651
-1800
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ body:
5959
value: |
6060
- OS: [e.g. Ubuntu 20.04, Windows 10, macOS 12.0]
6161
- Node.js version: [e.g. 18.17.0]
62-
- Evolution API version: [e.g. 2.3.5]
62+
- Evolution API version: [e.g. 2.3.6]
6363
- Database: [e.g. PostgreSQL 14, MySQL 8.0]
6464
- Connection type: [e.g. Baileys, WhatsApp Business API]
6565
validations:

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 2.3.6 (2025-10-21)
2+
3+
### Features
4+
5+
* **Baileys, Chatwoot, OnWhatsapp Cache**: Multiple implementations and fixes
6+
- Fixed cache for PN, LID and g.us numbers to send correct number
7+
- Fixed audio and document sending via Chatwoot in Baileys channel
8+
- Multiple fixes in Chatwoot integration
9+
- Fixed ignored messages when receiving leads
10+
11+
### Fixed
12+
13+
* **Baileys**: Fix buffer storage in database
14+
- Correctly save Uint8Array values to database
15+
* **Baileys**: Simplify logging of messageSent object
16+
- Fixed "this.isZero not is function" error
17+
18+
### Chore
19+
20+
* **Version**: Bump version to 2.3.6 and update Baileys dependency to 7.0.0-rc.6
21+
* **Workflows**: Update checkout step to include submodules
22+
- Added 'submodules: recursive' option to checkout step in multiple workflow files to ensure submodules are properly initialized during CI/CD processes
23+
* **Manager**: Update asset files and install process
24+
- Updated subproject reference in evolution-manager-v2 to the latest commit
25+
- Enhanced the manager_install.sh script to include npm install and build steps
26+
- Replaced old JavaScript asset file with a new version for improved performance
27+
- Added a new CSS file for consistent styling across the application
28+
129
# 2.3.5 (2025-10-15)
230

331
### Features

Docker/swarm/evolution_api_v2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22

33
services:
44
evolution_v2:
5-
image: evoapicloud/evolution-api:v2.3.5
5+
image: evoapicloud/evolution-api:v2.3.6
66
volumes:
77
- evolution_instances:/evolution/instances
88
networks:

package-lock.json

Lines changed: 2265 additions & 1257 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evolution-api",
3-
"version": "2.3.5",
3+
"version": "2.3.6",
44
"description": "Rest api for communication with WhatsApp",
55
"main": "./dist/main.js",
66
"type": "commonjs",
@@ -77,7 +77,7 @@
7777
"amqplib": "^0.10.5",
7878
"audio-decode": "^2.2.3",
7979
"axios": "^1.7.9",
80-
"baileys": "^7.0.0-rc.5",
80+
"baileys": "7.0.0-rc.6",
8181
"class-validator": "^0.14.1",
8282
"compression": "^1.7.5",
8383
"cors": "^2.8.5",

src/api/integrations/channel/whatsapp/baileysMessage.processor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Logger } from '@config/logger.config';
2-
import { BaileysEventMap, MessageUpsertType, proto } from 'baileys';
2+
import { BaileysEventMap, MessageUpsertType, WAMessage } from 'baileys';
33
import { catchError, concatMap, delay, EMPTY, from, retryWhen, Subject, Subscription, take, tap } from 'rxjs';
44

55
type MessageUpsertPayload = BaileysEventMap['messages.upsert'];
@@ -12,7 +12,7 @@ export class BaileysMessageProcessor {
1212
private subscription?: Subscription;
1313

1414
protected messageSubject = new Subject<{
15-
messages: proto.IWebMessageInfo[];
15+
messages: WAMessage[];
1616
type: MessageUpsertType;
1717
requestId?: string;
1818
settings: any;

0 commit comments

Comments
 (0)