F4 hotfix · metadata de health

Corrige la fase publicada por el health de la API para reflejar F4 y agrega una prueba de regresión sin cambiar la versión funcional.
This commit is contained in:
2026-09-08 16:18:58 -03:00
committed by GitHub
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
export const API_VERSION = '0.25.0-1';
export const API_PHASE = 'F3.2';
export const API_PHASE = 'F4';
@@ -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');
});