Update ghcr.io/immich-app/immich-server Docker tag to v1.117.0 - autoclosed #200

Closed
renovate wants to merge 1 commits from renovate/ghcr.io-immich-app-immich-server-1.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
ghcr.io/immich-app/immich-server Kustomization minor v1.116.2 -> v1.117.0

Release Notes

immich-app/immich (ghcr.io/immich-app/immich-server)

v1.117.0

Compare Source

v1.117.0

[!WARNING]

Breaking changes

The image section of the config file structure for thumbnails and previews has changed. If you use a config file and set the image settings to custom values, these will be ignored until updated to the new structure.

…
"image": {
-  “previewFormat”: “jpeg”,
-  “previewSize”: 1440,
-  “quality”: 80,
-  “thumbnailFormat”: “webp”,
-  “thumbnailSize”: 250,
+  "thumbnail": {
+     "format": "webp",
+     "size": 250,
+     "quality": 80
+   },
+   "preview": {
+     "format": "jpeg",
+     "size": 1440,
+     "quality": 80
+   },
    "colorspace": "p3",
    "extractEmbedded": false
  }
…

Highlights

Welcome to release v1.117.0 of Immich. This release continues to bring bugfixes and additional enhancements to the app. Let's go over some of the highlights below:

  • Better folder checks
  • Download notifications (mobile)
  • Support and feedback links (web)
  • Upgrade history
  • Asset thumbnail improvements
Better folder checks

This release fixes a few more issues with the .immich related checks.

  • Ignore errors when .immich already exists, but mount checks aren't enabled
  • Add a docs page about System Integrity
  • Add an env option to skip mount checks (IMMICH_IGNORE_MOUNT_CHECK_ERRORS=true)
Download notifications (mobile)

Downloads now show their progress and can be canceled

Links have been added to the Immich web application to help users more easily find our documentation, source code, discord, etc. Also, third party packages have the option to additionally include their own links.

image

image

Upgrade history

Clicking on the server build number on the web will now also show upgrade history, in addition to other build information.

In the future we may look at combining this information with the new support/help modal.

Light Dark
image image
Asset thumbnail improvements
Combined jobs

Thumbnails are critical to keep Immich feeling snappy. We currently generate a "preview" (large), a "thumbnail" (small), and a "thumbhash" (very small) for each asset. Prior to this release each version for each asset was a separate job. Now they have been combined into a single job, per asset. This makes the jobs page much more accurate and useful. It also means thumbnails generate faster, and use less system resources (see below).

thumbnail-generation-memory-usage

In order from left to right:

  • Previews generation start on old version
  • Previews generation completed old version (starting thumbnails)
  • Thumbnail generation finished old version
  • Thumbnail generation started on new version
  • Thumbnail generation finished on new version
Common settings

Previews and thumbnails can now both set desired format, resolution, and quality settings.

image-settings

Support Immich

If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app.

Cheers! 🍻


What's Changed

🚀 Features
🌟 Enhancements
🐛 Bug fixes
📚 Documentation
🌐 Translations

