Skip to content

Commit 5d0278a

Browse files
Merge branch 'develop' into foqc/develop
2 parents 85936dc + 2fb3eac commit 5d0278a

File tree

20 files changed

+2531
-2161
lines changed

20 files changed

+2531
-2161
lines changed

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.git
22
*Dockerfile*
33
*docker-compose*
4-
package-lock.json
54
.env
65
node_modules
76
dist

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ CONFIG_SESSION_PHONE_NAME=Chrome
196196

197197
# Whatsapp Web version for baileys channel
198198
# https://web.whatsapp.com/check-update?version=0&platform=web
199-
# CONFIG_SESSION_PHONE_VERSION=2.3000.1023204200
199+
200200

201201
# Set qrcode display limit
202202
QRCODE_LIMIT=30

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 2.3.1 (develop)
2+
3+
### Fixed
4+
5+
* Update Baileys Version
6+
* Update Dockerhub Repository and Delete Config Session Variable
7+
* Fixed sending variables in typebot
8+
* Add unreadMessages in the response
9+
* Phone number as message ID for Evo AI
10+
* Fix upload to s3 when media message
11+
112
# 2.3.0 (2025-06-17 09:19)
213

314
### Feature

Docker/swarm/evolution_api_v2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.7"
22

33
services:
44
evolution_v2:
5-
image: atendai/evolution-api:v2.2.3
5+
image: evoapicloud/evolution-api:v2.3.1
66
volumes:
77
- evolution_instances:/evolution/instances
88
networks:
@@ -94,7 +94,7 @@ services:
9494
- WEBHOOK_EVENTS_ERRORS_WEBHOOK=
9595
- CONFIG_SESSION_PHONE_CLIENT=Evolution API V2
9696
- CONFIG_SESSION_PHONE_NAME=Chrome
97-
- CONFIG_SESSION_PHONE_VERSION=2.3000.1023204200
97+
#- CONFIG_SESSION_PHONE_VERSION=2.3000.1023204200
9898
- QRCODE_LIMIT=30
9999
- OPENAI_ENABLED=true
100100
- DIFY_ENABLED=true

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,24 @@ FROM node:20-alpine AS builder
33
RUN apk update && \
44
apk add --no-cache git ffmpeg wget curl bash openssl
55

6-
LABEL version="2.3.0" description="Api to control whatsapp features through http requests."
6+
LABEL version="2.3.1" description="Api to control whatsapp features through http requests."
77
LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes"
88
LABEL contact="[email protected]"
99

1010
WORKDIR /evolution
1111

12-
COPY ./package.json ./tsconfig.json ./
12+
COPY ./package*.json ./
13+
COPY ./tsconfig.json ./
14+
COPY ./tsup.config.ts ./
1315

14-
RUN npm install
16+
RUN npm ci --silent
1517

1618
COPY ./src ./src
1719
COPY ./public ./public
1820
COPY ./prisma ./prisma
1921
COPY ./manager ./manager
2022
COPY ./.env.example ./.env
2123
COPY ./runWithProvider.js ./
22-
COPY ./tsup.config.ts ./
2324

2425
COPY ./Docker ./Docker
2526

@@ -35,6 +36,7 @@ RUN apk update && \
3536
apk add tzdata ffmpeg bash openssl
3637

3738
ENV TZ=America/Sao_Paulo
39+
ENV DOCKER_ENV=true
3840

3941
WORKDIR /evolution
4042

@@ -55,4 +57,4 @@ ENV DOCKER_ENV=true
5557

5658
EXPOSE 8080
5759

58-
ENTRYPOINT ["/bin/bash", "-c", ". ./Docker/scripts/deploy_database.sh && npm run start:prod" ]
60+
ENTRYPOINT ["/bin/bash", "-c", ". ./Docker/scripts/deploy_database.sh && npm run start:prod" ]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ Please contact [email protected] to inquire about licensing matters.
117117

118118
Apart from the specific conditions mentioned above, all other rights and restrictions follow the Apache License 2.0. Detailed information about the Apache License 2.0 can be found at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0).
119119

120-
© 2024 Evolution API
120+
© 2025 Evolution API

0 commit comments

Comments
 (0)