From a49c63bc2b7c8ee9c31ec0682d3c26d41fc977ab Mon Sep 17 00:00:00 2001 From: Davidson Gomes Date: Tue, 30 Jul 2024 18:38:13 -0300 Subject: [PATCH] chore: Update CHANGELOG and API routes Updated CHANGELOG.md with details of the current release. Modified src/api/routes/index.router.ts to improve the API routing. These changes are part of the ongoing maintenance and improvement of the project. --- CHANGELOG.md | 6 ++++++ src/api/routes/index.router.ts | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e0a2a35..1cf3b9c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 2.0.5-rc (release candidate) + +### Fixed + +* ClientName on infos + # 2.0.4-rc (2024-07-30 14:13) ### Features diff --git a/src/api/routes/index.router.ts b/src/api/routes/index.router.ts index 4f7395e9..3a668308 100644 --- a/src/api/routes/index.router.ts +++ b/src/api/routes/index.router.ts @@ -69,6 +69,7 @@ router status: HttpStatus.OK, message: 'Welcome to the Evolution API, it is working!', version: packageJson.version, + clientName: process.env.DATABASE_CONNECTION_CLIENT_NAME, manager: !serverConfig.DISABLE_MANAGER ? `${req.protocol}://${req.get('host')}/manager` : undefined, documentation: `https://doc.evolution-api.com`, });