feat: consolidate timeline and dependency updates - #22
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 85a292e5c1
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| command -v osv-scanner >/dev/null 2>&1 || { | ||
| echo " osv-scanner is required for offline dependency scanning." >&2 | ||
| return 1 | ||
| } |
There was a problem hiding this comment.
Provision the offline OSV scanner before CI review
The Node workflow installs only Gitleaks before invoking npm run security:review; npm ci does not provide this globally invoked executable, and the workflow neither installs osv-scanner nor restores/populates its required offline vulnerability database. Consequently, on a clean runner this new gate returns 1 before lint or build, blocking every PR and main push. Provision and cache both the scanner and its database (or retain a scanner that the workflow provisions).
AGENTS.md reference: AGENTS.md:L5-L6
Useful? React with 👍 / 👎.
| setActiveCategories((current) => current.includes(category) | ||
| ? current.filter((item) => item !== category) | ||
| : [...current, category]); | ||
| setSelectedGroup(null); | ||
| }; |
There was a problem hiding this comment.
Clear the selected detail when filters change
Changing a category, date range, or organization clears only the expanded cluster, not selectedEvent. For example, after selecting a 2026 model and switching to the Foundations range, the page reports the filtered historical events while the persistent detail panel still displays the excluded 2026 model and its source. Reset the selected event or select an event from the new filtered set whenever these filters change.
Useful? React with 👍 / 👎.
Consolidates the timeline/discovery work and all outstanding Dependabot updates into a single linear commit for protected main.
Validation:
Includes the Lucide 1.x GitHub icon compatibility fix required by the merged dependency update.