Add a warning when the version does not match the latest release (#442)
Some checks failed
Docker publish rootless / build-rootless (push) Waiting to run
Docker publish / build (push) Waiting to run
Update Currencies / update-currencies (push) Waiting to run
Docker publish ARM / build (push) Has been cancelled
Docker publish rootless ARM / build-rootless (push) Has been cancelled
Dockerhub publish / build (push) Has been cancelled

This commit is contained in:
Tonya
2025-01-04 19:22:25 +00:00
committed by GitHub
parent a4e94ddf7a
commit 9cf244c933
16 changed files with 200 additions and 12 deletions

View File

@@ -392,6 +392,11 @@ export interface ValueOverTimeEntry {
value: number;
}
export interface Latest {
date: Date | string;
version: string;
}
export interface UserRegistration {
email: string;
name: string;
@@ -404,6 +409,7 @@ export interface APISummary {
build: Build;
demo: boolean;
health: boolean;
latest: Latest;
message: string;
title: string;
versions: string[];