From fd4e388ff63b561b4a88a3ca94260acaea2f0fe0 Mon Sep 17 00:00:00 2001 From: Prowler Bot Date: Fri, 8 May 2026 10:41:01 +0200 Subject: [PATCH] chore(api): Bump version to v1.26.4 (#11081) Co-authored-by: prowler-bot <179230569+prowler-bot@users.noreply.github.com> --- api/pyproject.toml | 2 +- api/src/backend/api/specs/v1.yaml | 2 +- api/src/backend/api/v1/views.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/pyproject.toml b/api/pyproject.toml index cc75b28ee3..d822c54034 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -50,7 +50,7 @@ name = "prowler-api" package-mode = false # Needed for the SDK compatibility requires-python = ">=3.11,<3.13" -version = "1.26.3" +version = "1.26.4" [project.scripts] celery = "src.backend.config.settings.celery" diff --git a/api/src/backend/api/specs/v1.yaml b/api/src/backend/api/specs/v1.yaml index ea99fb90ee..a3ae61ed4b 100644 --- a/api/src/backend/api/specs/v1.yaml +++ b/api/src/backend/api/specs/v1.yaml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: Prowler API - version: 1.26.3 + version: 1.26.4 description: |- Prowler API specification. diff --git a/api/src/backend/api/v1/views.py b/api/src/backend/api/v1/views.py index b068ec1ce2..e514f9b309 100644 --- a/api/src/backend/api/v1/views.py +++ b/api/src/backend/api/v1/views.py @@ -422,7 +422,7 @@ class SchemaView(SpectacularAPIView): def get(self, request, *args, **kwargs): spectacular_settings.TITLE = "Prowler API" - spectacular_settings.VERSION = "1.26.3" + spectacular_settings.VERSION = "1.26.4" spectacular_settings.DESCRIPTION = ( "Prowler API specification.\n\nThis file is auto-generated." )