1
0
mirror of synced 2025-12-19 18:06:02 -05:00

Add Flow 4 for specific patch queries

Addresses gap where "what changed in 9.0.10?" navigation wasn't
obvious. New flow shows:
  llms.json → release-major → version index → find patch → patch index

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Rich Lander
2025-12-18 17:50:31 -08:00
parent b42840481c
commit 134af63997

View File

@@ -58,6 +58,25 @@ llms.json
└─► _links.latest-security ─► last patch
```
## Flow 4: Specific Patch (2-3 fetches)
"What changed in 9.0.10?" or "What CVEs were fixed in 8.0.15?"
```
llms.json
└─► _embedded.latest_patches[] ─► _links.release-major
9.0/index.json
└─► _embedded.patches[] ─► find version "9.0.10"
└─► _links.self ─► 9.0/9.0.10/index.json ─► DONE
└─► _embedded.disclosures[] (CVEs fixed)
```
## Key Link Relations
```
@@ -96,5 +115,6 @@ From month index:
|------------|---------|
| Supported version data | 1 |
| Reference data (OS, breaking changes) | 2 |
| Specific patch details | 2-3 |
| EOL version info | 3-5 |
| CVE history | 1 + N months |