@rebilly/framepay-vue 4.9.4 → 5.0.0
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 +18 -0
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [5.0.0](https://github.com/Rebilly/rebilly/compare/framepay-vue-v4.9.5...framepay-vue-v5.0.0) (2023-11-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* **instruments:** Rename feature flags (#2275)
|
|
7
|
+
|
|
8
|
+
### Refactors
|
|
9
|
+
|
|
10
|
+
* **instruments:** Rename feature flags ([#2275](https://github.com/Rebilly/rebilly/issues/2275)) ([7cbef64](https://github.com/Rebilly/rebilly/commit/7cbef64a69cbb7c1da39148858d2fc85c8fd58e9))
|
|
11
|
+
|
|
12
|
+
## [4.9.5](https://github.com/Rebilly/rebilly/compare/framepay-vue-v4.9.4...framepay-vue-v4.9.5) (2023-11-14)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **risk-data-collector:** Update to Fingerprint to PRO version ([#2228](https://github.com/Rebilly/rebilly/issues/2228)) ([72f8c37](https://github.com/Rebilly/rebilly/commit/72f8c37266bd59da8b887cee5c3f9d86b0d4f7e5))
|
|
18
|
+
|
|
1
19
|
## [4.9.4](https://github.com/Rebilly/rebilly/compare/framepay-vue-v4.9.3...framepay-vue-v4.9.4) (2023-10-27)
|
|
2
20
|
|
|
3
21
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/framepay-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"description": "Official Vue wrapper for Rebilly FramePay",
|
|
6
6
|
"author": "Rebilly",
|
|
7
7
|
"repository": {
|
|
@@ -32,29 +32,25 @@
|
|
|
32
32
|
"scripts": {
|
|
33
33
|
"dev": "vite",
|
|
34
34
|
"build": "vite build",
|
|
35
|
-
"test": "npm run lint && npm run test:unit && npm run test:e2e:pr",
|
|
36
35
|
"test:unit": "vitest run --environment jsdom --root src/",
|
|
37
36
|
"test:unit:watch": "vitest --environment jsdom --root src/",
|
|
38
37
|
"test:e2e:pr": "start-server-and-test 'vite dev --port 4173' localhost:4173 'cypress run --e2e'",
|
|
39
38
|
"test:e2e:gui": "start-server-and-test 'vite dev --port 4173' localhost:4173 'cypress open --e2e'",
|
|
40
|
-
"lint
|
|
39
|
+
"lint": "yarn lint:no-fix --fix",
|
|
40
|
+
"lint:no-fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"vue": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
+
"@rebilly/eslint-config": "*",
|
|
46
47
|
"@testing-library/cypress": "^7.0.2",
|
|
47
48
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
48
|
-
"@vue/eslint-config-prettier": "^7.0.0",
|
|
49
49
|
"@vue/test-utils": "^2.4.1",
|
|
50
50
|
"cypress": "^12.17.4",
|
|
51
51
|
"cypress-iframe": "^1.0.1",
|
|
52
|
-
"eslint": "^8.51.0",
|
|
53
|
-
"eslint-plugin-cypress": "^2.14.0",
|
|
54
|
-
"eslint-plugin-vue": "^9.12.0",
|
|
55
52
|
"jsdom": "^21.1.1",
|
|
56
|
-
"
|
|
57
|
-
"start-server-and-test": "^2.0.0",
|
|
53
|
+
"start-server-and-test": "^2.0.1",
|
|
58
54
|
"vite": "^4.3.9",
|
|
59
55
|
"vite-plugin-mkcert": "^1.16.0",
|
|
60
56
|
"vitest": "^0.29.7",
|