@networkpro/web 1.25.18 → 1.25.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/backup-branch.yml +1 -1
- package/.github/workflows/build-and-publish.yml +5 -5
- package/.github/workflows/dependency-review.yml +1 -1
- package/.github/workflows/lighthouse.yml +1 -1
- package/.github/workflows/meta-check.yml +1 -1
- package/.github/workflows/playwright.yml +1 -1
- package/.github/workflows/probely-scan.yml +1 -1
- package/.github/workflows/publish-test.yml +5 -5
- package/.github/workflows/secret-scan.yml +2 -2
- package/.github/workflows/templates/publish.template.yml +5 -5
- package/.ncurc.cjs +1 -1
- package/.node-version +1 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +39 -1
- package/README.md +1 -1
- package/package.json +12 -12
- package/vitest-setup-client.js +0 -2
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
|
|
34
34
|
steps:
|
|
35
35
|
- name: Checkout repository
|
|
36
|
-
uses: actions/checkout@
|
|
36
|
+
uses: actions/checkout@v6
|
|
37
37
|
|
|
38
38
|
- name: Set up Node.js
|
|
39
39
|
uses: actions/setup-node@v6
|
|
@@ -80,7 +80,7 @@ jobs:
|
|
|
80
80
|
|
|
81
81
|
- name: Upload JSDoc results
|
|
82
82
|
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
83
|
-
uses: actions/upload-artifact@
|
|
83
|
+
uses: actions/upload-artifact@v6
|
|
84
84
|
with:
|
|
85
85
|
name: jsdoc-lint-results
|
|
86
86
|
path: jsdoc-lint-output.txt
|
|
@@ -95,7 +95,7 @@ jobs:
|
|
|
95
95
|
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
|
|
96
96
|
|
|
97
97
|
- name: Upload source archive
|
|
98
|
-
uses: actions/upload-artifact@
|
|
98
|
+
uses: actions/upload-artifact@v6
|
|
99
99
|
with:
|
|
100
100
|
name: clean-source
|
|
101
101
|
path: clean-source.tar.gz
|
|
@@ -108,7 +108,7 @@ jobs:
|
|
|
108
108
|
|
|
109
109
|
steps:
|
|
110
110
|
- name: Download clean source archive
|
|
111
|
-
uses: actions/download-artifact@
|
|
111
|
+
uses: actions/download-artifact@v7
|
|
112
112
|
with:
|
|
113
113
|
name: clean-source
|
|
114
114
|
path: ./
|
|
@@ -164,7 +164,7 @@ jobs:
|
|
|
164
164
|
|
|
165
165
|
steps:
|
|
166
166
|
- name: Download clean source archive
|
|
167
|
-
uses: actions/download-artifact@
|
|
167
|
+
uses: actions/download-artifact@v7
|
|
168
168
|
with:
|
|
169
169
|
name: clean-source
|
|
170
170
|
path: ./
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
|
|
32
32
|
steps:
|
|
33
33
|
- name: Checkout repository
|
|
34
|
-
uses: actions/checkout@
|
|
34
|
+
uses: actions/checkout@v6
|
|
35
35
|
|
|
36
36
|
- name: Set up Node.js
|
|
37
37
|
uses: actions/setup-node@v6
|
|
@@ -79,7 +79,7 @@ jobs:
|
|
|
79
79
|
|
|
80
80
|
- name: Upload JSDoc results
|
|
81
81
|
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
82
|
-
uses: actions/upload-artifact@
|
|
82
|
+
uses: actions/upload-artifact@v6
|
|
83
83
|
with:
|
|
84
84
|
name: jsdoc-lint-results
|
|
85
85
|
path: jsdoc-lint-output.txt
|
|
@@ -94,7 +94,7 @@ jobs:
|
|
|
94
94
|
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
|
|
95
95
|
|
|
96
96
|
- name: Upload source archive
|
|
97
|
-
uses: actions/upload-artifact@
|
|
97
|
+
uses: actions/upload-artifact@v6
|
|
98
98
|
with:
|
|
99
99
|
name: clean-source
|
|
100
100
|
path: clean-source.tar.gz
|
|
@@ -107,7 +107,7 @@ jobs:
|
|
|
107
107
|
|
|
108
108
|
steps:
|
|
109
109
|
- name: Download clean source archive
|
|
110
|
-
uses: actions/download-artifact@
|
|
110
|
+
uses: actions/download-artifact@v7
|
|
111
111
|
with:
|
|
112
112
|
name: clean-source
|
|
113
113
|
path: ./
|
|
@@ -168,7 +168,7 @@ jobs:
|
|
|
168
168
|
|
|
169
169
|
steps:
|
|
170
170
|
- name: Download clean source archive
|
|
171
|
-
uses: actions/download-artifact@
|
|
171
|
+
uses: actions/download-artifact@v7
|
|
172
172
|
with:
|
|
173
173
|
name: clean-source
|
|
174
174
|
path: ./
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
# ---------------------------------------------------------------------
|
|
28
28
|
# Checkout the full repo history (needed for Gitleaks to scan all commits)
|
|
29
29
|
# ---------------------------------------------------------------------
|
|
30
|
-
- uses: actions/checkout@
|
|
30
|
+
- uses: actions/checkout@v6
|
|
31
31
|
with:
|
|
32
32
|
fetch-depth: 0
|
|
33
33
|
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
50
50
|
# ---------------------------------------------------------------------
|
|
51
51
|
- name: Upload Gitleaks Report
|
|
52
52
|
if: always() && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
|
|
53
|
-
uses: actions/upload-artifact@
|
|
53
|
+
uses: actions/upload-artifact@v6
|
|
54
54
|
with:
|
|
55
55
|
name: gitleaks-report
|
|
56
56
|
path: gitleaks-report.json
|
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
|
|
42
42
|
steps:
|
|
43
43
|
- name: Checkout repository
|
|
44
|
-
uses: actions/checkout@
|
|
44
|
+
uses: actions/checkout@v6
|
|
45
45
|
|
|
46
46
|
- name: Set up Node.js
|
|
47
47
|
uses: actions/setup-node@v6
|
|
@@ -84,7 +84,7 @@ jobs:
|
|
|
84
84
|
|
|
85
85
|
- name: Upload JSDoc results
|
|
86
86
|
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
87
|
-
uses: actions/upload-artifact@
|
|
87
|
+
uses: actions/upload-artifact@v6
|
|
88
88
|
with:
|
|
89
89
|
name: jsdoc-lint-results
|
|
90
90
|
path: jsdoc-lint-output.txt
|
|
@@ -99,7 +99,7 @@ jobs:
|
|
|
99
99
|
run: git archive --format=tar.gz --output=clean-source.tar.gz HEAD
|
|
100
100
|
|
|
101
101
|
- name: Upload source archive
|
|
102
|
-
uses: actions/upload-artifact@
|
|
102
|
+
uses: actions/upload-artifact@v6
|
|
103
103
|
with:
|
|
104
104
|
name: clean-source
|
|
105
105
|
path: clean-source.tar.gz
|
|
@@ -112,7 +112,7 @@ jobs:
|
|
|
112
112
|
|
|
113
113
|
steps:
|
|
114
114
|
- name: Download clean source archive
|
|
115
|
-
uses: actions/download-artifact@
|
|
115
|
+
uses: actions/download-artifact@v7
|
|
116
116
|
with:
|
|
117
117
|
name: clean-source
|
|
118
118
|
path: ./
|
|
@@ -168,7 +168,7 @@ jobs:
|
|
|
168
168
|
|
|
169
169
|
steps:
|
|
170
170
|
- name: Download clean source archive
|
|
171
|
-
uses: actions/download-artifact@
|
|
171
|
+
uses: actions/download-artifact@v7
|
|
172
172
|
with:
|
|
173
173
|
name: clean-source
|
|
174
174
|
path: ./
|
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: ['vitest', '@vitest/coverage-v8'
|
|
34
|
+
reject: ['vitest', '@vitest/coverage-v8'],
|
|
35
35
|
|
|
36
36
|
// Always upgrade devDependencies as well
|
|
37
37
|
dep: 'prod,dev',
|
package/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.
|
|
1
|
+
24.12.0
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.
|
|
1
|
+
24.12.0
|
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,43 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.25.19] - 2025-12-24
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Updated GitHub workflows to utilize `actions/checkout@v6`, `actions/upload-artifact@v6`, and `actions/download-artifact@v7`:
|
|
30
|
+
- `.github/workflows/templates/publish.template.yml`
|
|
31
|
+
- `.github/workflows/backup-branch.yml`
|
|
32
|
+
- `.github/workflows/build-and-publish.yml`
|
|
33
|
+
- `.github/workflows/dependency-review.yml`
|
|
34
|
+
- `.github/workflows/lighthouse.yml`
|
|
35
|
+
- `.github/workflows/meta-check.yml`
|
|
36
|
+
- `.github/workflows/playwright.yml`
|
|
37
|
+
- `.github/workflows/probely-scan.yml`
|
|
38
|
+
- `.github/workflows/publish-test.yml`
|
|
39
|
+
- `.github/workflows/secret-scan.yml`
|
|
40
|
+
- Corrected `README.md` to properly state that subsites are hosted on Vercel and Netlify.
|
|
41
|
+
- Updated `.node-version` and `.nvmrc` to utilize **Node.js** `v24.12.0`.
|
|
42
|
+
- Bumped project version to `v1.25.19`.
|
|
43
|
+
- Updated dependencies:
|
|
44
|
+
- `@eslint/js` `^9.39.1` → `^9.39.2`
|
|
45
|
+
- `@testing-library/svelte` `^5.2.9` → `^5.3.0`
|
|
46
|
+
- `autoprefixer` `^10.4.22` → `^10.4.23`
|
|
47
|
+
- `eslint` `^9.39.1` → `^9.39.2`
|
|
48
|
+
- `prettier-plugin-svelte` `^3.4.0` → `^3.4.1`
|
|
49
|
+
- `svelte-check` `^4.3.4` → `^4.3.5`
|
|
50
|
+
- `globby` `^16.0.0` → `^16.1.0`
|
|
51
|
+
- `posthog-js` `^1.305.0` → `^1.310.1`
|
|
52
|
+
- `svelte` `5.45.9` → `5.46.1`
|
|
53
|
+
- `vite` `^7.2.7` → `^7.3.0`
|
|
54
|
+
- `vite-tsconfig-paths` `^5.1.4` → `^6.0.3`
|
|
55
|
+
|
|
56
|
+
## Removed
|
|
57
|
+
|
|
58
|
+
- Removed `/* eslint-env vitest */` comment from `vitest-setup-client.js`, as it was causing an ESLint warning.
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
25
62
|
## [1.25.18] - 2025-12-11
|
|
26
63
|
|
|
27
64
|
### Changed
|
|
@@ -2040,7 +2077,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2040
2077
|
|
|
2041
2078
|
<!-- Link references -->
|
|
2042
2079
|
|
|
2043
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
2080
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.19...HEAD
|
|
2081
|
+
[1.25.19]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.19
|
|
2044
2082
|
[1.25.18]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.18
|
|
2045
2083
|
[1.25.17]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.17
|
|
2046
2084
|
[1.25.16]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.16
|
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ This file is part of Network Pro.
|
|
|
24
24
|
This GitHub repository powers the official web presence of **[Network Pro Strategies](https://netwk.pro/about)** — a privacy-first consultancy specializing in cybersecurity, network engineering, and information security. We also lead public advocacy efforts promoting digital privacy and responsible cyber policy.
|
|
25
25
|
|
|
26
26
|
Built with [SvelteKit](https://kit.svelte.dev/) and deployed via [Vercel](https://vercel.com/).
|
|
27
|
-
[Blog](https://github.com/netwk-pro/blog) and [documentation](https://github.com/netwk-pro/docs) subsites built with [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) and deployed via [
|
|
27
|
+
[Blog](https://github.com/netwk-pro/blog) and [documentation](https://github.com/netwk-pro/docs) subsites built with [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) and deployed via [Vercel](https://vercel.com/) and [Netlify](https://netlify.com/).
|
|
28
28
|
|
|
29
29
|
All infrastructure and data flows are designed with **maximum transparency, self-hosting, and user privacy** in mind.
|
|
30
30
|
|
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.19",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -86,13 +86,13 @@
|
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"dompurify": "^3.3.1",
|
|
89
|
-
"posthog-js": "^1.
|
|
89
|
+
"posthog-js": "^1.310.1",
|
|
90
90
|
"semver": "^7.7.3",
|
|
91
|
-
"svelte": "5.
|
|
91
|
+
"svelte": "5.46.1"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@eslint/compat": "^2.0.0",
|
|
95
|
-
"@eslint/js": "^9.39.
|
|
95
|
+
"@eslint/js": "^9.39.2",
|
|
96
96
|
"@lhci/cli": "^0.15.1",
|
|
97
97
|
"@playwright/test": "^1.57.0",
|
|
98
98
|
"@sveltejs/adapter-netlify": "^5.2.4",
|
|
@@ -100,16 +100,16 @@
|
|
|
100
100
|
"@sveltejs/kit": "2.49.2",
|
|
101
101
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
102
102
|
"@testing-library/jest-dom": "^6.9.1",
|
|
103
|
-
"@testing-library/svelte": "^5.
|
|
103
|
+
"@testing-library/svelte": "^5.3.0",
|
|
104
104
|
"@vitest/coverage-v8": "3.2.4",
|
|
105
|
-
"autoprefixer": "^10.4.
|
|
105
|
+
"autoprefixer": "^10.4.23",
|
|
106
106
|
"browserslist": "^4.28.1",
|
|
107
|
-
"eslint": "^9.39.
|
|
107
|
+
"eslint": "^9.39.2",
|
|
108
108
|
"eslint-config-prettier": "^10.1.8",
|
|
109
109
|
"eslint-plugin-jsdoc": "^61.5.0",
|
|
110
110
|
"eslint-plugin-svelte": "^3.13.1",
|
|
111
111
|
"globals": "^16.5.0",
|
|
112
|
-
"globby": "^16.
|
|
112
|
+
"globby": "^16.1.0",
|
|
113
113
|
"jsdom": "27.3.0",
|
|
114
114
|
"lightningcss": "^1.30.2",
|
|
115
115
|
"markdownlint": "^0.40.0",
|
|
@@ -118,20 +118,20 @@
|
|
|
118
118
|
"playwright": "^1.57.0",
|
|
119
119
|
"postcss": "^8.5.6",
|
|
120
120
|
"prettier": "3.7.4",
|
|
121
|
-
"prettier-plugin-svelte": "^3.4.
|
|
121
|
+
"prettier-plugin-svelte": "^3.4.1",
|
|
122
122
|
"simple-git-hooks": "^2.13.1",
|
|
123
123
|
"stylelint": "^16.26.1",
|
|
124
124
|
"stylelint-config-html": "^1.1.0",
|
|
125
125
|
"stylelint-config-recommended": "^17.0.0",
|
|
126
126
|
"stylelint-order": "^7.0.0",
|
|
127
|
-
"svelte-check": "^4.3.
|
|
127
|
+
"svelte-check": "^4.3.5",
|
|
128
128
|
"svelte-eslint-parser": "^1.4.1",
|
|
129
129
|
"svelte-preprocess": "^6.0.3",
|
|
130
130
|
"typescript": "^5.9.3",
|
|
131
|
-
"vite": "^7.
|
|
131
|
+
"vite": "^7.3.0",
|
|
132
132
|
"vite-plugin-devtools-json": "^1.0.0",
|
|
133
133
|
"vite-plugin-lightningcss": "^0.0.5",
|
|
134
|
-
"vite-tsconfig-paths": "^
|
|
134
|
+
"vite-tsconfig-paths": "^6.0.3",
|
|
135
135
|
"vitest": "3.2.4"
|
|
136
136
|
},
|
|
137
137
|
"overrides": {
|
package/vitest-setup-client.js
CHANGED
|
@@ -5,8 +5,6 @@ SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
|
5
5
|
This file is part of Network Pro.
|
|
6
6
|
========================================================================= */
|
|
7
7
|
|
|
8
|
-
/* eslint-env vitest */
|
|
9
|
-
|
|
10
8
|
import '@testing-library/jest-dom/vitest';
|
|
11
9
|
import { cleanup } from '@testing-library/svelte';
|
|
12
10
|
import { afterEach, vi } from 'vitest';
|