@networkpro/web 1.25.24 → 1.26.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.
- package/.editorconfig +1 -1
- package/.env.template +2 -2
- package/.gitattributes +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.yml +1 -1
- package/.github/ISSUE_TEMPLATE/config.yml +1 -1
- package/.github/ISSUE_TEMPLATE/feature_request.yml +1 -1
- package/.github/ISSUE_TEMPLATE/legal_review.yml +1 -1
- package/.github/workflows/auto-assign.yml +1 -1
- package/.github/workflows/backup-branch.yml +1 -1
- package/.github/workflows/build-and-publish.yml +1 -1
- package/.github/workflows/check-codeql.yml +1 -1
- package/.github/workflows/check-security-txt-expiry.yml +6 -0
- package/.github/workflows/dependency-review.yml +1 -1
- package/.github/workflows/lighthouse.yml +1 -1
- package/.github/workflows/meta-check.yml +1 -1
- package/.github/workflows/playwright.yml +1 -1
- package/.github/workflows/prevent-audit-merge.yml +1 -1
- package/.github/workflows/probely-scan.yml +1 -1
- package/.github/workflows/publish-test.yml +1 -1
- package/.github/workflows/secret-scan.yml +1 -1
- package/.github/workflows/templates/check-codeql.template.yml +1 -1
- package/.github/workflows/templates/publish.template.yml +1 -1
- package/.lighthouserc.cjs +1 -1
- package/.markdownlint.mjs +1 -1
- package/.md-smart-quotes.js +1 -1
- package/.ncurc.cjs +2 -2
- package/.prettierignore +1 -1
- package/.stylelintignore +1 -1
- package/.vscode/extensions.jsonc +1 -1
- package/CHANGELOG.md +57 -6
- package/CHANGELOG.template.md +1 -1
- package/LICENSE.md +3 -3
- package/README.md +30 -3
- package/bootstrap.local.sh +1 -1
- package/eslint.config.mjs +1 -1
- package/jsconfig.template.jsonc +1 -1
- package/package.json +13 -13
- package/playwright.config.js +1 -1
- package/postcss.config.mjs +1 -1
- package/scripts/auditScripts.js +1 -1
- package/scripts/bundleCss.js +21 -12
- package/scripts/checkEnv.js +1 -1
- package/scripts/checkNode.js +1 -1
- package/scripts/checkVersions.js +1 -1
- package/scripts/generateTest.js +1 -1
- package/scripts/openReport.js +1 -1
- package/src/app.d.ts +1 -1
- package/src/app.html +2 -2
- package/src/global.d.ts +1 -1
- package/src/hooks.client.ts +1 -1
- package/src/hooks.server.js +1 -1
- package/src/lib/README.md +3 -3
- package/src/lib/components/Badges.svelte +1 -1
- package/src/lib/components/CodeBlock.svelte +1 -1
- package/src/lib/components/ContainerSection.svelte +1 -1
- package/src/lib/components/FullWidthSection.svelte +1 -1
- package/src/lib/components/LegalNav.svelte +1 -1
- package/src/lib/components/Logo.svelte +1 -1
- package/src/lib/components/MetaTags.svelte +1 -1
- package/src/lib/components/PWAInstallButton.svelte +1 -1
- package/src/lib/components/RedirectPage.svelte +1 -1
- package/src/lib/components/ServiceSummaryTable.svelte +1 -1
- package/src/lib/components/SocialMedia.svelte +1 -1
- package/src/lib/components/foss/FossFeatures.svelte +1 -1
- package/src/lib/components/foss/FossItemContent.svelte +1 -1
- package/src/lib/components/foss/ObtainiumBlock.svelte +1 -1
- package/src/lib/components/foss/index.js +1 -1
- package/src/lib/components/index.js +1 -1
- package/src/lib/components/layout/Footer.svelte +1 -1
- package/src/lib/components/layout/HeaderDefault.svelte +8 -18
- package/src/lib/components/layout/HeaderHome.svelte +8 -16
- package/src/lib/components/layout/index.js +1 -1
- package/src/lib/data/fossData.js +1 -1
- package/src/lib/data/pgpKeys.js +1 -1
- package/src/lib/images.js +1 -1
- package/src/lib/index.js +3 -3
- package/src/lib/meta.js +1 -1
- package/src/lib/pages/AboutContent.svelte +1 -1
- package/src/lib/pages/FossContent.svelte +1 -1
- package/src/lib/pages/HomeContent.svelte +3 -3
- package/src/lib/pages/LicenseContent.svelte +1 -1
- package/src/lib/pages/PGPContent.svelte +1 -1
- package/src/lib/pages/PrivacyContent.svelte +5 -5
- package/src/lib/pages/PrivacyDashboard.svelte +1 -1
- package/src/lib/pages/ServicesContent.svelte +1 -1
- package/src/lib/pages/TermsConditionsContent.svelte +1 -1
- package/src/lib/pages/TermsUseContent.svelte +7 -8
- package/src/lib/pages/index.js +1 -1
- package/src/lib/registerServiceWorker.js +1 -1
- package/src/lib/security/probely.js +1 -1
- package/src/lib/stores/posthog.js +2 -1
- package/src/lib/stores/trackingPreferences.js +1 -1
- package/src/lib/styles/css/default.css +11 -2
- package/src/lib/styles/css/global.css +1 -3
- package/src/lib/styles/css/normalize.css +1 -1
- package/src/lib/styles/css/offline.css +1 -1
- package/src/lib/styles/css/style.css +3 -1
- package/src/lib/styles/fa-global.css +2 -3
- package/src/lib/styles/global.min.css +2 -2
- package/src/lib/styles/index.js +1 -1
- package/src/lib/types/README.md +2 -2
- package/src/lib/types/appConstants.js +1 -1
- package/src/lib/types/fossTypes.js +1 -1
- package/src/lib/types/metadata.js +1 -1
- package/src/lib/unregisterServiceWorker.js +1 -3
- package/src/lib/utils/env.js +1 -1
- package/src/lib/utils/getUTMParams.js +1 -1
- package/src/lib/utils/initAnalytics.js +1 -1
- package/src/lib/utils/purify.js +1 -1
- package/src/lib/utils/redirect.js +1 -1
- package/src/lib/utils/utm.js +1 -1
- package/src/routes/+error.svelte +1 -1
- package/src/routes/+layout.js +1 -1
- package/src/routes/+layout.svelte +1 -1
- package/src/routes/+page.server.js +1 -1
- package/src/routes/+page.svelte +1 -1
- package/src/routes/...404/+page.svelte +1 -1
- package/src/routes/about/+page.server.js +1 -1
- package/src/routes/about/+page.svelte +1 -1
- package/src/routes/api/mock-csp/+server.js +1 -1
- package/src/routes/consultation/+page.svelte +1 -1
- package/src/routes/contact/+page.svelte +1 -1
- package/src/routes/foss/+page.server.js +1 -1
- package/src/routes/foss/+page.svelte +1 -1
- package/src/routes/legal/+page.server.js +1 -1
- package/src/routes/legal/+page.svelte +1 -1
- package/src/routes/links/+page.svelte +1 -1
- package/src/routes/pgp/+page.server.js +1 -1
- package/src/routes/pgp/+page.svelte +1 -1
- package/src/routes/pgp/[key]/+server.js +1 -1
- package/src/routes/posts/+page.svelte +1 -1
- package/src/routes/privacy/+page.server.js +1 -1
- package/src/routes/privacy/+page.svelte +1 -1
- package/src/routes/privacy-dashboard/+page.server.js +1 -1
- package/src/routes/privacy-dashboard/+page.svelte +1 -1
- package/src/routes/privacy-rights/+page.svelte +1 -1
- package/src/routes/relay-[slug]/[...catchall]/+server.js +1 -1
- package/src/routes/services/+page.server.js +1 -1
- package/src/routes/services/+page.svelte +1 -1
- package/src/routes/status/+page.server.js +1 -1
- package/src/routes/terms-conditions/+page.server.js +1 -1
- package/src/routes/terms-conditions/+page.svelte +1 -1
- package/src/routes/terms-of-use/+page.server.js +1 -1
- package/src/routes/terms-of-use/+page.svelte +1 -1
- package/src/service-worker.d.ts +1 -1
- package/src/service-worker.js +1 -1
- package/static/bin/license/CC-BY-4.0.html +1 -1
- package/static/bin/license/COPYING.html +1 -1
- package/static/disableSw.js +1 -1
- package/static/manifest.json +2 -15
- package/static/offline.html +1 -1
- package/static/offline.min.css +1 -1
- package/static/robots.txt +1 -1
- package/static/sitemap.xml +4 -4
- package/stylelint.config.js +1 -1
- package/svelte.config.js +1 -1
- package/tests/e2e/app.spec.js +1 -1
- package/tests/e2e/mobile.spec.js +1 -1
- package/tests/e2e/shared/helpers.js +1 -1
- package/tests/meta/meta.test.js +1 -1
- package/tests/unit/client/lib/PWAInstallButton.test.js +1 -1
- package/tests/unit/client/lib/unregisterServiceWorker.test.js +1 -1
- package/tests/unit/client/lib/utils/redirect.test.js +1 -1
- package/tests/unit/client/lib/utils/utm.test.js +1 -1
- package/tests/unit/client/routes/page.svelte.test.js +1 -1
- package/tests/unit/server/checkEnv.test.js +1 -1
- package/tests/unit/server/checkVersions.test.js +1 -1
- package/tests/unit/server/internal/auditCoverage.test.js +1 -1
- package/tests/unit/server/internal/ssrBoundary.test.js +1 -1
- package/tests/unit/server/lib/security/probely.test.js +1 -1
- package/tests/unit/server/lib/utils/purify.test.js +1 -1
- package/tests/unit/server/meta.test.js +1 -1
- package/vite.config.js +1 -1
- package/vitest-setup-client.js +1 -0
- package/vitest.config.client.js +9 -8
- package/vitest.config.server.js +3 -2
package/.editorconfig
CHANGED
package/.env.template
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# .env.template
|
|
2
2
|
#
|
|
3
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
3
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
4
4
|
# Environment template for Network Pro
|
|
5
5
|
# Rename to `.env` (or `.env.local`) and customize as needed
|
|
6
6
|
|
|
7
7
|
# Custom environment mode for scripts and tooling
|
|
8
|
-
# One of: dev,
|
|
8
|
+
# One of: dev, ci, audit, production
|
|
9
9
|
ENV_MODE=dev
|
|
10
10
|
PUBLIC_ENV_MODE=dev
|
|
11
11
|
|
package/.gitattributes
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Syncs backup/nightly-snapshot branch with master every day at 10:00 UTC.
|
|
4
4
|
# Only triggers on the default branch and not on PRs
|
|
5
5
|
#
|
|
6
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
6
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
7
7
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
8
8
|
# This file is part of Network Pro
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# .github/workflows/check-codeql.template.yml
|
|
2
2
|
#
|
|
3
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
3
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
4
4
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
5
5
|
# This file is part of Network Pro
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# .github/workflows/prevent-audit-merge.yml
|
|
2
2
|
#
|
|
3
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
3
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
4
4
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
5
5
|
# This file is part of Network Pro
|
|
6
6
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# Maintainer: Scott Lopez <support@netwk.pro>
|
|
8
8
|
# Usage: Copy to `.github/workflows/check-codeql.yml` in your repo or reference directly if shared centrally.
|
|
9
9
|
#
|
|
10
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
10
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
11
11
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
12
12
|
# This file is part of Network Pro
|
|
13
13
|
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# Usage: Copy to `.github/workflows/publish.yml` in your repo or reference
|
|
9
9
|
# directly if shared centrally.
|
|
10
10
|
#
|
|
11
|
-
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
11
|
+
# Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
12
12
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
13
13
|
# This file is part of Network Pro
|
|
14
14
|
|
package/.lighthouserc.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
.lighthouserc.cjs
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|
package/.markdownlint.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
.markdownlint.mjs
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|
package/.md-smart-quotes.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
.md-smart-quotes.js
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|
package/.ncurc.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
.ncurc.cjs
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================= */
|
|
@@ -31,7 +31,7 @@ This file is part of Network Pro.
|
|
|
31
31
|
/** @type {import('npm-check-updates').RunOptions} */
|
|
32
32
|
module.exports = {
|
|
33
33
|
// Ignore specific dependencies (prevent upgrades)
|
|
34
|
-
reject: [
|
|
34
|
+
reject: [],
|
|
35
35
|
|
|
36
36
|
// Always upgrade devDependencies as well
|
|
37
37
|
dep: 'prod,dev',
|
package/.prettierignore
CHANGED
package/.stylelintignore
CHANGED
package/.vscode/extensions.jsonc
CHANGED
|
@@ -4,7 +4,7 @@ extensions.jsonc
|
|
|
4
4
|
NOTE: This file is for reference only and is not actively used by VS Code.
|
|
5
5
|
VS Code uses the extensions.json file without comments for actual configuration.
|
|
6
6
|
|
|
7
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
7
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
8
8
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
9
9
|
This file is part of Network Pro.
|
|
10
10
|
========================================================================== */
|
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- =====================================================================
|
|
2
2
|
CHANGELOG.md
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
====================================================================== -->
|
|
@@ -24,6 +24,57 @@ version increments reflecting both user-visible and operational impact.
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
+
## [1.26.1] - 2026-01-15
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.49.5**.
|
|
32
|
+
- Updated `static/manifest.json` to better reflect the company's current mission, focus, and messaging.
|
|
33
|
+
- Updated timestamps in `sitemap.xml`.
|
|
34
|
+
- Minor edits made to `PrivacyContent.svelte` and `TermsUseContent.svelte` for clarity and accuracy.
|
|
35
|
+
- Bumped project version to `v1.26.1`.
|
|
36
|
+
- Updated dependencies:
|
|
37
|
+
- `@sveltejs/kit` `2.49.4` → `2.49.5`
|
|
38
|
+
- `@vitest/coverage-v8` `4.0.16` → `4.0.17`
|
|
39
|
+
- `svelte` `5.46.1` → `5.46.4`
|
|
40
|
+
- `vitest` `4.0.16` → `4.0.17`
|
|
41
|
+
- `posthog-js` `^1.318.1` → `^1.323.0`
|
|
42
|
+
- `prettier` `3.7.4` → `3.8.0`
|
|
43
|
+
- `stylelint` `^16.26.1` → `^17.0.0`
|
|
44
|
+
- `stylelint-config-recommended` `^17.0.0` → `^18.0.0`
|
|
45
|
+
|
|
46
|
+
### Security
|
|
47
|
+
|
|
48
|
+
- Updated `@sveltejs/kit` to `2.49.5`, in order to address CVE-2026-22803.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## [1.26.0] - 2026-01-10
|
|
53
|
+
|
|
54
|
+
### Changed
|
|
55
|
+
|
|
56
|
+
- Updated home page content to emphasize a focus on both security and privacy.
|
|
57
|
+
- Refined header navigation styling to improve external link icon alignment and spacing consistency across layouts.
|
|
58
|
+
- Updated `CONSTANTS.COMPANY_INFO.YEAR` in `src/lib/index.js` to reflect `2025, 2026`.
|
|
59
|
+
- Updated copyright headers across all tracked source files to reflect effective copyright years.
|
|
60
|
+
- Clarified repository distribution intent and reuse expectations in `README.md`, including documentation of copyright header conventions for this template project.
|
|
61
|
+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.49.4**.
|
|
62
|
+
- Bumped project version to `v1.26.0`.
|
|
63
|
+
- Updated test tooling to support Vitest 4.x:
|
|
64
|
+
- Removed Vitest-related version constraints from update tooling.
|
|
65
|
+
- Updated Vitest configuration for compatibility with `vitest` and `@vitest/coverage-v8` v4.
|
|
66
|
+
- Updated dependencies:
|
|
67
|
+
- `@eslint/compat` `^2.0.0` → `^2.0.1`
|
|
68
|
+
- `@sveltejs/kit` `2.49.3` → `2.49.4`
|
|
69
|
+
- `@sveltejs/vite-plugin-svelte` `^6.2.3` → `^6.2.4`
|
|
70
|
+
- `@vitest/coverage-v8` `3.2.4` → `4.0.16`
|
|
71
|
+
- `posthog-js` `^1.315.1` → `^1.318.1`
|
|
72
|
+
- `eslint-plugin-jsdoc` `^61.5.0` → `^62.0.0`
|
|
73
|
+
- `vite-tsconfig-paths` `^6.0.3` → `^6.0.4`
|
|
74
|
+
- `vitest` `3.2.4` → `4.0.16`
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
27
78
|
## [1.25.24] - 2026-01-07
|
|
28
79
|
|
|
29
80
|
### Changed
|
|
@@ -1109,8 +1160,7 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
1109
1160
|
- Corrected `isTestEnvironment` constant.
|
|
1110
1161
|
- Relaxed CSP rules for development mode to support local PostHog proxy.
|
|
1111
1162
|
- Updated `static/sitemap.xml` to include the `/services` route and refresh _Last Modified_ timestamps.
|
|
1112
|
-
- Updated author metadata (`@author`)
|
|
1113
|
-
from **SunDevil311** → **Scott Lopez** across all relevant JS files, including scripts, libs, and tests.
|
|
1163
|
+
- Updated author metadata (`@author`) from **SunDevil311** → **Scott Lopez** across all relevant JS files, including scripts, libs, and tests.
|
|
1114
1164
|
- Updated dependencies:
|
|
1115
1165
|
- `dompurify` `^3.2.7` → `^3.3.0`
|
|
1116
1166
|
- `posthog-js` `^1.271.0` → `^1.276.0`
|
|
@@ -2157,8 +2207,7 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2157
2207
|
- Consent cookie logic added for first-time and returning users.
|
|
2158
2208
|
- First iteration of PostHog integration.
|
|
2159
2209
|
- `sr-only` utility class added to `global.min.css` for accessibility improvements.
|
|
2160
|
-
- Support disclaimer added to Legal, Copyright,
|
|
2161
|
-
and Licensing section.
|
|
2210
|
+
- Support disclaimer added to Legal, Copyright, and Licensing section.
|
|
2162
2211
|
- Privacy dashboard UI elements and opt-in interface.
|
|
2163
2212
|
|
|
2164
2213
|
### Changed
|
|
@@ -2175,7 +2224,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
2175
2224
|
|
|
2176
2225
|
<!-- Link references -->
|
|
2177
2226
|
|
|
2178
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.
|
|
2227
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.1...HEAD
|
|
2228
|
+
[1.26.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.1
|
|
2229
|
+
[1.26.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.0
|
|
2179
2230
|
[1.25.24]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.24
|
|
2180
2231
|
[1.25.23]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.23
|
|
2181
2232
|
[1.25.22]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.22
|
package/CHANGELOG.template.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- =====================================================================
|
|
2
2
|
CHANGELOG.template.md
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
====================================================================== -->
|
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- =====================================================================
|
|
2
2
|
LICENSE.md
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
====================================================================== -->
|
|
@@ -53,7 +53,7 @@ This document is provided for convenience only. In the event of any discrepancy,
|
|
|
53
53
|
|
|
54
54
|
All content—including text, software, logos, graphics, documentation, and other materials—provided by **Network Pro Strategies** (“Network Pro™”, “Company”, “Licensor”) is protected by U.S. and international copyright laws.
|
|
55
55
|
|
|
56
|
-
Copyright © 2025 **[Network Pro Strategies](https://netwk.pro)** (Network Pro™)
|
|
56
|
+
Copyright © 2025, 2026 **[Network Pro Strategies](https://netwk.pro)** (Network Pro™)
|
|
57
57
|
|
|
58
58
|
<a name="trademark"></a>
|
|
59
59
|
|
|
@@ -243,7 +243,7 @@ The Company may be contacted via our [Contact Form](https://netwk.pro/contact) o
|
|
|
243
243
|
|
|
244
244
|
<div style="font-size: 12px; text-align: center;">
|
|
245
245
|
|
|
246
|
-
Copyright © 2025
|
|
246
|
+
Copyright © 2025, 2026
|
|
247
247
|
**[Network Pro Strategies](https://netwk.pro/)** (Network Pro™)
|
|
248
248
|
|
|
249
249
|
Network Pro™, the shield logo, and the "Locking Down Networks...™" slogan are [trademarks](#trademark) of Network Pro Strategies.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- =====================================================================
|
|
2
2
|
README.md
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
====================================================================== -->
|
|
@@ -23,7 +23,7 @@ This file is part of Network Pro.
|
|
|
23
23
|
|
|
24
24
|
This GitHub repository powers the official web presence of **[Network Pro Strategies](https://netwk.pro/about)** — a research- and infrastructure-focused technology initiative working across cybersecurity, digital systems, and privacy. Our work spans applied research and development, experimental infrastructure, educational tools and publications, and public advocacy for security- and privacy-respecting technology.
|
|
25
25
|
|
|
26
|
-
Built with [SvelteKit](https://
|
|
26
|
+
Built with [SvelteKit](https://svelte.dev/) and deployed via [Vercel](https://vercel.com/).
|
|
27
27
|
[Blog](https://github.com/netwk-pro/blog) and [documentation](https://github.com/netwk-pro/docs) subsites built with [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) and deployed via [Vercel](https://vercel.com/).
|
|
28
28
|
|
|
29
29
|
All infrastructure and data flows are designed with **maximum transparency, self-hosting, and user privacy** in mind.
|
|
@@ -32,6 +32,7 @@ All infrastructure and data flows are designed with **maximum transparency, self
|
|
|
32
32
|
|
|
33
33
|
### Table of Contents
|
|
34
34
|
|
|
35
|
+
- [Template & Distribution Intent](#distribution)
|
|
35
36
|
- [Changelog](#changelog)
|
|
36
37
|
- [Repository Structure](#structure)
|
|
37
38
|
- [Getting Started](#getting-started)
|
|
@@ -47,6 +48,30 @@ All infrastructure and data flows are designed with **maximum transparency, self
|
|
|
47
48
|
|
|
48
49
|
---
|
|
49
50
|
|
|
51
|
+
<section id="distribution">
|
|
52
|
+
|
|
53
|
+
## 📦 Template & Distribution Intent
|
|
54
|
+
|
|
55
|
+
This repository serves multiple purposes:
|
|
56
|
+
|
|
57
|
+
- It powers the official **Network Pro™ web presence**
|
|
58
|
+
- It is distributed via **npm** and **GitHub Package Registry**
|
|
59
|
+
- It is intentionally designed to function as a **reference implementation and starter template** for SvelteKit projects that emphasize security, documentation, and maintainability
|
|
60
|
+
|
|
61
|
+
As a result, this codebase is treated as a **continuously maintained software project**, rather than a static website snapshot.
|
|
62
|
+
|
|
63
|
+
### Copyright & Header Conventions
|
|
64
|
+
|
|
65
|
+
Source code and configuration files in this repository use **copyright year ranges** (e.g. `© 2025–2026`) to reflect ongoing development over time. This approach aligns with common practice in actively maintained software projects and templates.
|
|
66
|
+
|
|
67
|
+
User-facing content (such as pages, documentation, and rendered site output) may derive effective copyright years dynamically at runtime to more accurately reflect publication and revision timelines.
|
|
68
|
+
|
|
69
|
+
These conventions are intentional and aim to balance legal clarity, maintainability, and practical reuse for downstream consumers of this project.
|
|
70
|
+
|
|
71
|
+
</section>
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
50
75
|
<section id="changelog">
|
|
51
76
|
|
|
52
77
|
## 📝 Changelog
|
|
@@ -59,6 +84,8 @@ version increments reflecting both user-visible and operational impact.
|
|
|
59
84
|
|
|
60
85
|
</section>
|
|
61
86
|
|
|
87
|
+
<sub>[Back to top](#top)</sub>
|
|
88
|
+
|
|
62
89
|
---
|
|
63
90
|
|
|
64
91
|
<section id="structure">
|
|
@@ -550,7 +577,7 @@ _Designed for professionals. Hardened for privacy. Built with intent._
|
|
|
550
577
|
|
|
551
578
|
<span style="font-size: 12px; text-align: center;">
|
|
552
579
|
|
|
553
|
-
Copyright © 2025
|
|
580
|
+
Copyright © 2025, 2026
|
|
554
581
|
**[Network Pro Strategies](https://netwk.pro) (Network Pro™)**
|
|
555
582
|
|
|
556
583
|
Network Pro™, the shield logo, and the "Locking Down Networks...™" slogan are [trademarks](https://netwk.pro/legal#trademark) of Network Pro Strategies.
|
package/bootstrap.local.sh
CHANGED
package/eslint.config.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
eslint.config.mjs
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================= */
|
package/jsconfig.template.jsonc
CHANGED
|
@@ -5,7 +5,7 @@ NOTE: This file is for reference only and is not actively used by SvelteKit
|
|
|
5
5
|
or tooling. SvelteKit uses the jsconfig.json file without comments for
|
|
6
6
|
actual configuration.
|
|
7
7
|
|
|
8
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
8
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
9
9
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
10
10
|
This file is part of Network Pro.
|
|
11
11
|
========================================================================= */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.26.1",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advocacy",
|
|
@@ -88,27 +88,27 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"dompurify": "^3.3.1",
|
|
91
|
-
"posthog-js": "^1.
|
|
91
|
+
"posthog-js": "^1.323.0",
|
|
92
92
|
"semver": "^7.7.3",
|
|
93
|
-
"svelte": "5.46.
|
|
93
|
+
"svelte": "5.46.4"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
|
-
"@eslint/compat": "^2.0.
|
|
96
|
+
"@eslint/compat": "^2.0.1",
|
|
97
97
|
"@eslint/js": "^9.39.2",
|
|
98
98
|
"@lhci/cli": "^0.15.1",
|
|
99
99
|
"@playwright/test": "^1.57.0",
|
|
100
100
|
"@sveltejs/adapter-netlify": "^5.2.4",
|
|
101
101
|
"@sveltejs/adapter-vercel": "^6.3.0",
|
|
102
|
-
"@sveltejs/kit": "2.49.
|
|
103
|
-
"@sveltejs/vite-plugin-svelte": "^6.2.
|
|
102
|
+
"@sveltejs/kit": "2.49.5",
|
|
103
|
+
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
104
104
|
"@testing-library/jest-dom": "^6.9.1",
|
|
105
105
|
"@testing-library/svelte": "^5.3.1",
|
|
106
|
-
"@vitest/coverage-v8": "
|
|
106
|
+
"@vitest/coverage-v8": "4.0.17",
|
|
107
107
|
"autoprefixer": "^10.4.23",
|
|
108
108
|
"browserslist": "^4.28.1",
|
|
109
109
|
"eslint": "^9.39.2",
|
|
110
110
|
"eslint-config-prettier": "^10.1.8",
|
|
111
|
-
"eslint-plugin-jsdoc": "^
|
|
111
|
+
"eslint-plugin-jsdoc": "^62.0.0",
|
|
112
112
|
"eslint-plugin-svelte": "^3.14.0",
|
|
113
113
|
"globals": "^17.0.0",
|
|
114
114
|
"globby": "^16.1.0",
|
|
@@ -119,12 +119,12 @@
|
|
|
119
119
|
"npm-run-all": "^4.1.5",
|
|
120
120
|
"playwright": "^1.57.0",
|
|
121
121
|
"postcss": "^8.5.6",
|
|
122
|
-
"prettier": "3.
|
|
122
|
+
"prettier": "3.8.0",
|
|
123
123
|
"prettier-plugin-svelte": "^3.4.1",
|
|
124
124
|
"simple-git-hooks": "^2.13.1",
|
|
125
|
-
"stylelint": "^
|
|
125
|
+
"stylelint": "^17.0.0",
|
|
126
126
|
"stylelint-config-html": "^1.1.0",
|
|
127
|
-
"stylelint-config-recommended": "^
|
|
127
|
+
"stylelint-config-recommended": "^18.0.0",
|
|
128
128
|
"stylelint-order": "^7.0.1",
|
|
129
129
|
"svelte-check": "^4.3.5",
|
|
130
130
|
"svelte-eslint-parser": "^1.4.1",
|
|
@@ -133,8 +133,8 @@
|
|
|
133
133
|
"vite": "^7.3.1",
|
|
134
134
|
"vite-plugin-devtools-json": "^1.0.0",
|
|
135
135
|
"vite-plugin-lightningcss": "^0.0.5",
|
|
136
|
-
"vite-tsconfig-paths": "^6.0.
|
|
137
|
-
"vitest": "
|
|
136
|
+
"vite-tsconfig-paths": "^6.0.4",
|
|
137
|
+
"vitest": "4.0.17"
|
|
138
138
|
},
|
|
139
139
|
"overrides": {
|
|
140
140
|
"cookie": "^1.0.0",
|
package/playwright.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
playwright.config.js
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|
package/postcss.config.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
postcss.config.mjs
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|
package/scripts/auditScripts.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* ==========================================================================
|
|
2
2
|
scripts/auditScripts.js
|
|
3
3
|
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
|
+
Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
|
|
5
5
|
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
6
|
This file is part of Network Pro.
|
|
7
7
|
========================================================================== */
|