lightnet 4.0.6 → 4.0.8
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 +16 -0
- package/README.md +1 -1
- package/package.json +10 -10
- package/src/api/versions.ts +1 -1
- package/src/i18n/translate.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# lightnet
|
|
2
2
|
|
|
3
|
+
## 4.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#382](https://github.com/LightNetDev/LightNet/pull/382) [`c6c8f31`](https://github.com/LightNetDev/LightNet/commit/c6c8f31adf464a842739f2b99d858aa0ba5d43e9) Thanks [@smn-cds](https://github.com/smn-cds)! - Update internal dependency marked to v18
|
|
8
|
+
|
|
9
|
+
- [#382](https://github.com/LightNetDev/LightNet/pull/382) [`c6c8f31`](https://github.com/LightNetDev/LightNet/commit/c6c8f31adf464a842739f2b99d858aa0ba5d43e9) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
|
|
10
|
+
|
|
11
|
+
## 4.0.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#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
|
|
16
|
+
|
|
17
|
+
- [#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
|
|
18
|
+
|
|
3
19
|
## 4.0.6
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Running digital media libraries for ministries** can be complex and time consuming. LightNet makes this easier for developers, so ministries can share media more effectively.
|
|
4
4
|
|
|
5
5
|
Built as an integration for the [Astro framework](https://astro.build), LightNet creates fast, static sites that run anywhere.
|
|
6
6
|
|
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.
|
|
6
|
+
"version": "4.0.8",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/LightNetDev/lightnet",
|
|
@@ -52,29 +52,29 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@astrojs/react": "^5.0.3",
|
|
55
|
-
"@iconify-json/lucide": "^1.2.
|
|
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",
|
|
59
|
-
"@tanstack/react-virtual": "^3.13.
|
|
60
|
-
"autoprefixer": "^10.
|
|
59
|
+
"@tanstack/react-virtual": "^3.13.24",
|
|
60
|
+
"autoprefixer": "^10.5.0",
|
|
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": "^
|
|
64
|
+
"i18next": "^26.0.6",
|
|
65
65
|
"lucide-react": "^1.8.0",
|
|
66
|
-
"marked": "^
|
|
67
|
-
"postcss": "^8.5.
|
|
66
|
+
"marked": "^18.0.2",
|
|
67
|
+
"postcss": "^8.5.10",
|
|
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.
|
|
74
|
+
"astro": "^6.1.8",
|
|
76
75
|
"typescript": "^5.9.3",
|
|
77
|
-
"vitest": "^4.1.4"
|
|
76
|
+
"vitest": "^4.1.4",
|
|
77
|
+
"@internal/e2e-test-utils": "^0.0.1"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=22"
|
package/src/api/versions.ts
CHANGED
package/src/i18n/translate.ts
CHANGED
|
@@ -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(
|
|
72
|
+
const i18n = i18next.createInstance()
|
|
73
73
|
|
|
74
74
|
await i18n.init({
|
|
75
75
|
lng: config.defaultLocale,
|