Changelog
Where to find release notes
Each package versions independently and publishes its own changelog. Release notes live in three places:
-
GitHub Releases — github.com/omnitron-dev/omni/releases. One entry per release across the monorepo; lists every package version bumped and what changed.
-
CHANGELOG.mdper package — committed to the repo, e.g.,packages/titan-cache/CHANGELOG.md. Maintained by Changesets. -
npm versions —
pnpm view @omnitron-dev/titan versionsfor the version history of any package.
Versioning policy
We follow strict semver:
| Bump | When |
|---|---|
MAJOR (1.0.0 → 2.0.0) | Any breaking change to the public API. Includes: removed exports, renamed methods, changed method signatures, behaviour changes that break valid prior code. |
MINOR (1.0.0 → 1.1.0) | New feature or non-breaking improvement. New module, new option with a safe default, performance improvement. |
PATCH (1.0.0 → 1.0.1) | Bug fix. No API change. |
Pre-1.0 exception
Packages with version 0.x.y may have breaks in minor versions
(0.1.0 → 0.2.0 may break). Once a package hits 1.0.0, full
semver applies.
This matches semver's definition for pre-1.0 packages.
Per-package versioning
Each @omnitron-dev/* package versions independently. This means:
titancan be at v1.2.0 whiletitan-cacheis at v0.8.4.- Upgrading one package doesn't force upgrading others — as long as peer-dependency ranges are satisfied.
- Breaking change in
titan-cachedoesn't bumptitan's version.
Peer-dependency relationships make this manageable; each module
declares which titan versions it supports.
Support windows
We aim for:
- Current major: full support — bug fixes, security patches, new features.
- Previous major: security fixes only for 12 months after the next major's release.
- Older majors: unsupported; upgrade.
Pre-1.0 packages are best-effort.
Breaking change communication
Breaking changes get:
- A deprecation warning in the previous minor release (at least one).
- Documentation of the migration path in the release notes.
- A migration guide for substantial changes.
We aim to avoid surprise breaks. If you depend on undocumented internals, expect them to break without notice.
Release cadence
Roughly:
- Patch releases: as needed (often weekly across the monorepo).
- Minor releases: 2–4 per quarter per actively-developed package.
- Major releases: 1–2 per year per package, more for early packages.
There is no fixed schedule — releases ship when they're ready.
Upgrade guides
When a major version requires non-trivial migration, an upgrade guide is added to the docs:
| From → To | Guide |
|---|---|
| (none yet — published once first major upgrades land) |
For specific packages, the package's CHANGELOG.md has the
detail.
Subscribe to releases
| Channel | URL |
|---|---|
| GitHub Releases RSS | https://github.com/omnitron-dev/omni/releases.atom |
| Watch the repo | github.com/omnitron-dev/omni → Watch → Custom → Releases |
| npm package | npm info @omnitron-dev/<pkg> |
| Blog | /blog (significant releases get a post) |
See also
- Contributing / Release process
- Security policy — security-fix SLA
- Packages — per-package index