XKOVA Docs

Changelog

Release notes for the XKOVA API. Each entry records what changed in the public surface, so you can tell at a glance whether an upgrade needs work on your side. Breaking changes never land quietly here.

Current release

VersionStatusNotes
1.0.0 Pre-launch Initial pilot API surface. Not yet generally available.

The API path prefix is /v1/. See Versioning for what that prefix promises and when a new major would appear.

How to read an entry

Every release entry groups its changes under fixed headings so you can scan for the parts that affect you. An entry that adds capability without removing anything carries an empty Changed, Deprecated, and Migration notes section, which is the signal that no action is required.

HeadingWhat it lists
AddedNew endpoints and new webhook events, each with a short purpose.
ChangedBehavior changes. A breaking change here is rare and is called out as such.
DeprecatedSurfaces scheduled for removal, with their sunset date. See Deprecations.
FixedCorrected behavior in existing surfaces.
SecuritySecurity relevant changes.
Migration notesWhat you must do to adopt the release, or a clear statement that nothing is required.

Entry format

Future entries follow this shape. The version line carries the semantic version and the release date.

## v1.1.0 - 2026-06-15

### Added
- New endpoint: GET /v1/example - short purpose.
- New webhook event: example.created - short purpose.

### Changed
- (nothing breaking)

### Deprecated
- (none)

### Fixed
- A corrected field now populates reliably.

### Security
- (none)

### Migration notes
- No action required.
A change to the API surface, a deprecation, or a sunset always appears here first. Watch this page, and pair it with Webhooks so your integration reacts to new events as they ship.

Related

See Versioning for the compatibility policy, and Deprecations for how a surface is retired with notice.