Skip to content

Commit 64e2ae3

Browse files
committed
Merge remote-tracking branch 'origin/master' into audit-netlify
2 parents f1262b0 + 830fbbb commit 64e2ae3

File tree

11 files changed

+84
-41
lines changed

11 files changed

+84
-41
lines changed

.env.template

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
# Custom environment mode for scripts and tooling
88
# One of: dev, test, ci, audit, production
99
ENV_MODE=dev
10+
PUBLIC_ENV_MODE=dev
1011

1112
# 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
1415

15-
# ⚠️ DO NOT include sensitive credentials in VITE_ variables
16+
# ⚠️ DO NOT include sensitive credentials in PUBLIC_ variables
1617
# These are exposed to client-side code at build time

.ncurc.cjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ This file is part of Network Pro.
3131
/** @type {import('npm-check-updates').RunOptions} */
3232
module.exports = {
3333
// Ignore specific dependencies (prevent upgrades)
34-
reject: ['vitest', '@vitest/coverage-v8', 'prettier', 'jsdom'],
34+
reject: [
35+
'vitest',
36+
'@vitest/coverage-v8',
37+
'prettier',
38+
'jsdom',
39+
'markdownlint-cli2',
40+
],
3541

3642
// Always upgrade devDependencies as well
3743
dep: 'prod,dev',

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.11.0
1+
24.11.1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.11.0
1+
24.11.1

CHANGELOG.md

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

2323
---
2424

25+
## [1.25.12] - 2025-11-14
26+
27+
### Added
28+
29+
- Added revised **QR code** image assets for **Vcard** information:
30+
- `src/lib/img/qr/vcard.png`
31+
- `src/lib/img/qr/vcard.webp`
32+
33+
### Changed
34+
35+
- Modified `.node-version` and `.nvmrc` to utilize **Node.js** `24.11.1` (LTS).
36+
- Updated `.ncurc.cjs` to reject updates to `markdownlint-cli2`, due to discrepancies between in-editor and CLI linting errors.
37+
- Updated environment template (`.env.template`) to include `PUBLIC_ENV_MODE`, which is now required to build the proper environment (e.g., `dev`, `audit`, `production`).
38+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.48.5**.
39+
- Bumped project version to `v1.25.12`.
40+
- Updated dependencies:
41+
- `@sveltejs/kit` `2.48.4``2.48.5`
42+
- `eslint-plugin-jsdoc` `^61.2.0``^61.2.1`
43+
44+
---
45+
2546
## [1.25.11] - 2025-11-12
2647

2748
### Added
@@ -1876,7 +1897,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
18761897

18771898
<!-- Link references -->
18781899

1879-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.11...HEAD
1900+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.12...HEAD
1901+
[1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12
18801902
[1.25.11]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.11
18811903
[1.25.10]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.10
18821904
[1.25.9]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.9

package-lock.json

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

package.json

Lines changed: 4 additions & 4 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.11",
4+
"version": "1.25.12",
55
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
66
"keywords": [
77
"advisory",
@@ -97,7 +97,7 @@
9797
"@playwright/test": "^1.56.1",
9898
"@sveltejs/adapter-netlify": "^5.2.4",
9999
"@sveltejs/adapter-vercel": "^6.1.1",
100-
"@sveltejs/kit": "2.48.4",
100+
"@sveltejs/kit": "2.48.5",
101101
"@sveltejs/vite-plugin-svelte": "^6.2.1",
102102
"@testing-library/jest-dom": "^6.9.1",
103103
"@testing-library/svelte": "^5.2.9",
@@ -106,13 +106,13 @@
106106
"browserslist": "^4.28.0",
107107
"eslint": "^9.39.1",
108108
"eslint-config-prettier": "^10.1.8",
109-
"eslint-plugin-jsdoc": "^61.2.0",
109+
"eslint-plugin-jsdoc": "^61.2.1",
110110
"eslint-plugin-svelte": "^3.13.0",
111111
"globals": "^16.5.0",
112112
"jsdom": "26.1.0",
113113
"lightningcss": "^1.30.2",
114114
"markdownlint": "^0.39.0",
115-
"markdownlint-cli2": "^0.18.1",
115+
"markdownlint-cli2": "0.18.1",
116116
"npm-run-all": "^4.1.5",
117117
"playwright": "^1.56.1",
118118
"postcss": "^8.5.6",

src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
content="bx4ham0zkpvzztzu213bhpt76m9siq" />
5454
<!-- cspell:enable -->
5555

56-
<meta name="generator" content="SvelteKit 2.48.4" />
56+
<meta name="generator" content="SvelteKit 2.48.5" />
5757

5858
<script src="/disableSw.js"></script>
5959

src/lib/img/qr/vcard.png

-6.34 KB
Loading

src/lib/img/qr/vcard.webp

76 Bytes
Loading

0 commit comments

Comments
 (0)