Log Perubahan Langsung

Lihat apa yang kita bangun, di real-time. Setiap fitur, perbaikan, dan perbaikan dikirim di platform.

17,865
Total Perubahan
4,581
Fitur
4,512
Perbaikan
32
Proyek
Filter menurut projek
Semua Projek17,865AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService348InitializerService299KBService74KlusterServices539MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,553kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
Filter berdasarkan tipe
Semua JenisBuild24CI522Chore670Docs226Feature4,581Fix4,512Other6,781Performance136Refactor273Revert23Style48Test68Upgrade1
December 5, 2025
OtherKlusterServices

Switch to Alpine 3.18 with Dovecot 2.3.20 for stable SQL auth

Dovecot 2.4 has incompatible configuration changes without clear docs Alpine 3.18 has Dovecot 2.3.20 which uses traditional well-documented syntax - mail_locati...

snadjafinia·9mo ago
December 4, 2025
Fixkamo-internal

Replace Grid with GridLegacy for item prop in CreateLeadClient

- MUI v7 moved 'item' prop to GridLegacy component - Updated all Grid item instances to GridLegacy - Required for compatibility with MUI v7

snadjafinia·9mo ago
Fixkamo-internal

Add missing 'email' property to Lead interface

- leadsApi.createLead expects email as a separate property - Email is also available in primaryContact.email but API needs it at Lead level - Required for lead ...

snadjafinia·9mo ago
Fixkamo-internal

Cast customFormData to correct type in CreateLeadClient

- TypeScript was complaining about type mismatch between Record<string, Record<string, unknown>> and Record<string, CustomFormData> - Added type assertion to ma...

snadjafinia·9mo ago
OtherKlusterServices

Remove address setting from inet_listener - not valid in Dovecot 2.4.2

The listen = * at top level handles binding to all interfaces

snadjafinia·9mo ago
Fixkamo-internal

Add missing 'vendorLeadID' property to Lead interface

- Property exists in Java Lead bean but was missing from TypeScript interface - Required for lead creation and import functionality

snadjafinia·9mo ago
OtherKlusterServices

Perbaiki konfigurasi Dovekot 2.4.2: mail _ location berganti nama ke mail _ path

Dalam Dovekot 2.4.2: - email _ location sekarang mail _ path (set top-level, tidak ada blok) - Ditambahkan dovekot _ storage _ version = 2.4.2 (dibutuhkan) - Di...

snadjafinia·9mo ago
Fixkamo-internal

Add missing 'languages' property to primaryContact in CreateLeadClient

- Contact interface requires 'languages' property - Initialize with empty array to satisfy type requirements

snadjafinia·9mo ago
Fixkamo-internal

Use GridLegacy for Grid component with item prop in MortgageFieldsComponent

- MUI v7 moved Grid with item prop to GridLegacy - Update import to use GridLegacy to fix TypeScript error

snadjafinia·9mo ago
OtherKlusterServices

Perbaiki sintaks konfigurasi Dovekot 2.4 - gunakan surat {} dan blok ssl {}

- Masukan mail _ location, uid, gid konfigurasi dalam surat {} blok (Dovekot 2.4 persyaratan) - Masukan konfigurasi ssl didalam blok ssl {} - Tambahkan isi untu...

snadjafinia·9mo ago
Fixkamo-internal

Use GridLegacy for Grid component with item prop in CustomFormFieldsComponent

- MUI v7 moved Grid with item prop to GridLegacy - Update import to use GridLegacy to fix TypeScript error

snadjafinia·9mo ago
Otherkamo-internal

Fix TypeScript type error in CustomFormFieldsComponent

snadjafinia·9mo ago
Fixkamo-internal

Replace all 'any' types with proper TypeScript types

- Replace Record<string, any> with Record<string, unknown> - Replace any parameter types with unknown or specific types - Remove unused imports (authenticatedFe...

snadjafinia·9mo ago
FixKlusterServices

Hapus isu whitespace heredoc - gunakan echo commands dan ConfigMap

Heredocs memiliki whitespace terkemuka dari indentasi YAML menyebabkan parse errors - Gunakan perintah echo untuk membuat dovecot.conf tanpa whitespace terkemuk...

snadjafinia·9mo ago
OtherKlusterServices

Go back to args with external SQL config file - mysql blocks don't work

The mysql { } block syntax causes 'Unknown section name: mysql' error Use passdb sql { driver = sql; args = **************** } External file has correct format:...

snadjafinia·9mo ago
OtherKlusterServices

Use Dovecot 2.4.2 format: mysql connection block + named sections with query

Found in actual examples: - sql_driver = mysql - mysql hostname { user, password, dbname } connection block - passdb sql { query = ... } with named sections - u...

snadjafinia·9mo ago
Fixkamo-internal

Resolve compilation errors in CustomFormFieldsComponent and LeadManager

- Remove stray fragment closing tag (</>) in CustomFormFieldsComponent.tsx - Remove duplicate leadId declaration in LeadManager.tsx IdRenderer

snadjafinia·9mo ago
OtherKlusterServices

Remove named sections - try passdb/userdb without names, use args

Error said 'Unknown section name: mysql' - the mysql block was wrong Try passdb/userdb WITHOUT names (just passdb { and userdb {) Use args = **************** Ex...

snadjafinia·9mo ago
FeatureSecurityService

Add backend validation for required fields in lead imports

- Add validateRequiredFields method to check required fields before import - Validate email, firstName, and lastName are present - Validate mortgage-specific fi...

snadjafinia·9mo ago
Featurekamo-internal

Add validation for required fields in lead imports

- Mark email, firstName, and lastName as required fields in leadFields.ts - Add validation in handleStartImport to check all required fields are mapped - Add va...

snadjafinia·9mo ago
OtherKlusterServices

Try sql_host, sql_user, sql_password, sql_db instead of connect or args

Based on error suggesting passdb_sql_args - maybe SQL settings use sql_ prefix - Named sections: passdb sql { and userdb sql { - driver = sql with sql_driver = ...

snadjafinia·9mo ago
OtherKlusterServices

Use args parameter with named sections - external SQL config file

Based on examples found: Dovecot 2.4 allows args with named sections - Named sections: passdb sql { and userdb sql { - driver = sql - args = **************** (r...

snadjafinia·9mo ago
FeatureSecurityService

Refactor LeadImportController to use LeadService.createLead

- Replace manual field mapping with LeadService.createLead for consistency - Add mapRowDataToCreateLeadRequest to convert import mappings to CreateLeadRequest -...

snadjafinia·9mo ago
Featurekamo-internal

Add dynamic field mapping for lead imports based on market configuration

- Update leadFields.ts to include mortgage fields and getAllSystemFields function - Add MORTGAGE_FIELDS array with all LeadClaimMortgage fields - Update LeadMan...

snadjafinia·9mo ago
FixKlusterServices

Use driver=sql with sql_driver=mysql and inline connect

Based on official Dovecot 2.4 examples found online: - Named sections: passdb sql { and userdb sql { - driver = sql (not driver = mysql) - sql_driver = mysql (s...

snadjafinia·9mo ago
FixKlusterServices

Use driver=mysql (not driver=sql) with inline connect in Dovecot 2.4

Based on official Dovecot 2.4 examples: - Named sections: passdb sql { and userdb sql { - Use driver = mysql (not driver = sql) - Inline connect, default_pass_s...

snadjafinia·9mo ago
OtherKlusterServices

Try using args parameter with named sections in Dovecot 2.4

- Use 'passdb sql {' and 'userdb sql {' (named sections required) - Use 'driver = sql' with 'args = **************** - Maybe args works with named sections even...

snadjafinia·9mo ago
OtherKlusterServices

Add names to passdb/userdb sections (required in Dovecot 2.4)

- Use 'passdb sql {' and 'userdb sql {' with named sections - Keep SQL settings inline (no args parameter) - Both requirements: named sections AND inline SQL se...

snadjafinia·9mo ago
OtherKlusterServices

Remove duplicate driver line - use driver=mysql directly

snadjafinia·9mo ago
FixKlusterServices

Dovecot 2.4 requires SQL settings inline, not args parameter

- Dovecot 2.4 removed 'args' parameter for passdb/userdb - SQL connection settings must be specified directly in passdb/userdb blocks - Put driver=mysql, connec...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot 2.4 passdb/userdb - must have names (passdb sql, userdb sql)

- Dovecot 2.4 requires named passdb/userdb sections - Changed from 'passdb {' to 'passdb sql {' - Changed from 'userdb {' to 'userdb sql {'

snadjafinia·9mo ago
Featurekamo-internal

Remove all mock data and make leads system production-ready

- Remove all mock data generation from leadsApi.ts (mockStore, ensureMock, faker.js) - Remove withMock wrapper function and all fallback logic - Remove generate...

snadjafinia·9mo ago
OtherKlusterServices

Fix passdb syntax - use separate auth-sql.conf.ext file

- Create auth-sql.conf.ext with proper passdb/userdb blocks - Include it in 10-auth.conf instead of inline blocks - This fixes 'passdb { } is missing section na...

snadjafinia·9mo ago
OtherKlusterServices

Fix Dovecot config - use proper config files (10-mail.conf, 10-auth.conf, 10-master.conf)

- Override mail_location in 10-mail.conf (where it belongs) - Configure SQL auth in 10-auth.conf - Configure services in 10-master.conf - This matches Dovecot's...

snadjafinia·9mo ago
FeatureSecurityService

Add LeadController with CRUD endpoints and market config

- Add LeadController with GET, POST, PUT, DELETE endpoints - Add endpoint to get market configuration for a lead - Fix LeadImportController to use saveLead meth...

snadjafinia·9mo ago
Featurekamo-shared-library

Tambahkan ruas timbal berbasis dan bentuk dukungan data gubahan

- Tambahkan bidang pasar ke entitas timbal - Buat Entiti LeadCustomFormData dengan kolom JSONB untuk data formulir gubahan - Tambahkan LeadCustomFormDadaReposit...

snadjafinia·9mo ago
OtherKlusterServices

Create main dovecot.conf file that includes conf.d directory

snadjafinia·9mo ago
OtherKlusterServices

Create conf.d directory before writing config files

snadjafinia·9mo ago
OtherKlusterServices

Use Dovecot default configs with custom overrides

- Copy default Dovecot configs first - Add custom config in conf.d/99-custom.conf - This ensures all required settings are present - Fixes 'mail_location: Unkno...

snadjafinia·9mo ago
OtherKlusterServices

Remove plaintext auth - Dovecot defaults to secure

- Removed auth_allow_plaintext setting - Dovecot will require encryption for authentication by default - All requirements verified: ✅ K1M1 only deployment (...

snadjafinia·9mo ago
OtherKlusterServices

Use Dovecot 2.4 with proper configuration

- Use Alpine latest (has Dovecot 2.4) - Add dovecot_config_version = 2.4 as FIRST setting (required) - Fix Dovecot SQL user_query to include mail location - Ver...

snadjafinia·9mo ago
OtherKlusterServices

Add dict block as first setting for Dovecot config

snadjafinia·9mo ago
OtherKlusterServices

Add config version comment to Dovecot config

snadjafinia·9mo ago

Seperti apa yang Anda lihat pengiriman?

Semua pembaruan ini secara otomatis mendarat di ruang kerja Anda. Mulai bebas dan menontonnya tumbuh minggu demi minggu.

Mulai Bebas SelamanyaTampilkan Harga