@networkpro/web 1.13.5 → 1.13.7

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 CHANGED
@@ -20,6 +20,30 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
20
20
 
21
21
  ## [Unreleased]
22
22
 
23
+ ## [1.13.7] - 2025-06-15
24
+
25
+ ### Changed
26
+
27
+ - Added pre-publish steps in `build-and-publish.yml` to recursively list all files and top-level directory contents for auditing
28
+
29
+ ---
30
+
31
+ ## [1.13.6] - 2025-06-15
32
+
33
+ ### Added
34
+
35
+ - Introduced `.github/workflows/check-codeql.yml` reusable workflow to validate successful CodeQL analysis during CI
36
+ - Added `.github/workflows/templates/check-codeql.template.yml` for documentation and workflow templating purposes
37
+
38
+ ### Changed
39
+
40
+ - Replaced inline `check-codeql` job in `.github/workflows/build-and-publish.yml` with call to reusable workflow
41
+ - Updated `.node-version` and `.nvmrc` from `24.1.0` → `24.2.0` to reflect upgraded Node.js binary
42
+ - Replaced `ℹ️` symbol with `🛈` in `bootstrap.local.sh` to improve clarity in terminals
43
+ - Version bumped to **v1.13.6**
44
+ - Upgraded dependencies:
45
+ - `posthog-js` updated from `1.252.0` → `1.252.1`
46
+
23
47
  ---
24
48
 
25
49
  ## [1.13.5] - 2025-06-14
@@ -424,7 +448,9 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
424
448
 
425
449
  <!-- Link references -->
426
450
 
427
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.13.5...HEAD
451
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.13.7...HEAD
452
+ [1.13.7]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.13.7
453
+ [1.13.6]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.13.6
428
454
  [1.13.5]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.13.5
429
455
  [1.13.4]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.13.4
430
456
  [1.13.3]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.13.3
@@ -31,7 +31,7 @@ fi
31
31
  if [[ "$PLATFORM" == "windows" ]]; then
32
32
  if [[ -z "${BASH_VERSION:-}" ]]; then
33
33
  echo "⚠️ Detected native Windows shell (e.g., CMD or PowerShell)."
34
- echo "ℹ️ Please use WSL or Git Bash for full compatibility with this script."
34
+ echo "🛈 Please use WSL or Git Bash for full compatibility with this script."
35
35
  exit 1
36
36
  else
37
37
  echo "🪟 Detected Git Bash or compatible shell on Windows."
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@networkpro/web",
3
3
  "private": false,
4
- "version": "1.13.5",
4
+ "version": "1.13.7",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advisory",
@@ -80,7 +80,7 @@
80
80
  },
81
81
  "dependencies": {
82
82
  "dompurify": "^3.2.6",
83
- "posthog-js": "^1.252.0",
83
+ "posthog-js": "^1.252.1",
84
84
  "semver": "^7.7.2",
85
85
  "svelte": "5.34.3"
86
86
  },