@planu/cli 4.11.8 → 4.11.9

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [4.11.9] - 2026-07-20
2
+
3
+ ### Bug Fixes
4
+ - fix: keep release session context current
5
+
6
+
1
7
  ## [4.11.8] - 2026-07-20
2
8
 
3
9
  ### Bug Fixes
@@ -1,6 +1,5 @@
1
1
  import { detectUnpushedCommits } from './unpushed-detector.js';
2
2
  import { flushBuffer } from './learnings-buffer.js';
3
- import { checkSessionContextFreshness } from './session-context-freshness.js';
4
3
  import { safeAutopush } from './autopush.js';
5
4
  const WARN_UNPUSHED_HOURS = 2;
6
5
  /** Regenerate session-context.md (fire-and-forget, best-effort). */
@@ -44,12 +43,9 @@ function buildHumanSummary(sessionContextRefreshed, learningsFlushed, unpushed,
44
43
  /** Run a full session checkpoint: regen context, flush buffer, detect/push unpushed. */
45
44
  export async function runCheckpoint(options) {
46
45
  const { projectPath, dryRun = false, autopush = false, autopushBranches } = options;
47
- // Check freshness and regenerate if stale (or always refresh on explicit call)
48
- const freshness = await checkSessionContextFreshness(projectPath);
49
- let sessionContextRefreshed = false;
50
- if (freshness.stale && !dryRun) {
51
- sessionContextRefreshed = await regenerateSessionContext(projectPath);
52
- }
46
+ // This runner backs the explicit checkpoint tool, so refresh even when the
47
+ // file mtime is recent: package releases can change semantic state instantly.
48
+ const sessionContextRefreshed = dryRun ? false : await regenerateSessionContext(projectPath);
53
49
  // Flush learnings buffer
54
50
  let learningsFlushed = 0;
55
51
  if (!dryRun) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planu/cli",
3
- "version": "4.11.8",
3
+ "version": "4.11.9",
4
4
  "description": "Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "packageName": "@planu/core"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@planu/core-darwin-arm64": "4.11.8",
38
- "@planu/core-darwin-x64": "4.11.8",
39
- "@planu/core-linux-arm64-gnu": "4.11.8",
40
- "@planu/core-linux-arm64-musl": "4.11.8",
41
- "@planu/core-linux-x64-gnu": "4.11.8",
42
- "@planu/core-linux-x64-musl": "4.11.8",
43
- "@planu/core-win32-arm64-msvc": "4.11.8",
44
- "@planu/core-win32-x64-msvc": "4.11.8"
37
+ "@planu/core-darwin-arm64": "4.11.9",
38
+ "@planu/core-darwin-x64": "4.11.9",
39
+ "@planu/core-linux-arm64-gnu": "4.11.9",
40
+ "@planu/core-linux-arm64-musl": "4.11.9",
41
+ "@planu/core-linux-x64-gnu": "4.11.9",
42
+ "@planu/core-linux-x64-musl": "4.11.9",
43
+ "@planu/core-win32-arm64-msvc": "4.11.9",
44
+ "@planu/core-win32-x64-msvc": "4.11.9"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=24.0.0"
package/planu-native.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dev.planu.native",
3
3
  "displayName": "Planu Native Lightweight Surface",
4
- "version": "4.11.8",
4
+ "version": "4.11.9",
5
5
  "packageName": "@planu/cli",
6
6
  "modes": {
7
7
  "lightweight": {
package/planu-plugin.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "dev.planu.cli",
3
3
  "displayName": "Planu — Spec Driven Development",
4
4
  "description": "Manage software specs, estimations, and autonomous SDD workflows. Language-agnostic MCP server for Claude Code.",
5
- "version": "4.11.8",
5
+ "version": "4.11.9",
6
6
  "icon": "assets/plugin/icon.svg",
7
7
  "command": [
8
8
  "npx",