Skip to content

Commit 95ae9cb

Browse files
committed
version 7.3.1
1 parent 422ba9b commit 95ae9cb

5 files changed

Lines changed: 21 additions & 4 deletions

File tree

docs/faq_troubleshooting.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ You can check your container logs to verify FrankenPHP is active:
6464
docker-compose logs lychee
6565
```
6666

67+
### I just updated to 7.3+ and I get PHP Fatal error: Uncaught RuntimeException: A facade root has not been set.
68+
69+
This error is misleading. Version 7.3 added the support for LDAP, which requires the `php-ldap` extension.
70+
Verify that you have all the required php extension installed.
71+
6772
### I'm getting database connection errors in Docker, what can I do?
6873

6974
Database connection issues in Docker are usually related to service configuration:

docs/installation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The Lychee gallery has a few system requirements. You will need to make sure you
2929
- imagick (optional — to generate better thumbnails)
3030
- json
3131
- libxml
32+
- ldap (**new since 7.3**)
3233
- mbstring
3334
- openssl
3435
- pcre

docs/releases.md

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

3131
## Version 7
3232

33+
### v7.3.1
34+
35+
Released on Jan 28th, 2026
36+
37+
#### Hotfix - Docker
38+
39+
Small hotfix to add the missing `php-ldap` dependency to the docker image. Sorry. :(
40+
41+
* `fix` #4033 : Fix missing dependency: ldap by @ildyria.
42+
3343
### v7.3.0
3444

3545
Released on Jan 27th, 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.3.0"
14-
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.3.0 is now available! »</a
13+
href="https://github.com/LycheeOrg/Lychee/releases/tag/v7.3.1"
14+
class="text-slate-200 hover:underline dark:text-slate-200 font-medium">Lychee 7.3.1 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.1', date: 'Jan 28, 2026', title: 'Hotfix - Docker', type: 'bugfix', highlights: ['Add php-ldap dependency to docker image'] },
1112
{ 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'] },
1213
{ 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'] },
1314
{ 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'] },
@@ -160,11 +161,11 @@ const getReleaseTypeBadge = (type: string) => {
160161
<div class="mx-auto max-w-3xl pt-12 px-4 sm:px-6">
161162
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
162163
<div class="space-y-2">
163-
<div class="text-4xl font-bold text-primary">7.3.0</div>
164+
<div class="text-4xl font-bold text-primary">7.3.1</div>
164165
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Latest Version</div>
165166
</div>
166167
<div class="space-y-2">
167-
<div class="text-4xl font-bold text-primary">111</div>
168+
<div class="text-4xl font-bold text-primary">112</div>
168169
<div class="text-sm text-gray-600 dark:text-gray-400 uppercase tracking-wide">Total Releases</div>
169170
</div>
170171
<div class="space-y-2">

0 commit comments

Comments
 (0)