Skip to main content
Version: v0.28.6

Roadmap

This page helps teams building custom playbooks and integrations understand what's stable, what's coming, and what might change.


Stability tiers

Regis categorizes its public interfaces into stability tiers so you can make informed decisions about what to depend on.

TierMeaningExamples
StableWill not change without a major version bump and migration guideReport JSON schema (report.schema.json), playbook definition schema, rule evaluation fields (passed, status, slug, level)
EvolvingMay gain new fields; existing fields won't be removed without deprecation noticeAnalyzer output schemas (new fields may appear), rules_summary structure, badge/label fields
ExperimentalMay change or be removed in any minor releaseNew CLI commands in their first release, undocumented internal APIs

Stable API surface

The following are considered stable and safe to depend on in custom playbooks:

  • Playbook definition schemaname, description, slug, sections, rules, conditions, tiers, links, labels, badge_labels, mr_description_checklists
  • Report JSON top-level fieldsversion, request, results, playbook, playbooks, rules, rules_summary, tier, badges, links
  • Rule result fieldsslug, description, passed, status, message, level, tags, analyzers
  • Rules summaryscore (0-100), total, passed, by_tag
  • Entry point groupregis.analyzers (for custom analyzer plugins)

Evolving interfaces

  • Individual analyzer output schemas — new fields may be added to any analyzer's output. Existing fields (e.g., trivy.vulnerabilities.summary) are stable within a major version.
  • CLI flags and output format — command signatures are stable after one release cycle; output formatting (text mode) may change.

Recently shipped

FeatureVersionDescription
Project rebrandv0.26.0Renamed from regis-cli to Regis (Registry Scores) across package, CLI, docs, and branding
archive configure commandv0.27.0Multi-archive setup: configure multiple archive targets from a single CLI command
bootstrap gitlab-ci wizardv0.27.0Interactive wizard to generate a Request-to-MR GitLab CI pipeline
GitLab dashboard integrationv0.28.0Live dashboard with GitLab API proxy, pipeline trigger, webhook support, and embedded UI
Dashboard serve → FastAPIv0.28.0Local dashboard server migrated to FastAPI for improved performance and extensibility
GitHub PR integrationv0.25.0regis github update-pr command posts analysis results as PR comments
Reusable GitHub Actionv0.25.0Composite action encapsulating analysis, artifact upload, and PR comment

Near-term (v0.29.0)

FeatureStatusDescription
regis diff commandPlannedCompare two report.json files — score delta, CVE changes, rule regressions. Supports --fail-on-regression for CI gates
Custom analyzer guidePlannedStep-by-step developer documentation for building analyzer plugins

Medium-term

FeatureDescription
Multi-image comparisonCompare security posture across multiple images in a single report
SARIF exportExport vulnerability findings in SARIF format for GitHub Code Scanning integration
Policy versioningVersion playbooks independently from the CLI, with explicit compatibility ranges

Deferred

FeatureReason
Tailwind v4 migration (dashboard)Blocked on @headlessui/tailwindcss v4 support

Compatibility commitments

  1. No silent breaking changes — any change to stable fields will be announced in the changelog and accompanied by a migration guide.
  2. Deprecation window — deprecated fields will continue to work for at least one minor version before removal.
  3. Schema validationregis validates its own report output against report.schema.json at generation time. If your playbook depends on a field that passes validation today, it will continue to work until the schema version changes.
  4. Analyzer output contracts — custom playbooks that reference results.<analyzer>.<field> paths documented in the analyzer schemas are protected by the evolving stability tier.

How to give feedback

If your team is building custom playbooks or integrations and needs clarity on stability of a specific field or feature, open a GitHub Discussion or file an issue.