fix(changeset): unblock release by dropping private kimi-code-docs from web-search changeset - #1270
Merged
Merged
Conversation
… to unblock release The web-search-query-only changeset mixed @moonshot-ai/agent-core (published) with kimi-code-docs, a private package without a version field that changesets treats as ignored. Changesets rejects any changeset containing both ignored and non-ignored packages, which broke the Release workflow's version step. Drop the private docs entry; it never publishes and needs no changelog.
|
| Name | Type |
|---|---|
| @moonshot-ai/agent-core | Minor |
| @moonshot-ai/acp-adapter | Patch |
| @moonshot-ai/migration-legacy | Patch |
| @moonshot-ai/server | Patch |
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
commit: |
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.
背景
main 分支的 Release workflow 在
changeset version步骤失败(run):根因
随 #1260 合入的
.changeset/web-search-query-only.md同时声明了:@moonshot-ai/agent-core(公开包,参与发布)kimi-code-docs(private: true且无version字段 → changesets 隐式视为 ignored)changesets 不允许同一个 changeset 混合 ignored 与非 ignored 包,导致整个 release 卡住,连带其它待发布的 changeset 一起被阻塞。
修复
从该 changeset 中移除
kimi-code-docs一行,仅保留@moonshot-ai/agent-core。私有文档站从不发布、无需 changelog,本就不应出现在 changeset 中。验证
changeset status已能干净解析,不再报 mixed changeset 错误: