chore: bump up to v0.2.0#18
Conversation
- Improve migration error handling when adding clear_cache column - Pass projectId to Grafana dashboard creation and load project domains - Overhaul Grafana dashboards to system overview with metrics - Highlight CRITICAL and ERROR logs in deployment logs
- Add orderedSlugs and sort doc groups to enforce docs order - Polish hero UI: tweak line breaks and button markup - Polish HowItWorks UI: replace arrow with pulse indicator - Remove Next CTA blocks from docs to streamline navigation - Minor whitespace fixes in auth.md and installation.md
|
Warning Review limit reached
Next review available in: 58 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (23)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Updates Dequel’s observability and docs UX by overhauling Grafana dashboards/queries, adding ordered docs navigation (prev/next), and applying a few small API/UI robustness fixes.
Changes:
- Expand/retitle the Grafana “System & Apps” dashboard and refresh cadence, and enhance per-project Grafana dashboards with domain-aware Loki HTTP metrics.
- Add ordered docs sidebar behavior and automatic prev/next navigation; remove per-page “Next/Back” blocks from Markdown docs.
- Fix/adjust a few platform behaviors: project deletion now uses cascade cleanup info, migration duplicate-column detection is more robust, and CRITICAL log styling is aligned with ERROR.
Reviewed changes
Copilot reviewed 23 out of 23 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| infra/monitoring/grafana/dashboards/deployed-apps.json | Revamps system/apps Grafana dashboard panels and refresh cadence. |
| apps/web/src/components/project/deployments/deployment-logs.tsx | Styles CRITICAL logs as errors in the deployment log viewer. |
| apps/docs/src/layouts/Layout.astro | Adds ordered doc grouping + prev/next navigation in the docs layout. |
| apps/docs/src/content/docs/volumes.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/system-config.md | Trailing newline normalization. |
| apps/docs/src/content/docs/ssl.md | Removes inline “Back to Intro” navigation block (now handled by layout). |
| apps/docs/src/content/docs/scaling.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/quickstart.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/installation.md | Trailing newline normalization. |
| apps/docs/src/content/docs/index.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/env-vars.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/domains.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/deployments.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/databases.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/configuration.md | Removes inline “Next” navigation block (now handled by layout). |
| apps/docs/src/content/docs/changelog.md | Trailing newline normalization. |
| apps/docs/src/content/docs/auth.md | Trailing newline normalization. |
| apps/docs/src/components/HowItWorks.astro | Updates docs diagram visuals/indicators. |
| apps/docs/src/components/Hero.astro | Formatting/markup adjustments to the docs landing hero component. |
| apps/api/src/utils/grafana.ts | Enhances project dashboard generation (domain-aware Loki queries, new panels, refresh change). |
| apps/api/src/orchestrator/pipeline.ts | Passes projectId into Grafana dashboard ensure call. |
| apps/api/src/db/migrate.ts | Improves duplicate-column detection by checking wrapped error causes. |
| apps/api/src/api/projects/index.ts | Switches project deletion to cascade cleanup API + small formatting tweaks. |
| .tegami/2026-07-13-changes-since-v0.1.1.md | Adds release notes/changelog entry for the changes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| const orderedSlugs = [ | ||
| "docs", // Introduction | ||
| "installation", // Installation | ||
| "quickstart", // Quickstart Guide | ||
| "configuration", // Configuration | ||
| "deployments", // Deployments | ||
| "env-vars", // Environment Variables | ||
| "scaling", // Scaling Policies | ||
| "system-config", // System Configuration | ||
| "databases", // Managed Databases | ||
| "volumes", // Persistent Volumes | ||
| "auth", // Authentication & Access Control | ||
| "domains", // Custom Domains | ||
| "ssl", // SSL Certificates | ||
| "changelog", // Changelog | ||
| ]; |
| grouped[cat].sort((a, b) => { | ||
| const indexA = orderedSlugs.indexOf(a.slug); | ||
| const indexB = orderedSlugs.indexOf(b.slug); | ||
| return indexA - indexB; | ||
| }); |
Description
Please provide a summary of the changes and the motivation behind them. What problem does this PR solve?
Fixes #(issue)
Type of Change
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.
bun testinapps/api/)Checklist
bun testinapps/api/and all tests passbun run sync-versions)Screenshots (if applicable)
Additional Context
Add any other context about the PR here (e.g., migration notes, deployment considerations, rollback strategy).