@networkpro/web 1.25.23 → 1.26.0

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 (175) hide show
  1. package/.editorconfig +1 -1
  2. package/.env.template +2 -2
  3. package/.gitattributes +1 -1
  4. package/.github/ISSUE_TEMPLATE/bug_report.yml +1 -1
  5. package/.github/ISSUE_TEMPLATE/config.yml +1 -1
  6. package/.github/ISSUE_TEMPLATE/feature_request.yml +1 -1
  7. package/.github/ISSUE_TEMPLATE/legal_review.yml +1 -1
  8. package/.github/workflows/auto-assign.yml +1 -1
  9. package/.github/workflows/backup-branch.yml +1 -1
  10. package/.github/workflows/build-and-publish.yml +1 -1
  11. package/.github/workflows/check-codeql.yml +1 -1
  12. package/.github/workflows/check-security-txt-expiry.yml +6 -0
  13. package/.github/workflows/dependency-review.yml +1 -1
  14. package/.github/workflows/lighthouse.yml +1 -1
  15. package/.github/workflows/meta-check.yml +1 -1
  16. package/.github/workflows/playwright.yml +1 -1
  17. package/.github/workflows/prevent-audit-merge.yml +1 -1
  18. package/.github/workflows/probely-scan.yml +1 -1
  19. package/.github/workflows/publish-test.yml +1 -1
  20. package/.github/workflows/secret-scan.yml +1 -1
  21. package/.github/workflows/templates/check-codeql.template.yml +1 -1
  22. package/.github/workflows/templates/publish.template.yml +1 -1
  23. package/.lighthouserc.cjs +1 -1
  24. package/.markdownlint.mjs +1 -1
  25. package/.md-smart-quotes.js +1 -1
  26. package/.ncurc.cjs +2 -2
  27. package/.prettierignore +1 -1
  28. package/.stylelintignore +1 -1
  29. package/.vscode/extensions.jsonc +1 -1
  30. package/CHANGELOG.md +48 -6
  31. package/CHANGELOG.template.md +1 -1
  32. package/LICENSE.md +3 -3
  33. package/README.md +30 -3
  34. package/bootstrap.local.sh +1 -1
  35. package/eslint.config.mjs +1 -1
  36. package/jsconfig.template.jsonc +1 -1
  37. package/package.json +12 -12
  38. package/playwright.config.js +1 -1
  39. package/postcss.config.mjs +1 -1
  40. package/scripts/auditScripts.js +1 -1
  41. package/scripts/bundleCss.js +21 -12
  42. package/scripts/checkEnv.js +1 -1
  43. package/scripts/checkNode.js +1 -1
  44. package/scripts/checkVersions.js +1 -1
  45. package/scripts/generateTest.js +1 -1
  46. package/scripts/openReport.js +1 -1
  47. package/src/app.d.ts +1 -1
  48. package/src/app.html +2 -2
  49. package/src/global.d.ts +1 -1
  50. package/src/hooks.client.ts +1 -1
  51. package/src/hooks.server.js +1 -1
  52. package/src/lib/README.md +3 -3
  53. package/src/lib/components/Badges.svelte +1 -1
  54. package/src/lib/components/CodeBlock.svelte +1 -1
  55. package/src/lib/components/ContainerSection.svelte +1 -1
  56. package/src/lib/components/FullWidthSection.svelte +1 -1
  57. package/src/lib/components/LegalNav.svelte +1 -1
  58. package/src/lib/components/Logo.svelte +1 -1
  59. package/src/lib/components/MetaTags.svelte +1 -1
  60. package/src/lib/components/PWAInstallButton.svelte +1 -1
  61. package/src/lib/components/RedirectPage.svelte +1 -1
  62. package/src/lib/components/ServiceSummaryTable.svelte +1 -1
  63. package/src/lib/components/SocialMedia.svelte +1 -1
  64. package/src/lib/components/foss/FossFeatures.svelte +1 -1
  65. package/src/lib/components/foss/FossItemContent.svelte +1 -1
  66. package/src/lib/components/foss/ObtainiumBlock.svelte +1 -1
  67. package/src/lib/components/foss/index.js +1 -1
  68. package/src/lib/components/index.js +1 -1
  69. package/src/lib/components/layout/Footer.svelte +1 -1
  70. package/src/lib/components/layout/HeaderDefault.svelte +8 -18
  71. package/src/lib/components/layout/HeaderHome.svelte +8 -16
  72. package/src/lib/components/layout/index.js +1 -1
  73. package/src/lib/data/fossData.js +1 -1
  74. package/src/lib/data/pgpKeys.js +1 -1
  75. package/src/lib/images.js +1 -1
  76. package/src/lib/index.js +3 -3
  77. package/src/lib/meta.js +1 -1
  78. package/src/lib/pages/AboutContent.svelte +1 -1
  79. package/src/lib/pages/FossContent.svelte +1 -1
  80. package/src/lib/pages/HomeContent.svelte +3 -3
  81. package/src/lib/pages/LicenseContent.svelte +1 -1
  82. package/src/lib/pages/PGPContent.svelte +1 -1
  83. package/src/lib/pages/PrivacyContent.svelte +1 -1
  84. package/src/lib/pages/PrivacyDashboard.svelte +1 -1
  85. package/src/lib/pages/ServicesContent.svelte +1 -1
  86. package/src/lib/pages/TermsConditionsContent.svelte +1 -1
  87. package/src/lib/pages/TermsUseContent.svelte +1 -1
  88. package/src/lib/pages/index.js +1 -1
  89. package/src/lib/registerServiceWorker.js +1 -1
  90. package/src/lib/security/probely.js +1 -1
  91. package/src/lib/stores/posthog.js +2 -1
  92. package/src/lib/stores/trackingPreferences.js +1 -1
  93. package/src/lib/styles/css/default.css +11 -2
  94. package/src/lib/styles/css/global.css +1 -3
  95. package/src/lib/styles/css/normalize.css +1 -1
  96. package/src/lib/styles/css/offline.css +1 -1
  97. package/src/lib/styles/css/style.css +3 -1
  98. package/src/lib/styles/fa-global.css +2 -3
  99. package/src/lib/styles/global.min.css +2 -2
  100. package/src/lib/styles/index.js +1 -1
  101. package/src/lib/types/README.md +2 -2
  102. package/src/lib/types/appConstants.js +1 -1
  103. package/src/lib/types/fossTypes.js +1 -1
  104. package/src/lib/types/metadata.js +1 -1
  105. package/src/lib/unregisterServiceWorker.js +1 -3
  106. package/src/lib/utils/env.js +1 -1
  107. package/src/lib/utils/getUTMParams.js +1 -1
  108. package/src/lib/utils/initAnalytics.js +1 -1
  109. package/src/lib/utils/purify.js +1 -1
  110. package/src/lib/utils/redirect.js +1 -1
  111. package/src/lib/utils/utm.js +1 -1
  112. package/src/routes/+error.svelte +1 -1
  113. package/src/routes/+layout.js +1 -1
  114. package/src/routes/+layout.svelte +1 -1
  115. package/src/routes/+page.server.js +1 -1
  116. package/src/routes/+page.svelte +1 -1
  117. package/src/routes/...404/+page.svelte +1 -1
  118. package/src/routes/about/+page.server.js +1 -1
  119. package/src/routes/about/+page.svelte +1 -1
  120. package/src/routes/api/mock-csp/+server.js +1 -1
  121. package/src/routes/consultation/+page.svelte +1 -1
  122. package/src/routes/contact/+page.svelte +1 -1
  123. package/src/routes/foss/+page.server.js +1 -1
  124. package/src/routes/foss/+page.svelte +1 -1
  125. package/src/routes/legal/+page.server.js +1 -1
  126. package/src/routes/legal/+page.svelte +1 -1
  127. package/src/routes/links/+page.svelte +1 -1
  128. package/src/routes/pgp/+page.server.js +1 -1
  129. package/src/routes/pgp/+page.svelte +1 -1
  130. package/src/routes/pgp/[key]/+server.js +1 -1
  131. package/src/routes/posts/+page.svelte +1 -1
  132. package/src/routes/privacy/+page.server.js +1 -1
  133. package/src/routes/privacy/+page.svelte +1 -1
  134. package/src/routes/privacy-dashboard/+page.server.js +1 -1
  135. package/src/routes/privacy-dashboard/+page.svelte +1 -1
  136. package/src/routes/privacy-rights/+page.svelte +1 -1
  137. package/src/routes/relay-[slug]/[...catchall]/+server.js +1 -1
  138. package/src/routes/services/+page.server.js +1 -1
  139. package/src/routes/services/+page.svelte +1 -1
  140. package/src/routes/status/+page.server.js +1 -1
  141. package/src/routes/terms-conditions/+page.server.js +1 -1
  142. package/src/routes/terms-conditions/+page.svelte +1 -1
  143. package/src/routes/terms-of-use/+page.server.js +1 -1
  144. package/src/routes/terms-of-use/+page.svelte +1 -1
  145. package/src/service-worker.d.ts +1 -1
  146. package/src/service-worker.js +1 -1
  147. package/static/bin/license/CC-BY-4.0.html +1 -1
  148. package/static/bin/license/COPYING.html +1 -1
  149. package/static/disableSw.js +1 -1
  150. package/static/offline.html +1 -1
  151. package/static/offline.min.css +1 -1
  152. package/static/robots.txt +1 -1
  153. package/static/sitemap.xml +2 -2
  154. package/stylelint.config.js +1 -1
  155. package/svelte.config.js +1 -1
  156. package/tests/e2e/app.spec.js +1 -1
  157. package/tests/e2e/mobile.spec.js +1 -1
  158. package/tests/e2e/shared/helpers.js +1 -1
  159. package/tests/meta/meta.test.js +1 -1
  160. package/tests/unit/client/lib/PWAInstallButton.test.js +1 -1
  161. package/tests/unit/client/lib/unregisterServiceWorker.test.js +1 -1
  162. package/tests/unit/client/lib/utils/redirect.test.js +1 -1
  163. package/tests/unit/client/lib/utils/utm.test.js +1 -1
  164. package/tests/unit/client/routes/page.svelte.test.js +1 -1
  165. package/tests/unit/server/checkEnv.test.js +1 -1
  166. package/tests/unit/server/checkVersions.test.js +1 -1
  167. package/tests/unit/server/internal/auditCoverage.test.js +1 -1
  168. package/tests/unit/server/internal/ssrBoundary.test.js +1 -1
  169. package/tests/unit/server/lib/security/probely.test.js +1 -1
  170. package/tests/unit/server/lib/utils/purify.test.js +1 -1
  171. package/tests/unit/server/meta.test.js +1 -1
  172. package/vite.config.js +1 -1
  173. package/vitest-setup-client.js +1 -0
  174. package/vitest.config.client.js +9 -8
  175. package/vitest.config.server.js +3 -2
