Skip to content

Commit 894e3e3

Browse files
committed
Update
1 parent d98e202 commit 894e3e3

File tree

4 files changed

+40
-6
lines changed

4 files changed

+40
-6
lines changed

docs/releases.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,40 @@
3030

3131
## Version 7
3232

33+
### v7.5.4
34+
35+
Released on Apr 8th, 2026
36+
37+
#### Vulnerability live check and fixes.
38+
39+
As we are working on some new features, those take time. However we got report of a new vulnerability in the latest version of Lychee,
40+
and as it should we are providing a patch & fix for it.
41+
42+
Lychee beeing currently audited by external security researchers, it is possible (though hopefully unlikely) that they find more issues in the future.
43+
As a consequence, in order to improve the security posture of our users, we are proud to be among the first open-source projects to implement a live check
44+
for advisories related to our project. When you log in, Lychee queries the GitHub security advisories and checks if any are applicable to your version. If there are,
45+
a modal will be displayed advising you to update your installation.
46+
47+
This behavior is enabled by default but if you are running Lychee offline, you can disabled it by setting your environment variable `VULNERABILITY_CHECK_ENABLED` to `false`.
48+
49+
* `new` #4263 : feat(032): Security Advisories Check by @ildyria
50+
* `fix` #4264 : Fix sharing a bit too much info by @ildyria
51+
* `fix` #4226 : Add disabling preloading check in FixTree console by @ildyria
52+
* `fix` #4231 : Fixing syntaxError: [sprintf] unexpected placeholder… by @TheBullRing
53+
* `fix` #4225 : Fix MySQL error 1390 (too many placeholders) in album/photo deletion path by @Copilot
54+
* `new` #4239 : Enhance German translation by @hyazinthh
55+
* `new` #4241 : Finalize German translation by @hyazinthh
56+
* `klo` #4251 : Trivy ignore update by @ildyria
57+
* `new` #4253 : Add turkish template by @ildyria
58+
* `fix` #4255 : Fix notifications by @hyazinthh
59+
* `fix` #4256 : Fix 'rename' string and make ellipses consistent for German by @hyazinthh
60+
* `klo` #4261 : Ignore CVE which does not apply to us by @ildyria
61+
62+
#### New Contributors
63+
64+
@TheBullRing made their first contribution in https://github.com/LycheeOrg/Lychee/pull/4231
65+
66+
3367
### v7.5.3
3468

3569
Released on Mar 23rd, 2026

src/components/widgets/Announcement.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
>NEW</span
1111
>
1212
<a
13-
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.5.3"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.5.3 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.5.4"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.5.4 is now available! »</a
1515
>
1616
<!-- <a
1717
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.10.4"

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ const metadata = {
255255
<Fragment slot="subtitle"> Deploy in a matter of seconds with our docker-compose file. </Fragment>
256256
</CallToAction>
257257

258-
<script>
258+
<!-- <script>
259259
document.addEventListener('DOMContentLoaded', () => {
260260
// Check if teaser was already shown today
261261
const lastShown = localStorage.getItem('teaserLastShown');
@@ -326,5 +326,5 @@ const metadata = {
326326
};
327327
document.addEventListener('keydown', handleEscape);
328328
});
329-
</script>
329+
</script> -->
330330
</Layout>

src/pages/roadmap.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ const getReleaseTypeBadge = (type: string) => {
170170
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
171171
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
172172
<div class="space-y-2">
173-
<div class="text-4xl font-bold text-primary">7.5.3</div>
173+
<div class="text-4xl font-bold text-primary">7.5.4</div>
174174
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
175175
</div>
176176
<div class="space-y-2">
177-
<div class="text-4xl font-bold text-primary">121</div>
177+
<div class="text-4xl font-bold text-primary">122</div>
178178
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
179179
</div>
180180
<div class="space-y-2">

0 commit comments

Comments
 (0)