@networkpro/web 1.17.0 → 1.17.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/package.json +3 -7
package/CHANGELOG.md CHANGED
@@ -22,7 +22,17 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
22
22
 
23
23
  ---
24
24
 
25
- ## [1.17.0] - 2025-09-16
25
+ ## [1.17.1] - 2025-09-17
26
+
27
+ ### Security
28
+
29
+ - Patched transitive vulnerabilities by pinning dependencies via `overrides`:
30
+ - Forced `tmp` to `>=0.2.4` (resolves CVE-2025-54798 reported via `@lhci/cli`).
31
+ - Forced `cookie` to `^1.0.0` (used by `@sveltejs/kit` and `@lhci/cli`).
32
+
33
+ ---
34
+
35
+ ## [1.17.0] - 2025-09-17
26
36
 
27
37
  ### Security
28
38
 
@@ -822,7 +832,8 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
822
832
 
823
833
  <!-- Link references -->
824
834
 
825
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.17.0...HEAD
835
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.17.1...HEAD
836
+ [1.17.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.1
826
837
  [1.17.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.0
827
838
  [1.16.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.16.0
828
839
  [1.15.4]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.15.4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@networkpro/web",
3
3
  "private": false,
4
- "version": "1.17.0",
4
+ "version": "1.17.1",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advisory",
@@ -123,11 +123,7 @@
123
123
  "vitest": "^3.2.4"
124
124
  },
125
125
  "overrides": {
126
- "@sveltejs/kit": {
127
- "cookie": "^0.7.0"
128
- },
129
- "@lhci/cli": {
130
- "cookie": "^0.7.0"
131
- }
126
+ "tmp": ">=0.2.4",
127
+ "cookie": "^1.0.0"
132
128
  }
133
129
  }