package/.editorconfig CHANGED
@@ -1,6 +1,6 @@
1
1
  # .editorconfig
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
  #
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, test, ci, audit, production
8
+ # One of: dev, ci, audit, production
9
9
  ENV_MODE=dev
10
10
  PUBLIC_ENV_MODE=dev
11
11
 
package/.gitattributes CHANGED
@@ -1,6 +1,6 @@
1
1
  # .gitattributes
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,4 +1,4 @@
1
- # Copyright © 2025 Network Pro Strategies (Network Pro™)
1
+ # Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
2
2
  # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
3
  # This file is part of Network Pro
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright © 2025 Network Pro Strategies (Network Pro™)
1
+ # Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
2
2
  # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
3
  # This file is part of Network Pro
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright © 2025 Network Pro Strategies (Network Pro™)
1
+ # Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
2
2
  # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
3
  # This file is part of Network Pro
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright © 2025 Network Pro Strategies (Network Pro™)
1
+ # Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
2
2
  # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
3
  # This file is part of Network Pro
4
4
 
@@ -1,6 +1,6 @@
1
1
  # .github/workflows/auto-assign.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
  #
@@ -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/build-and-publish.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/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,3 +1,9 @@
1
+ # .github/workflows/check-security-txt-expiry.yml
2
+ #
3
+ # Copyright © 2025-2026 Network Pro Strategies (Network Pro™)
4
+ # SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ # This file is part of Network Pro
6
+
1
7
  name: Check security.txt expiry
