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
10 changes: 9 additions & 1 deletion scripts/check-code-health.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const baselines = {
unresolved: 0,
},
suppressions: 13,
dependencies: { critical: 0, highIds: 21, highFindings: 29 },
dependencies: { critical: 0, highIds: 22, highFindings: 30 },
};
const acceptedUnusedDependencies = new Set([
'landing-astro/package.json:@fontsource-variable/geist',
Expand All @@ -72,6 +72,7 @@ const acceptedHighAdvisories = new Set([
'GHSA-9wv6-86v2-598j',
'GHSA-f88m-g3jw-g9cj',
'GHSA-hm92-r4w5-c3mj',
'GHSA-jmr9-qjv8-65gv',
'GHSA-mh99-v99m-4gvg',
'GHSA-mwp4-54f8-5fhr',
'GHSA-r28c-9q8g-f849',
Expand Down Expand Up @@ -271,6 +272,13 @@ function checkDependencies() {
.join(', ')}`
);
}
const extractZipExceptionExpires = new Date('2026-09-14T00:00:00Z');
if (
Date.now() >= extractZipExceptionExpires.getTime() &&
high.some((advisory) => advisory.github_advisory_id === 'GHSA-jmr9-qjv8-65gv')
) {
throw new Error('extract-zip dependency exception expired on 2026-09-14 (#56).');
}
failRegressions('Dependencies', observed, baselines.dependencies);
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function RootLayout({
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: `{"@context":"https://schema.org","@graph":[{"@type":"Person","@id":"https://sarthakagrawal.dev/#person","name":"Sarthak Agrawal","jobTitle":"AI Infrastructure & Product Engineer","url":"https://sarthakagrawal.dev","image":"https://avatars.githubusercontent.com/u/43884471?v=4","sameAs":["https://sarthakagrawal.dev","https://www.linkedin.com/in/sarthakagrawal927","https://github.com/sarthakagrawal927","https://x.com/sarthakcodes","https://huggingface.co/sarthakagrawal927"],"knowsAbout":["AI infrastructure","Local-first software","Post-training language models","AI code review","Cloudflare Workers","TypeScript","Rust"],"affiliation":{"@type":"Organization","@id":"https://sassmaker.com/#app","name":"SaaS Maker","url":"https://sassmaker.com"}},{"@type":"SoftwareApplication","@id":"https://rolepatch.com/#app","name":"RolePatch","alternateName":["Role Patch","rolepatch.com"],"url":"https://rolepatch.com","description":"AI-powered resume tailoring. Score fit against a job description, rewrite bullets for the role, and prep interviews.","publisher":{"@id":"https://sarthakagrawal.dev/#person"},"sameAs":["https://github.com/Significant-Hobbies/rolepatch"]}]}`,
__html: `{"@context":"https://schema.org","@graph":[{"@type":"Person","@id":"https://sarthakagrawal.dev/#person","name":"Sarthak Agrawal","jobTitle":"AI Infrastructure & Product Engineer","url":"https://sarthakagrawal.dev","image":"https://avatars.githubusercontent.com/u/43884471?v=4","sameAs":["https://sarthakagrawal.dev","https://www.linkedin.com/in/sarthakagrawal927","https://github.com/sarthakagrawal927","https://x.com/sarthakcodes","https://huggingface.co/sarthakagrawal927"],"knowsAbout":["AI infrastructure","Local-first software","Post-training language models","AI code review","Cloudflare Workers","TypeScript","Rust"],"affiliation":{"@type":"Organization","@id":"https://sassmaker.com/#app","name":"SaaS Maker","url":"https://sassmaker.com"}},{"@type":"WebSite","@id":"https://rolepatch.com/#app","name":"RolePatch","alternateName":["Role Patch","rolepatch.com"],"url":"https://rolepatch.com","description":"AI-powered resume tailoring. Score fit against a job description, rewrite bullets for the role, and prep interviews.","publisher":{"@id":"https://sarthakagrawal.dev/#person"},"sameAs":["https://github.com/Significant-Hobbies/rolepatch"]}]}`,
}}
/>
{/* fleet-jsonld:end */}
Expand Down
Loading