VendoVendo Docs
Changelog

Breaking changes

Consolidated list of breaking changes across SDKs and the manifest schema, with migration notes.

A single place to find every change that needed code edits in tools using the SDKs or the vendo.yaml manifest. Per-SDK release pages have the full notes; this page lists the breaking subset only.

How this page is maintained

Each per-SDK page is regenerated from GitHub Releases (see Python, TypeScript, Swift). When a release is marked BREAKING in the GitHub Release body, it gets a short entry here with a migration note. Schema-level breaking changes are mirrored from Manifest schema.

SDK breaking changes

Python — runvendo/vendo-sdk-py

VersionDateChangeMigration
none yetFirst stable line is v1.x. No breaking changes since v1.0.0.

TypeScript — runvendo/vendo-sdk-js

VersionDateChangeMigration
none yetFirst stable line is v1.x. No breaking changes since v1.0.0.

Swift — runvendo/vendo-sdk-swift

VersionDateChangeMigration
none yetFirst stable line is v1.x. No breaking changes since v1.0.0.

Manifest schema breaking changes

DateChangeMigration
2026-05Phase 6 unified env-vars migration collapsed v4 / v5 shapes into a single contract. userInputs[] replaces variables[]; integrations[] replaces requires[] and is now required (pass [] for tools with no integrations); templateVersion is no longer checked and may be omitted.Rename variablesuserInputs and requiresintegrations in your vendo.yaml. Drop templateVersion. See Manifest schema for the current shape.

When does something count as breaking?

A change is breaking if any of the following is true:

  • A tool that worked on the previous release fails to build, deploy, or boot on the new release without code changes.
  • A public SDK function changes name, signature, or behavior in a way that callers must adapt to.
  • A required manifest field is added or renamed, or a value previously accepted is now rejected by the validator.

Bug fixes that restore documented behavior are not breaking, even if they change observable output.

On this page