From 74eb29eb717c3a4e8b98382904f85384cf5b38aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Moitti=C3=A9?= Date: Wed, 27 Nov 2024 11:34:52 +0100 Subject: [PATCH 1/2] Fix error in stats workflow --- .github/workflows/stat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stat.yml b/.github/workflows/stat.yml index 077dd5ec..b8142f83 100644 --- a/.github/workflows/stat.yml +++ b/.github/workflows/stat.yml @@ -43,7 +43,7 @@ jobs: - name: Build application run: docker build -t leto-modelizer-api . - name: Run application - run: docker compose up -d + run: docker compose -f docker-compose-e2e.yml up -d env: GITHUB_CLIENT_ID: test GITHUB_CLIENT_SECRET: test From 206f040c5aef0bcbf4a9ca982ab3a12d65bea230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Moitti=C3=A9?= Date: Wed, 27 Nov 2024 11:40:29 +0100 Subject: [PATCH 2/2] Update changelog --- changelog.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 6c96b83c..9bda4323 100644 --- a/changelog.md +++ b/changelog.md @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Add api endpoints: * For AI configuration actions on proxy: * `GET /api/ai/proxy/configuration`, to send configuration on the proxy. - * `GET /api/ai/proxy/descriptions`, to get all configurations descriptions on the proxy. + * `GET /api/ai/proxy/descriptions`, to get all configurations descriptions on the proxy. * For AI configurations: * `GET /api/ai/configurations`, to get all AI configurations. * `POST /api/ai/configurations`, to get create an AI configuration. @@ -21,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `PUT /api/ai/configurations/[CONFIGURATION_ID]`, to update an AI configuration. * `DELETE /api/ai/configurations/[CONFIGURATION_ID]`, to delete an AI configuration. * For AI secrets: - * `GET /api/ai/secrets`, to get all AI secret keys. + * `GET /api/ai/secrets`, to get all AI secret keys. * `POST /api/ai/secrets`, to create an AI secret. * `GET /api/ai/secrets/[SECRET_ID]`, to get an AI secret. * `PUT /api/ai/secrets/[SECRET_ID]`, to update an AI secret. @@ -32,6 +32,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Jersey by Spring. +### Fixed + +- Workflow to generate sonar statistics. + ## [1.0.0] - 2024/10/15 ### Added @@ -129,4 +133,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `/api/login`, to login. * `/api/redirect`, to redirect with token on leto-modelizer/leto-modelizer-admin. -[1.0.0]: https://github.com/ditrit/leto-modelizer-api/blob/main/changelog.md#1.0.0 \ No newline at end of file +[1.0.0]: https://github.com/ditrit/leto-modelizer-api/blob/main/changelog.md#1.0.0 +