opencode-acp 1.14.17-pr.304.13 → 1.14.17-pr.305.15
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/README.md +4 -4
- package/README.zh-CN.md +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -492,13 +492,13 @@ For the complete list with root cause analysis, see the [bug tracker](https://gi
|
|
|
492
492
|
|
|
493
493
|
## Changelog
|
|
494
494
|
|
|
495
|
-
### v1.14.17 —
|
|
495
|
+
### v1.14.17 — Per-PR npm preview builds + release publishing feedback (#298)
|
|
496
496
|
|
|
497
|
-
**Problem**:
|
|
497
|
+
**Problem**: There was no way to install and test a PR's build before merging, and after a release merge nothing on the PR confirmed which version was published to npm.
|
|
498
498
|
|
|
499
|
-
**Fix
|
|
499
|
+
**Fix** (#298): New `.github/workflows/pr-artifact.yml` — on every PR to master: build the plugin, publish it to npm under a `pr-<N>` tag (version `<base>-pr.<N>.<run>`), upload the tarball + `dist/` as a workflow artifact (30-day retention), and comment install instructions on the PR. `release.yml` additionally comments the published version on the associated PR after a release merge. No plugin runtime changes in this release.
|
|
500
500
|
|
|
501
|
-
Files:
|
|
501
|
+
Files: `.github/workflows/pr-artifact.yml`, `.github/workflows/release.yml`. Tests: 976 pass.
|
|
502
502
|
|
|
503
503
|
**Install**: `opencode plugin opencode-acp@latest --global`
|
|
504
504
|
|
package/README.zh-CN.md
CHANGED
|
@@ -446,13 +446,13 @@ ACP 是 DCP 的直接替代品。迁移步骤:
|
|
|
446
446
|
|
|
447
447
|
## 更新日志
|
|
448
448
|
|
|
449
|
-
### v1.14.17 —
|
|
449
|
+
### v1.14.17 — PR 预览构建发布 npm + 发版发布反馈(#298)
|
|
450
450
|
|
|
451
|
-
|
|
451
|
+
**问题**:合并前无法安装测试 PR 的构建产物;发版合并后 PR 上也没有确认发布到了 npm 的哪个版本。
|
|
452
452
|
|
|
453
|
-
|
|
453
|
+
**修复**(#298):新增 \`.github/workflows/pr-artifact.yml\` —— 每个指向 master 的 PR:构建插件、以 \`pr-<N>\` tag 发布到 npm(版本 \`<base>-pr.<N>.<run>\`)、上传 tarball + \`dist/\` 作为 workflow artifact(保留 30 天)、在 PR 上评论安装指引。\`release.yml\` 另在发版合并后于关联 PR 评论已发布版本。本版本不含插件运行时行为变更。
|
|
454
454
|
|
|
455
|
-
|
|
455
|
+
文件:\`.github/workflows/pr-artifact.yml\`、\`.github/workflows/release.yml\`。测试:976 通过。
|
|
456
456
|
|
|
457
457
|
**安装**:`opencode plugin opencode-acp@latest --global`
|
|
458
458
|
|
package/dist/index.js
CHANGED
|
@@ -8949,7 +8949,7 @@ import { writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
|
|
|
8949
8949
|
import { join as join3 } from "path";
|
|
8950
8950
|
import { existsSync as existsSync3 } from "fs";
|
|
8951
8951
|
import { homedir as homedir3 } from "os";
|
|
8952
|
-
var LOG_VERSION = true ? "1.14.17-pr.
|
|
8952
|
+
var LOG_VERSION = true ? "1.14.17-pr.305.15" : "dev";
|
|
8953
8953
|
var Logger = class {
|
|
8954
8954
|
logDir;
|
|
8955
8955
|
enabled;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "opencode-acp",
|
|
4
|
-
"version": "1.14.17-pr.
|
|
4
|
+
"version": "1.14.17-pr.305.15",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Active Context Pruning — model-driven context management for OpenCode (hardened fork of DCP with 35 bug fixes)",
|
|
7
7
|
"main": "./dist/index.js",
|