@networkpro/web 1.25.14 → 1.25.16
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/CHANGELOG.md +34 -1
- package/cspell.json +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,37 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
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
|
+
|
|
41
|
+
## [1.25.15] - 2025-11-18
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- Added `https://vercel-insights.com` to `script-src` and `connect-src` in `hooks.server.js` to allow for Vercel Analytics.
|
|
46
|
+
|
|
47
|
+
### Changed
|
|
48
|
+
|
|
49
|
+
- Added `vercel-insights.com` to the `disallowedHosts` list in `service-worker.js`, in order to prevent SW caching.
|
|
50
|
+
- Bumped project version to `v1.25.15`.
|
|
51
|
+
- Updated dependencies:
|
|
52
|
+
- `svelte` `5.43.10` → `5.43.12`
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
25
56
|
## [1.25.14] - 2025-11-18
|
|
26
57
|
|
|
27
58
|
### Changed
|
|
@@ -1930,7 +1961,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
1930
1961
|
|
|
1931
1962
|
<!-- Link references -->
|
|
1932
1963
|
|
|
1933
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
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
|
|
1966
|
+
[1.25.15]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.15
|
|
1934
1967
|
[1.25.14]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.14
|
|
1935
1968
|
[1.25.13]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.13
|
|
1936
1969
|
[1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.25.
|
|
4
|
+
"version": "1.25.16",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"dompurify": "^3.3.0",
|
|
89
89
|
"posthog-js": "^1.295.0",
|
|
90
90
|
"semver": "^7.7.3",
|
|
91
|
-
"svelte": "5.43.
|
|
91
|
+
"svelte": "5.43.12"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
94
|
"@eslint/compat": "^2.0.0",
|