chore(journeys): re-release @modular-react/journeys@1.9.1 to drop the last exact @modular-frontend/core pin - #97
Conversation
…ntend/core pin @modular-react/journeys@1.9.0 was published between @modular-frontend/journeys-engine@1.8.0 and 1.8.1, so its tarball still depends on engine@1.8.0 — the version that carried @modular-frontend/core@0.3.0 as a hard, exact-pinned dependency (before 1.8.1 promoted it to a >=0.1.0 <2.0.0 peer). Installing journeys therefore still dragged in the old engine and its exact core pin, forcing a manual @modular-frontend/core override for consumers on core@0.4.0. Bump journeys 1.9.0 -> 1.9.1 (no source/API change). The workspace now resolves journeys-engine at 1.8.1, so the republished tarball pins the fixed engine and the whole journeys -> journeys-engine -> core chain admits the unified >=0.1.0 <2.0.0 range. nuxt (0.4.1), vue-journeys (1.3.1), and journeys-engine (1.8.1) were already re-released onto the permissive range; journeys was the last package still transitively carrying the old pin. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01L7SRbJ8ZLSejGRieH2DEJU
|
Warning Review limit reached
Next review available in: 19 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 (2)
✨ 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 |
What & why
Closes the residual from the
@modular-frontend/coreshared-peer-dependency work (#95): a consumer still needs a manual@modular-frontend/coreoverride, and the last remaining cause is@modular-react/journeys.@modular-react/journeys@1.9.0was published in the window between@modular-frontend/journeys-engine@1.8.0and1.8.1. Its published tarball therefore still depends on@modular-frontend/journeys-engine@1.8.0— the engine version that carried@modular-frontend/core@0.3.0as a hard, exact-pinneddependenciesentry. (1.8.1promoted that to a>=0.1.0 <2.0.0peer.) So installing@modular-react/journeysstill drags in the old engine and its exact0.3.0core pin, and any consumer pulling@modular-frontend/core@0.4.0(for panels/overlays) still hits the peer conflict the override was papering over.The sibling packages named in the original report are already clean on npm:
@modular-frontend/corereach@modular-vue/nuxt0.4.1>=0.1.0 <2.0.0@modular-frontend/journeys-engine1.8.1>=0.1.0 <2.0.0@modular-vue/journeys1.3.11.8.1@modular-react/journeys1.9.01.8.0→ depcore@0.3.0This PR bumps
@modular-react/journeys1.9.0→1.9.1with no source or API change. The dependency on the engine isworkspace:*, and the workspace now resolves@modular-frontend/journeys-engineat1.8.1, so the republished tarball pins the fixed engine. That makes the wholejourneys → journeys-engine → corechain express the unified>=0.1.0 <2.0.0range, and the@modular-frontend/coreoverride is no longer needed anywhere in the tree.Release path:
release-same-version(the version committed here,1.9.1, is the intended publish target — see.github/workflows/publish.yml).How it was verified
@modular-react/journeys@1.9.0still resolves@modular-frontend/journeys-engine@1.8.0, and that1.8.0declaresdependencies: { "@modular-frontend/core": "0.3.0" }while1.8.1declares it as a>=0.1.0 <2.0.0peer.nuxt@0.4.1,journeys-engine@1.8.1, andvue-journeys@1.3.1already ship the permissive range, so no republish is needed for them.packages/journeysdepends on@modular-frontend/journeys-engine: workspace:*and the workspace engine version is1.8.1, sopnpm publishrewrites the pin to1.8.1in the tarball.pnpm install --lockfile-onlyproduced no lockfile change (an importer's own version isn't tracked there);oxfmt --write .clean.Checklist
pnpm lint—oxfmt --write .run over the repo (version/CHANGELOG-only change; no code touched).CHANGELOG.md"Unreleased" gains a "Fixed" entry.@modular-vue/journeys@1.3.1already depends on the fixed@modular-frontend/journeys-engine@1.8.1. This PR only re-releases the React binding that lagged behind the engine fix.Generated by Claude Code