Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
82c0ead
chore(manager): update asset files and dependencies
DavidsonGomes Oct 15, 2025
6ad33df
chore(changelog): update CHANGELOG for version 2.3.5
DavidsonGomes Oct 15, 2025
8775cdf
chore(changelog): update CHANGELOG for version 2.3.5 release date
DavidsonGomes Oct 15, 2025
dc53028
feat(telemetry): add message type telemetry logging in channel services
DavidsonGomes Oct 15, 2025
501b06d
Merge branch 'release/2.3.5'
DavidsonGomes Oct 15, 2025
d6834c8
fix(chatwoot): correct chatId extraction for non-group JIDs
KokeroO Oct 14, 2025
bdd9257
Merge branch 'develop' of https://github.com/KokeroO/evolution-api in…
KokeroO Oct 14, 2025
8468690
chore(manager): update asset files and install process
DavidsonGomes Oct 15, 2025
5254928
Merge branch 'release/2.3.5'
DavidsonGomes Oct 15, 2025
cdf0666
chore(workflows): update checkout step to include submodules
DavidsonGomes Oct 15, 2025
d48fbc3
Merge branch 'release/2.3.5'
DavidsonGomes Oct 15, 2025
946dcae
feat(baileys,chatwoot,on-whatsapp-cache): implementaΓ§Γ΅es e correΓ§Γ΅es …
KokeroO Oct 19, 2025
423f629
Update src/utils/onWhatsappCache.ts
KokeroO Oct 19, 2025
adbe107
Update src/api/integrations/chatbot/chatwoot/services/chatwoot.servic…
KokeroO Oct 19, 2025
0737c45
Update src/api/integrations/chatbot/chatwoot/services/chatwoot.servic…
KokeroO Oct 19, 2025
e1ae03c
fix(comments): comments fix
KokeroO Oct 19, 2025
582166e
fix(lint): lint
KokeroO Oct 19, 2025
cd71ff5
Merge pull request #2103 from KokeroO/develop
DavidsonGomes Oct 19, 2025
4efc9b6
Simplify logging of messageSent object
KokeroO Oct 19, 2025
d58d0b8
Merge branch 'EvolutionAPI:develop' into develop
KokeroO Oct 19, 2025
e83a7e2
Merge pull request #2105 from KokeroO/develop
DavidsonGomes Oct 19, 2025
dd21a29
fix(baileys): salvar corretamente buffer no db
KokeroO Oct 19, 2025
48bda1b
Merge pull request #2107 from KokeroO/develop
DavidsonGomes Oct 19, 2025
aa0d793
chore: bump version to 2.3.6 and update baileys dependency to 7.0.0-rc.6
KokeroO Oct 20, 2025
ba3a2fa
chore: atualizar versΓ£o da API para 2.3.6 nos templates e configuraçá…
KokeroO Oct 20, 2025
ae9f3ef
Merge pull request #2108 from KokeroO/develop
DavidsonGomes Oct 21, 2025
8c27f11
chore(changelog): update to version 2.3.6
DavidsonGomes Oct 21, 2025
3454bec
Merge branch 'release/2.3.6'
DavidsonGomes Oct 21, 2025
f4a2fbc
Add GitHub Actions workflow for Docker build
grichaud Oct 23, 2025
98f6503
feat(chatwoot): use standard HTTP header 'api-access-token' for Chatw…
Oct 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ body:
value: |
- OS: [e.g. Ubuntu 20.04, Windows 10, macOS 12.0]
- Node.js version: [e.g. 18.17.0]
- Evolution API version: [e.g. 2.3.5]
- Evolution API version: [e.g. 2.3.6]
- Database: [e.g. PostgreSQL 14, MySQL 8.0]
- Connection type: [e.g. Baileys, WhatsApp Business API]
validations:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/check_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:

steps:
- uses: actions/checkout@v5
with:
submodules: recursive

- name: Install Node
uses: actions/setup-node@v5
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Docker Image

on:
push:
branches:
- release/2.3.5
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
grichaud/evolution-api:custom
grichaud/evolution-api:latest
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 2 additions & 0 deletions .github/workflows/publish_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
with:
submodules: recursive

- name: Docker meta
id: meta
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish_docker_image_homolog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
with:
submodules: recursive

- name: Docker meta
id: meta
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish_docker_image_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
with:
submodules: recursive

- name: Docker meta
id: meta
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
submodules: recursive

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand All @@ -47,5 +49,7 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v5
with:
submodules: recursive
- name: Dependency Review
uses: actions/dependency-review-action@v4
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
# 2.3.6 (2025-10-21)

### Features

* **Baileys, Chatwoot, OnWhatsapp Cache**: Multiple implementations and fixes
- Fixed cache for PN, LID and g.us numbers to send correct number
- Fixed audio and document sending via Chatwoot in Baileys channel
- Multiple fixes in Chatwoot integration
- Fixed ignored messages when receiving leads

### Fixed

* **Baileys**: Fix buffer storage in database
- Correctly save Uint8Array values to database
* **Baileys**: Simplify logging of messageSent object
- Fixed "this.isZero not is function" error

### Chore

* **Version**: Bump version to 2.3.6 and update Baileys dependency to 7.0.0-rc.6
* **Workflows**: Update checkout step to include submodules
- Added 'submodules: recursive' option to checkout step in multiple workflow files to ensure submodules are properly initialized during CI/CD processes
* **Manager**: Update asset files and install process
- Updated subproject reference in evolution-manager-v2 to the latest commit
- Enhanced the manager_install.sh script to include npm install and build steps
- Replaced old JavaScript asset file with a new version for improved performance
- Added a new CSS file for consistent styling across the application

# 2.3.5 (2025-10-15)

### Features
Expand Down
2 changes: 1 addition & 1 deletion Docker/swarm/evolution_api_v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
evolution_v2:
image: evoapicloud/evolution-api:v2.3.5
image: evoapicloud/evolution-api:v2.3.6
volumes:
- evolution_instances:/evolution/instances
networks:
Expand Down
Loading