@networkpro/web 1.25.11 → 1.25.13

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/.env.template CHANGED
@@ -7,10 +7,11 @@
7
7
  # Custom environment mode for scripts and tooling
8
8
  # One of: dev, test, ci, audit, production
9
9
  ENV_MODE=dev
10
+ PUBLIC_ENV_MODE=dev
10
11
 
11
12
  # Optional: API keys or tokens for local dev (never commit real values)
12
- #VITE_PUBLIC_API_URL=https://api.example.com
13
- #VITE_PUBLIC_SITE_NAME=Network Pro
13
+ #PUBLIC_API_URL=https://api.example.com
14
+ #PUBLIC_SITE_NAME=Network Pro
14
15
 
15
- # ⚠️ DO NOT include sensitive credentials in VITE_ variables
16
+ # ⚠️ DO NOT include sensitive credentials in PUBLIC_ variables
16
17
  # These are exposed to client-side code at build time
package/.markdownlint.mjs CHANGED
@@ -16,6 +16,7 @@ export default {
16
16
  customRules: [noSmartQuotes],
17
17
 
18
18
  // Rule exceptions
19
+ MD060: false, // Pointless style enforcement — doesn't affect render output
19
20
  MD041: false, // First line in file should be a top-level header
20
21
  MD033: false, // Allow inline HTML
21
22
  MD013: false, // Ignore line length
package/.node-version CHANGED
@@ -1 +1 @@
1
- 24.11.0
1
+ 24.11.1
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 24.11.0
1
+ 24.11.1
package/CHANGELOG.md CHANGED
@@ -22,6 +22,45 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
22
22
 
23
23
  ---
24
24
 
25
+ ## [1.25.13] - 2025-11-16
26
+
27
+ ### Changed
28
+
29
+ - Updated `.markdownlint.mjs` to ignore rule `MD060`, which is overly strict and unnecessary.
30
+ - Bumped project version to `v1.25.13`.
31
+ - Updated dependencies:
32
+ - `svelte` `5.43.6` → `5.43.7`
33
+ - `posthog-js` `^1.292.0` → `^1.293.0`
34
+ - `@eslint/compat` `^1.4.1` → `^2.0.0`
35
+ - `markdownlint-cli2` `0.18.1` → `0.19.0`
36
+
37
+ ### Fixed
38
+
39
+ - Resolved prototype pollution vulnerability in transitive `js-yaml` dependency via `overrides`, due to outdated `@lhci/cli` dependency on `@lhci/utils`.
40
+
41
+ ---
42
+
43
+ ## [1.25.12] - 2025-11-14
44
+
45
+ ### Added
46
+
47
+ - Added revised **QR code** image assets for **Vcard** information:
48
+ - `src/lib/img/qr/vcard.png`
49
+ - `src/lib/img/qr/vcard.webp`
50
+
51
+ ### Changed
52
+
53
+ - Modified `.node-version` and `.nvmrc` to utilize **Node.js** `24.11.1` (LTS).
54
+ - Updated `.ncurc.cjs` to reject updates to `markdownlint-cli2`, due to discrepancies between in-editor and CLI linting errors.
55
+ - Updated environment template (`.env.template`) to include `PUBLIC_ENV_MODE`, which is now required to build the proper environment (e.g., `dev`, `audit`, `production`).
56
+ - Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.48.5**.
57
+ - Bumped project version to `v1.25.12`.
58
+ - Updated dependencies:
59
+ - `@sveltejs/kit` `2.48.4` → `2.48.5`
60
+ - `eslint-plugin-jsdoc` `^61.2.0` → `^61.2.1`
61
+
62
+ ---
63
+
25
64
  ## [1.25.11] - 2025-11-12
26
65
 
27
66
  ### Added
@@ -1876,7 +1915,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
1876
1915
 
1877
1916
  <!-- Link references -->
1878
1917
 
1879
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.11...HEAD
1918
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.13...HEAD
1919
+ [1.25.13]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.13
1920
+ [1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12
1880
1921
  [1.25.11]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.11
1881
1922
  [1.25.10]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.10
1882
1923
  [1.25.9]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@networkpro/web",
3
3
  "private": false,
4
- "version": "1.25.11",
4
+ "version": "1.25.13",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advisory",
@@ -86,18 +86,18 @@
86
86
  },
87
87
  "dependencies": {
88
88
  "dompurify": "^3.3.0",
89
- "posthog-js": "^1.292.0",
89
+ "posthog-js": "^1.293.0",
90
90
  "semver": "^7.7.3",
91
- "svelte": "5.43.6"
91
+ "svelte": "5.43.7"
92
92
  },
93
93
  "devDependencies": {
94
- "@eslint/compat": "^1.4.1",
94
+ "@eslint/compat": "^2.0.0",
95
95
  "@eslint/js": "^9.39.1",
96
96
  "@lhci/cli": "^0.15.1",
97
97
  "@playwright/test": "^1.56.1",
98
98
  "@sveltejs/adapter-netlify": "^5.2.4",
99
99
  "@sveltejs/adapter-vercel": "^6.1.1",
100
- "@sveltejs/kit": "2.48.4",
100
+ "@sveltejs/kit": "2.48.5",
101
101
  "@sveltejs/vite-plugin-svelte": "^6.2.1",
102
102
  "@testing-library/jest-dom": "^6.9.1",
103
103
  "@testing-library/svelte": "^5.2.9",
@@ -106,13 +106,13 @@
106
106
  "browserslist": "^4.28.0",
107
107
  "eslint": "^9.39.1",
108
108
  "eslint-config-prettier": "^10.1.8",
109
- "eslint-plugin-jsdoc": "^61.2.0",
109
+ "eslint-plugin-jsdoc": "^61.2.1",
110
110
  "eslint-plugin-svelte": "^3.13.0",
111
111
  "globals": "^16.5.0",
112
112
  "jsdom": "26.1.0",
113
113
  "lightningcss": "^1.30.2",
114
114
  "markdownlint": "^0.39.0",
115
- "markdownlint-cli2": "^0.18.1",
115
+ "markdownlint-cli2": "0.19.0",
116
116
  "npm-run-all": "^4.1.5",
117
117
  "playwright": "^1.56.1",
118
118
  "postcss": "^8.5.6",
@@ -135,6 +135,7 @@
135
135
  },
136
136
  "overrides": {
137
137
  "cookie": "^1.0.0",
138
+ "js-yaml": "^4.1.1",
138
139
  "tar": ">=7.5.2",
139
140
  "tmp": ">=0.2.4"
140
141
  }
package/src/app.html CHANGED
@@ -53,7 +53,7 @@
53
53
  content="bx4ham0zkpvzztzu213bhpt76m9siq" />
54
54
  <!-- cspell:enable -->
55
55
 
56
- <meta name="generator" content="SvelteKit 2.48.4" />
56
+ <meta name="generator" content="SvelteKit 2.48.5" />
57
57
 
58
58
  <script src="/disableSw.js"></script>
59
59
 
Binary file
Binary file
package/vite.config.js CHANGED
@@ -12,7 +12,7 @@ import { fileURLToPath } from 'node:url';
12
12
  import { defineConfig } from 'vite';
13
13
  import devtoolsJson from 'vite-plugin-devtools-json';
14
14
  import lightningcssPlugin from 'vite-plugin-lightningcss';
15
- import tsconfigPaths from 'vite-tsconfig-paths'; // NEW: tsconfig/jsconfig alias support
15
+ import tsconfigPaths from 'vite-tsconfig-paths'; // tsconfig/jsconfig alias support
16
16
 
17
17
  // Compute absolute project root
18
18
  const projectRoot = fileURLToPath(new URL('.', import.meta.url));