Immich v1.88.1 Release
요약
v1.88.1
v1.88.x
에 대한 중요한 변경 사항이 있음을 알려드립니다.
경고
주의할 점이 있습니다.중단 변경 사항immich-proxy
및 immich-web
은 더 이상 사용되지 않으며 공지 된 대로 수정해야 할 콘텐츠를 다음에서 docker-compose.yml
파일에서 확인하십시오.immich-server
은 이제 /api
에서 api를 제공하고 /
에서 웹 앱을 제공합니다.
업데이트 절차는 다음과 같습니다.
docker compose down --remove-orphans
로 스택 종료docker-compose.yml
파일 업데이트
2.1.immich-proxy
서비스 삭제
2.2.immich-web
서비스 삭제
2.3.immich-server
서비스에서 포트2283:3001
노출docker compose pull
실행docker compose up -d
로 스택 시작
사용자 정의 프록시를 사용하는 경우 모든 요청을 /api
경로 리라이트없이 immich-server
로 전달하는 라우팅을 업데이트하십시오.
참고
버전 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
- 타임라인에 동영상이 올바르게 배치되지 않는 문제를 수정했습니다.
- 웹에서의 검색이 검색 구문을 고려하지 않는 문제를 수정했습니다.
- 연도 라벨이 타임라인 바에 겹쳐 보이는 문제를 수정했습니다.
또한 버그가 수정되었고, 이번 릴리스에서는 다양한 개선 사항도 있습니다.
프로젝트를 지원해 주세요.
지원
프로젝트가 도움이 되었다면 다음 채널을 통해 Immich를 지원해 주십시오.
- GitHub Sponsors를 통한 월간 후원
- GitHub Sponsors를 통한 일회성 후원
- Librepay
- buymeacoffee
- Bitcoin: 1FvEp6P6NM8EZEkpGUFAN2LqJ1gxusNxZX
이는 저에게 지금부터도 이 프로젝트를 계속 개발하고 작업할 것을 원한다는 것을 알려주는 좋은 방법입니다.
변경 내용
- fix(server): date time calculation by @jrasm91 in #5204
- fix(web): Fix year label calculation by @alextran1502 in #5211
- fix(web): search returns all value by @alextran1502 in #5210
전체 변경 사항: https://github.com/immich-app/immich/compare/v1.88.0...
원문 내용
v1.88.1
A reminder that there is a breaking change for v1.88.x
Warning
BREAKING CHANGESimmich-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 #5204
- fix(web): Fix year label calculation by @alextran1502 in #5211
- fix(web): search returns all value by @alextran1502 in #5210
Full Changelog: https://github.com/immich-app/immich/compare/v1.88.0...
링크 : https://github.com/immich-app/immich/releases/tag/v1.88.1