MarkConversationRead のネイティブ クエリを使用して、Hibernate 6.2 型ミスマッチを解決
JPQL の CURRENT TIMESTAMP は java.sql を返します。 マッチしないタイムスタンプ インスタントタイプ更新フィールド。 NOW() でネイティブクエリをバイパスします.
Instant.now() ではなく、データベースレベルのタイムスタンプを使用する
@Builder.Default Instant.now() と @PreUpdate メソッドをすべて置換します。 @CreationTimestamp(source=DB)と@UpdateTimestamp(source=DB)を使って データベースはタイムスタンプの真理の1つのソースです.
Migrate JPA entities and repos to kamo-shared-library
Entities and repositories moved to **************** in the shared library. All imports updated to reference shared lib.
電子メールメタデータエンティティティティとリポジトリを追加する
JPA のエンティティティティティを移行し、EmailService から共有ライブラリへ再投稿 そのため、KamoInitializerServiceはddl-autoを介してすべてのスキーマを管理することができます.
Use native query for PostgreSQL text[] column in ConversationRepository
MEMBER OF is not supported by Hibernate for @JdbcTypeCode(ARRAY) fields. Switch to native SQL with ANY() for folder_ids array lookup.
Add search UI, virtual scrolling, IndexedDB caching, and offline mode
- Add SearchBar with operator autocomplete, saved/recent search suggestions - Add AdvancedSearchPanel with structured field-based query builder - Add VirtualMes...
Add IMAP connection pool, search intelligence, and delta sync endpoints
- Add Apache Commons Pool2 keyed connection pool for IMAP Store reuse (3/account, 500 total, 10min idle eviction) - Migrate EmailImapService from ConcurrentHash...
Add enterprise email organization — labels, filters, shortcuts, quick actions
Plans 2-3: conversation threading views, email API layer with zustand store, label picker, filter rule builder, smart folder modal, keyboard shortcuts with help...
Add enterprise email metadata services — labels, filters, smart folders, batch ops
Plans 1-3: metadata schema, JPA entities, repositories, conversation threading, label CRUD, filter rule engine with async retroactive apply, smart folder criter...
Add email HTML sanitization and CSS isolation via Shadow DOM
Replace raw dangerouslySetInnerHTML in MessageBrowser with a sanitized email renderer that uses DOMPurify + css-tree for HTML/CSS filtering and a closed Shadow ...
Use StringRedisTemplate to read OTK/session values stored as plain strings
The Next.js app stores OTK and *** values as plain strings in Redis. The default RedisTemplate uses JSON serializer which fails to parse them.