@immense/vue-pom-generator 1.0.69 → 1.0.71
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 +21 -79
- package/dist/index.cjs +1396 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1398 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,95 +1,37 @@
|
|
|
1
|
-
●
|
|
1
|
+
● I'll gather the commits and PR details between v1.0.70 and HEAD to generate accurate release
|
|
2
|
+
notes.
|
|
2
3
|
|
|
3
|
-
|
|
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
|
|
4
|
+
● Based on the commits between v1.0.70 and HEAD, here are the release notes for v1.0.71:
|
|
11
5
|
|
|
12
|
-
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Highlights
|
|
13
9
|
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
|
|
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)
|
|
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
|
|
21
14
|
|
|
22
|
-
|
|
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)
|
|
15
|
+
## Changes
|
|
34
16
|
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
- Relaxed Vite peer dependency range (#13)
|
|
38
|
-
- Eliminated all runtime dependencies (#9)
|
|
17
|
+
**Features**
|
|
18
|
+
- Export `mountAnnotatorClient` from main entry point to avoid deep path imports (#31)
|
|
39
19
|
|
|
40
|
-
|
|
41
|
-
-
|
|
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
|
|
42
24
|
|
|
43
25
|
## Breaking Changes
|
|
44
26
|
|
|
45
|
-
|
|
46
|
-
project relied on transitive dependencies from this package, you may need to install them
|
|
47
|
-
directly.
|
|
27
|
+
None
|
|
48
28
|
|
|
49
29
|
## Pull Requests Included
|
|
50
30
|
|
|
51
|
-
- #
|
|
52
|
-
|
|
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)
|
|
31
|
+
- #31 feat: export mountAnnotatorClient from main entry point
|
|
32
|
+
(https://github.com/immense/vue-pom-generator/pull/31) by @dkattan
|
|
91
33
|
|
|
92
34
|
## Testing
|
|
93
35
|
|
|
94
|
-
|
|
36
|
+
Standard test suite passes with Playwright 1.61.0.
|
|
95
37
|
|