chore(compat): widen @deepseek-ai peer ranges for the 0.1.1 rc train - #41
Merged
Merged
Conversation
'^0.1.0-rc.8' does not strictly satisfy 0.1.1-rc.1 (prerelease tuple rule). New range '^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0' keeps the declared API floor while matching 0.1.1-rc.x and every 0.1.x stable.
Collaborator
|
@nanami-0713 感谢这份 PR 🙏 分析完全正确:strict semver 下 prerelease 只在范围存在相同 我代跑了两个小操作:① 你的首次 PR 触发的 CI 需要维护者批准,我已批准并跑完——双矩阵(Node 22/24)全绿,包括 lib 一致性硬门与 smoke e2e;② 按仓库惯例在 [Unreleased] 兼容性 段补了一条 CHANGELOG 说明(已推到你的分支,commit 881fcda)。 CI 重跑转绿后我就合并,感谢贡献 ✨ |
taekchef
added a commit
to jordanking211/dsh-awesome-genui
that referenced
this pull request
Aug 22, 2026
…o feat/echarts-support; lib to be rebuilt
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.
Problem
Under strict semver, a prerelease version only satisfies a range when some comparator shares its exact
major.minor.patchtuple. The current peer ranges (^0.1.0-rc.8) therefore do not match core0.1.1-rc.1, which surfaces as unmet-peer diagnostics in marketplace/health checks even though the plugin runs fine.Change
@deepseek-ai/dsh-*peer/dev range to^0.1.0-rc.8 || >=0.1.1-rc.0 <0.2.0:pnpm-lock.yamlregenerated (specifierlines only; resolved versions unchanged).Verification
semver.satisfies('0.1.1-rc.1', range)→ true (strict)