Skip to content

Commit 5bfc475

Browse files
committed
fix(web): regenerate facts.generated.ts for the two v0.9.8 providers
53af08c registered Google Gemini and 531b64e registered Google Antigravity, but web/lib/facts.generated.ts was never regenerated, so check:facts has been failing on main since the release. That gate is part of Lint & Type Check, which makes it a required check every web pull request inherits regardless of what it changes. Output of `cd web && npm run prebuild`, which is what the checker itself suggests. derive-facts.mjs reads the Rust sources directly and needs no build. The diff is the two provider rows plus generatedAt; the script preserves that stamp unless a checked fact moves, so it moving here is the signal that one did. Same family as #5383 (assertion counts) and the docs/PROVIDERS.md row in #5394 -- this is the remaining artifact those two commits left stale. Verified by hand: check:facts, check:locales, check:docs and lint all exit 0, run twice. vitest is unchanged at 10 failed / 250 passed, byte-identical to the same suite on an unmodified ad102ec -- seven Cloudflare deploy-preflight tests that need credentials, and three changelog and release-facts parity tests that this regeneration does not address. Analysis drafted with local tooling; every change and test verified by hand. No-Issue: unbreaks the check:facts gate on main; the drift itself is already covered by the v0.9.8 follow-ups.
1 parent 5ac75ad commit 5bfc475

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

web/lib/facts.generated.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface RepoFacts {
2727
}
2828

2929
export const FACTS: RepoFacts = {
30-
"generatedAt": "2026-08-14T15:23:06.794Z",
30+
"generatedAt": "2026-08-15T05:57:01.838Z",
3131
"sourceRevision": null,
3232
"sourceCommittedAt": null,
3333
"version": "0.9.8",
@@ -244,6 +244,16 @@ export const FACTS: RepoFacts = {
244244
"label": "Mistral AI",
245245
"env": "MISTRAL_API_KEY"
246246
},
247+
{
248+
"id": "google",
249+
"label": "Google Gemini",
250+
"env": "GOOGLE_API_KEY / GEMINI_API_KEY"
251+
},
252+
{
253+
"id": "antigravity",
254+
"label": "Google Antigravity",
255+
"env": "ANTIGRAVITY_API_KEY / AGY_ADC_AUTH"
256+
},
247257
{
248258
"id": "telecomjs",
249259
"label": "TelecomJS TokenHub",

0 commit comments

Comments
 (0)