2
8
 
3
9
  on:
@@ -1,6 +1,6 @@
1
1
  # .github/workflows/dependency-review.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/lighthouse.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/meta-check.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/playwright.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
 
@@ -1,6 +1,6 @@
1
1
  # .github/workflows/probely-scan.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/publish-test.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/secret-scan.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
  ========================================================================== */
@@ -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: ['vitest', '@vitest/coverage-v8'],
34
+ reject: [],
35
35
 
36
36
  // Always upgrade devDependencies as well
37
37
  dep: 'prod,dev',
package/.prettierignore CHANGED
@@ -1,6 +1,6 @@
1
1
  # .prettierignore
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
 
package/.stylelintignore CHANGED
@@ -1,6 +1,6 @@
1
1
  # .stylelintignore
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
 
@@ -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,48 @@ version increments reflecting both user-visible and operational impact.
24
24
 
25
25
  ---
26
26
 
27
+ ## [1.26.0] - 2026-01-10
28
+
29
+ ### Changed
30
+
31
+ - Updated home page content to emphasize a focus on both security and privacy.
32
+ - Refined header navigation styling to improve external link icon alignment and spacing consistency across layouts.
33
+ - Updated `CONSTANTS.COMPANY_INFO.YEAR` in `src/lib/index.js` to reflect `2025, 2026`.
34
+ - Updated copyright headers across all tracked source files to reflect effective copyright years.
35
+ - Clarified repository distribution intent and reuse expectations in `README.md`, including documentation of copyright header conventions for this template project.
36
+ - Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.49.4**.
37
+ - Bumped project version to `v1.26.0`.
38
+ - Updated test tooling to support Vitest 4.x:
39
+ - Removed Vitest-related version constraints from update tooling.
40
+ - Updated Vitest configuration for compatibility with `vitest` and `@vitest/coverage-v8` v4.
41
+ - Updated dependencies:
42
+ - `@eslint/compat` `^2.0.0` → `^2.0.1`
43
+ - `@sveltejs/kit` `2.49.3` → `2.49.4`
44
+ - `@sveltejs/vite-plugin-svelte` `^6.2.3` → `^6.2.4`
45
+ - `@vitest/coverage-v8` `3.2.4` → `4.0.16`
46
+ - `posthog-js` `^1.315.1` → `^1.318.1`
47
+ - `eslint-plugin-jsdoc` `^61.5.0` → `^62.0.0`
48
+ - `vite-tsconfig-paths` `^6.0.3` → `^6.0.4`
49
+ - `vitest` `3.2.4` → `4.0.16`
50
+
51
+ ---
52
+
53
+ ## [1.25.24] - 2026-01-07
54
+
55
+ ### Changed
56
+
57
+ - Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.49.3**.
58
+ - Bumped project version to `v1.25.24`.
59
+ - Updated dependencies:
60
+ - `@sveltejs/kit` `2.49.2` → `2.49.3`
61
+ - `@sveltejs/vite-plugin-svelte` `^6.2.1` → `^6.2.3`
62
+ - `vite` `^7.3.0` → `^7.3.1`
63
+ - `@sveltejs/adapter-vercel` `^6.2.0` → `^6.3.0`
64
+ - `eslint-plugin-svelte` `^3.13.1` → `^3.14.0`
65
+ - `posthog-js` `^1.313.0` → `^1.315.1`
66
+
67
+ ---
68
+
27
69
  ## [1.25.23] - 2026-01-04
