From c7cb19be49f51d7c2365a225c65da32b3a5c18f2 Mon Sep 17 00:00:00 2001 From: jrasm91 <4334196+jrasm91@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:46:09 +0000 Subject: [PATCH] chore: release v2.5.7 --- CHANGELOG.md | 27 +++++++++++++++++++++ cli/package.json | 2 +- docs/static/archived-versions.json | 4 +-- e2e/package.json | 2 +- i18n/package.json | 2 +- machine-learning/pyproject.toml | 2 +- machine-learning/uv.lock | 2 +- mobile/android/fastlane/Fastfile | 4 +-- mobile/ios/Runner/Info.plist | 2 +- mobile/openapi/README.md | 2 +- mobile/pubspec.yaml | 2 +- open-api/immich-openapi-specs.json | 2 +- open-api/typescript-sdk/package.json | 2 +- open-api/typescript-sdk/src/fetch-client.ts | 2 +- package.json | 2 +- server/package.json | 2 +- web/package.json | 2 +- 17 files changed, 45 insertions(+), 18 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..58ec1ff03a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ + +# v2.5.7 + +## Highlights + +{{RELEASE HIGHLIGHTS}} + +As always, please consider supporting the project. + +🎉 Cheers! 🎉 + + +---- + +And as always, bugs are fixed, and many other improvements also come with this release. + + + +## What's Changed +### 🐛 Bug fixes +* fix: ignore checksum constraint error when logging by @jrasm91 in https://github.com/immich-app/immich/pull/26113 + + +**Full Changelog**: https://github.com/immich-app/immich/compare/v2.5.6...v2.5.7 + +--- + diff --git a/cli/package.json b/cli/package.json index 28bee420aa..a5c700daae 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@immich/cli", - "version": "2.5.6", + "version": "2.5.7", "description": "Command Line Interface (CLI) for Immich", "type": "module", "exports": "./dist/index.js", diff --git a/docs/static/archived-versions.json b/docs/static/archived-versions.json index 564eeafa94..c016278a71 100644 --- a/docs/static/archived-versions.json +++ b/docs/static/archived-versions.json @@ -1,7 +1,7 @@ [ { - "label": "v2.5.6", - "url": "https://docs.v2.5.6.archive.immich.app" + "label": "v2.5.7", + "url": "https://docs.v2.5.7.archive.immich.app" }, { "label": "v2.4.1", diff --git a/e2e/package.json b/e2e/package.json index 01dd036a2f..4b06e3ac0e 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "immich-e2e", - "version": "2.5.6", + "version": "2.5.7", "description": "", "main": "index.js", "type": "module", diff --git a/i18n/package.json b/i18n/package.json index 47748c28e8..833e143f45 100644 --- a/i18n/package.json +++ b/i18n/package.json @@ -1,6 +1,6 @@ { "name": "immich-i18n", - "version": "2.5.6", + "version": "2.5.7", "private": true, "scripts": { "format": "prettier --check .", diff --git a/machine-learning/pyproject.toml b/machine-learning/pyproject.toml index dda5141363..5d5abf9082 100644 --- a/machine-learning/pyproject.toml +++ b/machine-learning/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "immich-ml" -version = "2.5.6" +version = "2.5.7" description = "" authors = [{ name = "Hau Tran", email = "alex.tran1502@gmail.com" }] requires-python = ">=3.11,<4.0" diff --git a/machine-learning/uv.lock b/machine-learning/uv.lock index 4ec64e05fa..0078decd6c 100644 --- a/machine-learning/uv.lock +++ b/machine-learning/uv.lock @@ -882,7 +882,7 @@ wheels = [ [[package]] name = "immich-ml" -version = "2.5.6" +version = "2.5.7" source = { editable = "." } dependencies = [ { name = "aiocache" }, diff --git a/mobile/android/fastlane/Fastfile b/mobile/android/fastlane/Fastfile index 14a6b4b660..cf36359a1c 100644 --- a/mobile/android/fastlane/Fastfile +++ b/mobile/android/fastlane/Fastfile @@ -35,8 +35,8 @@ platform :android do task: 'bundle', build_type: 'Release', properties: { - "android.injected.version.code" => 3037, - "android.injected.version.name" => "2.5.6", + "android.injected.version.code" => 3038, + "android.injected.version.name" => "2.5.7", } ) upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab') diff --git a/mobile/ios/Runner/Info.plist b/mobile/ios/Runner/Info.plist index 1557d7f701..214fccf12a 100644 --- a/mobile/ios/Runner/Info.plist +++ b/mobile/ios/Runner/Info.plist @@ -80,7 +80,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.5.6 + 2.5.7 CFBundleSignature ???? CFBundleURLTypes diff --git a/mobile/openapi/README.md b/mobile/openapi/README.md index 702870c856..450f61258a 100644 --- a/mobile/openapi/README.md +++ b/mobile/openapi/README.md @@ -3,7 +3,7 @@ Immich API This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 2.5.6 +- API version: 2.5.7 - Generator version: 7.8.0 - Build package: org.openapitools.codegen.languages.DartClientCodegen diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index 0b54dfc53e..b8206ecab0 100644 --- a/mobile/pubspec.yaml +++ b/mobile/pubspec.yaml @@ -2,7 +2,7 @@ name: immich_mobile description: Immich - selfhosted backup media file on mobile phone publish_to: 'none' -version: 2.5.6+3037 +version: 2.5.7+3038 environment: sdk: '>=3.8.0 <4.0.0' diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index d9743e3d4b..f12f5bd81f 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -15072,7 +15072,7 @@ "info": { "title": "Immich", "description": "Immich API", - "version": "2.5.6", + "version": "2.5.7", "contact": {} }, "tags": [ diff --git a/open-api/typescript-sdk/package.json b/open-api/typescript-sdk/package.json index 6310316857..b9ab50bcd9 100644 --- a/open-api/typescript-sdk/package.json +++ b/open-api/typescript-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@immich/sdk", - "version": "2.5.6", + "version": "2.5.7", "description": "Auto-generated TypeScript SDK for the Immich API", "type": "module", "main": "./build/index.js", diff --git a/open-api/typescript-sdk/src/fetch-client.ts b/open-api/typescript-sdk/src/fetch-client.ts index 28a8bc495e..d1d0c0dea5 100644 --- a/open-api/typescript-sdk/src/fetch-client.ts +++ b/open-api/typescript-sdk/src/fetch-client.ts @@ -1,6 +1,6 @@ /** * Immich - * 2.5.6 + * 2.5.7 * DO NOT MODIFY - This file has been generated using oazapfts. * See https://www.npmjs.com/package/oazapfts */ diff --git a/package.json b/package.json index 706b4b02bc..5a9d70a248 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "immich-monorepo", - "version": "2.5.6", + "version": "2.5.7", "description": "Monorepo for Immich", "private": true, "packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48", diff --git a/server/package.json b/server/package.json index 31da11af3f..7a0c7125bb 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "immich", - "version": "2.5.6", + "version": "2.5.7", "description": "", "author": "", "private": true, diff --git a/web/package.json b/web/package.json index 8ba0599c8b..70285b7819 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "immich-web", - "version": "2.5.6", + "version": "2.5.7", "license": "GNU Affero General Public License version 3", "type": "module", "scripts": {