nsg / immich-distribution

Experimental Immich distribution inside a snap
MIT License
25 stars 0 forks source link

Bump v1.95.1 #156

Closed github-actions[bot] closed 7 months ago

github-actions[bot] commented 7 months ago

This PR bumps the version from v1.95.0 to v1.95.1. Please review the changes and merge this PR if everything looks good.

Upstream release notes

Monitored upstream files

diff --git a/server/src/infra/migrations/1707000751533-AddVectorsToSearchPath.ts b/server/src/infra/migrations/1707000751533-AddVectorsToSearchPath.ts
index e83e4b4fb..11c84cf97 100644
--- a/server/src/infra/migrations/1707000751533-AddVectorsToSearchPath.ts
+++ b/server/src/infra/migrations/1707000751533-AddVectorsToSearchPath.ts
@@ -4,11 +4,11 @@ export class AddVectorsToSearchPath1707000751533 implements MigrationInterface {
   public async up(queryRunner: QueryRunner): Promise<void> {
     const res = await queryRunner.query(`SELECT current_database() as db`);
     const databaseName = res[0]['db'];
-    await queryRunner.query(`ALTER DATABASE ${databaseName} SET search_path TO "$user", public, vectors`);
+    await queryRunner.query(`ALTER DATABASE "${databaseName}" SET search_path TO "$user", public, vectors`);
   }

   public async down(queryRunner: QueryRunner): Promise<void> {
     const databaseName = await queryRunner.query(`SELECT current_database()`);
-    await queryRunner.query(`ALTER DATABASE ${databaseName} SET search_path TO "$user", public`);
+    await queryRunner.query(`ALTER DATABASE "${databaseName}" SET search_path TO "$user", public`);
   }
 }

Error, web/README.md do not exists

/home/runner/work/immich-distribution/immich-distribution /tmp/tmp.hcxdeRzBNb removed

Base image

Check the base images for recent relevant changes:

Checklist

ref #154