28
70
 
29
71
  ### Changed
@@ -1093,8 +1135,7 @@ This enables analytics filtering and CSP hardening for the audit environment.
1093
1135
  - Corrected `isTestEnvironment` constant.
1094
1136
  - Relaxed CSP rules for development mode to support local PostHog proxy.
1095
1137
  - Updated `static/sitemap.xml` to include the `/services` route and refresh _Last Modified_ timestamps.
1096
- - Updated author metadata (`@author`)
1097
- from **SunDevil311** → **Scott Lopez** across all relevant JS files, including scripts, libs, and tests.
1138
+ - Updated author metadata (`@author`) from **SunDevil311** → **Scott Lopez** across all relevant JS files, including scripts, libs, and tests.
1098
1139
  - Updated dependencies:
1099
1140
  - `dompurify` `^3.2.7` → `^3.3.0`
1100
1141
  - `posthog-js` `^1.271.0` → `^1.276.0`
@@ -2141,8 +2182,7 @@ This enables analytics filtering and CSP hardening for the audit environment.
2141
2182
  - Consent cookie logic added for first-time and returning users.
2142
2183
  - First iteration of PostHog integration.
2143
2184
  - `sr-only` utility class added to `global.min.css` for accessibility improvements.
2144
- - Support disclaimer added to Legal, Copyright,
2145
- and Licensing section.
2185
+ - Support disclaimer added to Legal, Copyright, and Licensing section.
2146
2186
  - Privacy dashboard UI elements and opt-in interface.
