@networkpro/web 1.25.8 β 1.25.9
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/probely-scan.yml +4 -3
- package/.github/workflows/templates/check-codeql.template.yml +1 -1
- package/.github/workflows/templates/publish.template.yml +1 -1
- package/CHANGELOG.md +22 -1
- package/LICENSE.md +1 -1
- package/README.md +2 -2
- package/eslint.config.mjs +1 -1
- package/package.json +1 -1
- package/static/bin/contact.vcf +1 -1
|
@@ -45,7 +45,7 @@ jobs:
|
|
|
45
45
|
echo "π Raw API response:"
|
|
46
46
|
cat "$response_file"
|
|
47
47
|
|
|
48
|
-
if [ "$http_code" -ne 201 ]; then
|
|
48
|
+
if [ "$http_code" -ne 201 ] && [ "$http_code" -ne 200 ]; then
|
|
49
49
|
echo "::error ::Unexpected HTTP response from Probely API: $http_code"
|
|
50
50
|
exit 1
|
|
51
51
|
fi
|
|
@@ -60,7 +60,8 @@ jobs:
|
|
|
60
60
|
scan_id=$(jq -r '.id // empty' "$response_file")
|
|
61
61
|
|
|
62
62
|
if [ -z "$scan_id" ]; then
|
|
63
|
-
echo "::error ::Scan ID not found in response.
|
|
63
|
+
echo "::error ::Scan ID not found in response. Response content:"
|
|
64
|
+
cat "$response_file"
|
|
64
65
|
exit 1
|
|
65
66
|
fi
|
|
66
67
|
|
|
@@ -94,7 +95,7 @@ jobs:
|
|
|
94
95
|
exit 1
|
|
95
96
|
fi
|
|
96
97
|
|
|
97
|
-
- name: Download Probely
|
|
98
|
+
- name: Download Probely CSV Report
|
|
98
99
|
run: |
|
|
99
100
|
echo "π₯ Downloading report for scan $scan_id ..."
|
|
100
101
|
curl -s "$API_BASE/targets/$TARGET_ID/scans/$scan_id/endpoints/" \
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# has completed successfully.
|
|
5
5
|
#
|
|
6
6
|
# Version: v1.0.0
|
|
7
|
-
# Maintainer: Scott Lopez <support@
|
|
7
|
+
# Maintainer: Scott Lopez <support@netwk.pro>
|
|
8
8
|
# Usage: Copy to `.github/workflows/check-codeql.yml` in your repo or reference directly if shared centrally.
|
|
9
9
|
#
|
|
10
10
|
# Copyright Β© 2025 Network Pro Strategies (Network Proβ’)
|
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,25 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.25.9] - 2025-11-11
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Updated the support email address to `support@netwk.pro` in the following files:
|
|
30
|
+
- `README.md`
|
|
31
|
+
- `check-codeql.template.yml`
|
|
32
|
+
- `publish.template.yml`
|
|
33
|
+
- `contact.vcf`
|
|
34
|
+
- Modified `eslint.config.mjs` to include `.cjs` files when linting JavaScript.
|
|
35
|
+
- Bumped project version to `v1.25.9`.
|
|
36
|
+
|
|
37
|
+
## Fixed
|
|
38
|
+
|
|
39
|
+
- Modified `.github/workflows/probely-scan.yml` to accept either a 200 or 201 response.
|
|
40
|
+
- Workflow was correctly triggering scan, but then failed due to receiving a 200 response rather than the 201 that was expected.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
25
44
|
## [1.25.8] - 2025-11-11
|
|
26
45
|
|
|
27
46
|
### Added
|
|
@@ -56,6 +75,7 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
56
75
|
- Updated `lint:md` script to exclude the `build/` and `.netlify/` directories
|
|
57
76
|
- Refined `svelte.config.js` to support alternate build targets (Vercel β Netlify via adapter switch)
|
|
58
77
|
- Audit builds now use isolated `.env` config and a separate Netlify site token
|
|
78
|
+
- Bumped project version to `v1.25.8`
|
|
59
79
|
|
|
60
80
|
---
|
|
61
81
|
|
|
@@ -1807,7 +1827,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
1807
1827
|
|
|
1808
1828
|
<!-- Link references -->
|
|
1809
1829
|
|
|
1810
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
1830
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.9...HEAD
|
|
1831
|
+
[1.25.9]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.9
|
|
1811
1832
|
[1.25.8]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.8
|
|
1812
1833
|
[1.25.7]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.7
|
|
1813
1834
|
[1.25.6]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.6
|
package/LICENSE.md
CHANGED
|
@@ -226,7 +226,7 @@ This legal page may be updated to comply with legal or operational changes. The
|
|
|
226
226
|
## 14. Contact
|
|
227
227
|
|
|
228
228
|
The Company may be contacted via our [Contact Form](https://netwk.pro/contact) or by email at:
|
|
229
|
-
π§ `support (at)
|
|
229
|
+
π§ `support (at) netwk.pro`
|
|
230
230
|
|
|
231
231
|
<sub>[Back to top](#top)</sub>
|
|
232
232
|
|
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ static/
|
|
|
114
114
|
βββ pgp/
|
|
115
115
|
β βββ contact@s.neteng.pro.asc # Public key for secure email
|
|
116
116
|
β βββ security@s.neteng.pro.asc # Public key for security contact
|
|
117
|
-
β βββ support@
|
|
117
|
+
β βββ support@netwk.pro.asc # Public key for general support
|
|
118
118
|
βββ ...
|
|
119
119
|
```
|
|
120
120
|
|
|
@@ -533,7 +533,7 @@ Source code, branding, and visual assets are subject to reuse and distribution t
|
|
|
533
533
|
|
|
534
534
|
## πββοΈQuestions?
|
|
535
535
|
|
|
536
|
-
Reach out via our [Contact Form](https://netwk.pro/contact), open an issue on this repo, or email us directly at `support (at)
|
|
536
|
+
Reach out via our [Contact Form](https://netwk.pro/contact), open an issue on this repo, or email us directly at `support (at) netwk.pro`.
|
|
537
537
|
|
|
538
538
|
</section>
|
|
539
539
|
|
package/eslint.config.mjs
CHANGED
package/package.json
CHANGED
package/static/bin/contact.vcf
CHANGED