@networkpro/web 1.26.17 → 1.26.19
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/.github/workflows/playwright.yml +1 -1
- package/CHANGELOG.md +48 -2
- package/package.json +21 -20
- package/src/app.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,51 @@ version increments reflecting both user-visible and operational impact.
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
+
## [1.26.19] - 2026-04-09
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Bumped project version to `v1.25.19`.
|
|
32
|
+
- Modified Node.js version to `24` in `.github/workflows/playwright.yml`.
|
|
33
|
+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.57.1**.
|
|
34
|
+
- Updated dependencies:
|
|
35
|
+
- `@eslint/compat` `^2.0.3` → `^2.0.5`
|
|
36
|
+
- `@vitest/coverage-v8` `4.1.2` → `4.1.4`
|
|
37
|
+
- `browserslist` `^4.28.1` → `^4.28.2`
|
|
38
|
+
- `jsdom` `29.0.1` → `29.0.2`
|
|
39
|
+
- `postcss` `^8.5.8` → `^8.5.9`
|
|
40
|
+
- `svelte` `5.55.1` → `5.55.2`
|
|
41
|
+
- `vite` `^8.0.3` → `^8.0.8`
|
|
42
|
+
- `vitest` `4.1.2` → `4.1.4`
|
|
43
|
+
- `@playwright/test` `^1.58.2` → `^1.59.1`
|
|
44
|
+
- `@sveltejs/kit` `2.55.0` → `2.57.1`
|
|
45
|
+
- `eslint` `10.1.0` → `10.2.0`
|
|
46
|
+
- `eslint-plugin-jsdoc` `^62.8.1` → `^62.9.0`
|
|
47
|
+
- `eslint-plugin-svelte` `^3.16.0` → `^3.17.0`
|
|
48
|
+
- `playwright` `^1.58.2` → `^1.59.1`
|
|
49
|
+
- `posthog-js` `^1.364.2` → `^1.367.0`
|
|
50
|
+
|
|
51
|
+
## Security
|
|
52
|
+
|
|
53
|
+
- Added transitive dependency override for `lodash-es` `v4.18.1` in order to mitigate CVE-2026-4800 and CVE-2026-2950.
|
|
54
|
+
- Updated transitive dependency override for `basic-ftp` to `v5.2.1` in order to mitigate CVE-2026-39983.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## [1.26.18] - 2026-03-30
|
|
59
|
+
|
|
60
|
+
### Changed
|
|
61
|
+
|
|
62
|
+
- Bumped project version to `v1.26.18`.
|
|
63
|
+
- Updated dependencies:
|
|
64
|
+
- `svelte-check` `^4.4.5` → `^4.4.6`
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
|
|
68
|
+
- Removed `typescript` from the list of updated dependencies in release `v1.26.17`, as it was not updated due to a lack of SvelteKit support.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
27
72
|
## [1.26.17] - 2026-03-30
|
|
28
73
|
|
|
29
74
|
### Changed
|
|
@@ -45,7 +90,6 @@ version increments reflecting both user-visible and operational impact.
|
|
|
45
90
|
- `posthog-js` `^1.363.1` → `^1.364.2`
|
|
46
91
|
- `stylelint` `^17.5.0` → `^17.6.0`
|
|
47
92
|
- `svelte` `5.54.0` → `5.55.1`
|
|
48
|
-
- `typescript` `^5.9.3` → `^6.0.2`
|
|
49
93
|
- `markdownlint-cli2` `0.21.0` → `0.22.0`
|
|
50
94
|
|
|
51
95
|
### Fixed
|
|
@@ -2610,7 +2654,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2610
2654
|
|
|
2611
2655
|
<!-- Link references -->
|
|
2612
2656
|
|
|
2613
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.
|
|
2657
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.19...HEAD
|
|
2658
|
+
[1.26.19]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.19
|
|
2659
|
+
[1.26.18]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.18
|
|
2614
2660
|
[1.26.17]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.17
|
|
2615
2661
|
[1.26.16]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.16
|
|
2616
2662
|
[1.26.15]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.15
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.26.
|
|
4
|
+
"version": "1.26.19",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advocacy",
|
|
@@ -90,37 +90,37 @@
|
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
92
|
"dompurify": "^3.3.3",
|
|
93
|
-
"posthog-js": "^1.
|
|
93
|
+
"posthog-js": "^1.367.0",
|
|
94
94
|
"semver": "^7.7.4",
|
|
95
|
-
"svelte": "5.55.
|
|
95
|
+
"svelte": "5.55.2"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@eslint/compat": "^2.0.
|
|
98
|
+
"@eslint/compat": "^2.0.5",
|
|
99
99
|
"@eslint/js": "10.0.1",
|
|
100
100
|
"@lhci/cli": "^0.15.1",
|
|
101
|
-
"@playwright/test": "^1.
|
|
101
|
+
"@playwright/test": "^1.59.1",
|
|
102
102
|
"@sveltejs/adapter-netlify": "^6.0.4",
|
|
103
103
|
"@sveltejs/adapter-vercel": "^6.3.3",
|
|
104
|
-
"@sveltejs/kit": "2.
|
|
104
|
+
"@sveltejs/kit": "2.57.1",
|
|
105
105
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
106
106
|
"@testing-library/jest-dom": "^6.9.1",
|
|
107
107
|
"@testing-library/svelte": "^5.3.1",
|
|
108
|
-
"@vitest/coverage-v8": "4.1.
|
|
108
|
+
"@vitest/coverage-v8": "4.1.4",
|
|
109
109
|
"autoprefixer": "^10.4.27",
|
|
110
|
-
"browserslist": "^4.28.
|
|
111
|
-
"eslint": "10.
|
|
110
|
+
"browserslist": "^4.28.2",
|
|
111
|
+
"eslint": "10.2.0",
|
|
112
112
|
"eslint-config-prettier": "^10.1.8",
|
|
113
|
-
"eslint-plugin-jsdoc": "^62.
|
|
114
|
-
"eslint-plugin-svelte": "^3.
|
|
113
|
+
"eslint-plugin-jsdoc": "^62.9.0",
|
|
114
|
+
"eslint-plugin-svelte": "^3.17.0",
|
|
115
115
|
"globals": "^17.4.0",
|
|
116
116
|
"globby": "^16.2.0",
|
|
117
|
-
"jsdom": "29.0.
|
|
117
|
+
"jsdom": "29.0.2",
|
|
118
118
|
"lightningcss": "^1.32.0",
|
|
119
119
|
"markdownlint": "^0.40.0",
|
|
120
120
|
"markdownlint-cli2": "0.22.0",
|
|
121
121
|
"npm-run-all": "^4.1.5",
|
|
122
|
-
"playwright": "^1.
|
|
123
|
-
"postcss": "^8.5.
|
|
122
|
+
"playwright": "^1.59.1",
|
|
123
|
+
"postcss": "^8.5.9",
|
|
124
124
|
"prettier": "3.8.1",
|
|
125
125
|
"prettier-plugin-svelte": "^3.5.1",
|
|
126
126
|
"simple-git-hooks": "^2.13.1",
|
|
@@ -128,21 +128,22 @@
|
|
|
128
128
|
"stylelint-config-html": "^1.1.0",
|
|
129
129
|
"stylelint-config-recommended": "^18.0.0",
|
|
130
130
|
"stylelint-order": "^8.1.1",
|
|
131
|
-
"svelte-check": "^4.4.
|
|
131
|
+
"svelte-check": "^4.4.6",
|
|
132
132
|
"svelte-eslint-parser": "^1.6.0",
|
|
133
133
|
"svelte-preprocess": "^6.0.3",
|
|
134
134
|
"typescript": "5.9.3",
|
|
135
|
-
"vite": "^8.0.
|
|
135
|
+
"vite": "^8.0.8",
|
|
136
136
|
"vite-plugin-devtools-json": "^1.0.0",
|
|
137
137
|
"vite-plugin-lightningcss": "^0.0.5",
|
|
138
|
-
"vitest": "4.1.
|
|
138
|
+
"vitest": "4.1.4"
|
|
139
139
|
},
|
|
140
140
|
"overrides": {
|
|
141
|
-
"basic-ftp": "^5.2.
|
|
142
|
-
"cookie": "^1.
|
|
141
|
+
"basic-ftp": "^5.2.1",
|
|
142
|
+
"cookie": "^1.1.1",
|
|
143
143
|
"glob": "^11.1.0",
|
|
144
144
|
"js-yaml": "^4.1.1",
|
|
145
|
-
"lodash": "^4.
|
|
145
|
+
"lodash": "^4.18.1",
|
|
146
|
+
"lodash-es": "^4.18.1",
|
|
146
147
|
"minimatch": ">=10.2.1",
|
|
147
148
|
"picomatch": ">=4.0.4",
|
|
148
149
|
"qs": "^6.14.1",
|