-
Notifications
You must be signed in to change notification settings - Fork 2
Added Release note for customer reference #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
WalkthroughA single topbar link entry is added to the mint.json configuration file, introducing a new "Releases" link pointing to the "release-notes" page in the navigation bar. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| }, | ||
| { | ||
| "name": "Releases", | ||
| "url": "release-notes" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check mint.json structure and search for release-notes files
# First, find and examine mint.json
echo "=== Checking for mint.json ==="
find . -name "mint.json" -type f | head -5
echo -e "\n=== Checking for release-notes files ==="
# Search for release-notes pages
find . -type f \( -name "*.mdx" -o -name "*.md" \) | grep -i release
echo -e "\n=== Checking navigation entries for release-notes ==="
# Check mint.json content around navigation
if [ -f "./mint.json" ]; then
grep -n "release-notes" ./mint.json
fiRepository: Multiwoven/docs
Length of output: 1174
Create a release-notes landing page or update the tab URL to point to an existing page.
The tab entry references a non-existent landing page. The tab URL is set to "release-notes", but the repository contains only nested pages (release-notes/2025, release-notes/2024, release-notes/January_2025, etc.) with no root landing page file. This will result in a broken link when users click the Releases tab.
Choose one solution:
- Create a
release-notes.mdxfile to serve as a landing page and index to the release notes - Update the tab URL to point directly to an existing page, such as
"url": "release-notes/2025"
🤖 Prompt for AI Agents
In mint.json around lines 64–68 the "Releases" tab URL points to "release-notes"
which doesn't exist (only nested pages like release-notes/2025 are present); fix
by either 1) adding a root landing page file at docs/release-notes.mdx (or
whatever content dir is used) that lists/links the nested release-note pages and
commit it, or 2) change the tab entry's "url" value to an existing page such as
"release-notes/2025" (ensure the path matches your routing and run a local build
to verify the link works).
Added Release Notes section
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.