chore(deps): update dependency https://github.com/immich-app/immich.git to v1.88.2 - autoclosed
This MR contains the following updates:
Package | Update | Change |
---|---|---|
https://github.com/immich-app/immich.git | minor |
v1.87.0 -> v1.88.2
|
Release Notes
immich-app/immich (https://github.com/immich-app/immich.git)
v1.88.2
1.88.2
This a reminder that there is a breaking change for v1.88.x
[!warning] BREAKING CHANGES
immich-proxy
andimmich-web
are no longer used as announced.
[!note] There is no mobile release for this version
v1.88.2
Hotfixes
- Fixed issue with query unoptimized for the album and sharing page on the web. This fix is a revert of the fix for the web's album sorting. We will need to return to that issue and find an optimal way to perform the sort mechanism
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
- chore(deps): cli grouping by @jrasm91 in https://github.com/immich-app/immich/pull/5193
- chore(deps): bump actions/checkout from 2 to 4 by @dependabot in https://github.com/immich-app/immich/pull/5219
- fix: album performances by @martabal in https://github.com/immich-app/immich/pull/5224
- feat(docs): Add no-ssr milestone by @bo0tzz in https://github.com/immich-app/immich/pull/5220
- fix(server): album perf query by @alextran1502 in https://github.com/immich-app/immich/pull/5232
Full Changelog: https://github.com/immich-app/immich/compare/v1.88.1...
v1.88.1
v1.88.1
A reminder that there is a breaking change for v1.88.x
[!warning] BREAKING CHANGES
immich-proxy
andimmich-web
are no longer used as announced. Please see the content that needs to be edited from thedocker-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 https://github.com/immich-app/immich/pull/5204
- fix(web): Fix year label calculation by @alextran1502 in https://github.com/immich-app/immich/pull/5211
- fix(web): search returns all value by @alextran1502 in https://github.com/immich-app/immich/pull/5210
Full Changelog: https://github.com/immich-app/immich/compare/v1.88.0...
v1.88.0
v1.88.0
[!warning] BREAKING CHANGES
immich-proxy
andimmich-web
are no longer used as announced. Please see the content that needs to be edited from thedocker-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.
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
Highlights
Welcome to release v1.88.0
of Immich. In this release we have simplified how Immich is deployed, beautified our app interface with a new font, namely Overpass, and finally released version 2 of our command line interface (CLI), which has been in the works for the past six months.
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.
Changelogs
Server
- feat(server): bmp format by @jrasm91 in https://github.com/immich-app/immich/pull/5197
- chore(server): update new CLI into the image by @alextran1502 in https://github.com/immich-app/immich/pull/5192
CLI
- feat(cli): refactor and add album support by @etnoy in https://github.com/immich-app/immich/pull/4434
- docs(cli): Link to main Immich documentation by @etnoy in https://github.com/immich-app/immich/pull/5163
- chore(cli): push to npm by @jrasm91 in https://github.com/immich-app/immich/pull/5168
- chore(docs): Redirect old CLI paths by @bo0tzz in https://github.com/immich-app/immich/pull/5183
- chore(cli): set cli workdir in npm publish by @etnoy in https://github.com/immich-app/immich/pull/5185
Web
- feat(web)!: SPA by @jrasm91 in https://github.com/immich-app/immich/pull/5069
- fix(web): improve year label position by @Funk66 in https://github.com/immich-app/immich/pull/5141
- fix(web): album sorting options by @martabal in https://github.com/immich-app/immich/pull/5127
- feat(web): new fonts by @alextran1502 in https://github.com/immich-app/immich/pull/5165
- chore(web): small font size improvement by @alextran1502 in https://github.com/immich-app/immich/pull/5190
- chore(web): remove deprecation message by @alextran1502 in https://github.com/immich-app/immich/pull/5115
- chore(web): album thumbnail size by @alextran1502 in https://github.com/immich-app/immich/pull/5196
Mobile
- fix(mobile): Mark more strings for translation by @adamantike in https://github.com/immich-app/immich/pull/5132
- fix(mobile): use proper context for popping out from share by @shenlong-tanwen in https://github.com/immich-app/immich/pull/5138
- chore(mobile): add initial DCM analysis_options by @shenlong-tanwen in https://github.com/immich-app/immich/pull/5136
- chore(mobile): Mobile make over by @alextran1502 in https://github.com/immich-app/immich/pull/5129
- refactor(mobile): riverpod codegen + riverpod lint by @shenlong-tanwen in https://github.com/immich-app/immich/pull/4836
Machine Learning
- chore(ml): update onnxruntime by @mertalev in https://github.com/immich-app/immich/pull/5175
- chore(ml): increase spool threshold by @mertalev in https://github.com/immich-app/immich/pull/5176
Documentation and others
- docs: add warning to compose file and readme by @danieldietzler in https://github.com/immich-app/immich/pull/5123
- docs: Update machine-learning.md by @digitaljamie in https://github.com/immich-app/immich/pull/5160
- chore: fix typo in docker-compose.yml by @danieldietzler in https://github.com/immich-app/immich/pull/5124
- readme: Add Korean README by @bunubbv in https://github.com/immich-app/immich/pull/5128
- docs: update requirement for CLI by @alextran1502 in https://github.com/immich-app/immich/pull/5198
Dependencies
- fix(deps): update server by @renovate in https://github.com/immich-app/immich/pull/5057
- chore(build): renovate grouping by @jrasm91 in https://github.com/immich-app/immich/pull/5167
- chore(deps): update redis:6.2-alpine docker digest to
80cc851
by @renovate in https://github.com/immich-app/immich/pull/5131 - chore(deps): update dependency @types/node to v20.9.2 by @renovate in https://github.com/immich-app/immich/pull/5139
- chore(deps): update dependency eslint to v8.54.0 by @renovate in https://github.com/immich-app/immich/pull/5140
- chore(deps): update docker/build-push-action action to v5.1.0 by @renovate in https://github.com/immich-app/immich/pull/5145
- chore(deps): update dependency @types/archiver to v6 by @renovate in https://github.com/immich-app/immich/pull/5146
- chore(deps): update dependency eslint-config-prettier to v9 by @renovate in https://github.com/immich-app/immich/pull/5173
New Contributors
- @Funk66 made their first contribution in https://github.com/immich-app/immich/pull/5141
- @digitaljamie made their first contribution in https://github.com/immich-app/immich/pull/5160
- @bunubbv made their first contribution in https://github.com/immich-app/immich/pull/5128
Full Changelog: https://github.com/immich-app/immich/compare/v1.87.0...v1.88.0
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot. The local configuration can be found in the SI Renovate Bot repository.