Live Change Log

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

17,866
Total Changes
4,581
Features
4,513
Fixes
32
Projects
Filter by project
All Projects17,866AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService348InitializerService299KBService74KlusterServices539MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,554kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
Filter by type
All TypesBuild24CI522Chore670Docs226Feature4,581Fix4,513Other6,781Performance136Refactor273Revert23Style48Test68Upgrade1
October 17, 2025
Fixkamo-internal

Use Grid2 for proper MUI Grid component support

- Changed Grid import to use @mui/material/Unstable_Grid2 - Fixes TypeScript error: Grid item prop not recognized - Grid2 properly supports item, xs, md, lg pro...

snadjafinia·10mo ago
Fixkamo-internal

Replace any types with proper interfaces in SystemDiagnostics

- Replaced all 'any' types with detailed TypeScript interfaces - Removed unused WarningIcon import - Removed unused getStatusColor and getStatusIcon helper func...

snadjafinia·10mo ago
Otherkamo-analytics

Small fixes.

Mike Cao·10mo ago
FixSecurityService

Correct Redis ping() method call in DiagnosticsController

- Changed **************** to connection.ping() - RedisConnection.ping() is the correct API method - Fixes compilation error on lines 302 and 473 Resolves buil...

snadjafinia·10mo ago
Featurekamo-internal

Add comprehensive System Diagnostics dashboard to Settings

New Features: - Added 'System Diagnostics' tab to Settings page with 4 subtopics - Created SystemDiagnostics component with real-time monitoring - Added API pro...

snadjafinia·10mo ago
FeatureSecurityService

Add comprehensive diagnostics controller for session debug dashboard

New endpoints: - GET /api/diagnostics/info - Complete system diagnostics - GET /api/diagnostics/health - Quick health check - GET /api/diagnostics/sessions - Re...

snadjafinia·10mo ago
Featurekamo-login

Add floating orbs and apply modern gradients to recover page

Login Page Enhancements: - Added two floating orbs with independent animations - Orbs float vertically and horizontally with scale effects - Heavily blurred for...

snadjafinia·10mo ago
Featurekamo-login

Modernize Welcome Back section with polished gradients

- Replaced solid background with sophisticated 135deg gradient using primary colors - Added animated radial gradient overlay that pulses subtly (8s loop) - Adde...

snadjafinia·10mo ago
Fixkamo-login

Pass re*** build args in Forgejo workflow

- Added build-args to docker/build-push-action with re*** site key - NEXT_PUBLIC_* env vars now properly baked into JavaScript bundle - This enables re*** funct...

snadjafinia·10mo ago
Fixkamo-login

Add build args support for NEXT_PUBLIC environment variables

- Added ARG declarations for NEXT_PUBLIC_RE***_SITE_KEY and related vars - Converted ARGs to ENV vars for Next.js build process - Created BUILD_ARGS_REQUIRED.md...

snadjafinia·10mo ago
Chorekamo-login

Trigger rebuild with ESLint fix (commit 149373d)

snadjafinia·10mo ago
DocsSecurityService

Add re*** setup and troubleshooting guide

- Documented how to configure re*** for frontend and backend - Explained site key vs secret key requirements - Added instructions for Kubernetes secret configur...

snadjafinia·10mo ago
Chorekamo-login

Trigger rebuild to bake in NEXT_PUBLIC_RE***_SITE_KEY

Next.js NEXT_PUBLIC_* environment variables are build-time, not runtime. The ConfigMap now has the re*** site key, but the container image needs to be rebuilt t...

snadjafinia·10mo ago
Featurekamo-login

Disable all interactive elements during successful login redirect

- Added redirecting state to track when login succeeds and redirect is in progress - Disabled username and password input fields when redirecting - Disabled Con...

snadjafinia·10mo ago
Refactorkamo-login

Remove ROFL letters animation on password error

- Removed ROFL letters background effect that appeared on incorrect password - Cleaned up related console.log statements - Reduced error state timeout from 3s t...

snadjafinia·10mo ago
Chorekamo-login

Update re*** configuration with actual site key

- Set NEXT_PUBLIC_RE***_SITE_KEY to actual re*** v2 site key - Changed NEXT_PUBLIC_RE***_ATTRIB_MODE from 'badge' to 'text' - Text mode shows privacy policy lin...

snadjafinia·10mo ago
Featurekamo-login

Add re*** configuration to environment setup

- Added NEXT_PUBLIC_RE***_SITE_KEY to k8s ConfigMaps - Added NEXT_PUBLIC_RE***_ATTRIB_MODE to ConfigMaps (badge mode) - Updated README with environment setup in...

snadjafinia·10mo ago
ChoreSecurityService

Rebuild with updated kamo-shared-library

Picks up fix for parent-child domain concatenation in OrganizationRepository (commit 56d9ce2)

snadjafinia·10mo ago
FeatureInitializerService

Add localhost domain support in DataLoader

- Added localhost and localhost:3000 domains for local development - Improved comments explaining subdomain concatenation behavior - Works with updated Organiza...

snadjafinia·10mo ago
Fixkamo-shared-library

Add parent-child domain concatenation to OrganizationRepository

- Updated findByDomain query to handle subdomain + parent concatenation - Now supports both direct matches (localhost) and hierarchical matches (login.kamocrm.c...

snadjafinia·10mo ago
Fixkamo-login

Forward X-Forwarded-Host header to SecurityService providers endpoint

- Added X-Forwarded-Host header when calling /api/security/providers - SecurityService requires this header to determine which organization to fetch providers f...

snadjafinia·10mo ago
Fixkamo-login

Restore white text color on Welcome Back section

- Added explicit color styling (sx={{ color: '#ffffff' }}) to Typography components - Material-UI was overriding the text-white class with default colors - Ensu...

snadjafinia·10mo ago
ChoreSecurityService

Trigger rebuild to pick up kamo-shared-library fixes

Rebuild required to pull in fixed ExternalAuthProviderDTO from kamo-shared-library (commit 8e19676 - corrected timestamp field names)

snadjafinia·10mo ago
Fixkamo-shared-library

Correct timestamp field names in ExternalAuthProviderDTO

- Changed getCreatedAt() to getDateCreated() - Changed getUpdatedAt() to getDateUpdated() - Changed from LocalDateTime to Date to match EmbRecordState - EmbReco...

snadjafinia·10mo ago
FeatureInitializerService

Add external auth provider initialization in DataLoader

- Added ExternalAuthProviderService dependency injection - Created addExternalAuthProviders() helper method to configure providers - Populated external auth pro...

snadjafinia·10mo ago
FeatureSecurityService

Add GET /api/security/providers endpoint

- Added endpoint to return enabled external auth providers for an organization - Determines organization from request hostname (X-Forwarded-Host header) - Queri...

snadjafinia·10mo ago
Featurekamo-shared-library

Add ExternalAuthProvider system for dynamic login button configuration

- Created ExternalAuthProvider entity with JPA/Hibernate annotations - Added ExternalAuthProviderRepository with queries for provider management - Implemented E...

snadjafinia·10mo ago
Otherkamo-login

Revert "feat: Disable login form after successful authentication to prevent duplicate submissions"

This reverts commit ****************

snadjafinia·10mo ago
Otherkamo-internal

Add cookie logging to troubleshoot OTK generation

snadjafinia·10mo ago
Otherkamo-analytics

Added DialogButton to handle mobile.

Mike Cao·10mo ago
October 16, 2025

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