@gr4vy/secure-fields-react 2.6.0 → 2.7.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 +16 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# v2.7.0 (Tue May 19 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- task: add additional card schemes icons [#1217](https://github.com/gr4vy/secure-fields/pull/1217) ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- task: split CI jobs and run in parallel [#1216](https://github.com/gr4vy/secure-fields/pull/1216) ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
10
|
+
|
|
11
|
+
#### Authors: 1
|
|
12
|
+
|
|
13
|
+
- Luca Allievi ([@luca-gr4vy](https://github.com/luca-gr4vy))
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
1
17
|
# v2.6.0 (Wed May 13 2026)
|
|
2
18
|
|
|
3
19
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gr4vy/secure-fields-react",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Gr4vy-hosted secure fields offering advanced theming, PCI compliance, event handling, and more.",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"types": "lib/index",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"prepack": "yarn build",
|
|
28
28
|
"serve:watch": "yarn run watch",
|
|
29
29
|
"watch": "tsc -w -p tsconfig.prod.json",
|
|
30
|
-
"test": "
|
|
30
|
+
"test": "yarn test:unit",
|
|
31
|
+
"test:unit": "jest --colors",
|
|
31
32
|
"token": "node ../secure-fields/generate-token"
|
|
32
33
|
},
|
|
33
34
|
"files": [
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"react-dom": ">=17.0.0"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
|
-
"@gr4vy/secure-fields": "^2.
|
|
45
|
+
"@gr4vy/secure-fields": "^2.7.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@testing-library/react": "^12.1.5",
|
|
@@ -55,5 +56,5 @@
|
|
|
55
56
|
"access": "public",
|
|
56
57
|
"registry": "https://registry.npmjs.org"
|
|
57
58
|
},
|
|
58
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "18ca5c608d1a6a78b1c95759d0f8c984ee2facbe"
|
|
59
60
|
}
|