@k-msg/cli 0.5.5 → 0.5.7
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 +22 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @k-msg/cli
|
|
2
2
|
|
|
3
|
+
## 0.5.7 — 2026-02-17
|
|
4
|
+
|
|
5
|
+
### Patch changes
|
|
6
|
+
|
|
7
|
+
- [7c44cca](https://github.com/k-otp/k-msg/commit/7c44ccaa7eee30d2ecf494c30a388b4a9371fbeb) Avoid double-wrapping SOLAPI dependency load errors in the CLI provider registry.
|
|
8
|
+
The CLI now preserves already-guided dependency errors and keeps the install guidance message single and clear. — Thanks @imjlk!
|
|
9
|
+
- Updated dependencies: core@0.17.0, provider@0.17.0, k-msg@0.17.0
|
|
10
|
+
|
|
11
|
+
## 0.5.6 — 2026-02-17
|
|
12
|
+
|
|
13
|
+
### Patch changes
|
|
14
|
+
|
|
15
|
+
- [d0b4040](https://github.com/k-otp/k-msg/commit/d0b404088e5aed87c7b7211a0dab6f36bee2de13) Improve package boundaries and runtime safety across provider/messaging/cli:
|
|
16
|
+
|
|
17
|
+
- Make package builds deterministic by running `clean` before each build pipeline.
|
|
18
|
+
- Remove stale/unused dependencies and TS references in messaging/webhook/provider.
|
|
19
|
+
- Add `@k-msg/provider/aligo` subpath export and keep `@k-msg/provider/solapi` as a dedicated subpath.
|
|
20
|
+
- Externalize `solapi` from provider dist output while keeping it as optional peer dependency.
|
|
21
|
+
- Update CLI provider registry to lazy-load SOLAPI only when configured, with clear install guidance when missing.
|
|
22
|
+
- Remove unsafe `any` casting from CLI provider capability wiring and add registry boundary tests. — Thanks @imjlk!
|
|
23
|
+
- Updated dependencies: core@0.16.0, provider@0.16.0, k-msg@0.16.0
|
|
24
|
+
|
|
3
25
|
## 0.5.5 — 2026-02-17
|
|
4
26
|
|
|
5
27
|
### Patch changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k-msg/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
|
|
6
6
|
"type": "module",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"clean": "rm -rf dist"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@k-msg/core": "0.
|
|
36
|
-
"@k-msg/provider": "0.
|
|
35
|
+
"@k-msg/core": "0.16.0",
|
|
36
|
+
"@k-msg/provider": "0.16.0",
|
|
37
37
|
"@bunli/core": "^0.5.4",
|
|
38
38
|
"@bunli/plugin-ai-detect": "^0.5.2",
|
|
39
39
|
"@bunli/test": "^0.3.2",
|
|
40
|
-
"@types/bun": "
|
|
40
|
+
"@types/bun": "^1.3.9",
|
|
41
41
|
"@types/node": "^22.0.0",
|
|
42
42
|
"bunli": "^0.5.3",
|
|
43
|
-
"k-msg": "0.
|
|
43
|
+
"k-msg": "0.16.0",
|
|
44
44
|
"solapi": "^5.5.4",
|
|
45
45
|
"typescript": "^5.7.2",
|
|
46
46
|
"zod": "^4.0.14"
|