@rebilly/framepay-vue 12.98.1 → 12.98.3
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/CHANGELOG.md +2 -2
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.98.
|
|
1
|
+
## [12.98.3](https://github.com/Rebilly/rebilly/compare/framepay-vue-v12.98.2...framepay-vue-v12.98.3) (2026-04-29)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **deps:**
|
|
6
|
+
* **deps:** override svgo to patched versions for CVE-2026-29074 ([#20970](https://github.com/Rebilly/rebilly/issues/20970)) ([a7ff478](https://github.com/Rebilly/rebilly/commit/a7ff4782c51ecacfb15048a7ef41ddc329bfc8cb))
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/framepay-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "12.98.
|
|
4
|
+
"version": "12.98.3",
|
|
5
5
|
"description": "Official Vue wrapper for Rebilly FramePay",
|
|
6
6
|
"author": "Rebilly",
|
|
7
7
|
"repository": {
|
|
@@ -31,9 +31,10 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"dev": "vite",
|
|
33
33
|
"build": "vite build",
|
|
34
|
+
"type:check:e2e": "tsc --noEmit -p tsconfig.e2e.json",
|
|
34
35
|
"test:unit": "vitest run --environment jsdom --root src/",
|
|
35
36
|
"test:unit:watch": "vitest --environment jsdom --root src/",
|
|
36
|
-
"test:e2e:pr": "playwright test --reporter=list",
|
|
37
|
+
"test:e2e:pr": "pnpm type:check:e2e && playwright test --reporter=list",
|
|
37
38
|
"test:e2e:gui": "playwright test --ui"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
@@ -41,12 +42,15 @@
|
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@playwright/test": "^1.57.0",
|
|
45
|
+
"@rebilly/playwright-config": "*",
|
|
44
46
|
"@rebilly/eslint-config": "*",
|
|
45
47
|
"@rebilly/framepay": "*",
|
|
48
|
+
"@types/node": "^22.15.30",
|
|
46
49
|
"@vitejs/plugin-basic-ssl": "^2.1.3",
|
|
47
50
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
48
51
|
"@vue/test-utils": "^2.4.6",
|
|
49
52
|
"jsdom": "^21.1.1",
|
|
53
|
+
"typescript": "^5.8.3",
|
|
50
54
|
"vite": "^5.4.21",
|
|
51
55
|
"vite-plugin-mkcert": "^1.17.8",
|
|
52
56
|
"vitest": "^1.6.1",
|