@immense/vue-pom-generator 1.0.70 → 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 +91 -11
- package/dist/index.cjs +1396 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1398 -2
- package/dist/index.mjs.map +1 -1
- package/dist/plugin/runtime/annotator/client.d.ts +1 -1
- package/dist/plugin/runtime/annotator/client.d.ts.map +1 -1
- package/package.json +4 -4
- package/plugin/runtime/annotator/client.ts +1 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,29 +1,109 @@
|
|
|
1
|
-
● # Release Notes
|
|
1
|
+
● # Release Notes - v1.0.72
|
|
2
2
|
|
|
3
3
|
## Highlights
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
|
|
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
|
|
7
15
|
|
|
8
16
|
## Changes
|
|
9
17
|
|
|
10
|
-
**
|
|
11
|
-
-
|
|
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)
|
|
12
23
|
|
|
13
|
-
**
|
|
14
|
-
-
|
|
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)
|
|
50
|
+
|
|
51
|
+
**Developer Experience**
|
|
52
|
+
- Add PR release-notes preview comments (#1)
|
|
53
|
+
- Guard manual releases (#16)
|
|
15
54
|
|
|
16
55
|
## Breaking Changes
|
|
17
56
|
|
|
18
|
-
|
|
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.
|
|
19
59
|
|
|
20
60
|
## Pull Requests Included
|
|
21
61
|
|
|
62
|
+
- #31 feat: export mountAnnotatorClient from main entry point
|
|
63
|
+
(https://github.com/immense/vue-pom-generator/pull/31)
|
|
22
64
|
- #30 fix: relax Playwright peer pinning (https://github.com/immense/vue-pom-generator/pull/30)
|
|
23
|
-
|
|
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)
|
|
24
104
|
|
|
25
105
|
## Testing
|
|
26
106
|
|
|
27
|
-
Added
|
|
28
|
-
production
|
|
107
|
+
Added build–serve parity regression tests (#7) to ensure consistent behavior across development
|
|
108
|
+
and production modes.
|
|
29
109
|
|