Skip to content

Commit 2fca67c

Browse files
marcusgollclaude
andcommitted
chore: release v11.2.0
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c7f391f commit 2fca67c

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
---
44

5+
## [11.2.0] - 2025-12-12
6+
7+
### ✨ Added
8+
9+
**Automatic Regression Test Generation**
10+
11+
When bugs are discovered during debugging or implementation, regression tests are now automatically generated to capture the bug and prevent recurrence.
12+
13+
- **regression-test-generator skill**: New skill for creating framework-specific regression tests
14+
- Framework auto-detection (Jest, Vitest, pytest, Playwright)
15+
- Arrange-Act-Assert test structure
16+
- Bug reproduction from error details
17+
- Links tests back to error-log.md entries
18+
19+
- **Auto-invoke /debug on test failures**: When tests fail during `/implement`, the `/debug` command is automatically invoked
20+
- Generates regression test for the failure (Step 3.5)
21+
- Updates error-log.md with test reference
22+
- Returns actionable fix recommendations
23+
24+
- **Continuous checks integration**: Check 7/7 triggers regression test suggestions when tests fail during batch execution
25+
26+
- **Framework templates**: Complete test templates for Jest/Vitest, pytest, and Playwright with error ID references and Arrange-Act-Assert pattern
27+
28+
### 🔧 Changed
29+
30+
- `/debug` command: Added Step 3.5 for regression test generation after root cause analysis
31+
- `/implement` command: Now auto-invokes `/debug` when tests fail instead of just recommending it
32+
- `continuous-checks.sh`: Added Check 7/7 for auto-debug trigger on test failures
33+
- `error-log-template.md`: Added regression test reference field to entry format
34+
35+
---
36+
537
## [11.1.0] - 2025-12-09
638

739
### ✨ Added

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,21 @@ See a complete feature workflow in [`specs/001-example-feature/`](specs/001-exam
283283
284284
## 🆕 Recent Updates
285285
286+
### v11.2.0 (December 2025)
287+
288+
**Automatic Regression Test Generation** - Bugs captured as tests to prevent recurrence
289+
290+
- **regression-test-generator skill**: Auto-generates framework-specific regression tests
291+
- Framework auto-detection (Jest, Vitest, pytest, Playwright)
292+
- Arrange-Act-Assert test structure with error ID references
293+
- Links tests back to error-log.md entries
294+
- **Auto-invoke /debug on test failures**: When tests fail during `/implement`, `/debug` is automatically invoked
295+
- Generates regression test for the failure (Step 3.5)
296+
- Updates error-log.md with test reference
297+
- **Continuous checks integration**: Check 7/7 triggers auto-debug on test failures
298+
299+
---
300+
286301
### v11.1.0 (December 2025)
287302
288303
**/quick Command - Task() Orchestrator Pattern** - Consistent architecture across all workflow commands

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spec-flow",
3-
"version": "11.1.0",
3+
"version": "11.2.0",
44
"description": "Spec-Driven Development workflow toolkit for Claude Code - Build high-quality features faster with repeatable AI workflows",
55
"keywords": [
66
"claude",

0 commit comments

Comments
 (0)