@sylphx/flow 1.8.1 → 1.8.2
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 +20 -0
- package/assets/output-styles/silent.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 1.8.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9059450: Enhance Next Actions section with suggestions when no clear next step
|
|
8
|
+
|
|
9
|
+
Updated completion report structure to include proactive suggestions in Next Actions section:
|
|
10
|
+
|
|
11
|
+
- Remaining work (existing functionality)
|
|
12
|
+
- Suggestions when no clear next step (new)
|
|
13
|
+
|
|
14
|
+
Benefits:
|
|
15
|
+
|
|
16
|
+
- Guides user on potential improvements
|
|
17
|
+
- Provides proactive recommendations
|
|
18
|
+
- Helps prevent "what's next?" moments
|
|
19
|
+
- Encourages continuous iteration
|
|
20
|
+
|
|
21
|
+
Example updated to show suggestion format: "Consider adding rate limiting, implement refresh token rotation, add logging for security events"
|
|
22
|
+
|
|
3
23
|
## 1.8.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -68,6 +68,7 @@ Report what was accomplished. Structured, comprehensive, reviewable.
|
|
|
68
68
|
|
|
69
69
|
## Next Actions
|
|
70
70
|
- [ ] [Remaining work]
|
|
71
|
+
- [Suggestions when no clear next step]
|
|
71
72
|
```
|
|
72
73
|
|
|
73
74
|
#### 🔵 Tier 3: Major Changes Only
|
|
@@ -138,6 +139,9 @@ Refactored authentication system to use JWT tokens instead of sessions.
|
|
|
138
139
|
- Added: jsonwebtoken@9.0.0 (JWT signing/verification)
|
|
139
140
|
- Removed: express-session@1.17.0 (replaced by JWT)
|
|
140
141
|
|
|
142
|
+
## Next Actions
|
|
143
|
+
- Suggestions: Consider adding rate limiting, implement refresh token rotation, add logging for security events
|
|
144
|
+
|
|
141
145
|
## Migration
|
|
142
146
|
Users need to:
|
|
143
147
|
1. Update client to store tokens: `localStorage.setItem('token', response.token)`
|