cc-cream 0.1.10 → 0.1.11
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 +5 -0
- package/package.json +1 -1
- package/src/install.js +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to cc-cream are documented here. Format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.11] — 2026-05-29
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- **Status bar could pin to an old version when a non-semver cache dir exists** (CREAM-kxwhbwzq). The plugin-mode statusLine self-resolves the highest installed version with `ls -1d …/cc-cream/*/ | sort -V | tail -1`. `sort -V` sorts directory *names*, so a git-sha install dir (e.g. `c83650b6360f/`) sorts after every `0.1.x` and got picked — pinning the bar to whatever version that dir held (observed: 0.1.3), with `/plugin update` unable to move off it. The command now filters to semver-named dirs (`grep -E '/[0-9]+(\.[0-9]+)+/$'`) before `sort -V`, so a stray non-numeric dir can't hijack version selection. Re-run `/cc-cream:setup` once (or reinstall) to rewrite the statusLine with the hardened command.
|
|
11
|
+
|
|
7
12
|
## [0.1.10] — 2026-05-29
|
|
8
13
|
|
|
9
14
|
### Added
|
package/package.json
CHANGED
package/src/install.js
CHANGED
|
@@ -23,10 +23,13 @@ const TRUST_NOTE =
|
|
|
23
23
|
// `nodePath` is the ABSOLUTE node binary, resolved once at setup time — the
|
|
24
24
|
// statusLine subprocess may not inherit the user's PATH, so a bare `node` is
|
|
25
25
|
// unsafe. The `-d .../*/` glob yields directory paths with a trailing slash, so
|
|
26
|
-
// `src/cc-cream.js` concatenates directly. `
|
|
27
|
-
//
|
|
26
|
+
// `src/cc-cream.js` concatenates directly. The `grep` keeps ONLY semver-named
|
|
27
|
+
// dirs (e.g. `0.1.10/`) before `sort -V | tail -1` picks the highest — without
|
|
28
|
+
// it, a non-numeric cache dir (a git-sha install like `c83650b6360f/`) sorts
|
|
29
|
+
// last and pins the bar to whatever version that happens to be, defeating
|
|
30
|
+
// auto-update. With it, `/plugin update` is applied live with no re-run of setup.
|
|
28
31
|
export function autoUpdateCommand(nodePath) {
|
|
29
|
-
return `${nodePath} "$(ls -1d "\${CLAUDE_CONFIG_DIR:-$HOME/.claude}"/plugins/cache/*/cc-cream/*/ 2>/dev/null | sort -V | tail -1)src/cc-cream.js"`;
|
|
32
|
+
return `${nodePath} "$(ls -1d "\${CLAUDE_CONFIG_DIR:-$HOME/.claude}"/plugins/cache/*/cc-cream/*/ 2>/dev/null | grep -E '/[0-9]+(\\.[0-9]+)+/$' | sort -V | tail -1)src/cc-cream.js"`;
|
|
30
33
|
}
|
|
31
34
|
|
|
32
35
|
// `desired` is considered already installed if it matches the planned command
|