dsh-plugin-upgrade 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AGENTS.md
CHANGED
|
@@ -28,7 +28,8 @@ fixtures/ scanner fixtures (bad-repo, good-repo)
|
|
|
28
28
|
cordis.patch.yml bundle declaration (insert dsh-plugin-upgrade); every Config key inline
|
|
29
29
|
pnpm-workspace.yaml nearest-workspace root (isolates this repo from a surrounding harness checkout)
|
|
30
30
|
package.json npm metadata; files whitelist = published content
|
|
31
|
-
.github/workflows/ CI (3 OS × 2 Node), monthly compat probe, v* npm release
|
|
31
|
+
.github/workflows/ CI (3 OS × 2 Node), monthly compat probe, v* npm release,
|
|
32
|
+
plugin-doctor static R/K gate, OpenSSF Scorecard
|
|
32
33
|
README.md English primary (GitHub default page; source of truth)
|
|
33
34
|
README.{zh,es,pt,hi}.md translations, top switcher, updated in the same commit
|
|
34
35
|
CHANGELOG.md Keep a Changelog, [Unreleased] at the top
|
|
@@ -80,7 +81,7 @@ after every harness release.
|
|
|
80
81
|
|
|
81
82
|
## Release
|
|
82
83
|
|
|
83
|
-
Version is currently `0.1.
|
|
84
|
+
Version is currently `0.1.2`. For a new version: bump `package.json#version`, stamp the
|
|
84
85
|
CHANGELOG `[Unreleased]` section into `## [<x.y.z>] - <UTC date>`, re-run the full gate,
|
|
85
86
|
commit `chore(release): <x.y.z>`, and `git tag -a v<x.y.z>`. `git push origin main
|
|
86
87
|
--follow-tags` triggers `.github/workflows/release.yml`, which re-runs the gate, publishes to
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.2] - 2026-09-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **The shipped version card no longer describes itself as unpublished.** Its status line
|
|
15
|
+
now names the three published channels and points at the packaged CLI
|
|
16
|
+
(`dsh-plugin-upgrade-scan`) for reproduction instead of a workspace-private evidence
|
|
17
|
+
path that no reader of the tarball can follow.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Family-standard CI: the `plugin-doctor` static R/K gate and OpenSSF Scorecard now run in
|
|
22
|
+
this repository, and `dsh-plugin-upgrade` is enrolled in the
|
|
23
|
+
`dsh-plugin-doctor` verified registry (badge: passing).
|
|
24
|
+
|
|
10
25
|
## [0.1.1] - 2026-09-09
|
|
11
26
|
|
|
12
27
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-plugin-upgrade",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Plugin-author upgrade skill for DeepSeek Harness: a version-locked 0.1.3-alpha.1 -> 0.1.5-alpha.1 version card plus a zero-dependency seam scanner (V3 session format, assistant/message.stream, SessionHandleReadResult, ctx.agent, Inbox, SubprocessHandle.pid, SystemPrompt persona, PTC rename, EpochHeader.system, and the tsconfig stale-path false green), packaged as a bundle skill and an npx CLI.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Version card · `0.1.3-alpha.1` → `0.1.5-alpha.1`
|
|
2
2
|
|
|
3
3
|
> 适用:任何 `@deepseek-ai/dsh-*` peer 落在 `>=0.1.2-rc.1 <0.2.0`、且需要同时支持 `0.1.5-alpha.1` 的插件仓。
|
|
4
|
-
>
|
|
5
|
-
>
|
|
4
|
+
> 状态:**已发布**(当前发布版本见本包 `package.json`;npm `dsh-plugin-upgrade` · GitHub `PerryLink/dsh-plugin-upgrade` · Gitee 镜像)。
|
|
5
|
+
> 证据:2026-09-09 批次 **40 个真实插件仓**的实测升级波(宿主 checkout `0.1.5-alpha.1`,HEAD `19d2e38480`;官方 tag `dsh-v0.1.5-alpha.1` = `5dda764ed3`)。复现方式:本包 CLI `dsh-plugin-upgrade-scan --repo <仓库>` 输出 `file:line`,再按本卡逐缝处理。
|
|
6
6
|
|
|
7
7
|
## 0. 这一跳与其它跳的关系
|
|
8
8
|
|