@immense/vue-pom-generator 1.0.71 → 1.0.72

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 CHANGED
@@ -1,37 +1,109 @@
1
- I'll gather the commits and PR details between v1.0.70 and HEAD to generate accurate release
2
- notes.
3
-
4
- ● Based on the commits between v1.0.70 and HEAD, here are the release notes for v1.0.71:
5
-
6
- ---
1
+ # Release Notes - v1.0.72
7
2
 
8
3
  ## Highlights
9
4
 
10
- - **New export**: `mountAnnotatorClient` now available from main entry point for easier imports
11
- - **Playwright upgrade**: Updated from 1.59.1 to 1.61.0 with relaxed peer dependency range
12
- - **Improved compatibility**: Playwright peer dependency now accepts `>=1.61.0 <2` instead of
13
- pinned version
5
+ - **Runtime annotator enhancements**: Exported `mountAnnotatorClient` and
6
+ `AnnotatorClientOptions` from main entry point for easier integration
7
+ - **Accessibility audit metadata**: Added accessibility audit warnings and metadata to generated
8
+ POMs
9
+ - **Zero runtime dependencies**: Eliminated all runtime dependencies for lighter installation
10
+ footprint
11
+ - **Improved type handling**: Enhanced TypeScript template expression parsing and test ID
12
+ generation
13
+ - **Split POM output**: Added separate Playwright POM files for better discoverability
14
+ - **Relaxed peer dependencies**: More flexible Vite and Playwright version requirements
14
15
 
15
16
  ## Changes
16
17
 
17
- **Features**
18
- - Export `mountAnnotatorClient` from main entry point to avoid deep path imports (#31)
18
+ **Runtime & API**
19
+ - Export `AnnotatorClientOptions` type from main entry point
20
+ - Export `mountAnnotatorClient` from main entry point (#31)
21
+ - Add runtime annotator metadata (#27)
22
+ - Add manifest and locator descriptions (#24)
23
+
24
+ **Accessibility**
25
+ - Add accessibility audit metadata and warnings (#25)
26
+
27
+ **Code Generation**
28
+ - Add split Playwright POM output for discoverability (#12)
29
+ - Avoid reparsing generated test ids (#21)
30
+ - Parse TypeScript template expressions and allow submit-button fallback (#20)
31
+ - Fail fast on unnameable wrapper handlers (#11)
32
+
33
+ **Build & Integration**
34
+ - Eliminate all runtime dependencies (#9)
35
+ - Normalize file scope path checks (#29)
36
+ - Harden local app integration (#19)
37
+ - Resolve Nuxt app-root dev POM clobber (#15)
38
+ - Dev-mode POM generation parity with build mode (#5)
39
+
40
+ **Bug Fixes**
41
+ - Restore router DOM globals after introspection (#18)
42
+ - Support awaited handler wrappers (#17)
43
+ - Fix keyed POM dedupe and C# navigation returns (#4)
44
+ - Fail fast on dev snapshot generation errors (#6)
45
+
46
+ **Dependencies & CI**
47
+ - Relax Playwright peer pinning (#30)
48
+ - Relax Vite peer dependency range (#13)
49
+ - Update GitHub actions for Node 24 (#28)
19
50
 
20
- **Dependencies**
21
- - Update Playwright from 1.59.1 to 1.61.0
22
- - Relax Playwright peer dependency from `>=1.59.1 <2` to `>=1.61.0 <2`
23
- - Update `@playwright/test` to 1.61.0
51
+ **Developer Experience**
52
+ - Add PR release-notes preview comments (#1)
53
+ - Guard manual releases (#16)
24
54
 
25
55
  ## Breaking Changes
26
56
 
27
- None
57
+ - **Zero runtime dependencies** (#9): All runtime dependencies have been eliminated. If your
58
+ project was relying on transitive dependencies, you may need to install them directly.
28
59
 
29
60
  ## Pull Requests Included
30
61
 
31
62
  - #31 feat: export mountAnnotatorClient from main entry point
32
- (https://github.com/immense/vue-pom-generator/pull/31) by @dkattan
63
+ (https://github.com/immense/vue-pom-generator/pull/31)
64
+ - #30 fix: relax Playwright peer pinning (https://github.com/immense/vue-pom-generator/pull/30)
65
+ - #29 fix: normalize file scope path checks
66
+ (https://github.com/immense/vue-pom-generator/pull/29)
67
+ - #28 ci: update GitHub actions for Node 24
68
+ (https://github.com/immense/vue-pom-generator/pull/28)
69
+ - #27 feat: add runtime annotator metadata
70
+ (https://github.com/immense/vue-pom-generator/pull/27)
71
+ - #25 feat: add accessibility audit metadata and warnings
72
+ (https://github.com/immense/vue-pom-generator/pull/25)
73
+ - #24 feat: add manifest and locator descriptions
74
+ (https://github.com/immense/vue-pom-generator/pull/24)
75
+ - #21 fix: avoid reparsing generated test ids
76
+ (https://github.com/immense/vue-pom-generator/pull/21)
77
+ - #20 fix: parse TypeScript template expressions + allow submit-button fallback
78
+ (https://github.com/immense/vue-pom-generator/pull/20)
79
+ - #19 fix: harden local app integration (https://github.com/immense/vue-pom-generator/pull/19)
80
+ - #18 fix: restore router DOM globals after introspection
81
+ (https://github.com/immense/vue-pom-generator/pull/18)
82
+ - #17 fix: support awaited handler wrappers
83
+ (https://github.com/immense/vue-pom-generator/pull/17)
84
+ - #16 fix: guard manual releases (https://github.com/immense/vue-pom-generator/pull/16)
85
+ - #15 fix: resolve Nuxt app-root dev POM clobber
86
+ (https://github.com/immense/vue-pom-generator/pull/15)
87
+ - #13 Relax Vite peer dependency range (https://github.com/immense/vue-pom-generator/pull/13)
88
+ - #12 feat: add split Playwright POM output for discoverability
89
+ (https://github.com/immense/vue-pom-generator/pull/12)
90
+ - #11 feat: fail fast on unnameable wrapper handlers
91
+ (https://github.com/immense/vue-pom-generator/pull/11)
92
+ - #9 refactor(deps): eliminate all runtime dependencies
93
+ (https://github.com/immense/vue-pom-generator/pull/9)
94
+ - #8 chore: bump version to 1.0.43 (https://github.com/immense/vue-pom-generator/pull/8)
95
+ - #7 test: add build–serve parity regression tests
96
+ (https://github.com/immense/vue-pom-generator/pull/7)
97
+ - #6 fix: fail fast on dev snapshot generation errors
98
+ (https://github.com/immense/vue-pom-generator/pull/6)
99
+ - #5 fix: dev-mode POM generation parity with build mode
100
+ (https://github.com/immense/vue-pom-generator/pull/5)
101
+ - #4 Fix keyed POM dedupe and C# navigation returns
102
+ (https://github.com/immense/vue-pom-generator/pull/4)
103
+ - #1 Add PR release-notes preview comments (https://github.com/immense/vue-pom-generator/pull/1)
33
104
 
34
105
  ## Testing
35
106
 
36
- Standard test suite passes with Playwright 1.61.0.
107
+ Added build–serve parity regression tests (#7) to ensure consistent behavior across development
108
+ and production modes.
37
109