From 0d5bdd25ce4181bd4798b5b81667102642b69c4a Mon Sep 17 00:00:00 2001 From: enlineawork Date: Tue, 8 Sep 2026 16:14:04 -0300 Subject: [PATCH 1/2] fix(health): report F4 phase --- api-v3/src/version.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-v3/src/version.ts b/api-v3/src/version.ts index d33ca8d..99bb064 100644 --- a/api-v3/src/version.ts +++ b/api-v3/src/version.ts @@ -1,2 +1,2 @@ export const API_VERSION = '0.25.0-1'; -export const API_PHASE = 'F3.2'; +export const API_PHASE = 'F4'; From 7875fea3ca623389d1cc9ead3ae1e9ccde209b93 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Tue, 8 Sep 2026 16:14:10 -0300 Subject: [PATCH 2/2] test(health): pin F4 phase metadata --- api-v3/test/unit/f4-health-metadata.test.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 api-v3/test/unit/f4-health-metadata.test.ts diff --git a/api-v3/test/unit/f4-health-metadata.test.ts b/api-v3/test/unit/f4-health-metadata.test.ts new file mode 100644 index 0000000..87e01f5 --- /dev/null +++ b/api-v3/test/unit/f4-health-metadata.test.ts @@ -0,0 +1,8 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; +import { API_PHASE, API_VERSION } from '../../src/version'; + +test('F4 health metadata reports the deployed phase without changing the release version', () => { + assert.equal(API_PHASE, 'F4'); + assert.equal(API_VERSION, '0.25.0-1'); +});