@networkpro/web 1.25.12 → 1.25.14
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/.markdownlint.mjs +1 -0
- package/.ncurc.cjs +1 -7
- package/CHANGELOG.md +36 -1
- package/package.json +7 -5
package/.markdownlint.mjs
CHANGED
|
@@ -16,6 +16,7 @@ export default {
|
|
|
16
16
|
customRules: [noSmartQuotes],
|
|
17
17
|
|
|
18
18
|
// Rule exceptions
|
|
19
|
+
MD060: false, // Pointless style enforcement — doesn't affect render output
|
|
19
20
|
MD041: false, // First line in file should be a top-level header
|
|
20
21
|
MD033: false, // Allow inline HTML
|
|
21
22
|
MD013: false, // Ignore line length
|
package/.ncurc.cjs
CHANGED
|
@@ -31,13 +31,7 @@ This file is part of Network Pro.
|
|
|
31
31
|
/** @type {import('npm-check-updates').RunOptions} */
|
|
32
32
|
module.exports = {
|
|
33
33
|
// Ignore specific dependencies (prevent upgrades)
|
|
34
|
-
reject: [
|
|
35
|
-
'vitest',
|
|
36
|
-
'@vitest/coverage-v8',
|
|
37
|
-
'prettier',
|
|
38
|
-
'jsdom',
|
|
39
|
-
'markdownlint-cli2',
|
|
40
|
-
],
|
|
34
|
+
reject: ['vitest', '@vitest/coverage-v8', 'prettier', 'jsdom'],
|
|
41
35
|
|
|
42
36
|
// Always upgrade devDependencies as well
|
|
43
37
|
dep: 'prod,dev',
|
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,39 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.25.14] - 2025-11-18
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Bumped project version to `v1.25.14`.
|
|
30
|
+
- Updated dependencies:
|
|
31
|
+
- `svelte` `5.43.7` → `5.43.10`
|
|
32
|
+
- `posthog-js` `^1.293.0` → `^1.295.0`
|
|
33
|
+
|
|
34
|
+
### Security
|
|
35
|
+
|
|
36
|
+
- Added transitive dependency override for `glob` to `^11.1.0`, in order to address CVE-2025-64756.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## [1.25.13] - 2025-11-16
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
|
|
44
|
+
- Updated `.markdownlint.mjs` to ignore rule `MD060`, which is overly strict and unnecessary.
|
|
45
|
+
- Bumped project version to `v1.25.13`.
|
|
46
|
+
- Updated dependencies:
|
|
47
|
+
- `svelte` `5.43.6` → `5.43.7`
|
|
48
|
+
- `posthog-js` `^1.292.0` → `^1.293.0`
|
|
49
|
+
- `@eslint/compat` `^1.4.1` → `^2.0.0`
|
|
50
|
+
- `markdownlint-cli2` `0.18.1` → `0.19.0`
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
- Resolved prototype pollution vulnerability in transitive `js-yaml` dependency via `overrides`, due to outdated `@lhci/cli` dependency on `@lhci/utils`.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
25
58
|
## [1.25.12] - 2025-11-14
|
|
26
59
|
|
|
27
60
|
### Added
|
|
@@ -1897,7 +1930,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
1897
1930
|
|
|
1898
1931
|
<!-- Link references -->
|
|
1899
1932
|
|
|
1900
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
1933
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.14...HEAD
|
|
1934
|
+
[1.25.14]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.14
|
|
1935
|
+
[1.25.13]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.13
|
|
1901
1936
|
[1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12
|
|
1902
1937
|
[1.25.11]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.11
|
|
1903
1938
|
[1.25.10]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.10
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.25.
|
|
4
|
+
"version": "1.25.14",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"dompurify": "^3.3.0",
|
|
89
|
-
"posthog-js": "^1.
|
|
89
|
+
"posthog-js": "^1.295.0",
|
|
90
90
|
"semver": "^7.7.3",
|
|
91
|
-
"svelte": "5.43.
|
|
91
|
+
"svelte": "5.43.10"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@eslint/compat": "^
|
|
94
|
+
"@eslint/compat": "^2.0.0",
|
|
95
95
|
"@eslint/js": "^9.39.1",
|
|
96
96
|
"@lhci/cli": "^0.15.1",
|
|
97
97
|
"@playwright/test": "^1.56.1",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"jsdom": "26.1.0",
|
|
113
113
|
"lightningcss": "^1.30.2",
|
|
114
114
|
"markdownlint": "^0.39.0",
|
|
115
|
-
"markdownlint-cli2": "0.
|
|
115
|
+
"markdownlint-cli2": "0.19.0",
|
|
116
116
|
"npm-run-all": "^4.1.5",
|
|
117
117
|
"playwright": "^1.56.1",
|
|
118
118
|
"postcss": "^8.5.6",
|
|
@@ -135,6 +135,8 @@
|
|
|
135
135
|
},
|
|
136
136
|
"overrides": {
|
|
137
137
|
"cookie": "^1.0.0",
|
|
138
|
+
"glob": "^11.1.0",
|
|
139
|
+
"js-yaml": "^4.1.1",
|
|
138
140
|
"tar": ">=7.5.2",
|
|
139
141
|
"tmp": ">=0.2.4"
|
|
140
142
|
}
|