Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4a78c6a
aube lock
Aug 30, 2026
5263b8d
feat(ui): open image viewer in lightbox
Aug 30, 2026
a4a4f99
fix(ui): preserve media detail on SSE refresh
Aug 30, 2026
debdd72
fix(ui): keep media cards stable during refresh
Aug 30, 2026
94b6503
fix(ui): keep detail refresh state reactive
Aug 30, 2026
cd604b1
Merge pull request #721 from hmjn023/codex/stable-media-updates
hmjn023 Aug 30, 2026
b6845fd
update package
Aug 30, 2026
6c57606
Merge pull request #722 from hmjn023/feature/update-package
hmjn023 Aug 30, 2026
6843aea
perf(server): enable zod schema compilation
Aug 30, 2026
2411127
fix(v2): align design lab parity details
hmjn023 Aug 31, 2026
c0624a8
Merge pull request #724 from hmjn023/feat/v2-design-lab-parity
hmjn023 Aug 31, 2026
9e6525f
perf: reduce job dispatch and media search overhead
hmjn023 Aug 31, 2026
8487420
fix: omit window count from simple media search
hmjn023 Aug 31, 2026
ad3a9a0
fix(server): run Nitro dev environment with Bun
hmjn023 Aug 31, 2026
6877a34
Merge pull request #725 from hmjn023/codex/perf-job-search-optimizations
hmjn023 Aug 31, 2026
ef9b364
Merge pull request #726 from hmjn023/codex/fix-aube-bun-dev-runner
hmjn023 Aug 31, 2026
1b2e87e
Merge pull request #723 from hmjn023/codex/zod-compile
hmjn023 Aug 31, 2026
18c7f1c
fix(ui): reduce mobile top spacing
hmjn023 Aug 31, 2026
a36eb7b
Merge pull request #727 from hmjn023/codex/fix-mobile-top-spacing
hmjn023 Aug 31, 2026
7e6152f
fix(ui): remove idle detail status spacing
hmjn023 Aug 31, 2026
06b25de
Merge pull request #729 from hmjn023/codex/fix-mobile-detail-spacing
hmjn023 Aug 31, 2026
b4b8ac6
fix(ui): prevent search status layout shift
hmjn023 Sep 1, 2026
8f66e95
Merge pull request #731 from hmjn023/codex/fix-search-status-layout
hmjn023 Sep 1, 2026
41717ac
feat(jobs): add bulk retry actions
hmjn023 Sep 3, 2026
56de45c
feat(search): add media sort options
hmjn023 Sep 3, 2026
ed7d6ff
Merge pull request #732 from hmjn023/codex/feat/bulk-job-retry
hmjn023 Sep 3, 2026
d0b31f0
Merge pull request #733 from hmjn023/codex/feat/media-sort-options
hmjn023 Sep 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,18 @@ aube dev
# 本番ビルド済み成果物の起動: aube start
```

Aubeを使う場合も、Bunと同じく既存の `bun.lock` を唯一のlockfileとして使用します。依存関係を更新したときは `bun install` または `aube i` を実行し、別のlockfileを作成したり手動で同期したりしないでください。
Aubeで全workspaceの依存関係を更新する場合は、root packageだけを対象にする
`aube upgrade` を直接実行せず、次のコマンドを使用してください。

```bash
bun run deps:update:aube
# equivalent: aube update -r
```

`-r` を省略すると、Aube 2.2.0では共有 `aube-lock.yaml` からworkspaceの
importerが削除され、依存関係を解決できなくなります。通常のインストールは
引き続き `aube i` を使用します。Bun側の依存関係を更新した場合は
`bun.lock` も合わせて更新してください。

PostgreSQLを使わずPGliteで動かす場合は、DB_HOSTを上書きしてマイグレーションを実行します。

Expand Down
6 changes: 3 additions & 3 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"test:watch": "vitest"
},
"dependencies": {
"@orpc/client": "^1.14.4",
"@orpc/client": "^1.15.0",
"@solid-imager/client": "workspace:*",
"@solid-imager/core": "workspace:*",
"incur": "^0.5.1",
"zod": "^4.4.3"
"zod": "^4.5.4"
},
"devDependencies": {
"@types/bun": "1.4.0",
"@types/node": "^26.4.0",
"typescript": "rc",
"vitest": "^4.1.10"
"vitest": "^4.1.11"
}
}
2 changes: 1 addition & 1 deletion apps/cli/src/commands/media.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export interface BasicContext<
// Keep the success payload type visible to standalone handlers. The actual
// incur implementation does not return from this helper, but the generic
// return type preserves each handler's inferred result for its CLI contract.
ok: <TData>(data: TData, meta?: { cta?: unknown }) => TData;
ok: (data: unknown) => never;
options: TOptions;
}

Expand Down
4 changes: 4 additions & 0 deletions apps/server/drizzle/0029_clumsy_raider.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DROP INDEX "idx_media_source_id";--> statement-breakpoint
CREATE INDEX "idx_jobs_parent_type" ON "jobs" USING btree ("parent_id","type") WHERE "jobs"."parent_id" IS NOT NULL;--> statement-breakpoint
CREATE INDEX "idx_media_source_created_at_id" ON "media" USING btree ("source_id","created_at","id");--> statement-breakpoint
CREATE INDEX "idx_media_source_id" ON "media" USING btree ("source_id","id");
Loading
Loading