Live Change Log

See what we're building, in real-time. Every feature, fix, and improvement shipped across the platform.

17,919
Total Changes
4,607
Features
4,537
Fixes
32
Projects
Filter by project
All Projects17,919AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService372InitializerService300KBService74KlusterServices545MCPGatewayService43MediaService461RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,574kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,321kamo-signer-monorepo50kamolos102
Filter by type
All TypesBuild24CI523Chore670Docs226Feature4,607Fix4,537Other6,781Performance136Refactor274Revert23Style48Test69Upgrade1
April 11, 2026
Fixkamo-shared-library

Pass SYSTEM_WIDE as parameter instead of FQCN in JPQL query

Hibernate may not resolve fully-qualified enum names in JPQL across all versions. Pass ImageAssocType.SYSTEM_WIDE as a named parameter instead.

Kamo·5mo ago
Featurekamo-shared-library

Add e-signature template support to imaging system

- Add SigTemplateStatusType enum (PENDING, COMPLETED, ARCHIVED) - Add SYSTEM_WIDE ImageAssocType for cross-context templates - Add isSigTemplate, sigTemplateSta...

Kamo·5mo ago
April 4, 2026
Featurekamo-shared-library

Add minimum advance booking field to webinar type

Adds minAdvanceBookingMinutes to WebinarType entity and DTOs, allowing admins to require slots be booked a minimum time in advance (e.g., 24 hours). Slots close...

Kamo·5mo ago
Fixkamo-shared-library

Replace invalid JPQL temporal arithmetic with application-layer filtering

Hibernate 6 rejects subtracting a Long from an Instant in JPQL. Replaced findWebinarsWithDueReminders (which did nanosecond arithmetic in the query) with ******...

Kamo·5mo ago
Featurekamo-shared-library

Add PUBLIC_WEBINAR scope to API key system

Adds a new ApiKeyScope.PUBLIC_WEBINAR enum value to gate access to public webinar scheduling, joining, and cancellation endpoints.

Kamo·5mo ago
Featurekamo-shared-library

Add webinar scheduling system entities, repositories, DTOs, and enums

Introduces the complete data model for the webinar scheduling system: - 9 JPA entities: WebinarType, WebinarPresenter, WebinarReminder, WebinarAvailabilitySlo...

Kamo·5mo ago
Fixkamo-shared-library

Remove RestTemplate bean dependency from BaseProviderHttpClient

BaseProviderHttpClient now creates its own RestTemplate internally instead of requiring one from the application context, fixing startup crash in SecurityServic...

Kamo·5mo ago
Featurekamo-shared-library

Implement complete retail provider integration system with 10 e-commerce providers

Add full adapter implementations for Shopify, BigCommerce, WooCommerce, Wix, Ecwid, Squarespace, Magento, Shift4Shop, PrestaShop, and OpenCart. Includes HTTP cl...

Kamo·5mo ago
April 3, 2026
Featurekamo-shared-library

Add **************** and ****************

New query methods for account detail page — order lookup by purchaser and account listing by org.

Kamo·5mo ago
Refactorkamo-shared-library

Replace RetailCustomer with Account-based customer model

Account.java was already the commerce customer entity but was too minimal. RetailCustomer duplicated this concept. This commit: - Enhances Account with commerc...

Kamo·5mo ago
Fixkamo-shared-library

RetailProviderConfigRepository uses MarketId not MarketUid

CommerceMarket PK field is 'id' not 'uid'. Spring Data query derivation failed with 'No property uid found for type CommerceMarket'.

Kamo·5mo ago
Fixkamo-shared-library

Offering.requires_shipping DB default, PriceListEntryRepository Long type

- Add columnDefinition DEFAULT true for requires_shipping on Offering to handle existing rows during ALTER TABLE migration - Fix **************** to take Long...

Kamo·5mo ago
Featurekamo-shared-library

Add RetailService (2376 lines) and 38 retail DTOs

RetailService provides full CRUD for all KamoRetail entities across 7 domains: catalog (categories, brands, attributes, variants, images, tags, reviews), custom...

Kamo·5mo ago
Featurekamo-shared-library

Add KamoRetail enterprise data model — 109 new entities, repositories, and provider abstraction

Full retail POS data model designed for standalone KamoRetail operation and bidirectional sync with Shopify, BigCommerce, Wix, Squarespace, Shift4Shop, Ecwid, W...

Kamo·5mo ago
Fixkamo-shared-library

Return all agreement templates including inactive ones

Add findByOrganizationId to repo (no active filter) and includeInactive param to getAgreementTemplates service method. Defaults to true so the management UI sho...

Kamo·5mo ago
Featurekamo-shared-library

Add marketId support to retail product DTOs and CommerceService

Add marketId/marketTitle fields to RetailProductDTO, add marketId to CreateRetailProductRequest, and wire CommerceMarketRepository into CommerceService to set m...

Kamo·5mo ago
April 2, 2026
Featurekamo-shared-library

