ライブ・チェンジ・ログ

リアルタイムで構築しているものを見る。 プラットフォーム間で出荷されるすべての機能、修正、改善.

17,916
総変更点
4,605
特徴:
4,536
フィックス
32
プロジェクト
プロジェクトによるフィルタ
すべてのプロジェクト17,916AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService371InitializerService300KBService74KlusterServices545MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,573kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,321kamo-signer-monorepo50kamolos102
タイプ別フィルター
すべてのタイプBuild24CI523Chore670Docs226Feature4,605Fix4,536Other6,781Performance136Refactor274Revert23Style48Test69Upgrade1
March 12, 2026
FixSecurityService

Move loginOrgOpt declaration outside try block to fix scope error

The variable was declared inside the first try block but referenced in the second try block for parent branch title resolution.

Kamo·6mo ago
March 11, 2026
FixSecurityService

Add kamo.commerce.enabled=true to k8s configmap

This is the file the CI pipeline actually applies (k8s/configmap.yaml). Required for CommerceService and EngagementLifecycle to load under the new @ConditionalO...

Kamo·6mo ago
FixSecurityService

Add KAMO_COMMERCE_ENABLED=true to k8s configmap

Required for CommerceService and EngagementLifecycle to load now that they use @ConditionalOnProperty instead of @ConditionalOnBean.

Kamo·6mo ago
FixSecurityService

Enable commerce beans via kamo.commerce.enabled property

CommerceService and EngagementLifecycle now use @ConditionalOnProperty instead of @ConditionalOnBean. Set kamo.commerce.enabled=true so they load in SecuritySer...

Kamo·6mo ago
March 10, 2026
FixSecurityService

Save sessionTimeoutMinutes on member update

Kamo·6mo ago
March 9, 2026
FixSecurityService

Remove duplicate session timeout system from Redis records

Session expiry is now managed solely by the Redis key TTL. The internal createdAt/expiresIn fields stored inside the Redis value have been removed — they formed...

Kamo·6mo ago
February 12, 2026
FixSecurityService

Enable commerce JPA repos for POSController/CommerceService

SecurityService POSController depends on CommerceService which uses engagement, order, intent, etc. repositories. These live in com.kamo.z.shared.commerce.* but...

Kamo·7mo ago
February 11, 2026
FixSecurityService

Resolve Map type inference in POS controllers for CI compilation

- Use explicit Map<String, Object> in ResponseEntity Map.of() calls - Fixes 'incompatible types: inference variable V has incompatible bounds' when mixing DTO...

Kamo·7mo ago
February 3, 2026
December 17, 2025
FixSecurityService

Update NATS and MinIO configuration to use new VPN IPs

- Update NATS URLs from old Tailscale IPs (100.64.x.x) to Kubernetes service DNS - Update MinIO IPs from old Tailscale IPs to new VPN IPs (10.8.x.x) - Fixes NAT...

snadjafinia·8mo ago
December 12, 2025
December 5, 2025
FixSecurityService

Reload market after create/update to initialize lazy collections

- Updated createMarket and updateMarket to reload market using getMarketById - This ensures all lazy collections (marketCustomForms, vendorProducts) are initial...

snadjafinia·9mo ago
FixSecurityService

Correct path handling for mortgage fields and custom form data in lead imports

- Fixed mortgage fields to use 2-part paths (mortgageFields.loanAmount) in setNestedFieldOnCreateRequest - Fixed custom form data to use 3-part paths **********...

snadjafinia·9mo ago
FixSecurityService

Make email/username login case-insensitive

- Normalize input username/email to lowercase before comparison - Use LOWER() function on database column for case-insensitive matching - Fixes issue where user...

snadjafinia·9mo ago
December 3, 2025
FixSecurityService

Cast getOrDefault to Boolean in formatEmail method

- Fix compilation error: incompatible types Object to boolean - Add explicit Boolean cast for toLowerCase and trim config options

snadjafinia·9mo ago
November 29, 2025
November 28, 2025
FixSecurityService

Fix compilation errors in MediaStreamController

- Fixed missing closing brace in getFeed method else block - Replaced Map.of() with HashMap for compatibility - Fixed stream variable to be effectively final fo...

snadjafinia·9mo ago
November 27, 2025
November 26, 2025
FixSecurityService

すべてのユーザアバターをプロキシではなく、実際のエンティティティを取得

- avatar から userId を取得し、findByUserId をクエリします(実際のエンティティを返します) - リストから一致するアバターを見つけて、インスタンスをチェックする - これは、作業からインスタンスを防止するプロキシの問題を回避します

snadjafinia·9mo ago
FixSecurityService

Hibernate LazyInitializerを使用して、プロキシから実際のエンティティティメントクラスを取得する

