Mabadiliko ya Tabianchi

Kuona nini sisi ni kujenga katika muda halisi. Kila kipengele, kurekebisha, na kuboresha kusafirishwa kwenye jukwaa.

17,925
Mabadiliko ya Jumla
4,612
Features ya
4,537
Wa
32
Miradi ya Miradi
Filter ya Mradi
Miradi yote17,925AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService373InitializerService300KBService74KlusterServices546MCPGatewayService43MediaService461RAGService61SecurityService1,520TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,576kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,322kamo-signer-monorepo50kamolos102
Filter ya aina
Aina zoteBuild24CI523Chore670Docs226Feature4,612Fix4,537Other6,781Performance136Refactor274Revert23Style48Test70Upgrade1
March 10, 2026
Featurekamo-shared-library

Default Everyone role sessionTimeoutMinutes to 30

Kamo·6mo ago
Featurekamo-shared-library

Add sessionTimeoutMinutes to Member entity

Kamo·6mo ago
Featurekamo-shared-library

Add sessionTimeoutMinutes to JobTitle entity

Kamo·6mo ago
Featurekamo-shared-library

Add sessionTimeoutMinutes to Department entity

Kamo·6mo ago
Featurekamo-shared-library

Add sessionTimeoutMinutes to OrgRole entity

Kamo·6mo ago
Featurekamo-shared-library

Add market_id FK to POS entities and market-filtered repository queries

Add market association (ManyToOne FK to CommerceMarket) to Offering, InventoryItem, RentalAsset, Vendor, and SubscriptionPlan entities. Add findByMarketId queri...

Kamo·6mo ago
Chorekamo-shared-library

Normalize line endings in EmbNameFull.java

Kamo·6mo ago
March 9, 2026
Featurekamo-shared-library

Add CommerceMarketVendor entity

Kamo·6mo ago
Featurekamo-shared-library

Add CommerceVendorCategory entity

Kamo·6mo ago
Featurekamo-shared-library

Add CommerceMarket entity

Kamo·6mo ago
Featurekamo-shared-library

Add built-in vendor categories seed data per commerce type

Kamo·6mo ago
Featurekamo-shared-library

Add CommerceType enum for commerce markets system

Kamo·6mo ago
February 14, 2026
Fixkamo-shared-library

Serialize POS DTO uid/id as string in JSON for JS safe integer

- RetailOrderDTO.uid, **************** EngagementDetailDTO.id/linkId, MortgageAppDTO.uid - Use @JsonSerialize(using = ToStringSerializer.class) to avoid precisi...

Kamo·6mo ago
February 12, 2026
Featurekamo-shared-library

Phase 1-3 foundation - RETAIL, MORTGAGE, RENTAL assets

Phase 1 RETAIL: - CommitmentContextType.SALE, processOrderPaid: Commitment, Transaction, InventoryAllocation, FulfillmentOrder - checkInventoryForOrder on creat...

Kamo·7mo ago
Fixkamo-shared-library

Use Uid instead of Id for BaseEntity-derived relations

- FulfillmentOrderRepository: findBySourceCommitmentId -> findBySourceCommitmentUid (Commitment uses uid) - TransactionRepository: findByOrderId -> findByOrderU...

Kamo·7mo ago
Featurekamo-shared-library

Add ordering (createdAt DESC) and date range filter

- EngagementRepository: OrderByDateCreatedDesc on all find methods - CommerceService: dateFrom/dateTo params, in-memory date filter - Engagements API now suppor...

Kamo·7mo ago
Featurekamo-shared-library

Add EngagementDomainTypeConverter for VENDOR→SERVICE, no manual SQL

- JPA AttributeConverter maps legacy VENDOR to SERVICE when reading from DB - Applied to Engagement.domain and OrgPOSConfig.enabledDomains - Removes need for ma...

Kamo·7mo ago
Featurekamo-shared-library

Replace pos beans with commerce package

- Add commerce package (Order, Intent, Offering, InventoryItem, InventoryPool, etc.) - Add CommerceService replacing POSService, RetailProductService, RetailInv...

Kamo·7mo ago
February 11, 2026
Featurekamo-shared-library

Enterprise validation in POSService

- createRetailOrder: null check on request - createLineItem: null check, quantity > 0, unitPrice >= 0 validation

Kamo·7mo ago
Featurekamo-shared-library

Add POS/inventory domain entities, DTOs, repos and services

