docs: add changelog field to manifests (template, VirusTotal, README)

This commit is contained in:
2026-06-22 11:25:48 +02:00
parent 67d5e7da55
commit d701284f46
3 changed files with 5 additions and 0 deletions
+1
View File
@@ -39,6 +39,7 @@ id: my_integration # required, unique, slug
name: My Integration # required, human name
version: 1.0.0 # semver
description: What it does.
changelog: "1.1.0 — notes" # optional: shown on update so operators can assess risk
category: enrichment # free text (enrichment, containment, ticketing…)
# Per-instance configuration the operator fills when creating an instance.
+1
View File
@@ -2,6 +2,7 @@ id: virustotal
name: VirusTotal
version: 1.0.0
description: VirusTotal API v3 — reputation lookups for IPs and domains.
changelog: "1.0.0 — Initial release: IP and domain reputation lookups."
category: enrichment
config_schema:
+3
View File
@@ -8,6 +8,9 @@ id: example_integration # required · unique slug · [a-z0-9_]
name: Example Integration # required · shown in the UI
version: 1.0.0 # semver · bump on every change
description: One-line description of what this integration does.
# changelog: shown to operators when an update is available, so they can assess
# risk before updating. Describe notable/breaking changes for THIS version.
changelog: "1.0.0 — Initial release."
category: enrichment # free text: enrichment | containment | ticketing | ...
# ---------------------------------------------------------------------------