New Contributors

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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ghcr.io/immich-app/immich-server](https://github.com/immich-app/immich) | Kustomization | minor | `v1.116.2` -> `v1.117.0` | --- ### Release Notes <details> <summary>immich-app/immich (ghcr.io/immich-app/immich-server)</summary> ### [`v1.117.0`](https://github.com/immich-app/immich/releases/tag/v1.117.0) [Compare Source](https://github.com/immich-app/immich/compare/v1.116.2...v1.117.0) ### v1.117.0 > \[!WARNING] > > ## Breaking changes > > The `image` section of the config file structure for thumbnails and previews has changed. If you use a config file and set the image settings to custom values, these will be ignored until updated to the new structure. ```diff … "image": { - “previewFormat”: “jpeg”, - “previewSize”: 1440, - “quality”: 80, - “thumbnailFormat”: “webp”, - “thumbnailSize”: 250, + "thumbnail": { + "format": "webp", + "size": 250, + "quality": 80 + }, + "preview": { + "format": "jpeg", + "size": 1440, + "quality": 80 + }, "colorspace": "p3", "extractEmbedded": false } … ``` #### Highlights Welcome to release `v1.117.0` of Immich. This release continues to bring bugfixes and additional enhancements to the app. Let's go over some of the highlights below: - Better folder checks - Download notifications (mobile) - Support and feedback links (web) - Upgrade history - Asset thumbnail improvements ##### Better folder checks This release fixes a few more issues with the `.immich` related checks. - Ignore errors when `.immich` already exists, but mount checks aren't enabled - Add a docs page about [System Integrity](https://immich.app/docs/administration/system-integrity) - Add an env option to skip mount checks (`IMMICH_IGNORE_MOUNT_CHECK_ERRORS=true`) ##### Download notifications (mobile) Downloads now show their progress and can be canceled <img src="https://github.com/user-attachments/assets/59e506be-549d-472c-bcc5-938f892dbe68" width="300px"/> ##### Support and feedback links (web) Links have been added to the Immich web application to help users more easily find our documentation, source code, discord, etc. Also, third party packages have the option to additionally include their own links. ![image](https://github.com/user-attachments/assets/b067b692-df64-466f-a838-67d25837175e) ![image](https://github.com/user-attachments/assets/1a9c5abe-529b-4cef-91f9-1470e1491dde) ##### Upgrade history Clicking on the server build number on the web will now also show upgrade history, in addition to other build information. In the future we may look at combining this information with the new support/help modal. | Light | Dark | - | - | | ![image](https://github.com/user-attachments/assets/28d0a046-d1bc-41bc-976c-65e19f559187) | ![image](https://github.com/user-attachments/assets/26e39904-e1ea-4ec3-890e-7ab8f9cca136) | ##### Asset thumbnail improvements ##### Combined jobs Thumbnails are critical to keep Immich feeling snappy. We currently generate a "preview" (large), a "thumbnail" (small), and a "thumbhash" (very small) for each asset. Prior to this release each version for each asset was a separate job. Now they have been combined into a single job, per asset. This makes the jobs page much more accurate and useful. It also means thumbnails generate faster, and use less system resources (see below). ![thumbnail-generation-memory-usage](https://github.com/user-attachments/assets/b31850c5-c283-4a87-b4c0-28b05867b7f4) In order from left to right: - Previews generation start on old version - Previews generation completed old version (starting thumbnails) - Thumbnail generation finished old version - Thumbnail generation started on new version - Thumbnail generation finished on new version ##### Common settings Previews and thumbnails can now *both* set desired `format`, `resolution`, and `quality` settings. ![image-settings](https://github.com/user-attachments/assets/589648c7-6687-411e-8a9e-f1e0a0515a88) #### Support Immich <p align="center"> <img src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjY2eWc5Y2F0ZW56MmR4aWE0dDhzZXlidXRmYWZyajl1bWZidXZpcyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/87CKDqErVfMqY/giphy.gif" width="450" title="SUPPORT THE PROJECT!"> </p> If you find the project helpful, you can support Immich by purchasing a product key at <https://buy.immich.app>. Cheers! 🍻 *** <!-- Release notes generated using configuration in .github/release.yml at main --> #### What's Changed ##### 🚀 Features - feat: support and feedback modal with third party support by [@&#8203;zackpollard](https://github.com/zackpollard) in https://github.com/immich-app/immich/pull/13056 - feat: track upgrade history by [@&#8203;jrasm91](https://github.com/jrasm91) in https://github.com/immich-app/immich/pull/13097 ##### 🌟 Enhancements - feat(server): better transcoding logs by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13000 - feat(server): separate quality for thumbnail and preview images by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13006 - feat(server): generate all thumbnails for an asset in one job by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13012 - feat(mobile): enhance download operations by [@&#8203;alextran1502](https://github.com/alextran1502) in https://github.com/immich-app/immich/pull/12973 - feat(server): parse offset from "Image_UTC_Data" (Samsung) by [@&#8203;C-Otto](https://github.com/C-Otto) in https://github.com/immich-app/immich/pull/13080 - feat(server): better mount checks by [@&#8203;jrasm91](https://github.com/jrasm91) in https://github.com/immich-app/immich/pull/13092 ##### 🐛 Bug fixes - fix(server): "all" button for facial recognition deleting faces instead of unassigning them by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13042 - fix(server): `/search/random` failing with certain options by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13040 - fix(mobile): share to error by [@&#8203;alextran1502](https://github.com/alextran1502) in https://github.com/immich-app/immich/pull/13044 - fix: deletedAt not set for offline assets during 1.116.0 migration by [@&#8203;zackpollard](https://github.com/zackpollard) in https://github.com/immich-app/immich/pull/13086 - fix(server): offline assets don't restore when coming back online by [@&#8203;zackpollard](https://github.com/zackpollard) in https://github.com/immich-app/immich/pull/13087 ##### 📚 Documentation - docs: update config file by [@&#8203;mertalev](https://github.com/mertalev) in https://github.com/immich-app/immich/pull/13041 - fix(docs): Update TrueNAS installation docs by [@&#8203;PetrSvirak](https://github.com/PetrSvirak) in https://github.com/immich-app/immich/pull/13017 ##### 🌐 Translations - chore(web): update translations by [@&#8203;weblate](https://github.com/weblate) in https://github.com/immich-app/immich/pull/12938 - chore: add more languages by [@&#8203;danieldietzler](https://github.com/danieldietzler) in https://github.com/immich-app/immich/pull/13127 #### New Contributors - [@&#8203;PetrSvirak](https://github.com/PetrSvirak) made their first contribution in https://github.com/immich-app/immich/pull/13017 **Full Changelog**: https://github.com/immich-app/immich/compare/v1.116.2...v1.117.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC43Ny4zIiwidXBkYXRlZEluVmVyIjoiMzguNzcuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovate added 1 commit 2024-10-03 02:34:14 +00:00
renovate changed title from Update ghcr.io/immich-app/immich-server Docker tag to v1.117.0 to Update ghcr.io/immich-app/immich-server Docker tag to v1.117.0 - autoclosed 2024-10-08 09:33:39 +00:00
renovate closed this pull request 2024-10-08 09:33:39 +00:00

Pull request closed

Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: remoll/k3s-infra#200
No description provided.