Skip to content

Update ghcr.io/immich-app/immich-server Docker tag to v3.1.0 - #59

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ghcr.io-immich-app-immich-server-3.x
Open

Update ghcr.io/immich-app/immich-server Docker tag to v3.1.0#59
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ghcr.io-immich-app-immich-server-3.x

Conversation

@renovate

@renovate renovate Bot commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
ghcr.io/immich-app/immich-server minor v3.0.3v3.1.0

Release Notes

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

v3.1.0

Compare Source

Welcome to Immich v3.1.0!

This release includes several quality of life improvements and another round of bug fixes. Keep reading below for the complete highlights.

Highlights

  • Upload wakelock (web)
  • Undo archive (web)
  • Filter assets by server filepath (workflows)
  • Quick navigate to maintenance page (web)
  • Better slideshow button accessibility (web)
  • OIDC role claim sync improvements (OAuth)
  • Invalidate sessions on password reset (admin-cli)
Upload wakelock (web)

Similar to mobile, the web application will now automatically acquire a wakelock to prevent the screen from dimming while uploads are happening. This feature will require an HTTPS connection.

Undo archive (web)

After archiving assets, the success notification now has an “undo” button to undo the action.

Undo button on success notification

Filter assets by server filepath (workflows)

The asset file filter has a new option “Use path”. When set to true, it will filter based on the actual path on the server rather than the original file name.

Filter assets by EXIF metadata (workflows)

A new workflow filter has been added that allows you to filter assets based on their EXIF metadata fields. For now it only supports string comparisons, with numerical comparisons expected to come soon.

Filter by EXIF metadata step configuration options
Quick navigate to maintenance page (web)

The command palette (CTRL+K or /) now includes an item for the maintenance page.

Command palette with a maintenance page item
Better slideshow button visibility (web)

The slideshow buttons on the web are now wrapped in a container with a backdrop blur, making them easier to view when the current asset is very light.

Slideshow controls on a low contrast image

OIDC role claim sync improvements (OAuth)

The OAuth integration in Immich supports setting an initial isAdmin value for new users via a role claim. This same process has been updated to now sync isAdmin on subsequent logins. Additionally, the role claim now supports both single values (immich_role: 'admin') in addition to lists of values ( immich_role: ["admin", "user"]), making in more flexible.

Invalidate sessions on password reset (admin-cli)

When using the admin command line interface to reset a password, there is now a new option to invalidate existing sessions.

immich-admin reset-admin-password
Found Admin:
- ID=e65e6f88-2a30-4dbe-8dd9-1885f4889b53
- OAuth ID=
- Email=admin@example.com
- Name=Immich Admin
? Please choose a new password (optional) immich-is-cool
? Invalidate existing sessions? Yes
The admin password has been updated.
Date range for map (mobile)

Similar to web, mobile now also supports filtering the map for assets within a given date range.

Mobile map settings page date range options

What's Changed

🚨 Breaking Changes
🚀 Features
🌟 Enhancements
🐛 Bug fixes
📚 Documentation
🌐 Translations

New Contributors

Full Changelog: immich-app/immich@v3.0.3...v3.1.0


Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@xRahul

xRahul commented Aug 8, 2026

Copy link
Copy Markdown
Owner

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Code Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@coderabbitai

coderabbitai Bot commented Aug 8, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

Changes

Immich server image update

Layer / File(s) Summary
Update Immich server image
docker-compose.yml
The immich-server service now uses image version v3.1.0 instead of v3.0.3.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Possibly related PRs

  • xRahul/Pi-setup#20: Updates the immich-server image tag to a successive version.
  • xRahul/Pi-setup#58: Updates an Immich Docker image tag in docker-compose.yml for a different service.

Suggested reviewers: xrahul

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the Docker image tag update from v3.0.3 to v3.1.0.

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
docker-compose.yml (1)

699-699: 🗄️ Data Integrity & Integration | 🔵 Trivial | ⚡ Quick win

Use IMMICH_VERSION for the Immich image tags.

docker-compose.yml hard-codes v3.1.0 and v3.0.3; it does not interpolate IMMICH_VERSION. Both example files declare unused v3.0.1 values. Either use one version variable for the images or remove the unused variable and its documentation.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docker-compose.yml` at line 699, The Immich image references in the compose
configuration hard-code versions instead of using the declared version setting.
Update both Immich image tags to interpolate the shared IMMICH_VERSION variable,
and remove or align any unused IMMICH_VERSION declarations and documentation in
the example files so all version configuration has one consistent source.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@docker-compose.yml`:
- Line 699: The Immich image references in the compose configuration hard-code
versions instead of using the declared version setting. Update both Immich image
tags to interpolate the shared IMMICH_VERSION variable, and remove or align any
unused IMMICH_VERSION declarations and documentation in the example files so all
version configuration has one consistent source.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 24e82f6a-8926-49c9-ae22-932101641682

📥 Commits

Reviewing files that changed from the base of the PR and between f96e615 and 63af9cc.

📒 Files selected for processing (1)
  • docker-compose.yml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant