html-snapshots 2.17.0 → 3.1.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/HISTORY.md +4 -0
- package/package.json +7 -4
package/HISTORY.md
CHANGED
|
@@ -3,6 +3,9 @@ An overview of the [Breaking Changes](#breaking-changes) and [Node Support](#nod
|
|
|
3
3
|
|
|
4
4
|
## Breaking Changes
|
|
5
5
|
|
|
6
|
+
### Introduced in v3.0.0
|
|
7
|
+
#### Dropped support for Node 16.
|
|
8
|
+
|
|
6
9
|
### Introduced in v2.0.0
|
|
7
10
|
#### Dropped support for Node 14.
|
|
8
11
|
|
|
@@ -46,3 +49,4 @@ The upside is jQuery is no longer required to be loaded by the page being snapsh
|
|
|
46
49
|
| `v0.19.x ` | Node 14+ |
|
|
47
50
|
| `v1.x ` | Node 14+ |
|
|
48
51
|
| `v2.x ` | Node 16+ |
|
|
52
|
+
| `v3.x ` | Node 18+ |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "html-snapshots",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Alex Grant",
|
|
6
6
|
"email": "alex@localnerve.com",
|
|
@@ -58,20 +58,23 @@
|
|
|
58
58
|
"combine-errors": "3.0.3",
|
|
59
59
|
"got": "^13.0.0",
|
|
60
60
|
"phantomjs-prebuilt": "2.1.16",
|
|
61
|
-
"puppeteer": "^
|
|
61
|
+
"puppeteer": "^22.1.0",
|
|
62
62
|
"xml2js": "0.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"eslint": "^8.56.0",
|
|
66
66
|
"express": "^4.18.2",
|
|
67
|
-
"mocha": "^10.
|
|
67
|
+
"mocha": "^10.3.0",
|
|
68
68
|
"c8": "^9.1.0",
|
|
69
69
|
"precommit-hook": "^3.0.0",
|
|
70
70
|
"server-destroy": "^1.0.1",
|
|
71
71
|
"sitemap-xml": "^0.1.0"
|
|
72
72
|
},
|
|
73
|
+
"overrides": {
|
|
74
|
+
"request": "npm:@cypress/request@3.0.1"
|
|
75
|
+
},
|
|
73
76
|
"license": "MIT",
|
|
74
77
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
78
|
+
"node": ">=18"
|
|
76
79
|
}
|
|
77
80
|
}
|