tidy-table 4.0.11 → 4.0.12
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 +6 -1
- package/package.json +17 -15
package/CHANGELOG.md
CHANGED
|
@@ -62,9 +62,14 @@ NPM security update ([CVE-2023-42282](https://github.com/advisories/GHSA-78xj-cg
|
|
|
62
62
|
- Upgraded `@wdio` CLI local-runner, outdated NPM packages
|
|
63
63
|
- NPM security updates ([ws override](https://github.com/advisories/GHSA-3h5v-q93c-6h6q))
|
|
64
64
|
|
|
65
|
-
## [4.0.
|
|
65
|
+
## [4.0.11] - 2025-10-31
|
|
66
66
|
|
|
67
67
|
- Upgraded Webdriver.IO to latest (9.20.0)
|
|
68
68
|
- Upgraded outdated NPM dependencies
|
|
69
69
|
- Replaced ESLint deprecated release
|
|
70
70
|
- Renamed Babel config to recommended
|
|
71
|
+
|
|
72
|
+
## [4.0.12] - 2026-03-26
|
|
73
|
+
|
|
74
|
+
- Override serialize-javascript (see mochajs/mocha#5781)
|
|
75
|
+
- Upgraded outdated NPM dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tidy-table",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.12",
|
|
4
4
|
"description": "Create a HTML table that can be sorted, selected, and post-processed.",
|
|
5
5
|
"main": "src/tidy-table.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,26 +30,28 @@
|
|
|
30
30
|
"author": "Marc S. Brooks <devel@mbrooks.info> (https://mbrooks.info)",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@babel/cli": "^7.28.
|
|
34
|
-
"@babel/core": "^7.
|
|
35
|
-
"@babel/eslint-parser": "^7.28.
|
|
36
|
-
"@babel/plugin-proposal-decorators": "^7.
|
|
33
|
+
"@babel/cli": "^7.28.6",
|
|
34
|
+
"@babel/core": "^7.29.0",
|
|
35
|
+
"@babel/eslint-parser": "^7.28.6",
|
|
36
|
+
"@babel/plugin-proposal-decorators": "^7.29.0",
|
|
37
37
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
38
|
-
"@babel/plugin-transform-class-properties": "^7.
|
|
39
|
-
"@babel/preset-env": "^7.
|
|
40
|
-
"@babel/register": "^7.28.
|
|
38
|
+
"@babel/plugin-transform-class-properties": "^7.28.6",
|
|
39
|
+
"@babel/preset-env": "^7.29.2",
|
|
40
|
+
"@babel/register": "^7.28.6",
|
|
41
41
|
"@node-minify/clean-css": "^4.0.5",
|
|
42
42
|
"@node-minify/cli": "^6.2.0",
|
|
43
43
|
"@node-minify/uglify-js": "^4.0.5",
|
|
44
|
-
"@wdio/cli": "^9.
|
|
45
|
-
"@wdio/local-runner": "^9.
|
|
46
|
-
"@wdio/mocha-framework": "^9.
|
|
47
|
-
"@wdio/spec-reporter": "^9.
|
|
48
|
-
"eslint": "^9.
|
|
49
|
-
"sass": "^1.
|
|
44
|
+
"@wdio/cli": "^9.27.0",
|
|
45
|
+
"@wdio/local-runner": "^9.27.0",
|
|
46
|
+
"@wdio/mocha-framework": "^9.27.0",
|
|
47
|
+
"@wdio/spec-reporter": "^9.27.0",
|
|
48
|
+
"eslint": "^9.39.4",
|
|
49
|
+
"sass": "^1.98.0"
|
|
50
50
|
},
|
|
51
51
|
"overrides": {
|
|
52
52
|
"got": "^12.0.0",
|
|
53
|
-
"
|
|
53
|
+
"mocha": {
|
|
54
|
+
"serialize-javascript": "7.0.4"
|
|
55
|
+
}
|
|
54
56
|
}
|
|
55
57
|
}
|