Skip to content

Commit 9888c0f

Browse files
authored
chore: release prep for v1.25.15 (#166)
1 parent c780383 commit 9888c0f

File tree

5 files changed

+31
-14
lines changed

5 files changed

+31
-14
lines changed

CHANGELOG.md

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

2323
---
2424

25+
## [1.25.15] - 2025-11-18
26+
27+
### Added
28+
29+
- Added `https://vercel-insights.com` to `script-src` and `connect-src` in `hooks.server.js` to allow for Vercel Analytics.
30+
31+
### Changed
32+
33+
- Added `vercel-insights.com` to the `disallowedHosts` list in `service-worker.js`, in order to prevent SW caching.
34+
- Bumped project version to `v1.25.15`.
35+
- Updated dependencies:
36+
- `svelte` `5.43.10``5.43.12`
37+
38+
---
39+
2540
## [1.25.14] - 2025-11-18
2641

2742
### Changed
@@ -1930,7 +1945,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
19301945

19311946
<!-- Link references -->
19321947

1933-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.14...HEAD
1948+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.15...HEAD
1949+
[1.25.15]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.15
19341950
[1.25.14]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.14
19351951
[1.25.13]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.13
19361952
[1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@networkpro/web",
33
"private": false,
4-
"version": "1.25.14",
4+
"version": "1.25.15",
55
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
66
"keywords": [
77
"advisory",
@@ -88,7 +88,7 @@
8888
"dompurify": "^3.3.0",
8989
"posthog-js": "^1.295.0",
9090
"semver": "^7.7.3",
91-
"svelte": "5.43.10"
91+
"svelte": "5.43.12"
9292
},
9393
"devDependencies": {
9494
"@eslint/compat": "^2.0.0",

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;",
54+
"script-src 'self' 'unsafe-inline' https://us.i.posthog.com https://us-assets.i.posthog.com https://vercel-insights.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;",
57+
"connect-src 'self' https://us.i.posthog.com https://us-assets.i.posthog.com https://vercel-insights.com;",
5858
"font-src 'self' data:;",
5959
"form-action 'self';",
6060
"base-uri 'self';",

src/service-worker.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ 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
2021
];
2122

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

0 commit comments

Comments
 (0)