From 135ed676b50ba0c5d724cedd11f5524e36a12a68 Mon Sep 17 00:00:00 2001 From: Mauro Antonio Sanz Date: Fri, 4 Apr 2025 11:50:01 -0300 Subject: [PATCH 1/2] Fixing OpenAPI spec for /manager/splits --- openapi/openapi.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/openapi/openapi.yaml b/openapi/openapi.yaml index 303bd6c..1ad2fe9 100644 --- a/openapi/openapi.yaml +++ b/openapi/openapi.yaml @@ -169,9 +169,12 @@ components: on: "{\"color\": \"blue\"}" off: "{\"color\": \"black\"}" Splits: - type: array - items: - $ref: '#/components/schemas/Split' + type: object + properties: + splits: + type: array + items: + $ref: '#/components/schemas/Split' security: - Authorization: [] From 5788b136a4f7b10943e0a59fff8ba7f5447ff3c3 Mon Sep 17 00:00:00 2001 From: Mauro Antonio Sanz Date: Fri, 4 Apr 2025 12:30:33 -0300 Subject: [PATCH 2/2] update changes --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index a181b68..6d2842e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +2.x.x (coming soon) + - Fixed OpenAPI spec fot /manager/splits + 2.7.0 (Dec 20, 2024) - Added support to arm64 images. - Updated base image to node:20.13.1-alpine3.20