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

推荐订阅源

G
GRAHAM CLULEY
V
V2EX
WordPress大学
WordPress大学
博客园 - Franky
Last Week in AI
Last Week in AI
博客园 - 司徒正美
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
V
Visual Studio Blog
C
CERT Recently Published Vulnerability Notes
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Jina AI
Jina AI
Attack and Defense Labs
Attack and Defense Labs
腾讯CDC
The Hacker News
The Hacker News
Hugging Face - Blog
Hugging Face - Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
A
Arctic Wolf
量子位
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
News and Events Feed by Topic
雷峰网
雷峰网
博客园_首页
Google Online Security Blog
Google Online Security Blog
Spread Privacy
Spread Privacy
罗磊的独立博客
H
Hacker News: Front Page
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
TaoSecurity Blog
TaoSecurity Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
IT之家
IT之家
The Cloudflare Blog
爱范儿
爱范儿
博客园 - 叶小钗
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell

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