Conversation
…oot, group Dependabot updates Points the embeddable widget at its deployed origin instead of localhost, sends the dashboard root straight to the conversations inbox, and fixes Dependabot's broken single-dependency PRs by grouping minor/patch updates for apps/web, apps/widget, and packages/ui (mirroring the root workspace entry, whose grouped PRs already update pnpm-lock.yaml correctly).
…ependabot-groups chore: wire production widget URL, redirect dashboard root, group Dependabot updates
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📝 WalkthroughWalkthroughWidget-related URLs are migrated from localhost to a deployed production endpoint across embed HTML, integration constants, and widget.js (including postMessage origin check and hide function rewiring). A Next.js redirect from "/" to "/conversations" is added. Dependabot config gains grouped update-type restrictions for three ecosystems. CHANGELOG.md is updated accordingly. ChangesProduction widget URL migration
Estimated code review effort: 2 (Simple) | ~10 minutes Dependabot grouping configuration
Estimated code review effort: 1 (Trivial) | ~5 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 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.
🧹 Nitpick comments (1)
.github/dependabot.yml (1)
43-47: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winSub-package production dependency grouping diverges from root workspace behavior.
The PR objective states this config "mirrors the root workspace behavior," but the root workspace (lines 13-22) splits groups into
dev-dependencies(minor+patch) andproduction-dependencies(patch-only). The new sub-package blocks use a singledependenciesgroup with minor+patch and nodependency-typefilter, meaning minor production dependency updates will be bundled into grouped PRs for sub-packages but would remain as individual PRs under the root config.If this is intentional (simpler config for sub-packages), consider documenting the rationale. If the intent is to truly mirror root, split the group:
♻️ Proposed refactor to mirror root workspace grouping
groups: - dependencies: + dev-dependencies: + dependency-type: "development" update-types: - "minor" - "patch" + production-dependencies: + dependency-type: "production" + update-types: + - "patch"This applies to all three blocks at lines 43-47, 68-72, and 93-97.
As per coding guidelines, the PR objective states the Dependabot fix mirrors the root workspace behavior so grouped PRs update
pnpm-lock.yamlcorrectly.Also applies to: 68-72, 93-97
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In @.github/dependabot.yml around lines 43 - 47, The new Dependabot grouping blocks do not actually mirror the root workspace behavior because they use a single `dependencies` group with `minor` and `patch` updates and no `dependency-type` split. Update the three sub-package configs to match the root pattern by separating `dev-dependencies` and `production-dependencies`, and apply the same update-type/dependency-type filters used in the root workspace so grouped PRs behave consistently across packages. Refer to the Dependabot `groups` entries in this YAML when making the change.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Nitpick comments:
In @.github/dependabot.yml:
- Around line 43-47: The new Dependabot grouping blocks do not actually mirror
the root workspace behavior because they use a single `dependencies` group with
`minor` and `patch` updates and no `dependency-type` split. Update the three
sub-package configs to match the root pattern by separating `dev-dependencies`
and `production-dependencies`, and apply the same update-type/dependency-type
filters used in the root workspace so grouped PRs behave consistently across
packages. Refer to the Dependabot `groups` entries in this YAML when making the
change.
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: ffdbce35-250c-4407-8c05-a59700af9d94
📒 Files selected for processing (6)
.github/dependabot.ymlCHANGELOG.mdapps/embed/landing.htmlapps/web/modules/integrations/constants/index.tsapps/web/next.config.tsapps/widget/public/widget.js
Summary
Promotes the production widget URL wiring and Dependabot grouping fix from
developtomain:localhost:3001to the deployedhttps://echo-widget-steel.vercel.appacross the embed demo page, the dashboard Integrations snippets, and the rebuiltwidget.jsbundle./) now redirects to/conversations.apps/web,apps/widget, andpackages/uiare now grouped, fixing theERR_PNPM_OUTDATED_LOCKFILEfailures on every single-dependency PR.See CHANGELOG.md for full details.
Summary by CodeRabbit
New Features
Bug Fixes
Chores