惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
T
Threat Research - Cisco Blogs
GbyAI
GbyAI
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
S
SegmentFault 最新的问题
IT之家
IT之家
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
WordPress大学
WordPress大学
博客园 - Franky
L
LangChain Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
博客园 - 叶小钗
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
雷峰网
雷峰网
腾讯CDC
Google DeepMind News
Google DeepMind News
博客园 - 三生石上(FineUI控件)
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Help Net Security
Help Net Security
C
Check Point Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News and Events Feed by Topic
V2EX - 技术
V2EX - 技术
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Schneier on Security
Schneier on Security
博客园 - 聂微东
A
Arctic Wolf
H
Heimdal Security Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Recent Commits to openclaw:main
Recent Commits to openclaw:main
T
The Exploit Database - CXSecurity.com
C
Cyber Attacks, Cyber Crime and Cyber Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Google DeepMind News
Google DeepMind News

Immich Blog

Release v3.0.0 | Immich Blog Migrating to v3 | Immich Blog FUTO — 2 years later | Immich Blog May recap | Immich Blog April recap | Immich Blog Awesome Immich | Immich Blog Release v2.7.0 | Immich Blog March recap | Immich Blog Release v2.6.0 | Immich Blog February recap | Immich Blog Building the Immich editor | Immich Blog January recap | Immich Blog Release v2.5.0 | Immich Blog 2025 - A year in review | Immich Blog Release v2.4.0 | Immich Blog November recap | Immich Blog Release v2.3.0 | Immich Blog October recap | Immich Blog Release v2.2.0 | Immich Blog Google flags Immich sites as dangerous | Immich Blog Release v2.1.0 | Immich Blog Release v2.0.0 - Stable 🎉 | Immich Blog Release v2.0.0 - Stable 🎉 | Immich Blog New Svelte component library | Immich Blog Sync v2 | Immich Blog Cursed knowledge | Immich Blog New API documentation | Immich Blog Immich launches merch | Immich Blog 2024 - A year in review | Immich Blog Immich introduces product keys | Immich Blog Immich joins FUTO | Immich Blog 2023 - A year in review | Immich Blog
June recap | Immich Blog
Immich Team · 2026-06-30 · via Immich Blog

June 30, 2026

— Immich Team

A recap of June, 2026, including an update on upcoming features, releases, developer updates, and more.

a cat looking up at the sky, also wondering when v3 will be available
Photo by bo0tzz - a cat looking up at the sky, also wondering when v3 will be available

Hello everyone!

The most exciting thing for us this month was pushing out some release candidates for v3.0.0, which is right around the corner. If you haven't yet, feel free to try it out and let us know what you think. For more details on this and other news keep reading below.

FUTO — 2 years later

The team has been working at FUTO for just over 2 years now. A lot has changed in that time, but at the same time a lot has stayed the same. Read the full retrospective post on our blog as we reflect back on the last two years.

Release candidates

We talked a little bit about release candidates last month, but we have a much better understanding about them after implementing our own prerelease workflow a few weeks ago. In short, we have decided to do prereleases for all major releases moving forward. Also, we've built our workflows in a way that it is possible to do prereleases for minor releases as well, which is something we might experiment with moving forward. At the end of the day we know stability is hugely important for users, especially for a photo management application, and we hope implementing release candidates and prereleases will make major version upgrades smoother for everyone.



Webhooks

This month we have added a new workflow action: webhooks. Webhooks are HTTP requests to external servers with event data and are often used to integrate with external services. The main benefit of webhooks is that they are push based, instead of pull. Rather than making repeated requests to the Immich API to see when data changes, webhooks can push event information and allow other systems to respond to it.



Here is what the webhook trigger action item looks like in the action picker on the web:

Selected webhook action
Selected webhook action

Once the "Trigger Webhook" action has been selected, you are able to configure it with a destination url, the HTTP request method (POST vs PUT), and an optional header to send with the request. It is quite common for webhooks to require authentication, and the header configuration allows the user to send one with each request.

Here is an example configuration:

Webhook action configuration form
Webhook action configuration form

Releases

Over the last two weeks there have been a handful of prereleases as we prepare for v3.0.0.

  • v3.0.0-rc.3 - Video player keyboard shortcuts, webhook workflow action, fix: sync backfill issue
  • v3.0.0-rc.2 - Fix version check logic, fix i18n, fix album sharing, etc.
  • v3.0.0-rc.1 - New v3-rc docker tag, bugs fixes
  • v3.0.0-rc.0 - Breaking changes, workflows & HLS (both in preview), recently added page, slideshow (mobile), and more!

Developers update - from the labyrinth

Our team members' unfiltered thoughts on the good, the bad, and the frustration about the current tasks they are working on.

Testing, Testing and more testing for v3.0.0 release.

@jrasm91

There are probably 3 things worth mentioning this month:

  1. I found and fixed a long time issue related to mobile sync. The server sends incremental data to the mobile app using queries and checkpoints, which makes it resumable. It turns out there was a classic "off-by-one" bug, where, the resume query used >= instead of > meaning it would send the the first record again, causing a key violation on the mobile side. The bug can only be triggered under very specific circumstances, but it was 100% reproducible.
  2. Prerelease workflow — this month I was able to update our version bumping script to understand prereleases and make it easy to keep all the different version references in sync. As a part of that, major releases will now automatically bump the references in the docs, example.env, etc., which is pretty convenient.
  3. Workflow actions — Also this month I spent more time adding new workflow actions and events. I am currently working on an "added to album" trigger, meaning it would be possible to do something like "When an asset it added to the 'Archive' album, archive the asset". The biggest issue right now is the album asset table is often very high volume, so it's taking a bit of time to add some bulk capabilities into the workflow engine. It's not ideal to have to find recently created album/asset combinations one at a time, and then (for each one) find and run matching workflows, and then repeat that process for every new album/asset record. It just has the potential for exploding very quickly. So, it's currently work-in-progress, but I know album events are super important for many workflows, which is why it is on the top of the list at the moment.

Upcoming goals

Well, that's it for this month. As always, if you find the project helpful, you can support us at https://buy.immich.app/.

Cheers,
The Immich Team