2147
2187
 
2148
2188
  ### Changed
@@ -2159,7 +2199,9 @@ This enables analytics filtering and CSP hardening for the audit environment.
2159
2199
 
2160
2200
  <!-- Link references -->
2161
2201
 
2162
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.23...HEAD
2202
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.26.0...HEAD
2203
+ [1.26.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.26.0
2204
+ [1.25.24]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.24
2163
2205
  [1.25.23]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.23
2164
2206
  [1.25.22]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.22
2165
2207
  [1.25.21]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.21
@@ -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&trade;”, “Company”, “Licensor”) is protected by U.S. and international copyright laws.
55
55
 
56
- Copyright &copy; 2025 **[Network Pro Strategies](https://netwk.pro)** (Network Pro&trade;)
56
+ Copyright &copy; 2025, 2026 **[Network Pro Strategies](https://netwk.pro)** (Network Pro&trade;)
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 &copy; 2025
246
+ Copyright &copy; 2025, 2026
247
247
  **[Network Pro Strategies](https://netwk.pro/)** (Network Pro&trade;)
248
248
 
249
249
  Network Pro&trade;, the shield logo, and the "Locking Down Networks...&trade;" 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://kit.svelte.dev/) and deployed via [Vercel](https://vercel.com/).
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 &copy; 2025
580
+ Copyright &copy; 2025, 2026
554
581
  **[Network Pro Strategies](https://netwk.pro) (Network Pro&trade;)**
555
582
 
556
583
  Network Pro&trade;, the shield logo, and the "Locking Down Networks...&trade;" slogan are [trademarks](https://netwk.pro/legal#trademark) of Network Pro Strategies.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
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
 
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
  ========================================================================= */
@@ -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.25.23",
4
+ "version": "1.26.0",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advocacy",
@@ -88,28 +88,28 @@
88
88
  },
89
89
  "dependencies": {
90
90
  "dompurify": "^3.3.1",
91
- "posthog-js": "^1.313.0",
91
+ "posthog-js": "^1.318.1",
92
92
  "semver": "^7.7.3",
93
93
  "svelte": "5.46.1"
94
94
  },
95
95
  "devDependencies": {
96
- "@eslint/compat": "^2.0.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
- "@sveltejs/adapter-vercel": "^6.2.0",
102
- "@sveltejs/kit": "2.49.2",
103
- "@sveltejs/vite-plugin-svelte": "^6.2.1",
101
+ "@sveltejs/adapter-vercel": "^6.3.0",
102
+ "@sveltejs/kit": "2.49.4",
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": "3.2.4",
106
+ "@vitest/coverage-v8": "4.0.16",
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": "^61.5.0",
112
- "eslint-plugin-svelte": "^3.13.1",
111
+ "eslint-plugin-jsdoc": "^62.0.0",
112
+ "eslint-plugin-svelte": "^3.14.0",
113
113
  "globals": "^17.0.0",
114
114
  "globby": "^16.1.0",
115
115
  "jsdom": "27.4.0",
@@ -130,11 +130,11 @@
130
130
  "svelte-eslint-parser": "^1.4.1",
131
131
  "svelte-preprocess": "^6.0.3",
132
132
  "typescript": "^5.9.3",
133
- "vite": "^7.3.0",
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.3",
137
- "vitest": "3.2.4"
136
+ "vite-tsconfig-paths": "^6.0.4",
137
+ "vitest": "4.0.16"
138
138
  },
139
139
  "overrides": {
140
140
  "cookie": "^1.0.0",
@@ -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
  ========================================================================== */
@@ -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
  ========================================================================== */
@@ -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
  ========================================================================== */