@immense/vue-pom-generator 1.0.68 → 1.0.69

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.
Files changed (2) hide show
  1. package/RELEASE_NOTES.md +78 -17
  2. package/package.json +1 -1
package/RELEASE_NOTES.md CHANGED
@@ -1,34 +1,95 @@
1
1
  ● ## Highlights
2
2
 
3
- - Fixed file scope path checks to properly normalize paths before comparison
4
- - Extracted path normalization logic into dedicated utility functions
5
- - Added comprehensive test coverage for path scope validation
3
+ - **Accessibility auditing**: Added accessibility audit metadata and warnings to generated POMs
4
+ - **Runtime metadata**: Introduced runtime annotator metadata for enhanced test introspection
5
+ - **Zero runtime dependencies**: Eliminated all runtime dependencies for a leaner installation
6
+ footprint
7
+ - **Dev-mode parity**: Fixed multiple issues ensuring dev-mode POM generation matches build mode
8
+ - **Node 24 support**: Updated CI workflows and actions for Node 24 compatibility
9
+ - **Enhanced Playwright discoverability**: Added split POM output with manifest and locator
10
+ descriptions
6
11
 
7
12
  ## Changes
8
13
 
9
- **Bug Fixes**
10
- - Normalized file scope path checks to handle platform-specific path separators and inconsistent
11
- path formats (#29)
12
- - Refactored path comparison logic in Vue plugin to use centralized utility functions
14
+ ### Features & Enhancements
15
+ - Added accessibility audit metadata and warnings (#25)
16
+ - Added runtime annotator metadata (#27)
17
+ - Added manifest and locator descriptions (#24)
18
+ - Added split Playwright POM output for better discoverability (#12)
19
+ - Added fail-fast behavior for unnameable wrapper handlers (#11)
20
+ - Added PR release-notes preview comments (#1)
13
21
 
14
- **Testing**
15
- - Added `tests/path-utils-scope.test.ts` with 29 test cases for path scope validation
22
+ ### Bug Fixes
23
+ - Normalized file scope path checks (#29)
24
+ - Avoided reparsing generated test IDs (#21)
25
+ - Parsed TypeScript template expressions and allowed submit-button fallback (#20)
26
+ - Hardened local app integration (#19)
27
+ - Restored router DOM globals after introspection (#18)
28
+ - Supported awaited handler wrappers (#17)
29
+ - Guarded manual releases (#16)
30
+ - Resolved Nuxt app-root dev POM clobber (#15)
31
+ - Fixed dev snapshot generation to fail fast on errors (#6)
32
+ - Achieved dev-mode POM generation parity with build mode (#5)
33
+ - Fixed keyed POM dedupe and C# navigation returns (#4)
16
34
 
17
- **Code Quality**
18
- - Extracted 68 lines of path utility logic from `vue-plugin.ts` to `plugin/path-utils.ts`
19
- - Reduced code duplication in plugin path handling (net -29 lines in vue-plugin.ts)
35
+ ### Infrastructure & Dependencies
36
+ - Updated GitHub Actions for Node 24 (#28)
37
+ - Relaxed Vite peer dependency range (#13)
38
+ - Eliminated all runtime dependencies (#9)
39
+
40
+ ### Testing
41
+ - Added build–serve parity regression tests (#7)
20
42
 
21
43
  ## Breaking Changes
22
44
 
23
- None.
45
+ - **Runtime dependencies removed** (#9): All runtime dependencies have been eliminated. If your
46
+ project relied on transitive dependencies from this package, you may need to install them
47
+ directly.
24
48
 
25
49
  ## Pull Requests Included
26
50
 
27
- - #29 fix: normalize file scope path checks
28
- (https://github.com/immense/vue-pom-generator/pull/29) by @dkattan
51
+ - #29 [fix: normalize file scope path
52
+ checks](https://github.com/immense/vue-pom-generator/pull/29)
53
+ - #28 [ci: update GitHub actions for Node
54
+ 24](https://github.com/immense/vue-pom-generator/pull/28)
55
+ - #27 [feat: add runtime annotator
56
+ metadata](https://github.com/immense/vue-pom-generator/pull/27)
57
+ - #25 [feat: add accessibility audit metadata and
58
+ warnings](https://github.com/immense/vue-pom-generator/pull/25)
59
+ - #24 [feat: add manifest and locator
60
+ descriptions](https://github.com/immense/vue-pom-generator/pull/24)
61
+ - #21 [fix: avoid reparsing generated test
62
+ ids](https://github.com/immense/vue-pom-generator/pull/21)
63
+ - #20 [fix: parse TypeScript template expressions + allow submit-button
64
+ fallback](https://github.com/immense/vue-pom-generator/pull/20)
65
+ - #19 [fix: harden local app integration](https://github.com/immense/vue-pom-generator/pull/19)
66
+ - #18 [fix: restore router DOM globals after
67
+ introspection](https://github.com/immense/vue-pom-generator/pull/18)
68
+ - #17 [fix: support awaited handler
69
+ wrappers](https://github.com/immense/vue-pom-generator/pull/17)
70
+ - #16 [fix: guard manual releases](https://github.com/immense/vue-pom-generator/pull/16)
71
+ - #15 [fix: resolve Nuxt app-root dev POM
72
+ clobber](https://github.com/immense/vue-pom-generator/pull/15)
73
+ - #13 [Relax Vite peer dependency range](https://github.com/immense/vue-pom-generator/pull/13)
74
+ - #12 [feat: add split Playwright POM output for
75
+ discoverability](https://github.com/immense/vue-pom-generator/pull/12)
76
+ - #11 [feat: fail fast on unnameable wrapper
77
+ handlers](https://github.com/immense/vue-pom-generator/pull/11)
78
+ - #9 [refactor(deps): eliminate all runtime
79
+ dependencies](https://github.com/immense/vue-pom-generator/pull/9)
80
+ - #8 [chore: bump version to 1.0.43](https://github.com/immense/vue-pom-generator/pull/8)
81
+ - #7 [test: add build–serve parity regression
82
+ tests](https://github.com/immense/vue-pom-generator/pull/7)
83
+ - #6 [fix: fail fast on dev snapshot generation
84
+ errors](https://github.com/immense/vue-pom-generator/pull/6)
85
+ - #5 [fix: dev-mode POM generation parity with build
86
+ mode](https://github.com/immense/vue-pom-generator/pull/5)
87
+ - #4 [Fix keyed POM dedupe and C# navigation
88
+ returns](https://github.com/immense/vue-pom-generator/pull/4)
89
+ - #1 [Add PR release-notes preview
90
+ comments](https://github.com/immense/vue-pom-generator/pull/1)
29
91
 
30
92
  ## Testing
31
93
 
32
- New test suite added (`path-utils-scope.test.ts`) covering path normalization and scope
33
- validation edge cases.
94
+ Build–serve parity regression tests added. All changes validated through existing test suite.
34
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@immense/vue-pom-generator",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "description": "Injects data-testid attributes for all interactive elements and generates page object models for every page.",
5
5
  "type": "module",
6
6
  "repository": {