@networkpro/web 1.26.16 → 1.26.17
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/build-and-publish.yml +3 -3
- package/.github/workflows/lighthouse.yml +1 -1
- package/.github/workflows/playwright.yml +1 -1
- package/.github/workflows/publish-test.yml +3 -3
- package/.github/workflows/templates/publish.template.yml +3 -3
- package/.ncurc.cjs +1 -1
- package/.node-version +1 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +37 -1
- package/cspell.json +1 -0
- package/package.json +19 -13
- package/vite.config.js +9 -9
|
@@ -45,7 +45,7 @@ jobs:
|
|
|
45
45
|
- name: Upgrade npm
|
|
46
46
|
run: |
|
|
47
47
|
corepack enable
|
|
48
|
-
npm install -g npm@11.12.
|
|
48
|
+
npm install -g npm@11.12.1
|
|
49
49
|
|
|
50
50
|
- name: Install Node.js dependencies
|
|
51
51
|
run: npm ci
|
|
@@ -130,7 +130,7 @@ jobs:
|
|
|
130
130
|
- name: Upgrade npm
|
|
131
131
|
run: |
|
|
132
132
|
corepack enable
|
|
133
|
-
npm install -g npm@11.12.
|
|
133
|
+
npm install -g npm@11.12.1
|
|
134
134
|
|
|
135
135
|
- name: Install Node.js dependencies
|
|
136
136
|
run: npm ci
|
|
@@ -186,7 +186,7 @@ jobs:
|
|
|
186
186
|
- name: Upgrade npm
|
|
187
187
|
run: |
|
|
188
188
|
corepack enable
|
|
189
|
-
npm install -g npm@11.12.
|
|
189
|
+
npm install -g npm@11.12.1
|
|
190
190
|
|
|
191
191
|
- name: Install Node.js dependencies
|
|
192
192
|
run: npm ci
|
|
@@ -48,7 +48,7 @@ jobs:
|
|
|
48
48
|
- name: Upgrade npm
|
|
49
49
|
run: |
|
|
50
50
|
corepack enable
|
|
51
|
-
npm install -g npm@11.12.
|
|
51
|
+
npm install -g npm@11.12.1
|
|
52
52
|
|
|
53
53
|
- name: Install Node.js dependencies
|
|
54
54
|
run: npm ci
|
|
@@ -134,7 +134,7 @@ jobs:
|
|
|
134
134
|
- name: Upgrade npm
|
|
135
135
|
run: |
|
|
136
136
|
corepack enable
|
|
137
|
-
npm install -g npm@11.12.
|
|
137
|
+
npm install -g npm@11.12.1
|
|
138
138
|
|
|
139
139
|
- name: Install Node.js dependencies
|
|
140
140
|
run: npm ci
|
|
@@ -195,7 +195,7 @@ jobs:
|
|
|
195
195
|
- name: Upgrade npm
|
|
196
196
|
run: |
|
|
197
197
|
corepack enable
|
|
198
|
-
npm install -g npm@11.12.
|
|
198
|
+
npm install -g npm@11.12.1
|
|
199
199
|
|
|
200
200
|
- name: Install Node.js dependencies
|
|
201
201
|
run: npm ci
|
|
@@ -53,7 +53,7 @@ jobs:
|
|
|
53
53
|
- name: Upgrade npm
|
|
54
54
|
run: |
|
|
55
55
|
corepack enable
|
|
56
|
-
npm install -g npm@11.12.
|
|
56
|
+
npm install -g npm@11.12.1
|
|
57
57
|
|
|
58
58
|
- name: Install Node.js dependencies
|
|
59
59
|
run: npm ci
|
|
@@ -134,7 +134,7 @@ jobs:
|
|
|
134
134
|
- name: Upgrade npm
|
|
135
135
|
run: |
|
|
136
136
|
corepack enable
|
|
137
|
-
npm install -g npm@11.12.
|
|
137
|
+
npm install -g npm@11.12.1
|
|
138
138
|
|
|
139
139
|
- name: Install Node.js dependencies
|
|
140
140
|
run: npm ci
|
|
@@ -190,7 +190,7 @@ jobs:
|
|
|
190
190
|
- name: Upgrade npm
|
|
191
191
|
run: |
|
|
192
192
|
corepack enable
|
|
193
|
-
npm install -g npm@11.12.
|
|
193
|
+
npm install -g npm@11.12.1
|
|
194
194
|
|
|
195
195
|
- name: Install Node.js dependencies
|
|
196
196
|
run: npm ci
|
package/.ncurc.cjs
CHANGED
|
@@ -31,7 +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: [],
|
|
34
|
+
reject: ['typescript'],
|
|
35
35
|
|
|
36
36
|
// Always upgrade devDependencies as well
|
|
37
37
|
dep: 'prod,dev',
|
package/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.14.
|
|
1
|
+
24.14.1
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.14.
|
|
1
|
+
24.14.1
|
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,41 @@ version increments reflecting both user-visible and operational impact.
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
+
## [1.26.17] - 2026-03-30
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Added `typescript` to the `npm-check-updates` reject list in `.ncurc.cjs` to prevent automatic upgrades to TypeScript 6 until SvelteKit supports it.
|
|
32
|
+
- Updated all **GitHub Actions** workflows to utilize **npm** `11.12.1`.
|
|
33
|
+
- Updated `.nvmrc` and `.node-version` to utilize **Node.js** `v24.14.1`.
|
|
34
|
+
- Bumped project version to `v1.26.17`.
|
|
35
|
+
- Re-added `vite-plugin-devtools-json` to `devDependencies`.
|
|
36
|
+
- Added `vite-plugin-devtools-json` override section to allow the plugin to operate properly with **Vite 8**.
|
|
37
|
+
- Restored pre-existing `vite-plugin-devtools-json` configuration in `vite.config.js`.
|
|
38
|
+
- Updated dependencies:
|
|
39
|
+
- `@vitest/coverage-v8` `4.1.0` → `4.1.2`
|
|
40
|
+
- `eslint-plugin-jsdoc` `^62.8.0` → `^62.8.1`
|
|
41
|
+
- `vite` `^8.0.1` → `^8.0.3`
|
|
42
|
+
- `vitest` `4.1.0` → `4.1.2`
|
|
43
|
+
- `eslint-plugin-svelte` `^3.15.2` → `^3.16.0`
|
|
44
|
+
- `globby` `^16.1.1` → `^16.2.0`
|
|
45
|
+
- `posthog-js` `^1.363.1` → `^1.364.2`
|
|
46
|
+
- `stylelint` `^17.5.0` → `^17.6.0`
|
|
47
|
+
- `svelte` `5.54.0` → `5.55.1`
|
|
48
|
+
- `typescript` `^5.9.3` → `^6.0.2`
|
|
49
|
+
- `markdownlint-cli2` `0.21.0` → `0.22.0`
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
|
|
53
|
+
- Resolved an `npm audit` warning caused by the transitive `smol-toml` dependency used by `markdownlint-cli2` by adding an npm override to require `smol-toml >=1.6.1`.
|
|
54
|
+
- Fixed an `npm install` dependency resolution failure by pinning `typescript` to `5.9.3`, which is compatible with `@sveltejs/kit@2.55.0`.
|
|
55
|
+
|
|
56
|
+
### Security
|
|
57
|
+
|
|
58
|
+
- Pinned transitive dependency `picomatch` to `>=4.0.4` to mitigate CVE-2026-33672.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
27
62
|
## [1.26.16] - 2026-03-20
|
|
28
63
|
|
|
29
64
|
### Changed
|
|
@@ -2575,7 +2610,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2575
2610
|
|
|
2576
2611
|
<!-- Link references -->
|
|
2577
2612
|
|
|
2578
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.
|
|
2613
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.17...HEAD
|
|
2614
|
+
[1.26.17]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.17
|
|
2579
2615
|
[1.26.16]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.16
|
|
2580
2616
|
[1.26.15]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.15
|
|
2581
2617
|
[1.26.14]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.14
|
package/cspell.json
CHANGED
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.17",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advocacy",
|
|
@@ -90,9 +90,9 @@
|
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
92
|
"dompurify": "^3.3.3",
|
|
93
|
-
"posthog-js": "^1.
|
|
93
|
+
"posthog-js": "^1.364.2",
|
|
94
94
|
"semver": "^7.7.4",
|
|
95
|
-
"svelte": "5.
|
|
95
|
+
"svelte": "5.55.1"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@eslint/compat": "^2.0.3",
|
|
@@ -105,36 +105,37 @@
|
|
|
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.2",
|
|
109
109
|
"autoprefixer": "^10.4.27",
|
|
110
110
|
"browserslist": "^4.28.1",
|
|
111
111
|
"eslint": "10.1.0",
|
|
112
112
|
"eslint-config-prettier": "^10.1.8",
|
|
113
|
-
"eslint-plugin-jsdoc": "^62.8.
|
|
114
|
-
"eslint-plugin-svelte": "^3.
|
|
113
|
+
"eslint-plugin-jsdoc": "^62.8.1",
|
|
114
|
+
"eslint-plugin-svelte": "^3.16.0",
|
|
115
115
|
"globals": "^17.4.0",
|
|
116
|
-
"globby": "^16.
|
|
116
|
+
"globby": "^16.2.0",
|
|
117
117
|
"jsdom": "29.0.1",
|
|
118
118
|
"lightningcss": "^1.32.0",
|
|
119
119
|
"markdownlint": "^0.40.0",
|
|
120
|
-
"markdownlint-cli2": "0.
|
|
120
|
+
"markdownlint-cli2": "0.22.0",
|
|
121
121
|
"npm-run-all": "^4.1.5",
|
|
122
122
|
"playwright": "^1.58.2",
|
|
123
123
|
"postcss": "^8.5.8",
|
|
124
124
|
"prettier": "3.8.1",
|
|
125
125
|
"prettier-plugin-svelte": "^3.5.1",
|
|
126
126
|
"simple-git-hooks": "^2.13.1",
|
|
127
|
-
"stylelint": "^17.
|
|
127
|
+
"stylelint": "^17.6.0",
|
|
128
128
|
"stylelint-config-html": "^1.1.0",
|
|
129
129
|
"stylelint-config-recommended": "^18.0.0",
|
|
130
130
|
"stylelint-order": "^8.1.1",
|
|
131
131
|
"svelte-check": "^4.4.5",
|
|
132
132
|
"svelte-eslint-parser": "^1.6.0",
|
|
133
133
|
"svelte-preprocess": "^6.0.3",
|
|
134
|
-
"typescript": "
|
|
135
|
-
"vite": "^8.0.
|
|
134
|
+
"typescript": "5.9.3",
|
|
135
|
+
"vite": "^8.0.3",
|
|
136
|
+
"vite-plugin-devtools-json": "^1.0.0",
|
|
136
137
|
"vite-plugin-lightningcss": "^0.0.5",
|
|
137
|
-
"vitest": "4.1.
|
|
138
|
+
"vitest": "4.1.2"
|
|
138
139
|
},
|
|
139
140
|
"overrides": {
|
|
140
141
|
"basic-ftp": "^5.2.0",
|
|
@@ -143,8 +144,13 @@
|
|
|
143
144
|
"js-yaml": "^4.1.1",
|
|
144
145
|
"lodash": "^4.17.23",
|
|
145
146
|
"minimatch": ">=10.2.1",
|
|
147
|
+
"picomatch": ">=4.0.4",
|
|
146
148
|
"qs": "^6.14.1",
|
|
147
149
|
"tar": "^7.5.11",
|
|
148
|
-
"tmp": "^0.2.4"
|
|
150
|
+
"tmp": "^0.2.4",
|
|
151
|
+
"smol-toml": ">=1.6.1",
|
|
152
|
+
"vite-plugin-devtools-json": {
|
|
153
|
+
"vite": "$vite"
|
|
154
|
+
}
|
|
149
155
|
}
|
|
150
156
|
}
|
package/vite.config.js
CHANGED
|
@@ -7,14 +7,14 @@ This file is part of Network Pro.
|
|
|
7
7
|
========================================================================= */
|
|
8
8
|
|
|
9
9
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
import { resolve } from 'node:path';
|
|
11
|
+
import { fileURLToPath } from 'node:url';
|
|
12
12
|
import { defineConfig } from 'vite';
|
|
13
|
-
|
|
13
|
+
import devtoolsJson from 'vite-plugin-devtools-json';
|
|
14
14
|
import lightningcssPlugin from 'vite-plugin-lightningcss';
|
|
15
15
|
|
|
16
16
|
// Compute absolute project root
|
|
17
|
-
|
|
17
|
+
const projectRoot = fileURLToPath(new URL('.', import.meta.url));
|
|
18
18
|
|
|
19
19
|
export default defineConfig(({ mode }) => {
|
|
20
20
|
// --- 🧩 Log Build Environment Info -------------------------------------
|
|
@@ -52,11 +52,11 @@ export default defineConfig(({ mode }) => {
|
|
|
52
52
|
tsconfigPaths: true,
|
|
53
53
|
},
|
|
54
54
|
plugins: [
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
devtoolsJson({
|
|
56
|
+
projectRoot: resolve(projectRoot),
|
|
57
|
+
normalizeForWindowsContainer: true,
|
|
58
|
+
uuid: 'ad0db4f4-6172-4c1e-ae17-26b1bee53764',
|
|
59
|
+
}),
|
|
60
60
|
sveltekit(),
|
|
61
61
|
lightningcssPlugin({
|
|
62
62
|
minify: ['production', 'audit'].includes(mode),
|