Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(github-release): update immich-app/immich to v1.117.0 #7327

Merged
merged 1 commit into from
Oct 4, 2024

Conversation

rosey-the-renovator-bot[bot]
Copy link
Contributor

@rosey-the-renovator-bot rosey-the-renovator-bot bot commented Oct 3, 2024

This PR contains the following updates:

Package Update Change
immich-app/immich minor v1.116.2 -> v1.117.0

Release Notes

immich-app/immich (immich-app/immich)

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

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

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: immich-app/immich@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.

| datasource      | package           | from     | to       |
| --------------- | ----------------- | -------- | -------- |
| github-releases | immich-app/immich | v1.116.2 | v1.117.0 |
@rosey-the-renovator-bot
Copy link
Contributor Author

--- HelmRelease: media/immich Deployment: media/immich-machine-learning

+++ HelmRelease: media/immich Deployment: media/immich-machine-learning

@@ -25,13 +25,13 @@

       serviceAccountName: default
       automountServiceAccountToken: true
       dnsPolicy: ClusterFirst
       enableServiceLinks: true
       containers:
       - name: immich-machine-learning
-        image: ghcr.io/immich-app/immich-machine-learning:v1.116.2
+        image: ghcr.io/immich-app/immich-machine-learning:v1.117.0
         imagePullPolicy: IfNotPresent
         env:
         - name: DB_DATABASE_NAME
           value: immich
         - name: DB_HOSTNAME
           value: immich-postgresql
--- HelmRelease: media/immich Deployment: media/immich-server

+++ HelmRelease: media/immich Deployment: media/immich-server

@@ -25,13 +25,13 @@

       serviceAccountName: default
       automountServiceAccountToken: true
       dnsPolicy: ClusterFirst
       enableServiceLinks: true
       containers:
       - name: immich-server
-        image: ghcr.io/immich-app/immich-server:v1.116.2
+        image: ghcr.io/immich-app/immich-server:v1.117.0
         imagePullPolicy: IfNotPresent
         env:
         - name: DB_DATABASE_NAME
           value: immich
         - name: DB_HOSTNAME
           value: immich-postgresql

@rosey-the-renovator-bot
Copy link
Contributor Author

--- kubernetes/main/apps/media/immich/app Kustomization: flux-system/media-immich HelmRelease: media/immich

+++ kubernetes/main/apps/media/immich/app Kustomization: flux-system/media-immich HelmRelease: media/immich

@@ -28,13 +28,13 @@

       PUBLIC_IMMICH_SERVER_URL: https://immich...PLACEHOLDER..
       REDIS_DBINDEX: '1'
       REDIS_HOSTNAME: dragonfly.databases.svc.cluster.local
       REDIS_PORT: '6379'
       REVERSE_GEOCODING_PRECISION: '2'
     image:
-      tag: v1.116.2
+      tag: v1.117.0
     immich:
       concurrency:
         backgroundTask: 10
         faceDetection: 5
         library: 5
         metadataExtraction: 10

@rosey-the-renovator-bot rosey-the-renovator-bot bot merged commit 43381bd into main Oct 4, 2024
17 checks passed
@rosey-the-renovator-bot rosey-the-renovator-bot bot deleted the renovate/immich-app-immich-1.x branch October 4, 2024 12:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants