Live Change Log

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

18,037
Total Changes
4,666
Features
4,589
Fixes
32
Projects
Filter by project
All Projects18,037AIService114APIService140BillingService133ConversionService87DaemonService109DocsService191ESigService80EmailService391InitializerService303KBService76KlusterServices550MCPGatewayService45MediaService465RAGService63SecurityService1,532TranslateService47VOIPService175VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,605kamo-login319kamo-marketing590kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,331kamo-signer-monorepo50kamolos104
Filter by type
All TypesBuild24CI523Chore670Docs231Feature4,666Fix4,589Other6,781Performance136Refactor274Revert23Style48Test71Upgrade1
October 18, 2025
Otherkamo-internal

Fix Next.js 15 async params in domain API routes

snadjafinia·11mo ago
Stylekamo-login

Update link colors to use global CSS primary colors

snadjafinia·11mo ago
Fixkamo-internal

Route diagnostics API calls through APIService gateway

snadjafinia·11mo ago
Featurekamo-internal

Integrate SystemDiagnostics into Session Debug Dashboard

snadjafinia·11mo ago
Fixkamo-internal

Add default value for usagePercent to handle undefined

- Changed usagePercent > 80 to (usagePercent || 0) > 80 - Prevents TypeScript error when usagePercent is possibly undefined - Defaults to 0 if undefined, showin...

snadjafinia·11mo ago
Fixkamo-internal

Remove remaining Grid tags causing syntax error

- Fixed lines 518-527 that still had Grid container/item tags - Replaced with Box + CSS Grid for 2-column layout - All Grid references now removed from SystemDi...

snadjafinia·11mo ago
Fixkamo-internal

Replace all MUI Grid components with Box and CSS Grid

- Removed Grid2 import (module doesn't exist in this MUI version) - Replaced all Grid containers with Box + CSS Grid layout - Used gridTemplateColumns with resp...

snadjafinia·11mo ago
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·11mo 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·11mo ago
Otherkamo-analytics

Small fixes.

Mike Cao·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo ago
Chorekamo-login

Trigger rebuild with ESLint fix (commit 149373d)

snadjafinia·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo ago
ChoreSecurityService

Rebuild with updated kamo-shared-library

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

snadjafinia·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo 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·11mo ago
Otherkamo-login

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

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

snadjafinia·11mo 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