Status: Active Last Updated: October 4, 2025
All Piper Morgan plugins use Semantic Versioning (semver) to communicate changes and compatibility.
Versions follow the format: MAJOR.MINOR.PATCH
Example: 1.2.3
Increment when making breaking changes that affect:
Example: Changing /api/integrations/slack/webhook to /api/integrations/slack/v2/webhook
Increment when adding new features that are backwards compatible:
Example: Adding a new /forecast endpoint to weather integration
Increment when making backwards compatible bug fixes:
Example: Fixing error message formatting
As of October 2025, all core plugins are at version 1.0.0:
1.0.01.0.01.0.01.0.01.0.01. Update plugin metadata:
def get_metadata(self) -> PluginMetadata:
return PluginMetadata(
name="slack",
version="1.1.0", # Updated version
# ...
)
2. Document in CHANGELOG:
## [1.1.0] - 2025-10-15
### Added
- New `/reactions` endpoint for emoji reactions
- Support for threaded messages
### Fixed
- Webhook signature validation
3. Update tests if needed:
def test_plugin_metadata():
metadata = plugin.get_metadata()
assert metadata.version == "1.1.0" # Update expected version
Plugin versions are visible through:
GET /api/plugins/{name}/metadata0.x.x for production pluginsEstablished October 2025 as part of GREAT-3C