@networkpro/web 1.25.20 β 1.25.22
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/secret-scan.yml +9 -5
- package/CHANGELOG.md +52 -2
- package/README.md +1 -1
- package/package.json +10 -9
- package/static/sitemap.xml +3 -3
- package/.svelte-kit/tsconfig.json +0 -52
|
@@ -14,10 +14,10 @@ on:
|
|
|
14
14
|
|
|
15
15
|
jobs:
|
|
16
16
|
gitleaks-scan:
|
|
17
|
+
if: github.actor != 'dependabot[bot]'
|
|
17
18
|
runs-on: ubuntu-24.04
|
|
18
19
|
permissions:
|
|
19
20
|
contents: read
|
|
20
|
-
security-events: write
|
|
21
21
|
issues: write
|
|
22
22
|
env:
|
|
23
23
|
CODEQL_ACTION_ANALYSIS_KEY: gitleaks
|
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
# (either not a PR, or a PR from the same repo)
|
|
50
50
|
# ---------------------------------------------------------------------
|
|
51
51
|
- name: Upload Gitleaks Report
|
|
52
|
-
if: always() && (github.event.pull_request.head.repo.full_name == github.repository
|
|
52
|
+
if: always() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
|
|
53
53
|
uses: actions/upload-artifact@v6
|
|
54
54
|
with:
|
|
55
55
|
name: gitleaks-report
|
|
@@ -59,6 +59,10 @@ jobs:
|
|
|
59
59
|
# LAYER 1: Output redaction
|
|
60
60
|
# Public-safe summary β shows only secret descriptions, hides file paths.
|
|
61
61
|
# ---------------------------------------------------------------------
|
|
62
|
+
- name: Ensure jq is installed
|
|
63
|
+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
|
|
64
|
+
run: sudo apt-get update && sudo apt-get install -y jq
|
|
65
|
+
|
|
62
66
|
- name: Post Gitleaks summary
|
|
63
67
|
if: always()
|
|
64
68
|
run: |
|
|
@@ -91,7 +95,7 @@ jobs:
|
|
|
91
95
|
# Create issue only in trusted repo context (avoids using tokens on forks)
|
|
92
96
|
# ---------------------------------------------------------------------
|
|
93
97
|
- name: Create issue for detected secrets
|
|
94
|
-
if: failure() && (github.event.pull_request.head.repo.full_name == github.repository
|
|
98
|
+
if: failure() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
|
|
95
99
|
uses: actions/github-script@v7
|
|
96
100
|
with:
|
|
97
101
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -111,7 +115,7 @@ jobs:
|
|
|
111
115
|
# Send ntfy alert only for trusted repo context.
|
|
112
116
|
# ---------------------------------------------------------------------
|
|
113
117
|
- name: Send ntfy notification
|
|
114
|
-
if: failure() && (github.event.pull_request.head.repo.full_name == github.repository
|
|
118
|
+
if: failure() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
|
|
115
119
|
run: |
|
|
116
120
|
curl -d "π¨ Gitleaks found secrets in repo: $GITHUB_REPOSITORY on commit $GITHUB_SHA" \
|
|
117
|
-
|
|
121
|
+
https://ntfy.neteng.pro/${{ secrets.NTFY_TOPIC }}
|
package/CHANGELOG.md
CHANGED
|
@@ -24,6 +24,53 @@ version increments reflecting both user-visible and operational impact.
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
+
## [1.25.22] - 2026-01-01
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- Conditional guards to ensure artifacts, issues, and external notifications are only created when workflows run in a trusted context (non-PR runs or PRs originating from the same repository).
|
|
32
|
+
- Redacted, public-safe Gitleaks scan summaries in GitHub Actions step output to prevent accidental exposure of sensitive file paths or values.
|
|
33
|
+
- Optional installation of `jq` gated to trusted execution contexts to support future structured output (e.g., SARIF) while preserving fork safety.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- Updated the Gitleaks secret scanning workflow to explicitly exclude Dependabot pull requests, avoiding failures caused by unavailable organization secrets in bot-triggered PRs.
|
|
38
|
+
- Refined workflow trust boundaries to distinguish between forked pull requests and trusted repository contexts.
|
|
39
|
+
- Updated `.gitignore` to stop tracking generated `.svelte-kit` files.
|
|
40
|
+
- Bumped project version to `v1.25.22`.
|
|
41
|
+
- Updated dependencies:
|
|
42
|
+
- `stylelint-order` `^7.0.0` β `^7.0.1`
|
|
43
|
+
- `posthog-js` `^1.310.1` β `^1.313.0`
|
|
44
|
+
- `globals` `^16.5.0` β `^17.0.0`
|
|
45
|
+
|
|
46
|
+
### Removed
|
|
47
|
+
|
|
48
|
+
- Removed Mastodon verification in `src/routes/posts/+page.svelte`, as it was not functioning properly. This route will remain unverified.
|
|
49
|
+
|
|
50
|
+
### Security
|
|
51
|
+
|
|
52
|
+
- Hardened secret-handling logic in CI by preventing the use of organization-level secrets, write permissions, and external notifications in untrusted pull request contexts.
|
|
53
|
+
- Ensured Gitleaks license usage is restricted to safe execution paths, eliminating false-negative or false-positive failures caused by GitHub Actions secret scoping rules.
|
|
54
|
+
- Added transitive dependency override for `qs` to `^6.14.1`, in order to address CVE-2025-15284.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## [1.25.21] - 2025-12-27
|
|
59
|
+
|
|
60
|
+
### Added
|
|
61
|
+
|
|
62
|
+
- Added Mastodon verification to `src/routes/posts/+page.svelte` via `<svelte:head>`.
|
|
63
|
+
|
|
64
|
+
### Changed
|
|
65
|
+
|
|
66
|
+
- Updated intro paragraph of `README.md` to better reflect the company's current mission, focus, and messaging.
|
|
67
|
+
- Bumped project version to `v1.25.21`.
|
|
68
|
+
- Updated dependencies:
|
|
69
|
+
- `@testing-library/svelte` `^5.3.0` β `^5.3.1`
|
|
70
|
+
- `jsdom` `27.3.0` β `27.4.0`
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
27
74
|
## [1.25.20] - 2025-12-24
|
|
28
75
|
|
|
29
76
|
### Added
|
|
@@ -2074,7 +2121,7 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2074
2121
|
|
|
2075
2122
|
---
|
|
2076
2123
|
|
|
2077
|
-
## 1.12.0 β 2025-06-04
|
|
2124
|
+
## [1.12.0] β 2025-06-04
|
|
2078
2125
|
|
|
2079
2126
|
### Added
|
|
2080
2127
|
|
|
@@ -2102,7 +2149,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2102
2149
|
|
|
2103
2150
|
<!-- Link references -->
|
|
2104
2151
|
|
|
2105
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
2152
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.22...HEAD
|
|
2153
|
+
[1.25.22]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.22
|
|
2154
|
+
[1.25.21]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.21
|
|
2106
2155
|
[1.25.20]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.20
|
|
2107
2156
|
[1.25.19]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.19
|
|
2108
2157
|
[1.25.18]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.18
|
|
@@ -2173,5 +2222,6 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2173
2222
|
[1.12.4]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.4
|
|
2174
2223
|
[1.12.3]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.3
|
|
2175
2224
|
[1.12.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.1
|
|
2225
|
+
[1.12.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.0
|
|
2176
2226
|
|
|
2177
2227
|
<!-- cspell:ignore qrcode cryptom otphelp domcontentloaded -->
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This file is part of Network Pro.
|
|
|
21
21
|
|
|
22
22
|
## π Project Overview
|
|
23
23
|
|
|
24
|
-
This GitHub repository powers the official web presence of **[Network Pro Strategies](https://netwk.pro/about)** β a
|
|
24
|
+
This GitHub repository powers the official web presence of **[Network Pro Strategies](https://netwk.pro/about)** β a research- and infrastructure-focused technology initiative working across cybersecurity, digital systems, and privacy. Our work spans applied research and development, experimental infrastructure, educational tools and publications, and public advocacy for security- and privacy-respecting technology.
|
|
25
25
|
|
|
26
26
|
Built with [SvelteKit](https://kit.svelte.dev/) and deployed via [Vercel](https://vercel.com/).
|
|
27
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/).
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.25.
|
|
4
|
+
"version": "1.25.22",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidenceβ’ | Security, Networking, Privacy β Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
|
-
"advisory",
|
|
8
7
|
"consulting",
|
|
9
8
|
"cybersecurity",
|
|
10
9
|
"networking",
|
|
10
|
+
"policy",
|
|
11
11
|
"privacy",
|
|
12
12
|
"pwa",
|
|
13
13
|
"security",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"dompurify": "^3.3.1",
|
|
89
|
-
"posthog-js": "^1.
|
|
89
|
+
"posthog-js": "^1.313.0",
|
|
90
90
|
"semver": "^7.7.3",
|
|
91
91
|
"svelte": "5.46.1"
|
|
92
92
|
},
|
|
@@ -100,7 +100,7 @@
|
|
|
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.3.
|
|
103
|
+
"@testing-library/svelte": "^5.3.1",
|
|
104
104
|
"@vitest/coverage-v8": "3.2.4",
|
|
105
105
|
"autoprefixer": "^10.4.23",
|
|
106
106
|
"browserslist": "^4.28.1",
|
|
@@ -108,9 +108,9 @@
|
|
|
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
|
-
"globals": "^
|
|
111
|
+
"globals": "^17.0.0",
|
|
112
112
|
"globby": "^16.1.0",
|
|
113
|
-
"jsdom": "27.
|
|
113
|
+
"jsdom": "27.4.0",
|
|
114
114
|
"lightningcss": "^1.30.2",
|
|
115
115
|
"markdownlint": "^0.40.0",
|
|
116
116
|
"markdownlint-cli2": "0.20.0",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"stylelint": "^16.26.1",
|
|
124
124
|
"stylelint-config-html": "^1.1.0",
|
|
125
125
|
"stylelint-config-recommended": "^17.0.0",
|
|
126
|
-
"stylelint-order": "^7.0.
|
|
126
|
+
"stylelint-order": "^7.0.1",
|
|
127
127
|
"svelte-check": "^4.3.5",
|
|
128
128
|
"svelte-eslint-parser": "^1.4.1",
|
|
129
129
|
"svelte-preprocess": "^6.0.3",
|
|
@@ -138,7 +138,8 @@
|
|
|
138
138
|
"cookie": "^1.0.0",
|
|
139
139
|
"glob": "^11.1.0",
|
|
140
140
|
"js-yaml": "^4.1.1",
|
|
141
|
-
"
|
|
142
|
-
"
|
|
141
|
+
"qs": "^6.14.1",
|
|
142
|
+
"tar": "^7.5.2",
|
|
143
|
+
"tmp": "^0.2.4"
|
|
143
144
|
}
|
|
144
145
|
}
|
package/static/sitemap.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Sitemap last updated
|
|
2
|
+
<!-- Sitemap last updated 2026-01-01 -->
|
|
3
3
|
|
|
4
4
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
5
5
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<loc>https://netwk.pro</loc>
|
|
9
9
|
|
|
10
|
-
<lastmod>
|
|
10
|
+
<lastmod>2026-01-01</lastmod>
|
|
11
11
|
|
|
12
12
|
<changefreq>weekly</changefreq>
|
|
13
13
|
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
<loc>https://netwk.pro/about</loc>
|
|
33
33
|
|
|
34
|
-
<lastmod>2025-12-
|
|
34
|
+
<lastmod>2025-12-27</lastmod>
|
|
35
35
|
|
|
36
36
|
<changefreq>monthly</changefreq>
|
|
37
37
|
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"paths": {
|
|
4
|
-
"$lib": [
|
|
5
|
-
"../src/lib"
|
|
6
|
-
],
|
|
7
|
-
"$lib/*": [
|
|
8
|
-
"../src/lib/*"
|
|
9
|
-
],
|
|
10
|
-
"$app/types": [
|
|
11
|
-
"./types/index.d.ts"
|
|
12
|
-
]
|
|
13
|
-
},
|
|
14
|
-
"rootDirs": [
|
|
15
|
-
"..",
|
|
16
|
-
"./types"
|
|
17
|
-
],
|
|
18
|
-
"verbatimModuleSyntax": true,
|
|
19
|
-
"isolatedModules": true,
|
|
20
|
-
"lib": [
|
|
21
|
-
"esnext",
|
|
22
|
-
"DOM",
|
|
23
|
-
"DOM.Iterable"
|
|
24
|
-
],
|
|
25
|
-
"moduleResolution": "bundler",
|
|
26
|
-
"module": "esnext",
|
|
27
|
-
"noEmit": true,
|
|
28
|
-
"target": "esnext"
|
|
29
|
-
},
|
|
30
|
-
"include": [
|
|
31
|
-
"ambient.d.ts",
|
|
32
|
-
"non-ambient.d.ts",
|
|
33
|
-
"./types/**/$types.d.ts",
|
|
34
|
-
"../vite.config.js",
|
|
35
|
-
"../vite.config.ts",
|
|
36
|
-
"../src/**/*.js",
|
|
37
|
-
"../src/**/*.ts",
|
|
38
|
-
"../src/**/*.svelte",
|
|
39
|
-
"../tests/**/*.js",
|
|
40
|
-
"../tests/**/*.ts",
|
|
41
|
-
"../tests/**/*.svelte"
|
|
42
|
-
],
|
|
43
|
-
"exclude": [
|
|
44
|
-
"../node_modules/**",
|
|
45
|
-
"../src/service-worker.js",
|
|
46
|
-
"../src/service-worker/**/*.js",
|
|
47
|
-
"../src/service-worker.ts",
|
|
48
|
-
"../src/service-worker/**/*.ts",
|
|
49
|
-
"../src/service-worker.d.ts",
|
|
50
|
-
"../src/service-worker/**/*.d.ts"
|
|
51
|
-
]
|
|
52
|
-
}
|