32 lines
1.4 KiB
C
32 lines
1.4 KiB
C
#pragma once
|
|
// Step 1298: Sprint 106 integration summary.
|
|
#include <nlohmann/json.hpp>
|
|
|
|
struct Sprint106IntegrationSummary {
|
|
static constexpr int sprintNumber = 106;
|
|
static constexpr int stepsCompleted = 10;
|
|
static constexpr const char* theme = "Sprint 106 Plan: Contract-Centric API and ABI Preservation Suite";
|
|
static bool verify() { return sprintNumber == 106 && stepsCompleted == 10; }
|
|
static nlohmann::json toJson() {
|
|
nlohmann::json j = nlohmann::json::object();
|
|
j["sprint"] = sprintNumber;
|
|
j["steps"] = stepsCompleted;
|
|
j["theme"] = theme;
|
|
j["status"] = "complete";
|
|
nlohmann::json tools = nlohmann::json::array();
|
|
tools.push_back("whetstone_extract_api_abi_contract");
|
|
tools.push_back("whetstone_verify_api_abi_compat");
|
|
j["tools_added"] = tools;
|
|
nlohmann::json comps = nlohmann::json::array();
|
|
comps.push_back("UnifiedAPIABIContractSchema");
|
|
comps.push_back("BinaryInterfaceDiffEngineIntegration");
|
|
comps.push_back("CompatibilityPolicyProfilesByInterfaceCriticality");
|
|
comps.push_back("ContractBreachSeverityClassifier");
|
|
comps.push_back("AutoGeneratedMitigationSuggestionsForBreaches");
|
|
comps.push_back("ABIGateBindingsToTierPromotions");
|
|
comps.push_back("APIABIPreservationReportArtifact");
|
|
j["components"] = comps;
|
|
return j;
|
|
}
|
|
};
|