lightnet 4.0.5 → 4.0.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # lightnet
2
2
 
3
+ ## 4.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#380](https://github.com/LightNetDev/LightNet/pull/380) [`4efb5b5`](https://github.com/LightNetDev/LightNet/commit/4efb5b5bf4fccc1f6314911e1cfb395c0488ff98) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
8
+
9
+ - [#380](https://github.com/LightNetDev/LightNet/pull/380) [`4efb5b5`](https://github.com/LightNetDev/LightNet/commit/4efb5b5bf4fccc1f6314911e1cfb395c0488ff98) Thanks [@smn-cds](https://github.com/smn-cds)! - Update pnpm settings to make supply chain attacks less likely
10
+
11
+ ## 4.0.6
12
+
13
+ ### Patch Changes
14
+
15
+ - [#378](https://github.com/LightNetDev/LightNet/pull/378) [`bc3d294`](https://github.com/LightNetDev/LightNet/commit/bc3d2949baacb6c577770de18902ddbd04ede10f) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
16
+
3
17
  ## 4.0.5
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "LightNet makes it easy to run your own digital media library.",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
- "version": "4.0.5",
6
+ "version": "4.0.7",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/LightNetDev/lightnet",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@astrojs/react": "^5.0.3",
55
- "@iconify-json/lucide": "^1.2.101",
55
+ "@iconify-json/lucide": "^1.2.102",
56
56
  "@iconify-json/mdi": "^1.2.3",
57
57
  "@iconify/tailwind": "^1.2.0",
58
58
  "@tailwindcss/typography": "^0.5.19",
@@ -61,20 +61,20 @@
61
61
  "embla-carousel": "^8.6.0",
62
62
  "embla-carousel-wheel-gestures": "^8.1.0",
63
63
  "fuse.js": "^7.3.0",
64
- "i18next": "^25.10.10",
65
- "lucide-react": "^1.7.0",
64
+ "i18next": "^26.0.4",
65
+ "lucide-react": "^1.8.0",
66
66
  "marked": "^17.0.6",
67
67
  "postcss": "^8.5.9",
68
68
  "postcss-load-config": "^6.0.1",
69
69
  "yaml": "^2.8.3"
70
70
  },
71
71
  "devDependencies": {
72
- "@internal/e2e-test-utils": "^0.0.1",
73
72
  "@playwright/test": "^1.59.1",
74
73
  "@types/react": "^19.2.14",
75
- "astro": "^6.1.4",
74
+ "astro": "^6.1.5",
76
75
  "typescript": "^5.9.3",
77
- "vitest": "^4.1.3"
76
+ "vitest": "^4.1.4",
77
+ "@internal/e2e-test-utils": "^0.0.1"
78
78
  },
79
79
  "engines": {
80
80
  "node": ">=22"
@@ -69,7 +69,7 @@ export async function useTranslate(
69
69
  const translations = await i18nextTranslations.get()
70
70
  const availableTranslationKeys = new Set(await translationKeys.get())
71
71
 
72
- const i18n = i18next.createInstance({ showSupportNotice: false })
72
+ const i18n = i18next.createInstance()
73
73
 
74
74
  await i18n.init({
75
75
  lng: config.defaultLocale,