tidy-table 4.0.11 → 4.0.13

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/package.json +17 -15
package/CHANGELOG.md CHANGED
@@ -62,9 +62,19 @@ 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.10] - 2025-10-31
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
76
+
77
+ ## [4.0.13] - 2026-05-24
78
+
79
+ - Upgraded outdated NPM dependencies
80
+ - NPM security updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tidy-table",
3
- "version": "4.0.11",
3
+ "version": "4.0.13",
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.3",
34
- "@babel/core": "^7.28.5",
35
- "@babel/eslint-parser": "^7.28.5",
36
- "@babel/plugin-proposal-decorators": "^7.28.0",
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.27.1",
39
- "@babel/preset-env": "^7.28.5",
40
- "@babel/register": "^7.28.3",
38
+ "@babel/plugin-transform-class-properties": "^7.28.6",
39
+ "@babel/preset-env": "^7.29.5",
40
+ "@babel/register": "^7.29.3",
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.20.0",
45
- "@wdio/local-runner": "^9.20.0",
46
- "@wdio/mocha-framework": "^9.20.0",
47
- "@wdio/spec-reporter": "^9.20.0",
48
- "eslint": "^9.38.0",
49
- "sass": "^1.93.2"
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.100.0"
50
50
  },
51
51
  "overrides": {
52
52
  "got": "^12.0.0",
53
- "ws": "^7.0.0"
53
+ "mocha": {
54
+ "serialize-javascript": "7.0.4"
55
+ }
54
56
  }
55
57
  }