@networkpro/web 1.24.0 → 1.24.2

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.
@@ -18,6 +18,7 @@ jobs:
18
18
  permissions:
19
19
  contents: read
20
20
  security-events: write
21
+ issues: write
21
22
  steps:
22
23
  # ---------------------------------------------------------------------
23
24
  # Checkout the full repo history (needed for Gitleaks to scan all commits)
@@ -58,6 +59,13 @@ jobs:
58
59
  if: always()
59
60
  run: |
60
61
  echo "### 🧩 Gitleaks Scan Summary" >> $GITHUB_STEP_SUMMARY
62
+
63
+ # If the JSON report doesn't exist, that usually means no leaks were found.
64
+ if [ ! -f gitleaks-report.json ]; then
65
+ echo "✅ No leaks detected — Gitleaks did not generate a JSON report (expected behavior)." >> $GITHUB_STEP_SUMMARY
66
+ exit 0
67
+ fi
68
+
61
69
  if [ -s gitleaks-report.json ]; then
62
70
  count=$(jq '.findings | length' gitleaks-report.json)
63
71
  if [ "$count" -gt 0 ]; then
@@ -71,7 +79,7 @@ jobs:
71
79
  echo "✅ No secrets detected." >> $GITHUB_STEP_SUMMARY
72
80
  fi
73
81
  else
74
- echo "⚠️ No report file found." >> $GITHUB_STEP_SUMMARY
82
+ echo "⚠️ Report file exists but is empty." >> $GITHUB_STEP_SUMMARY
75
83
  fi
76
84
 
77
85
  # ---------------------------------------------------------------------
package/.lighthouserc.cjs CHANGED
@@ -9,7 +9,7 @@ This file is part of Network Pro.
9
9
  module.exports = {
10
10
  ci: {
11
11
  collect: {
12
- url: ['https://netwk.pro'],
12
+ url: ['https://audit.netwk.pro'],
13
13
  numberOfRuns: 1,
14
14
  settings: {
15
15
  onlyCategories: [
package/CHANGELOG.md CHANGED
@@ -22,6 +22,33 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
22
22
 
23
23
  ---
24
24
 
25
+ ## [1.24.2]
26
+
27
+ ### Added
28
+
29
+ - Introduced new text file to prove ownership of the domain for **[Probely](https://probely.com/) DAST scans** in `static/`.
30
+
31
+ ### Changed
32
+
33
+ - Bumped project version to `v1.24.2`.
34
+ - Updated `author.url` in `package.json` to reflect updated bio site, now located at [bio.netwk.pro](https://bio.netwk.pro).
35
+
36
+ ---
37
+
38
+ ## [1.24.1]
39
+
40
+ ### Changed
41
+
42
+ - Bumped project version to `v1.24.1`.
43
+ - Updated **GitLeaks workflow** (`.github/workflows/secret-scan.yml`):
44
+ - Reworked Gitleaks step to use official environment variables (`GITLEAKS_REPORT_PATH`, `GITLEAKS_LICENSE`) for compatibility with `gitleaks/gitleaks-action@v2`.
45
+ - Added explicit handling for runs with no detected secrets (skips JSON parsing when no report is generated).
46
+ - Improved summary step output with clear “No leaks detected” message and reduced false warnings.
47
+ - Ensured consistent artifact uploads and safer fork-handling conditions.
48
+ - Lighthouse now points to the new audit version of the site at [audit.netwk.pro](https://audit.netwk.pro).
49
+
50
+ ---
51
+
25
52
  ## [1.24.0]
26
53
 
27
54
  ### Added
@@ -1403,7 +1430,9 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
1403
1430
 
1404
1431
  <!-- Link references -->
1405
1432
 
1406
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.24.0...HEAD
1433
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.24.2...HEAD
1434
+ [1.24.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.24.2
1435
+ [1.24.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.24.1
1407
1436
  [1.24.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.24.0
1408
1437
  [1.23.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.23.0
1409
1438
  [1.22.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.22.2
package/cspell.json CHANGED
@@ -67,8 +67,10 @@
67
67
  "posthog",
68
68
  "precaching",
69
69
  "prefs",
70
+ "Probely",
70
71
  "publickey",
71
72
  "reconsent",
73
+ "sarif",
72
74
  "serv",
73
75
  "shizuku",
74
76
  "SIEM",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@networkpro/web",
3
3
  "private": false,
4
- "version": "1.24.0",
4
+ "version": "1.24.2",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advisory",
@@ -26,7 +26,7 @@
26
26
  "author": {
27
27
  "name": "Scott Lopez",
28
28
  "email": "github@sl.neteng.cc",
29
- "url": "https://bio.neteng.pro"
29
+ "url": "https://bio.netwk.pro"
30
30
  },
31
31
  "type": "module",
32
32
  "engines": {
@@ -125,7 +125,7 @@
125
125
  },
126
126
  "overrides": {
127
127
  "cookie": "^1.0.0",
128
- "tar": "7.5.2",
128
+ "tar": ">=7.5.2",
129
129
  "tmp": ">=0.2.4"
130
130
  }
131
131
  }