@immense/vue-pom-generator 1.0.54 → 1.0.55
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/RELEASE_NOTES.md +12 -38
- package/package.json +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,54 +1,28 @@
|
|
|
1
1
|
● ## Highlights
|
|
2
2
|
|
|
3
|
-
-
|
|
4
|
-
|
|
5
|
-
-
|
|
6
|
-
swappable renderer system
|
|
7
|
-
- **Stricter semantic naming**: Unnameable wrapper handlers now fail fast by default instead of
|
|
8
|
-
silently succeeding
|
|
9
|
-
- **Streamlined callout placement pipeline**: Refactored pointer callout rendering for improved
|
|
10
|
-
maintainability
|
|
11
|
-
- **Removed peer dependencies**: No longer requires `vue`, `vitest`, or `@vue/shared` as peer
|
|
12
|
-
dependencies
|
|
3
|
+
- Fixed manual release workflow guardrails to prevent accidental triggers
|
|
4
|
+
- Cleaned up stale regression test
|
|
5
|
+
- Single workflow file change with improved safety checks
|
|
13
6
|
|
|
14
7
|
## Changes
|
|
15
8
|
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
([#9](https://github.com/immense/vue-pom-generator/pull/9))
|
|
19
|
-
- Removed `vue`, `vitest`, and `@vue/shared` peer dependencies
|
|
20
|
-
- Updated package structure for zero external runtime requirements
|
|
9
|
+
**CI/CD Improvements**
|
|
10
|
+
- Added guardrails to prevent unintended manual release triggers in GitHub Actions workflow
|
|
21
11
|
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
- Introduced pluggable pointer callout renderer system
|
|
25
|
-
- Streamlined callout placement pipeline for better performance
|
|
26
|
-
- Refactored pointer rendering logic for extensibility
|
|
27
|
-
|
|
28
|
-
### Error Handling
|
|
29
|
-
- Semantic-name validation failures now default to throwing errors instead of warnings
|
|
30
|
-
- Improved fail-fast behavior for unnameable wrapper handlers
|
|
31
|
-
|
|
32
|
-
### Testing
|
|
33
|
-
- Aligned dev plugin options across test suite
|
|
34
|
-
- Added pointer callout sequence documentation (GIF)
|
|
35
|
-
- Enhanced test coverage for pointer rendering
|
|
12
|
+
**Testing**
|
|
13
|
+
- Removed stale regression test case
|
|
36
14
|
|
|
37
15
|
## Breaking Changes
|
|
38
16
|
|
|
39
|
-
|
|
40
|
-
dependencies. Ensure your build still works if you relied on these being present.
|
|
41
|
-
- **Semantic naming errors**: Invalid semantic names now throw by default instead of warning.
|
|
42
|
-
Handlers that cannot be named semantically will cause build failures unless explicitly
|
|
43
|
-
configured otherwise.
|
|
17
|
+
None.
|
|
44
18
|
|
|
45
19
|
## Pull Requests Included
|
|
46
20
|
|
|
47
|
-
-
|
|
48
|
-
|
|
21
|
+
- #16 fix: guard manual releases (https://github.com/immense/vue-pom-generator/pull/16)
|
|
22
|
+
(@dkattan)
|
|
49
23
|
|
|
50
24
|
## Testing
|
|
51
25
|
|
|
52
|
-
|
|
53
|
-
|
|
26
|
+
Includes test cleanup (removal of stale regression test). Workflow changes validated through
|
|
27
|
+
GitHub Actions.
|
|
54
28
|
|
package/package.json
CHANGED