Skip to content

Commit 422ba9b

Browse files
committed
Version 7.3.0
1 parent d2237ca commit 422ba9b

File tree

3 files changed

+33
-8
lines changed

3 files changed

+33
-8
lines changed

docs/releases.md

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

3131
## Version 7
3232

33+
### v7.3.0
34+
35+
Released on Jan 27th, 2026
36+
37+
#### LDAP/AD support is here!
38+
39+
As usual, minor release, new functionalities! We add LDAP and Active Directory support for user authentication.
40+
As this is more an enterprise feature, it is only available to Supporter Edition users. Aside from that,
41+
we also added a new setting which allows to have the photo details drawer open by default when opening a photo.
42+
43+
#### Most notable changes
44+
45+
`klo` refers to *Keep the Light On*. In other words, basic software updates.
46+
`SE` refers to functionalities that are aimed at the Supporter/Pro Edition.
47+
48+
* `klo` #4006 : Add more contributions guides by @ildyria.
49+
> Documentation has been improved to help new contributors get started.
50+
* `klo` #4019 : Clarify album rights propagation by @ildyria.
51+
> We added some documentation to clarify how album rights propagation works when creating an album.
52+
* `SE` #4020 : Add LDAP support by @ildyria.
53+
> Full LDAP support, this will allow you to synchronize your users from your LDAP/Active Directory server.
54+
> They will be created on first login. When using LDAP, onboarded users are not able to change their username/password from Lychee.
55+
* `fix` #4029 : Fix ugly header bar in light mode when showing photo details by @ildyria.
56+
> In light mode, when opening the photo details drawer, the header bar creating an ugly shadow.
57+
* `fix` #4028 : Migration breaking on some installations by @ildyria.
58+
> We got report that users of version 7 and 7.1 having rated already some pictures were facing issues
59+
> when migrating to 7.2. This fixes those issues.
60+
3361
### v7.2.1
3462

3563
Released on Jan 24th, 2026
@@ -40,8 +68,6 @@ A small patch to fix a few issues. We also added the ability to filter photos by
4068

4169
#### Most notable changes
4270

43-
`klo` refers to *Keep the Light On*. In other words, basic software updates.
44-
4571

4672
* `klo` #4004 : Improve docker compose template by @ildyria.
4773
> Improve the docker-compose template use yaml template to avoid duplication.
@@ -256,8 +282,6 @@ Read more on our [blog post](https://lycheeorg.dev/2025-12-31-version-7/) about
256282

257283
#### Most notable changes
258284

259-
`SE` refers to functionalities that are aimed at the Supporter/Pro Edition.
260-
261285

262286
* `klo` #3880 : Spec driven development support by @ildyria.
263287
* `new` #3881 : Add support for hprof in order to have profiling by @ildyria.

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.2.1"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.2.1 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.3.0"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.3.0 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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const metadata = {
88
99
// Release data extracted from releases.md
1010
const releases = [
11+
{ version: 'v7.3.0', date: 'Jan 27, 2026', title: 'LDAP/AD support & UI improvements', type: 'feature', highlights: ['🌟 LDAP/Active Directory support (SE)', 'Photo details drawer open by default option', 'Fixed migration issues'] },
1112
{ version: 'v7.2.1', date: 'Jan 24, 2026', title: 'Fixes and small features', type: 'bugfix', highlights: ['Filter photos by star rating', 'Fixed downloading from smart albums', 'Fixed renamer rule test', 'Hide warnings in docker with queues'] },
1213
{ version: 'v7.2.0', date: 'Jan 21, 2026', title: 'Speed improvement and UI updates', type: 'major', highlights: ['Order photos by star rating', 'Rating smart albums (1-5 stars, Best pictures)', 'Hidden display of shared albums', 'Refactored deletion for large galleries'] },
1314
{ version: 'v7.1.2', date: 'Jan 14, 2026', title: 'Hot fixes and HEIF support', type: 'feature', highlights: ['HEIF image support (convert to JPEG)', 'Fixed lexicographical sorting', 'Fixed chown issues'] },
@@ -159,11 +160,11 @@ const getReleaseTypeBadge = (type: string) => {
159160
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
160161
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
161162
<div class="space-y-2">
162-
<div class="text-4xl font-bold text-primary">7.2.1</div>
163+
<div class="text-4xl font-bold text-primary">7.3.0</div>
163164
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
164165
</div>
165166
<div class="space-y-2">
166-
<div class="text-4xl font-bold text-primary">110</div>
167+
<div class="text-4xl font-bold text-primary">111</div>
167168
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
168169
</div>
169170
<div class="space-y-2">

0 commit comments

Comments
 (0)