- HibernateProxyのLazyInitializerにアクセスして、持続的なクラスを取得 - 永続クラスがAvatarPhotoまたはAvatarAvatar Creatorであるかどうかをチェックする - 強制初期化(************************) - これは、プロキシであっても、アバ...

snadjafinia·9mo ago
FixSecurityService

直接キャストを使用して、リフレクションではなくアバタータイプを決定する

- プロキシの初期化を強制するためにAvatarPhotoに最初に鋳造を試みて下さい - キャスト直後のアクセスgetFileExtension() - 写真のキャストが失敗した場合、AvatarAvatar Creatorに戻って秋 - タイプ検出のためのよりよい間違いの処理

snadjafinia·9mo ago
FixSecurityService

InvocationTargetException をキャッチすることでプロキシタイプの検出を向上

- プロキシのメソッドを呼び出して実際のタイプを決定するときにClassCastExceptionを処理する - まずはgetFileExtension(写真)、getStyle(Avatar Creator)をお試しください。 - Hibernateプロキシタイプの検出のためのより良いエラー処理

snadjafinia·9mo ago
FixSecurityService

アバタータイプの検出のためのHibernateのプロキシ処理を改善して下さい

- getFileExtensionメソッドのクラス階層とインターフェイスを検索する - インスタンスが失敗したときにAvatarPhoto対AvatarAvatar Creatorを検出するために反射を使用する - クラス名のチェックにフォールバックを追加する - フォトアバターがAvatar Creator ava...

snadjafinia·9mo ago
FixSecurityService

リポジトリからアバターをリロードして、Hibernateプロキシインスタンスの問題を解決

- 関係から読み込まれたアバターのエンティティティティティティティティは、インスタンスのチェックに失敗するハイバロンのプロキシかもしれません - リポジトリからアバターをリロードして、実際のエンティタイプ(AvatarPhotoまたはAvatarAvatar Creator)を取得する - リロードが失敗した場合、リロ...

snadjafinia·9mo ago
FixSecurityService

RecordState の代わりに user.getAvatar() をチェックすることで、アクティブなアバターを決定します

- バックエンドは、user.getAvatar() と比較して、アバターがアクティブであるというマークを正しくマークします。 - これは、APIレスポンスのisActiveフラグが実際のアクティブアバターを反映していることを確認します。 - アバターの変更が正しく主張されていない問題を修正

snadjafinia·9mo ago
November 25, 2025
FixSecurityService

Handle ISO date format and improve avatarId type parsing

- Added support for ISO date format (YYYY-MM-DD) in addition to M/d/yyyy - Improved avatarId parsing to handle Number types (Double, BigDecimal, etc.) from JSON...

snadjafinia·9mo ago
FixSecurityService

Add better error handling and logging for user/member save operations

- Added try-catch around user save operation with detailed error logging - Added try-catch around member save operation with detailed error logging - Improved d...

snadjafinia·9mo ago
FixSecurityService

Improve avatarId parsing to handle string, integer, and long types

- Added support for parsing avatarId from String type - Better error handling for invalid avatarId formats - Added logging for avatar assignment and errors

snadjafinia·9mo ago
FixSecurityService

Add detailed logging to updateMemberProfile for debugging

- Added logging at start of updateMemberProfile method - Added logging before and after saving user and member - Improved error response to include error detail...

snadjafinia·9mo ago
FixSecurityService

Add support for updating user name fields and dateOfBirth in member profile

- Added UserRepository to MemberController - Updated updateMemberProfile to handle namePrefix, nameFirst, nameMiddle, nameLast, nameSuffix, nameFirstAKA, nameLa...

snadjafinia·9mo ago
FixSecurityService

Use correct bucket and object path structure for MinIO uploads

- Change bucket name from domain-based to 'public' bucket - Include domain path (e.g., kamocrm-com) as part of object name, not bucket name - Fix object path st...

snadjafinia·9mo ago
FixSecurityService

Properly handle MinIO upload failures for avatars

- Remove silent exception swallowing in Avatar Creator avatar creation - Add proper error handling and rollback for failed uploads - Delete database record if f...

snadjafinia·9mo ago
FixSecurityService

Handle missing fileHash column gracefully

- Add try-catch around fileHash access to handle missing database column - Fall back to ID-based file naming if fileHash column doesn't exist yet - Allows code ...

snadjafinia·9mo ago
FixSecurityService

Ensure theme domain URL includes https:// protocol

snadjafinia·9mo ago
FixSecurityService

Use theme domain for presigned URLs in AvatarController

snadjafinia·9mo ago

配送を見るのが好きですか?

これらのアップデートは、自動的にワークスペースに埋め込まれます。 週1回無料スタートし、週1回生育する.

永遠に無料で始める料金を見る