Plugin SDK Changelog
Compatibility Policy
sdkVersionchanges only for breaking API-level shifts.sdkRevisionchanges for additive or contract-tightening changes inside the same API level.Older revisions may be marked
supported,deprecated, orretired.New plugins should target the current SDK pair unless they intentionally need older compatibility.
Current SDK
sdkVersion: 1sdkRevision: 4
Version 1
Revision 4
Status:
current
Released:
2026-03-14
Summary:
Expanded the declarative host component registry and added plugin-scoped UI isolation.
Changes:
Added stable
host.*aliases for the supported declarative host primitives.Expanded the host renderer with rows, stacks, surfaces, headings, captions, chip groups, badges, inputs, switches, progress bars, scroll containers, and spacers.
Added plugin-scoped error boundaries so broken declarative plugin UI degrades locally instead of crashing the full app.
Migration notes:
New plugins should target
sdkRevision: 4.Existing manifests using short ids like
section,text,button, andremote_componentcontinue to work.Prefer the namespaced
host.*ids in new examples and docs.
Revision 3
Status:
supported
Released:
2026-03-14
Summary:
OctoPrint compatibility primitives and browser-side host bridge support.
Changes:
Added
plugin.json -> settings.defaultsas a first-class persisted settings seed.Added authenticated plugin settings and state endpoints.
Added
send_plugin_message/publish_statestate persistence support.Added the browser compatibility helper at
/api/plugins/sdk/octoprint-compat.js.Added
WPRINT3D_BOOTSTRAP_APPto the PHP runtime environment for ports that need host models and config.Added the host-rendered
data_stripwidget for native OctoPrint-style navbar ports.Added the
OctoPrint NavbarTemp Portexample plugin as the reference migration case.
Migration notes:
New plugins should target
sdkRevision: 3.Plugins already using revision 2 keep working unchanged.
OctoPrint ports should prefer the new settings/state APIs instead of inventing custom AJAX glue.
Revision 2
Status:
supported
Released:
2026-03-13
Summary:
Heavyweight plugin runtime dependencies and interactive scaffolding.
Changes:
Added manifest-declared
imageswith optionalhealthcheckandservicemetadata.Added advisory
requirements.memoryMbandrequirements.cpuCores.Added host-managed bridge sidecar activation through
runtime.managedImageId.Added heavyweight/lightweight dependency metadata in plugin inventory and marketplace payloads.
Added interactive
plugin:makescaffolding for runtime/UI shape combinations.
Migration notes:
New plugins should target
sdkRevision: 2.Bridge plugins can keep using static
runtime.baseUrl, but self-contained image-backed bridges should preferruntime.managedImageId.
Revision 1
Status:
supported
Released:
2026-03-12
Summary:
Asset-backed elevated UI revisions and settings-tab parity release.
Changes:
Added revisioned SDK metadata with
sdkVersionplussdkRevision.Added authenticated host-served plugin assets for WebView and custom bundle surfaces.
Standardized dedicated plugin settings tabs and plugin-card
Settingsentry points.Added first-party Host Metrics examples for every supported runtime/UI shape combination.
Migration notes:
WebView and custom-bundle plugins should declare entry assets in
assetsand useasset://....New scaffolds should emit
sdkRevision.
Revision 0
Status:
supported
Released:
2026-03-11
Summary:
Initial public plugin SDK release.
Changes:
Introduced PHP and bridge runtimes.
Introduced declarative UI surfaces, WebView mode, and custom bundle mode.
Introduced plugin management, registry integration, and development-mount installs.
Migration notes:
Revision 0 plugins continue to install, but new samples and docs now target revision 1.
Planned Deprecation Flow
When a revision is deprecated:
The docs will mark the revision as
deprecated.The changelog will include the replacement revision and migration notes.
The scaffold will move to the newer revision.
Examples will be updated first.
Registry review rules can warn on new submissions targeting older revisions.