@immense/vue-pom-generator 1.0.68 → 1.0.70

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 +13 -18
  2. package/package.json +2 -2
package/RELEASE_NOTES.md CHANGED
@@ -1,34 +1,29 @@
1
- ## Highlights
1
+ # Release Notes: v1.0.70
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
+ ## Highlights
4
+
5
+ - Relaxed Playwright peer dependency range for broader version compatibility
6
+ - Enhanced packed package smoke testing to validate Playwright peer resolution
6
7
 
7
8
  ## Changes
8
9
 
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
10
+ **Dependencies**
11
+ - Relaxed Playwright peer dependency version range to support more versions
13
12
 
14
13
  **Testing**
15
- - Added `tests/path-utils-scope.test.ts` with 29 test cases for path scope validation
16
-
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)
14
+ - Added smoke check validation for Playwright peer dependency resolution in packed builds
20
15
 
21
16
  ## Breaking Changes
22
17
 
23
- None.
18
+ None
24
19
 
25
20
  ## Pull Requests Included
26
21
 
27
- - #29 fix: normalize file scope path checks
28
- (https://github.com/immense/vue-pom-generator/pull/29) by @dkattan
22
+ - #30 fix: relax Playwright peer pinning (https://github.com/immense/vue-pom-generator/pull/30)
23
+ (by @dkattan)
29
24
 
30
25
  ## Testing
31
26
 
32
- New test suite added (`path-utils-scope.test.ts`) covering path normalization and scope
33
- validation edge cases.
27
+ Added `packed-smoke-check.mjs` script to validate Playwright peer dependency resolution in
28
+ production builds.
34
29
 
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.70",
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": {
@@ -62,7 +62,7 @@
62
62
  "@vue/compiler-dom": ">=3.5",
63
63
  "@vue/compiler-sfc": ">=3.5",
64
64
  "eslint": ">=9",
65
- "playwright": "1.59.1",
65
+ "playwright": ">=1.59.1 <2",
66
66
  "vite": "^5 || ^6 || ^7"
67
67
  },
68
68
  "peerDependenciesMeta": {