Add SocialLinkEntity and EmailSignatureFieldConfigEntity

Add normalized social_links table to replace embedded social link columns, supporting both predefined platforms and custom social links with sort ordering. Add ...

Kamo·5mo ago
Featurekamo-shared-library

Add email mailbox access privileges for member, department, and job type scopes

Add ACCESS_ALL_MEMBER_MAILBOXES (104), ACCESS_ALL_DEPARTMENT_MAILBOXES (105), and ACCESS_ALL_JOB_TYPE_MAILBOXES (106) to RoleRightType for privilege-based email...

Kamo·5mo ago
Featurekamo-shared-library

Add email domain, mailbox, and member-mailbox entities and repositories

Add EmailProviderDomainEntity, MailboxEntity, and MemberMailboxEntity for email provider domain management, mailbox provisioning, and member-to-mailbox assignme...

Kamo·5mo ago
April 1, 2026
Featurekamo-shared-library

Add scopes column to PublicChatApiKey and ApiKeyScope enum

Adds a JSONB scopes column to the API key entity with default value ["PUBLIC_CHAT"]. New ApiKeyScope enum defines available scopes: PUBLIC_CHAT and SUBSCRIPTION...

Kamo·5mo ago
Featurekamo-shared-library

Add subscription DTOs, SubscriptionService, and fix legacy CommerceService

38 new DTOs for plan config, orders, subscriptions, invoices, promotions, and agreements. 2000+ line SubscriptionService with full business logic for plan manag...

Kamo·5mo ago
Featurekamo-shared-library

Add complete subscription commerce entity model

24 JPA entities, 12 enums, 21 repositories, and 20 new permission rights for the enterprise subscription POS system. Includes plan configuration (plans, prices,...

Kamo·5mo ago
Fixkamo-shared-library

Use @MapsId pattern for PublicChatVisitor to resolve IdClass error

Switches from @OneToOne-as-@Id to @MapsId with explicit String sessionGuid field. Fixes Hibernate "does not define an IdClass" error at startup. Repository ID t...

Kamo·5mo ago
Featurekamo-shared-library

Add PublicChatVisitor and PublicChatApiKey entities for public chat widget

Adds entities, repositories, and DTOs to support anonymous public chat sessions on marketing sites. PublicChatVisitor captures visitor context (headers, IP, nam...

Kamo·5mo ago
March 31, 2026
Featurekamo-shared-library

Add public article query methods to KbArticleRepository

Add three new repository methods for fetching published articles with aiVisibleToPublic=true, used by the new KBService public endpoints: - **************** - *...

Kamo·5mo ago
March 29, 2026
Fixkamo-shared-library

Use subquery to find org theme backgrounds by user membership instead of direct member join

The previous INNER JOIN on tb.member excluded backgrounds where member was NULL, which is most user-level backgrounds. Now uses a subquery through User→Member→O...

Kamo·5mo ago
Featurekamo-shared-library

Add OrgMeetConfig entity, MeetBackground entity, MEET_RECORDING ImageAssocType, and meet permissions

Adds org-level video conferencing configuration with defaults for lobby, guest access, recording, branding, and notifications. New permissions: RECORD_MEETINGS ...

Kamo·5mo ago
Fixkamo-shared-library

Add explicit @JsonProperty annotations to KbArticle AI visibility fields

Ensure Jackson serializes/deserializes aiEnabled, aiVisibleToPublic, aiVisibleToMembers, aiVisibleToTeamMembers with correct field names.

Kamo·5mo ago
March 28, 2026
Featurekamo-shared-library

Add MeetingRecord and MeetingParticipant JPA repositories

Kamo·5mo ago
Featurekamo-shared-library

Add ServiceType.MEET for video conferencing

Kamo·5mo ago
Featurekamo-shared-library

Add unread message count queries and mark-as-read service methods

Leverage existing msgIdLastViewed field in MediaSessionMember to compute per-session unread counts and mark sessions as read for the chat unread indicator featu...

Kamo·5mo ago
Featurekamo-shared-library

Add AI visibility fields to KbArticle entity

Add aiEnabled, aiVisibleToPublic, aiVisibleToMembers, and aiVisibleToTeamMembers boolean fields to control per-article AI training and audience-scoped RAG acces...

Kamo·5mo ago
Featurekamo-shared-library

Add AiChatFeedback entity and repository

Kamo·5mo ago
March 27, 2026
March 26, 2026
Featurekamo-shared-library

Add app management system with service types, rights, and feature control

Restructure ServiceType enum: add core/deprecated flags, rename DOC_MANAGER→DOCS and AI_CHAT→AI_SUPPORT, add SUPPORT/NOTES/POS types, deprecate STORAGE/DOC_CLAS...

Kamo·5mo ago

Like what you see shipping?

Every one of these updates lands in your workspace automatically. Start free and watch it grow week after week.

Start Free ForeverView Pricing