bmad-enhanced 1.7.0 → 1.7.1

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
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.7.1] - 2026-03-03
11
+
12
+ ### Fixed
13
+
14
+ - **`bmad-update` failed to upgrade from 1.6.x to 1.7.0** — Missing `1.6.x-to-1.7.0` migration in registry caused "No migrations needed (versions compatible)" instead of running the upgrade. Added migration entry and no-op delta file.
15
+
16
+ ---
17
+
10
18
  ## [1.7.0] - 2026-03-02
11
19
 
12
20
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-enhanced",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "Vortex Pattern - Contextualize, Empathize, Synthesize, Hypothesize, Externalize, Sensitize, and Systematize streams for Lean Startup validation",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * Migration: 1.6.x → current version (v1.7.0)
5
+ * No-op delta - all file updates handled by refreshInstallation().
6
+ * Wave 4: production-quality workflow steps, updated guides, config-merger
7
+ * smart-merge, docs-audit tool. No schema or structural changes.
8
+ */
9
+
10
+ module.exports = {
11
+ name: '1.6.x-to-1.7.0',
12
+ fromVersion: '1.6.x',
13
+ breaking: false,
14
+
15
+ async preview() {
16
+ return {
17
+ actions: [
18
+ 'No version-specific changes needed (refresh handles all updates)',
19
+ 'Updates: 18 workflow step files (lean-experiment, proof-of-concept, proof-of-value)',
20
+ 'Updates: 7 user guides with reordered invocation methods',
21
+ 'Updates: config-merger with smart-merge for user-added agents/workflows'
22
+ ]
23
+ };
24
+ },
25
+
26
+ async apply(_projectRoot) {
27
+ return ['No version-specific delta needed'];
28
+ }
29
+ };
@@ -53,6 +53,13 @@ const MIGRATIONS = [
53
53
  breaking: false,
54
54
  description: 'Add Wave 3 agents (Mila, Liam, Noah) and 9 workflows to config',
55
55
  module: null
56
+ },
57
+ {
58
+ name: '1.6.x-to-1.7.0',
59
+ fromVersion: '1.6.x',
60
+ breaking: false,
61
+ description: 'Quality & onboarding (production workflow steps, updated guides, smart-merge)',
62
+ module: null
56
63
  }
57
64
  // Future migrations: append here. Only add delta logic for version-specific changes.
58
65
  ];