Add version display to web UI footer #12
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Show the deployed API version in the web UI footer so it is easy to visually confirm which build is running on staging/production.
Implementation
GET /api/health/versionadded toHealthController— returns{ "version": "1.0.0-build.20250522103045" }usingGetApplicationVersion(Assembly.GetExecutingAssembly())index.htmlandcv-matcher/index.htmlfooters gain a<span id="app-version">populated by a JS fetch to/api/health/versionapiassembly version is already a build-timestamp string baked in via<Version>inapi.csprojAcceptance criteria
GET /api/health/versionreturns the correct version JSONDone