@mars-sea/dsh-commandcode-provider 0.1.5 → 0.1.6
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.6] - 2026-08-15
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **Security Scans workflow** (`.github/workflows/security.yml`): `npm audit` (fails on ≥ high severity), CodeQL analysis (`javascript-typescript`, action v4), and a gitleaks secrets scan (official `gitleaks/gitleaks-action@v3`, full history via `fetch-depth: 0`).
|
|
12
|
+
- **Chinese README** (`README.zh-CN.md`): full translation of the English README with a language switcher in both directions; shipped in the npm package (`files` list).
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- CI actions upgraded ahead of the Node 20 runner deprecation: `actions/checkout` → v6 (Node 24 runtime); `github/codeql-action` → v4 (v3 deprecated Dec 2026).
|
|
17
|
+
- Install examples in both READMEs now pin the `v0.1.6` release tag.
|
|
18
|
+
|
|
7
19
|
## [0.1.5] - 2026-08-15
|
|
8
20
|
|
|
9
21
|
### Added
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ cmd login # macOS/Linux; native Windows: cmdc login
|
|
|
35
35
|
|
|
36
36
|
```sh
|
|
37
37
|
# Pin a release tag (recommended — readable and immutable)
|
|
38
|
-
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#v0.1.
|
|
38
|
+
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#v0.1.6
|
|
39
39
|
# Or pin any exact commit by its SHA
|
|
40
40
|
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#<full-commit-sha>
|
|
41
41
|
```
|
package/README.zh-CN.md
CHANGED
|
@@ -35,7 +35,7 @@ cmd login # macOS/Linux;Windows 原生版:cmdc login
|
|
|
35
35
|
|
|
36
36
|
```sh
|
|
37
37
|
# 推荐:锁定发布 tag(可读、不可变)
|
|
38
|
-
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#v0.1.
|
|
38
|
+
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#v0.1.6
|
|
39
39
|
# 或按完整 commit SHA 锁定任意提交
|
|
40
40
|
dsh plugin --profile web add github:Mars-Sea/dsh-commandcode-provider#<完整-commit-sha>
|
|
41
41
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mars-sea/dsh-commandcode-provider",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Unofficial DeepSeek Harness LLM provider plugin for Command Code, ported from pi-commandcode-provider (MIT). Registers the 'commandcode' provider route with a Models-page card and live model catalog.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|