@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.
Files changed (176) 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 +57 -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 +13 -13
  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 +5 -5
  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 +7 -8
  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/manifest.json +2 -15
  151. package/static/offline.html +1 -1
  152. package/static/offline.min.css +1 -1
  153. package/static/robots.txt +1 -1
  154. package/static/sitemap.xml +4 -4
  155. package/stylelint.config.js +1 -1
  156. package/svelte.config.js +1 -1
  157. package/tests/e2e/app.spec.js +1 -1
  158. package/tests/e2e/mobile.spec.js +1 -1
  159. package/tests/e2e/shared/helpers.js +1 -1
  160. package/tests/meta/meta.test.js +1 -1
  161. package/tests/unit/client/lib/PWAInstallButton.test.js +1 -1
  162. package/tests/unit/client/lib/unregisterServiceWorker.test.js +1 -1
  163. package/tests/unit/client/lib/utils/redirect.test.js +1 -1
  164. package/tests/unit/client/lib/utils/utm.test.js +1 -1
  165. package/tests/unit/client/routes/page.svelte.test.js +1 -1
  166. package/tests/unit/server/checkEnv.test.js +1 -1
  167. package/tests/unit/server/checkVersions.test.js +1 -1
  168. package/tests/unit/server/internal/auditCoverage.test.js +1 -1
  169. package/tests/unit/server/internal/ssrBoundary.test.js +1 -1
  170. package/tests/unit/server/lib/security/probely.test.js +1 -1
  171. package/tests/unit/server/lib/utils/purify.test.js +1 -1
  172. package/tests/unit/server/meta.test.js +1 -1
  173. package/vite.config.js +1 -1
  174. package/vitest-setup-client.js +1 -0
  175. package/vitest.config.client.js +9 -8
  176. 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,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.25.24...HEAD
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
@@ -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.24",
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.315.1",
91
+ "posthog-js": "^1.323.0",
92
92
  "semver": "^7.7.3",
93
- "svelte": "5.46.1"
93
+ "svelte": "5.46.4"
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
101
  "@sveltejs/adapter-vercel": "^6.3.0",
102
- "@sveltejs/kit": "2.49.3",
103
- "@sveltejs/vite-plugin-svelte": "^6.2.3",
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": "3.2.4",
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": "^61.5.0",
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.7.4",
122
+ "prettier": "3.8.0",
123
123
  "prettier-plugin-svelte": "^3.4.1",
124
124
  "simple-git-hooks": "^2.13.1",
125
- "stylelint": "^16.26.1",
125
+ "stylelint": "^17.0.0",
126
126
  "stylelint-config-html": "^1.1.0",
127
- "stylelint-config-recommended": "^17.0.0",
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.3",
137
- "vitest": "3.2.4"
136
+ "vite-tsconfig-paths": "^6.0.4",
137
+ "vitest": "4.0.17"
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
  ========================================================================== */