webdevtodayjason Release Notes
57 release notes curated from 4 sources by the Releasebot Team. Last updated: May 29, 2026
webdevtodayjason Products
- May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.12 — claude-use/claude-whoami survive v4 PATH collision
subctl fixes shell helper commands for Claude use and whoami by resolving v3 explicitly, avoiding PATH conflicts with the v4 entry point. The update restores profile listing and account detection, and existing shells can pick it up by reloading .zshrc or opening a new terminal.
fix(shell): claude-use / claude-whoami resolve v3 subctl explicitly
The shell helpers called bare subctl config show/accounts. Once the v4 subctl-chat-tui entry point at ~/.local/bin/subctl sorted ahead of ~/bin on the interactive PATH, bare subctl resolved to v4, which doesn't dispatch v3 verbs — so config show printed v4 help and the account parser found nothing. Result: claude-use listed no profiles, couldn't switch/select; claude-whoami always said "custom".
Fix: bake a _subctl_v3 resolver into the generated shell-aliases.sh and route all four bare-subctl call sites through it, bypassing PATH. Mirrors the existing claude-teams shim. The intentional bare-claude account guard is unchanged.
To pick up the fix in an existing shell: source ~/.zshrc or open a new terminal.
PR #48.
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.11
subctl adds forced SSE for Codex and closes v3.3.7 criterion #8.
v3.3.11 — force SSE for Codex; closes v3.3.7 criterion #8
Original source All of your release notes in one feed
Join Releasebot and get updates from webdevtodayjason and hundreds of other software products.
- May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.10
subctl ships capture diagnostics and documents the Codex/WS gap.
v3.3.10 — capture diagnostics + documented Codex/WS gap
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.9
subctl ships v3.3.9 with Codex and Azure Responses URL coverage
v3.3.9 — Codex + Azure Responses URL coverage
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.8
subctl ships v3.3.8 with Hermes cloud-supervisor ctx fallback and /api/debug/usage.
v3.3.8 — Hermes cloud-supervisor ctx fallback + /api/debug/usage
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.7
subctl adds real usage.prompt_tokens capture for Hermes compression.
v3.3.7 — real usage.prompt_tokens capture for Hermes compression
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.6
subctl ships v3.3.6 with literal Hermes compression policy.
v3.3.6 — literal Hermes compression policy
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.5
subctl ships a Hermes-aligned compact policy bump.
v3.3.5 — Hermes-aligned compact policy bump
Original source - May 28, 2026
- Date parsed from source:May 28, 2026
- First seen by Releasebot:May 29, 2026
v3.3.4
subctl ships v3.3.4 with claude-teams unblock, a voice toggle, and Hermes docs.
v3.3.4 — claude-teams unblock + voice toggle + Hermes docs
Original source - May 25, 2026
- Date parsed from source:May 25, 2026
- First seen by Releasebot:May 25, 2026
v3.3.3
subctl fixes false positives in the no-secrets gate for pre-existing issues.
chore(v3.3.3): drain no-secrets gate of pre-existing false positives
Original source - May 25, 2026
- Date parsed from source:May 25, 2026
- First seen by Releasebot:May 25, 2026
v3.3.2
subctl fixes final v3 rename leftovers for log prefixes and route aliasing.
chore(v3.3.2): final v3 rename leftovers — log prefixes + route alias…
Original source - May 25, 2026
- Date parsed from source:May 25, 2026
- First seen by Releasebot:May 25, 2026
feat(v3.3.1): dashboard fitness panel — Kernel Fitness Phase 3 (#33)
subctl adds a new read-only Fitness dashboard tab with health, trend, and recent surface metrics, plus API endpoints for fitness and engagement ledgers. It also hardens observability with safer rendering, timestamp filtering, and no-store caching.
feat(fitness): dashboard fitness panel (Kernel Fitness Phase 3) (v3.3.1)
New Fitness tab in the dashboard sidebar (between Memory and Vault) exposing the metrics from Phase 1 (engagement ledger, v3.1.0) and Phase 2 (fitness writer, v3.3.0). Pure read-only observability — no daemon changes, no writes to either ledger.
Panels:
- Now: current stall composite + engagement rate with sparklines
- 7-day trend: inline SVG line chart (no Chart.js dep)
- Recent surfaces (24h): last 30 events with outcomes
- Health pill: red/yellow/green answer to "is Evy learning?"
New endpoints:
GET /api/evy/fitness/ledger[?window=24h|7d|30d|Nh|Nd]GET /api/evy/engagement/ledger[?window=...][?type=...]GET /api/evy/fitness/health
All endpoints handle file-missing gracefully (empty array or red verdict, never 500).
Negative criterion preserved: dashboard reads ledgers via node:fs through dashboard/lib/fitness-api.ts; never imports from components/evy/fitness-writer.ts or components/evy/engagement-tracker.ts. Supervisor-prompt assembly path still has zero ledger visibility. fitness-ledger-isolation.test.ts + engagement-ledger-isolation.test.ts still pass (5/5).
Polling: 60s (writer emits hourly, faster is wasted).
After this ships: 30-day soak before Phase 4 (scaffold extraction = v3.3.2). Soak lets baseline fitness data accumulate before any optimization pressure is applied.
Tests: 196/196 dashboard tests pass (was 168 — added 28 fitness-api tests covering path resolution, window parsing, jsonl reading, both filtered readers, and computeHealth's 8 verdict scenarios).
Closes Phase 3 of Initiatives/Kernel Fitness — engagement + refiner + judge.md.
Co-Authored-By: Claude Opus 4.7 [email protected]
fix(fitness): CodeRabbit review feedback on v3.3.1
Three defensive fixes from CodeRabbit review of PR #33:
- Escape missing_data_reason in fitness.js — aligns with the escapeHtml pattern already used for surface_type elsewhere in the file. Defense in depth even though the source is our own writer.
- Filter unparseable timestamps before slope computation in computeHealth — Date.parse on a malformed window_start returns NaN, which silently poisons the linear-regression sums and gives a bogus verdict. Now we Number.isFinite-gate before mapping to slope points.
- Add Cache-Control: no-store to all three new observability endpoints — fitness data is per-window snapshots, must never be browser-cached or proxy-cached.
Skipped: CodeRabbit's "outside diff range" CHANGELOG dup at line 3138 — that block is pre-existing in main (origin/main also has the dup starting at line 3099). Cleanup belongs to a separate PR, not this feature.
Tests: 196/196 dashboard suite still passes.
Co-Authored-By: Claude Opus 4.7 [email protected]
Co-authored-by: Claude Opus 4.7 [email protected]
Original source - May 25, 2026
- Date parsed from source:May 25, 2026
- First seen by Releasebot:May 25, 2026
v3.3.0
subctl releases v3.3.0 with a fitness writer and stall composite updates.
v3.3.0 — feat(fitness): fitness writer + stall composite (Kernel Fitn…
Original source - May 24, 2026
- Date parsed from source:May 24, 2026
- First seen by Releasebot:May 25, 2026
v3.2.0
subctl adds pending-asks surface and reply injection.
v3.2.0 — feat(notify): pending-asks surface + reply injection + chann…
Original source - May 24, 2026
- Date parsed from source:May 24, 2026
- First seen by Releasebot:May 25, 2026
v3.1.0
subctl adds fitness engagement instrumentation in v3.1.0.
v3.1.0 — feat(fitness): engagement instrumentation (Kernel Fitness Ph…
Original source
Curated by the Releasebot team
Releasebot is an aggregator of official release notes from hundreds of software vendors and thousands of sources.
Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.
Similar to webdevtodayjason with recent updates:
- Smokeball release notes128 release notes · Latest Jun 4, 2026
- Cosmolex release notes20 release notes · Latest Jul 30, 2025
- PracticePanther release notes34 release notes · Latest Apr 8, 2026
- Salesforce release notes14 release notes · Latest May 1, 2026
- Microsoft release notes589 release notes · Latest Jun 4, 2026
- Zoom release notes164 release notes · Latest Jun 1, 2026