ImageGenius Changes:
rebase noml to ubuntu
immich Changes:
v1.88.1
A reminder that there is a breaking change for v1.88.x
Warning
BREAKING CHANGES
immich-proxy
and immich-web
are no longer used as announced. Please see the content that needs to be edited from the docker-compose.yml
file below. immich-server
now serves the api on /api
and the web-app from /
.
The steps to update are as follow:
- Bring down the stack with
docker compose down --remove-orphans
- Update the
docker-compose.yml
file
2.1. Removeimmich-proxy
service
2.2. Removeimmich-web
service
2.3. Expose port2283:3001
in theimmich-server
service - Run
docker compose pull
- Bring up the stack with
docker compose up -d
For those using a custom proxy, please update the routing to forward all requests to immich-server
without the /api
path re-write.
Note
There is no mobile release for this version v1.88.1
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
+ ports:
+ - 2283:3001
depends_on:
- redis
- database
- typesense
restart: always
immich-microservices:
[...]
immich-machine-learning:
[...]
- immich-web:
- container_name: immich_web
- image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release}
- env_file:
- - .env
- restart: always
typesense:
[...]
redis:
[...]
database:
[...]
- immich-proxy:
- container_name: immich_proxy
- image: ghcr.io/ Warninimmich-app/immich-proxy:${IMMICH_VERSION:-release}
- ports:
- - 2283:8080
- depends_on:
- - immich-server
- - immich-web
- restart: always
Hotfixes
- Fixed an issue with the video not being correctly placed on the timeline
- Fixed an issue with search on the web doesn't take into account the search phrase
- Fixed an issue of the year label overlapped on the timeline bar
And as always, bugs are fixed, and many other improvements also come with this release.
Please consider supporting the project.
Support
If you find the project helpful, you can support Immich via the following channels.
- Monthly donation via GitHub Sponsors
- One-time donation via GitHub Sponsors
- Librepay
- buymeacoffee
- Bitcoin: 1FvEp6P6NM8EZEkpGUFAN2LqJ1gxusNxZX
It is a great way to let me know that you want me to continue developing and working on this project for years to come.
What's Changed
- fix(server): date time calculation by @jrasm91 in immich-app/immich#5204
- fix(web): Fix year label calculation by @alextran1502 in immich-app/immich#5211
- fix(web): search returns all value by @alextran1502 in immich-app/immich#5210
Full Changelog: https://github.com/immich-app/immich/compare/v1.88.0...