- Add POS beans (retail, rental, mortgage, subscription, vendor) - Add RetailProduct, RetailInventoryStock, RetailOrder, MortgageApp DTOs - Add RetailProductSer...

Kamo·7mo ago
February 4, 2026
Featurekamo-shared-library

Populate vendorProduct relationship when fetching leads

Update getLeadsByOrganizationId() to populate the @Transient vendorProduct field for each lead that has a vendorProductId. This ensures the vendor and product d...

Kamo·7mo ago
February 3, 2026
Featurekamo-shared-library

Add status, subStatus, source, and dateCreated fields

- Added status, subStatus, source, dateCreated, and isActive fields to Lead entity - Updated LeadDTO with frontend-compatible fields (status, subStatus, source,...

Kamo·7mo ago
Featurekamo-shared-library

Refactor Lead assignment from String to Employee reference

- Changed Lead.assignedUser (String) to Lead.assignedEmployee (Employee) - Added LeadAssignment entity to track assignment history - Added LeadAssignmentType en...

Kamo·7mo ago
December 23, 2025
CIkamo-shared-library

Trigger pipeline

snadjafinia·8mo ago
December 11, 2025
December 5, 2025
Chorekamo-shared-library

Update code

snadjafinia·9mo ago
Fixkamo-shared-library

Resolve MultipleBagFetchException and fix custom form persistence

- Simplified CustomFormRepository query to avoid multiple bag fetches - Fixed LeadMarketService to properly save and load custom form associations - Use saveAnd...

snadjafinia·9mo ago
Fixkamo-shared-library

Properly save and load custom form associations for markets

- Removed repository delete, now using JPA orphan removal for cleanup - Initialize lazy marketCustomForms collection before clearing - Ensure collections are in...

snadjafinia·9mo ago
Fixkamo-shared-library

Resolve MultipleBagFetchException in CustomFormRepository

- Simplified findByIdAndOrganizationId query to avoid fetching multiple bags - Removed LEFT JOIN FETCH for stacks and fields in same query - Collections are now...

snadjafinia·9mo ago
Fixkamo-shared-library

Resolve MultipleBagFetchException by using transactional lazy loading

- LeadMarketRepository: Reverted to simple query without multiple JOIN FETCH - LeadMarketService: Added @Transactional(readOnly=true) to getMarketById with expl...

snadjafinia·9mo ago
Fixkamo-shared-library

Add eager loading for repository queries to fix lazy loading issues

- CustomFormRepository: Added LEFT JOIN FETCH for stacks and fields in findByIdAndOrganizationId - LeadMarketRepository: Added LEFT JOIN FETCH for marketCustomF...

snadjafinia·9mo ago
Featurekamo-shared-library

Add salesSubType field to LeadMarketDTO for mortgage field detection

- Added salesSubType field to distinguish between parent SaleType and sub-types - When SaleType has a parent (e.g., RESIDENTIAL_MORTGAGE), salesType becomes the...

snadjafinia·9mo ago
December 4, 2025
Featurekamo-shared-library

Add market-based lead fields and custom form data support

- Add marketId field to Lead entity - Create LeadCustomFormData entity with JSONB column for custom form data - Add LeadCustomFormDataRepository - Update LeadDT...

snadjafinia·9mo ago
December 3, 2025
Featurekamo-shared-library

Add parent-child hierarchy support to SaleType enum

- Added RESIDENTIAL_MORTGAGE, COMMERCIAL_MORTGAGE, SERVICE_CUSTOM as children of SERVICE - Added PRODUCT_CUSTOM as child of PRODUCT - Added helper methods: getP...

snadjafinia·9mo ago
December 1, 2025
November 30, 2025
November 29, 2025
Fixkamo-shared-library

Add null checks and validation in CustomFormService createForm/updateForm

- Add null/empty checks for fieldId before calling trim().toLowerCase() to prevent NullPointerException - Add comprehensive validation for required fields (fiel...

snadjafinia·9mo ago
Featurekamo-shared-library

Add custom forms feature with form builder support

- Add FormFieldType enum with 12 field types (TEXT, TEXT_AREA, MONEY, DATE, DATE_TIME, DROPDOWN, RADIO, LIST, CHECKBOX, ADDRESS, US_SSN, US_STATE) - Add entity ...

snadjafinia·9mo ago

Je, unaona nini kuhusu usafiri?

Kila moja ya hizi updates ardhi katika nafasi yako ya kazi moja kwa moja. Kuanza bure na kuangalia kukua wiki baada ya wiki.

Kuwa Huru MileleMtazamo wa bei