fix(ui): widen the ui-kit consumer range past its 1.0.0 pre-release cap - #5904
Merged
Conversation
apps/loopover-ui and apps/loopover-miner-ui both pinned "@loopover/ui-kit" to ">=0.1.0 <1.0.0", excluding the ui-kit-v1.0.0 release-please PR's target version and permanently blocking its npm ci (confirmed live on #5826). The 1.0.0 cut's only breaking-change entry is the gittensory->loopover rename, which both apps already completed, so there's no live incompatibility -- widen the ceiling to <2.0.0, preserving the existing below-next-major convention. Verified with npm run ui:typecheck and ui:lint (0 errors). Also reconciles package-lock.json's stale "@loopover/engine" requires entries for @loopover/mcp and @loopover/miner (still ^3.1.0 from an earlier release-please regeneration cycle) back to match their current package.json ranges (^1.0.0 / ^3.0.0) -- npm install surfaced this while regenerating the lockfile for the ui-kit range change above.
Contributor
|
Superagent didn't find any vulnerabilities or security issues in this PR. |
This was referenced Jul 15, 2026
Closed
Closed
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
apps/loopover-uiandapps/loopover-miner-uiboth pinned"@loopover/ui-kit"to">=0.1.0 <1.0.0", which excludes the ui-kit-v1.0.0 release-please PR's target version and permanently blocks itsnpm ciwithMissing: @loopover/ui-kit@0.2.0 from lock file(confirmed live on chore(release): cut ui-kit v1.0.0 #5826).BREAKING CHANGESentry for this 1.0.0 cut is thegittensory-*→loopover-*rename, which both consuming apps have already fully completed (they already import@loopover/ui-kitunder its new name). So there's no live incompatibility to guard against — the<1.0.0ceiling is just stale.<2.0.0, preserving the existing below-next-major convention rather than removing the cap outright.npm installsurfaced while regenerating the lockfile:package-lock.json's@loopover/mcpand@loopover/minerentries still required@loopover/engineat^3.1.0— a leftover from an earlier release-please regeneration cycle — while their actualpackage.jsonfiles (already merged tomainvia chore(release): cut mcp v2.0.0 #5735/in-flight chore(release): cut miner v3.0.0 #5736) declare^1.0.0/^3.0.0. Harmless today only by coincidence (local engine happens to satisfy both), but worth reconciling since the file was already being touched.Scope
type(scope): short summaryConventional Commit format.CONTRIBUTING.mdand does not reintroduce GitHub Pages, VitePress,site/, orCNAME.Validation
git diff --checknpm run ui:typecheck— clean, both apps.npm run ui:lint— 0 errors (145/7 pre-existing warnings in untouched route files, unrelated to this change).npm run ui:build— not run locally (full build is slow);ui:typecheck+ui:lintcover the actual surface touched (a dependency range + regenerated lockfile, no source changes). CI's ownui:buildstep will validate this.npm run test:coverage— skipped;src/**untouched.npm run test:workers/npm run build:mcp/npm run test:mcp-pack— skipped, unaffected by this change.npm audit --audit-level=moderate— no new dependencies added, only a range widened and a lockfile drift reconciled.If any required check was skipped, explain why:
src/or application code changed — only two dependency range strings and the lockfile regenerated to match.typecheckandlint(which both rebuild@loopover/ui-kitfirst) are the relevant checks and are clean; CI's ownui:buildwill provide the final confirmation.Safety
UI Evidencesection. — N/A, no visible UI change.CHANGELOG.md.Notes
ui-kitrelease-please PR (chore(release): cut ui-kit v1.0.0 #5826) failedBuild UI preview artifacteven though ui-kit itself has no@loopover/*dependencies of its own.