Skip to content

Commit 0bbf0dc

Browse files
authored
Version 7.5.3 (#294)
1 parent 758e822 commit 0bbf0dc

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

docs/releases.md

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

3131
## Version 7
3232

33+
### v7.5.3
34+
35+
Released on Mar 23rd, 2026
36+
37+
#### Fix XSS in RSS feed
38+
39+
Another day, another patch. A bit depressing... but so is the life of a maintainer. This patch fixes a potential XSS vulnerability in the RSS feed. The issue was that the description of the photos was not properly escaped, allowing for potential XSS attacks if they contained malicious code.
40+
41+
* `fix` #4218 : Fix XSS in /feed by @ildyria.
42+
* `new` #4217 : Added and improved German translations by @hyazinthh.
43+
44+
Once again, thanks to @morimori-dev for reporting the XSS issue.
45+
46+
#### New Contributors
47+
48+
@hyazinthh made their first contribution in https://github.com/LycheeOrg/Lychee/pull/4217
49+
50+
3351
### v7.5.2
3452

3553
Released on Mar 22nd, 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.2"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.5.2 is now available! »</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
1515
>
1616
<!-- <a
1717
href="https://github.com/LycheeOrg/Lychee/releases/tag/v6.10.4"

src/pages/roadmap.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ const metadata = {
88
99
// Release data extracted from releases.md
1010
const releases = [
11+
{ version: 'v7.5.3', date: 'Mar 23, 2026', title: 'Hotfix', type: 'security', highlights: ['Fix XSS in RSS feed'] },
1112
{ version: 'v7.5.2', date: 'Mar 22, 2026', title: 'Camera support & hotfix', type: 'minor', highlights: ['Upload from camera support from Frontend', 'Fix SSRF on name resolution to reserved ip space'] },
12-
{ version: 'v7.5.1', date: 'Mar 21, 2026', title: 'Hotfix', type: 'bugfix', highlights: ['Fix SSRF on localhost aliases', 'Support PHP wihout LDAP extension'] },
13+
{ version: 'v7.5.1', date: 'Mar 21, 2026', title: 'Hotfix', type: 'security', highlights: ['Fix SSRF on localhost aliases', 'Support PHP wihout LDAP extension'] },
1314
{ version: 'v7.5.0', date: 'Mar 16, 2026', title: 'Search revamped', type: 'major', highlights: ['New search UI & UX', 'Tag filters in albums'] },
1415
{ version: 'v7.4.2', date: 'Mar 12, 2026', title: 'Fixes', type: 'bugfix', highlights: ['Fixes to the CSP policy'] },
1516
{ version: 'v7.4.1', date: 'Mar 8, 2026', title: 'Fixes and minor improvements', type: 'bugfix', highlights: ['Fixed potential crash related to missing configurations', 'Added error message for missing ldap extension', 'Allow passing individual file paths to lychee:sync command'] },
@@ -169,11 +170,11 @@ const getReleaseTypeBadge = (type: string) => {
169170
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
170171
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
171172
<div class="space-y-2">
172-
<div class="text-4xl font-bold text-primary">7.5.2</div>
173+
<div class="text-4xl font-bold text-primary">7.5.3</div>
173174
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
174175
</div>
175176
<div class="space-y-2">
176-
<div class="text-4xl font-bold text-primary">120</div>
177+
<div class="text-4xl font-bold text-primary">121</div>
177178
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
178179
</div>
179180
<div class="space-y-2">

0 commit comments

Comments
 (0)