Immich v1.88.1 Release

요약

v1.88.1

v1.88.x에 대한 중요한 변경 사항이 있음을 알려드립니다.

경고

주의할 점이 있습니다.중단 변경 사항
immich-proxyimmich-web은 더 이상 사용되지 않으며 공지 된 대로 수정해야 할 콘텐츠를 다음에서 docker-compose.yml 파일에서 확인하십시오.immich-server은 이제 /api에서 api를 제공하고 /에서 웹 앱을 제공합니다.

업데이트 절차는 다음과 같습니다.

  1. docker compose down --remove-orphans로 스택 종료
  2. docker-compose.yml 파일 업데이트
    2.1. immich-proxy 서비스 삭제
    2.2. immich-web 서비스 삭제
    2.3. immich-server 서비스에서 포트 2283:3001 노출
  3. docker compose pull 실행
  4. 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를 지원해 주십시오.

이는 저에게 지금부터도 이 프로젝트를 계속 개발하고 작업할 것을 원한다는 것을 알려주는 좋은 방법입니다.

변경 내용

전체 변경 사항: 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 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:

  1. Bring down the stack with docker compose down --remove-orphans
  2. Update the docker-compose.yml file
    2.1. Remove immich-proxy service
    2.2. Remove immich-web service
    2.3. Expose port 2283:3001 in the immich-server service
  3. Run docker compose pull
  4. 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.

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

Full Changelog: https://github.com/immich-app/immich/compare/v1.88.0...

링크 : https://github.com/immich-app/immich/releases/tag/v1.88.1