Skip to content

Commit 167ed95

Browse files
authored
chore: release prep for v1.25.16 (#167)
1 parent 9888c0f commit 167ed95

File tree

6 files changed

+27
-10
lines changed

6 files changed

+27
-10
lines changed

CHANGELOG.md

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

2323
---
2424

25+
## [1.25.16] - 2025-11-18
26+
27+
### Changed
28+
29+
- Removed `vercel-insights.com` from the `disallowedHosts` list in `service-worker.js`.
30+
31+
### Removed
32+
33+
- Removed `https://vercel-insights.com` from `script-src` and `connect-src` in `hooks.server.js`.
34+
35+
### Notes
36+
37+
- **Analytics:** Reverted Vercel Analytics integration due to inline script injection requirement. Continuing with PostHog Cloud until migration to CSP-compliant Matomo is feasible.
38+
39+
---
40+
2541
## [1.25.15] - 2025-11-18
2642

2743
### Added
@@ -1945,7 +1961,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
19451961

19461962
<!-- Link references -->
19471963

1948-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.15...HEAD
1964+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.16...HEAD
1965+
[1.25.16]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.16
19491966
[1.25.15]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.15
19501967
[1.25.14]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.14
19511968
[1.25.13]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.13

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"lsheet",
4747
"Mailvelope",
4848
"Maricopa",
49+
"Matomo",
4950
"mdsvex",
5051
"MSYS",
5152
"navigations",

package-lock.json

Lines changed: 5 additions & 5 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.15",
4+
"version": "1.25.16",
55
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
66
"keywords": [
77
"advisory",

src/hooks.server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ export async function handle({ event, resolve }) {
5151

5252
const cspDirectives = [
5353
"default-src 'self';",
54-
"script-src 'self' 'unsafe-inline' https://us.i.posthog.com https://us-assets.i.posthog.com https://vercel-insights.com;",
54+
"script-src 'self' 'unsafe-inline' https://us.i.posthog.com https://us-assets.i.posthog.com;",
5555
"style-src 'self' 'unsafe-inline';",
5656
"img-src 'self' data:;",
57-
"connect-src 'self' https://us.i.posthog.com https://us-assets.i.posthog.com https://vercel-insights.com;",
57+
"connect-src 'self' https://us.i.posthog.com https://us-assets.i.posthog.com;",
5858
"font-src 'self' data:;",
5959
"form-action 'self';",
6060
"base-uri 'self';",

src/service-worker.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ const isDev = location.hostname === 'localhost';
1717
const disallowedHosts = [
1818
'us.i.posthog.com', // Add PostHog to disallowed hosts
1919
'posthog.com', // Add PostHog to disallowed hosts
20-
'vercel-insights.com', // Add Vercel to disallowed hosts
2120
];
2221

2322
import { build, files, version } from '$service-worker';

0 commit comments

Comments
 (0)