Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/changelog_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

{{changelog}}
{{changelog}}
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
cat "$notebook"
exit 1
fi
done
done
2 changes: 1 addition & 1 deletion .github/workflows/versioning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
user: __token__
password: ${{ secrets.PYPI }}
skip-existing: true


4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Fixed critical React Server Components CVE vulnerabilities (CVE-2025-55182, CVE-2025-66478)
2 changes: 1 addition & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ print(robustness['recommendation'])

- **GitHub issues**: https://github.com/PolicyEngine/microcalibrate/issues
- **Documentation**: https://policyengine.github.io/microcalibrate/
- **Performance dashboard**: https://microcalibrate.vercel.app/
- **Performance dashboard**: https://microcalibrate.vercel.app/
80 changes: 40 additions & 40 deletions microcalibration-dashboard/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion microcalibration-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"jszip": "^3.10.1",
"lucide-react": "^0.522.0",
"next": "15.3.4",
"next": "15.3.8",
"papaparse": "^5.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,4 +281,4 @@ export default function Dashboard() {
</div>
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -412,4 +412,4 @@ export default function CalibrationSummary({ data }: CalibrationSummaryProps) {
)}
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -294,4 +294,4 @@ export default function ComparisonCharts({ firstData, secondData, firstName, sec
)}
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -546,4 +546,4 @@ export default function ComparisonDataTable({
)}
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -212,4 +212,4 @@ export default function ComparisonQualitySummary({
</div>
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -386,4 +386,4 @@ export default function ComparisonSummary({ firstData, secondData, firstName, se
)}
</div>
);
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,4 @@ export default function DataTable({ data }: DataTableProps) {
)}
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ export default function ErrorDistribution({ data }: ErrorDistributionProps) {
</div>
</div>
);
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/components/LossChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,4 @@ export default function LossChart({ data }: LossChartProps) {
</div>
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,4 @@ export default function MetricsOverview({ data }: MetricsOverviewProps) {
</div>
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ export default function RegressionAnalysis({ firstData, secondData }: Regression
</div>
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -357,4 +357,4 @@ export default function SingleDatasetBarChart({ data }: SingleDatasetBarChartPro
)}
</div>
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -845,4 +845,4 @@ export default function TargetConvergenceComparison({

</div>
);
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/types/calibration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export interface CalibrationMetrics {
targetNames: string[];
finalLoss: number;
convergenceEpoch?: number;
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/utils/csvParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ export function getCalibrationMetrics(data: CalibrationDataPoint[]): Calibration
finalLoss,
convergenceEpoch,
};
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/utils/deeplinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ export function getCurrentDeeplinkParams(): DeeplinkParams | null {

const searchParams = new URLSearchParams(window.location.search);
return decodeDeeplink(searchParams);
}
}
2 changes: 1 addition & 1 deletion microcalibration-dashboard/src/utils/targetOrdering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ export function sortTargetsWithRelevance(targets: string[], searchQuery: string)
...sortTargetNames(startsWithMatches),
...sortTargetNames(containsMatches)
];
}
}