Releases
This page renders the project’s release history from the root CHANGELOG.md.
Changelog
All notable changes to this project are documented in this file.
The format is based on Keep a Changelog, and this project follows Semantic Versioning.
[Unreleased]
[0.3.0] - 2026-03-09
Added
- Added a minimal
apps/suite-managerNode/TypeScript service that exposes a status endpoint and logs periodic Homepage health checks, providing a concrete deployment target for future shared bootstrap and monitoring work.
Changed
- Documented a
stagingintegration branch workflow so feature branches can be tested and batched before promotion tomainreleases. - Reworked VPS/local setup around
suite-managershared inputs and service-leveldeploy/vps/services/*.env.templatefiles, replacing the older app-level runtime env layout. - Simplified
vps:initandvps:doctorto match the new template structure and dropped the remaining legacy.env.examplecompatibility code. - Fixed
npm run vps:rebuildso clean-slate rebuilds also remove profiled service volumes and auth state.
[0.2.0] - 2026-03-08
Added
- New root scripts for safer VPS onboarding:
npm run vps:initto create missingdeploy/vps/**/*.envfiles from.env.exampletemplates without overwriting existing values.npm run vps:doctorto validate required env vars and cross-file configuration checks before startup.npm run vps:upto run a non-destructive full stack startup flow (init+doctor+ compose up).
vps:initnow renders template expressions in.env.example, including:secret(length[, alphabet])secret(name, length[, alphabet])for shared generated values across filesbase64(text)for derived values (for exampleusername:passwordauth headers)
Changed
- Updated VPS onboarding documentation to use the new
vps:init -> vps:doctor -> vps:upflow and keepvps:rebuildas an explicit destructive reset command. - Updated app
.env.exampletemplates to support generated shared secrets and derived values during first-time setup. - Updated CI compose validation to render and verify VPS env files before running
docker compose config.
[0.1.0] - 2026-03-04
First official release of My Own Suite. Establishes the release/publishing foundation and ships the initial MVP application stack, validated locally with Docker Compose and in a Railway cloud deployment.
Added
RELEASING.mdwith SemVer rules, compatibility contracts, and a clear release workflow.CHANGELOG.mdas the canonical release history.- Starlight docs
Releasespage renderingCHANGELOG.md. - Top-level
Projectdocs section (afterApps) containingReleases. - Git hooks (
pre-commit,pre-push) to block commits/pushes directly onmain.