Skip to content

Commit 09bd8d5

Browse files
committed
Merge remote-tracking branch 'origin/master' into audit-netlify
2 parents 771b87e + c391594 commit 09bd8d5

File tree

6 files changed

+83
-68
lines changed

6 files changed

+83
-68
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ version increments reflecting both user-visible and operational impact.
2424

2525
---
2626

27+
## [1.25.21] - 2025-12-27
28+
29+
### Added
30+
31+
- Added Mastodon verification to `src/routes/posts/+page.svelte` via `<svelte:head>`.
32+
33+
### Changed
34+
35+
- Updated intro paragraph of `README.md` to better reflect the company's current mission, focus, and messaging.
36+
- Bumped project version to `v1.25.21`.
37+
- Updated dependencies:
38+
- `@testing-library/svelte` `^5.3.0``^5.3.1`
39+
- `jsdom` `27.3.0``27.4.0`
40+
41+
---
42+
2743
## [1.25.20] - 2025-12-24
2844

2945
### Added
@@ -2102,7 +2118,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
21022118

21032119
<!-- Link references -->
21042120

2105-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.20...HEAD
2121+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.21...HEAD
2122+
[1.25.21]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.21
21062123
[1.25.20]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.20
21072124
[1.25.19]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.19
21082125
[1.25.18]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.18

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This file is part of Network Pro.
2121

2222
## 🚀 Project Overview
2323

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.
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.
2525

2626
Built with [SvelteKit](https://kit.svelte.dev/) and deployed via [Vercel](https://vercel.com/).
2727
[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-lock.json

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

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "@networkpro/web",
33
"private": false,
4-
"version": "1.25.20",
4+
"version": "1.25.21",
55
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
66
"keywords": [
7-
"advisory",
87
"consulting",
98
"cybersecurity",
109
"networking",
@@ -100,7 +99,7 @@
10099
"@sveltejs/kit": "2.49.2",
101100
"@sveltejs/vite-plugin-svelte": "^6.2.1",
102101
"@testing-library/jest-dom": "^6.9.1",
103-
"@testing-library/svelte": "^5.3.0",
102+
"@testing-library/svelte": "^5.3.1",
104103
"@vitest/coverage-v8": "3.2.4",
105104
"autoprefixer": "^10.4.23",
106105
"browserslist": "^4.28.1",
@@ -110,7 +109,7 @@
110109
"eslint-plugin-svelte": "^3.13.1",
111110
"globals": "^16.5.0",
112111
"globby": "^16.1.0",
113-
"jsdom": "27.3.0",
112+
"jsdom": "27.4.0",
114113
"lightningcss": "^1.30.2",
115114
"markdownlint": "^0.40.0",
116115
"markdownlint-cli2": "0.20.0",

src/routes/posts/+page.svelte

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ This file is part of Network Pro.
4545
});
4646
</script>
4747

48+
<svelte:head>
49+
<a
50+
rel="me"
51+
href="https://noc.social/@neteng_pro"
52+
aria-label="Mastodon profile"></a>
53+
</svelte:head>
54+
4855
{#if show && target}
4956
<RedirectPage to={target} rel={PAGE.REL} />
5057
{:else}

static/sitemap.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- Sitemap last updated 2025-12-25 -->
2+
<!-- Sitemap last updated 2025-12-27 -->
33

44
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
55

@@ -31,7 +31,7 @@
3131

3232
<loc>https://netwk.pro/about</loc>
3333

34-
<lastmod>2025-12-25</lastmod>
34+
<lastmod>2025-12-27</lastmod>
3535

3636
<changefreq>monthly</changefreq>
3737

0 commit comments

Comments
 (0)