diff --git a/CHANGELOG.md b/CHANGELOG.md index b805bb1f..62d64ba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Added messages.delete event * Added restart instance endpoint * Created automation for creating instances in the chatwoot bot with the command #inbox_whatsapp: +* Change Baileys version to: 6.4.0 ### Fixed @@ -18,6 +19,7 @@ * Adjusts in returns in endpoints chatwoot and webhook * Fixed ghost mentions in send text message * Fixed bug that saved contacts from groups came without number in chatwoot +* Fixed problem to receive csat in chatwoot # 1.2.2 (2023-07-15 09:36) diff --git a/Docker/mongodb/docker-compose.yaml b/Docker/mongodb/docker-compose.yaml index de1b7e2b..698ca50c 100644 --- a/Docker/mongodb/docker-compose.yaml +++ b/Docker/mongodb/docker-compose.yaml @@ -37,6 +37,5 @@ volumes: networks: evolution-net: - name: evolution-net external: true \ No newline at end of file diff --git a/Docker/redis/docker-compose.yaml b/Docker/redis/docker-compose.yaml index dce371f2..6409b851 100644 --- a/Docker/redis/docker-compose.yaml +++ b/Docker/redis/docker-compose.yaml @@ -25,5 +25,4 @@ volumes: networks: evolution-net: - name: evolution-net external: true diff --git a/docker-compose-full.yaml b/docker-compose-full.yaml deleted file mode 100644 index 9b108101..00000000 --- a/docker-compose-full.yaml +++ /dev/null @@ -1,73 +0,0 @@ -version: '3.3' - -services: - redis: - image: redis:latest - container_name: redis - ports: - - 6379:6379 - - rebrow: - image: marian/rebrow - ports: - - 5001:5001 - links: - - redis - - mongodb: - container_name: mongodb - image: mongo - restart: always - volumes: - - evolution_mongodb_data:/data/db - - evolution_mongodb_configdb:/data/configdb - ports: - - 27017:27017 - environment: - MONGO_INITDB_ROOT_USERNAME: root - MONGO_INITDB_ROOT_PASSWORD: root - expose: - - 27017 - - mongo-express: - image: mongo-express - environment: - ME_CONFIG_BASICAUTH_USERNAME: root - ME_CONFIG_BASICAUTH_PASSWORD: root - ME_CONFIG_MONGODB_SERVER: mongodb - ME_CONFIG_MONGODB_ADMINUSERNAME: root - ME_CONFIG_MONGODB_ADMINPASSWORD: root - ports: - - 8081:8081 - links: - - mongodb - api: - container_name: evolution_api - image: evolution/api:local - restart: always - ports: - - 8080:8080 - volumes: - - evolution_instances:/evolution/instances - - evolution_store:/evolution/store - env_file: - - ./Docker/.env - command: ['node', './dist/src/main.js'] - expose: - - 8080 - links: - - mongodb - - redis - -volumes: - evolution_instances: - evolution_store: - evolution_mongodb_data: - evolution_mongodb_configdb: - evolution_redis: - -networks: - default: - external: - name: evolution-net - \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index 51f5bd43..c6d1bc73 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -22,6 +22,5 @@ volumes: networks: evolution-net: - name: evolution-net external: true \ No newline at end of file