Skip to content

Commit 229f51c

Browse files
committed
Merge remote-tracking branch 'origin/master' into audit-netlify
2 parents b611b9f + 3041585 commit 229f51c

File tree

10 files changed

+36
-14
lines changed

10 files changed

+36
-14
lines changed

.github/workflows/probely-scan.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "📄 Raw API response:"
4646
cat "$response_file"
4747
48-
if [ "$http_code" -ne 201 ]; then
48+
if [ "$http_code" -ne 201 ] && [ "$http_code" -ne 200 ]; then
4949
echo "::error ::Unexpected HTTP response from Probely API: $http_code"
5050
exit 1
5151
fi
@@ -60,7 +60,8 @@ jobs:
6060
scan_id=$(jq -r '.id // empty' "$response_file")
6161
6262
if [ -z "$scan_id" ]; then
63-
echo "::error ::Scan ID not found in response. Check API key, target ID, or base URL."
63+
echo "::error ::Scan ID not found in response. Response content:"
64+
cat "$response_file"
6465
exit 1
6566
fi
6667
@@ -94,7 +95,7 @@ jobs:
9495
exit 1
9596
fi
9697
97-
- name: Download Probely HTML Report
98+
- name: Download Probely CSV Report
9899
run: |
99100
echo "📥 Downloading report for scan $scan_id ..."
100101
curl -s "$API_BASE/targets/$TARGET_ID/scans/$scan_id/endpoints/" \

.github/workflows/templates/check-codeql.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# has completed successfully.
55
#
66
# Version: v1.0.0
7-
# Maintainer: Scott Lopez <support@neteng.pro>
7+
# Maintainer: Scott Lopez <support@netwk.pro>
88
# Usage: Copy to `.github/workflows/check-codeql.yml` in your repo or reference directly if shared centrally.
99
#
1010
# Copyright © 2025 Network Pro Strategies (Network Pro™)

.github/workflows/templates/publish.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# GPR.
55
#
66
# Version: v1.1.0
7-
# Maintainer: Scott Lopez <support@neteng.pro>
7+
# Maintainer: Scott Lopez <support@netwk.pro>
88
# Usage: Copy to `.github/workflows/publish.yml` in your repo or reference
99
# directly if shared centrally.
1010
#

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,25 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
2222

2323
---
2424

25+
## [1.25.9] - 2025-11-11
26+
27+
### Changed
28+
29+
- Updated the support email address to `[email protected]` 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+
2544
## [1.25.8] - 2025-11-11
2645

2746
### Added
@@ -56,6 +75,7 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
5675
- Updated `lint:md` script to exclude the `build/` and `.netlify/` directories
5776
- Refined `svelte.config.js` to support alternate build targets (Vercel → Netlify via adapter switch)
5877
- Audit builds now use isolated `.env` config and a separate Netlify site token
78+
- Bumped project version to `v1.25.8`
5979

6080
---
6181

@@ -1807,7 +1827,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
18071827

18081828
<!-- Link references -->
18091829

1810-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.8...HEAD
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
18111832
[1.25.8]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.8
18121833
[1.25.7]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.7
18131834
[1.25.6]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.6

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ This legal page may be updated to comply with legal or operational changes. The
226226
## 14. Contact
227227

228228
The Company may be contacted via our [Contact Form](https://netwk.pro/contact) or by email at:
229-
📧 `support (at) neteng.pro`
229+
📧 `support (at) netwk.pro`
230230

231231
<sub>[Back to top](#top)</sub>
232232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static/
114114
├── pgp/
115115
│ ├── [email protected] # Public key for secure email
116116
│ ├── [email protected] # Public key for security contact
117-
│ ├── support@neteng.pro.asc # Public key for general support
117+
│ ├── support@netwk.pro.asc # Public key for general support
118118
└── ...
119119
```
120120

@@ -533,7 +533,7 @@ Source code, branding, and visual assets are subject to reuse and distribution t
533533
534534
## 🙋‍♂️Questions?
535535
536-
Reach out via our [Contact Form](https://netwk.pro/contact), open an issue on this repo, or email us directly at `support (at) neteng.pro`.
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`.
537537
538538
</section>
539539

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default [
5252

5353
// General JavaScript/Node.js configuration
5454
{
55-
files: ['**/*.mjs', '**/*.js'],
55+
files: ['**/*.mjs', '**/*.cjs', '**/*.js'],
5656
languageOptions: {
5757
globals: GLOBALS,
5858
ecmaVersion: 'latest',

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@networkpro/web",
33
"private": false,
4-
"version": "1.25.8",
4+
"version": "1.25.9",
55
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
66
"keywords": [
77
"advisory",

static/bin/contact.vcf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ VERSION:3.0
33
FN:Scott Lopez
44
N:Lopez;Scott
55
TEL;TYPE=WORK,PREF=1:(623) 252-4350
6-
EMAIL;TYPE=WORK:support@neteng.pro
6+
EMAIL;TYPE=WORK:support@netwk.pro
77
EMAIL;TYPE=Secure:[email protected]
88
ADR;TYPE=WORK:;;Peoria\, AZ 85382\nUS
99
ORG:Network Pro Strategies

0 commit comments

Comments
 (0)