Resilient authors: never crash on a missing profile#28
Merged
Conversation
…Guest instead of failing the build
Deploying mlsystems with
|
| Latest commit: |
82e9f14
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://68b53df4.mlsystems.pages.dev |
| Branch Preview URL: | https://fix-resilient-authors.mlsystems.pages.dev |
|
Tip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Makes the site robust when an author profile is deleted or referenced without an existing file — it degrades to Guest instead of failing the build.
Before:
authors: z.array(reference('authors'))validated author existence at build time, so deleting an author while a post still referenced it broke the whole build.After:
z.string()); frontmatter format is unchanged (authors: [dinesh]).resolveAuthorsinsrc/lib/posts.ts): a missing profile logs a non-fatal build warning and falls back to the Guest Contributor profile (which has a real/authors/guestpage — no broken links). If evenguest.jsonis gone, it synthesizes a Guest so it still can't crash.Verified: temporarily deleted a referenced author (
ana.json) — build now warns and completes green, crediting affected posts to Guest. Previously this was a hard build failure.Note: this trades build-time reference validation for runtime resilience; broken handles are surfaced as build-log warnings rather than errors.