লাইভ লগ পরিবর্তন

দেখ আমরা কী বিল্ডিং করছি, বাস্তব সময়ে। প্ল্যাটফর্মের সকল বৈশিষ্ট্য, সংশোধন এবং উন্নতি।.

17,933
মোট ফলাফল
4,614
IMAP-র বৈশিষ্ট্য
4,543
গণনা করো
32
প্রজেক্ট
প্রজেক্ট সহযোগে ফিল্টার করা হবে
সকল প্রজেক্ট17,933AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService373InitializerService300KBService74KlusterServices546MCPGatewayService43MediaService461RAGService61SecurityService1,523TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,579kamo-login319kamo-marketing585kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,322kamo-signer-monorepo50kamolos102
ধরন অনুসারে ফিল্টার করা হবে
সকল ধরনBuild24CI523Chore670Docs226Feature4,614Fix4,543Other6,781Performance136Refactor274Revert23Style48Test70Upgrade1
March 18, 2026
Fixkamo-internal

Always render template preview even without saved backend template

When no template is saved in the backend (404), fall back to DEFAULT_CONFIG instead of showing plain unformatted content. The preview now always renders with at...

kamo·5mo ago
Fixkamo-internal

Re-render templates client-side with real data in email preview

The preview was showing placeholder text ({{member.firstName}} etc.) because it used the pre-rendered placeholder HTML from the backend. Now the MessageTool: -...

kamo·5mo ago
FixEmailService

Add rspamd config to K8s ConfigMap and set ddl-auto to none

The rspamd.base-url property was missing from the production ConfigMap, causing CrashLoopBackOff on deploy. Also corrects dev ddl-auto to none.

Kamo·5mo ago
Fixkamo-internal

Simplify source selector, add dirty tracking and unsaved changes dialog

- Remove department/user sub-type selectors — templates are org-level for the organization, all departments, and all users - Remove the avatar icon to the lef...

kamo·5mo ago
Fixkamo-internal

Move Live Preview label into email header bar, remove Copy HTML button

Live Preview title and icon now sit right-aligned inside the To/Subject header bar. Removed the Copy HTML button and all clipboard logic.

kamo·5mo ago
Fixkamo-internal

Move source selector into builder header, 2-col templates, wider preview

- Move Source dropdown from top card into the builder panel header bar (matching the Live Preview title position) - Remove Undo and Reset buttons entirely - C...

kamo·5mo ago
Fixkamo-internal

Default margin to 8px and padding to 16px

kamo·5mo ago
Fixkamo-internal

Prevent live preview panel from overflowing right edge

Change builder and preview panels from fixed flex-basis (55%/45%) to shrinkable flex so the gap between them is properly accounted for.

kamo·5mo ago
Fixkamo-internal

Use richTextExtension.configure() instead of RichTextExtension class

RichTextExtension class is not exported from the published @lexkit/editor package. Use the exported richTextExtension instance with .configure().

kamo·5mo ago
Fixkamo-internal

Remove duplicate ContentEditable — use RichTextExtension's plugin

The richTextExtension already renders its own ContentEditable via RichTextPlugin. Having a second manual ContentEditable created two editable areas. Remove the ...

kamo·5mo ago
Fixkamo-internal

Overhaul KB editor and article page layouts

Fix editor component: - Wrap in flex column container so toolbar stays fixed and content area scrolls independently - Use position:relative on content wrapper...

kamo·5mo ago
FixRAGService

Add search request/response logging to RagSearchController

Log orgId, query, result count, and full stack traces on error to diagnose 500 responses seen from AIService.

Kamo·5mo ago
FixAIService

Add response body and request logging to RagClient for debugging

Log the RAG search request URL, orgId, query, and response body on error to diagnose 500 responses from RAGService.

Kamo·5mo ago
FixKlusterServices

Enable auto-truncate on embedding model to prevent 413 errors

Add --auto-truncate flag so inputs exceeding the 256 token limit are silently truncated instead of rejected with a validation error.

Kamo·5mo ago
FixRAGService

Reduce chunk size to fit all-MiniLM-L6-v2 token limit (256 max)

Chunk target was 2000 chars (~512 tokens) but the embedding model only accepts 256 tokens, causing 413 validation errors. Reduce to 800 chars (~200 tokens) with...

Kamo·5mo ago
FixKlusterServices

Load embedding model from local hostPath to prevent HuggingFace download failures

The embedding-model pod was in CrashLoopBackOff because it couldn't download the model from HuggingFace on startup (network/DNS issue). Mount the model from a h...

Kamo·5mo ago
FixRAGService

Use integer match filter for Qdrant searches instead of matchKeyword

The orgId and articleId payload fields are stored as integers via value(Long), but search and delete filters used matchKeyword() which only matches string/keywo...

Kamo·5mo ago
FixRAGService

Index KB articles for RAG on creation, not just when published

Previously the RAG pipeline only indexed PUBLISHED articles, requiring the full review/approval cycle before the AI chat could reference them. Now indexes all a...

Kamo·5mo ago
Fixkamo-internal

Update reviews page to match enriched backend response fields

Use uid as key, articleGuid for navigation, articleTitle for display, and dateSubmitted for date. Matches the new backend response format that includes article ...

kamo·5mo ago
FixKBService

Return article guid/title in pending reviews response

The KbArticleReview entity has @JsonIgnore on article, so the pending reviews endpoint was returning reviews without article details (guid, title). Now uses eag...

Kamo·5mo ago
Fixkamo-internal

Surface actual backend error messages in article create/edit

Read errData.error (matching backend JSON format) instead of errData.message. Fix proxy to forward backend JSON errors directly instead of double-wrapping them ...

kamo·5mo ago
FixKBService

Add error handling to createArticle endpoint

Wrap createArticle call in try-catch to return proper JSON error responses instead of Spring Boot's default HTML error page.

Kamo·5mo ago
Fixkamo-internal

Add missing richTextExtension to enable editor text input

The RichTextPlugin from richTextExtension is required for the Lexical is silently ignored.

kamo·5mo ago
Fixkamo-internal

Add shared KB layout with persistent tabs and fix reviews page error

Create app/kb/layout.tsx with KbNavBar tabs shared across Articles, Resources, and Pending Reviews pages. Remove duplicate outer shells and fixed positioning fr...

kamo·5mo ago
March 17, 2026
Fixkamo-internal

Update navtop email badge when message is marked as read

Dispatch email:folder-changed event after marking a message as read, so MailButton re-fetches the unread count immediately.

kamo·5mo ago
Fixkamo-internal

Revert email WebSocket URL to same-origin Next.js rewrite path

Use /email-ws on same origin, proxied by Next.js rewrites to EmailService via k8s internal DNS. SockJS HTTP fallbacks (xhr-streaming, xhr-polling) work through ...

kamo·5mo ago
FixEmailService

Remove hardcoded WebSocket headers from email middleware

Traefik v3 handles WebSocket Upgrade/Connection headers natively. Hardcoding them broke SockJS fallback transports (xhr-streaming, xhr-polling). Now matches med...

Kamo·5mo ago
Fixkamo-internal

Connect email WebSocket directly to email.{domain} subdomain

Next.js rewrites cannot upgrade HTTP connections to WebSocket, causing the STOMP connection to silently fail after 3 retries. Now uses the same direct subdomain...

kamo·5mo ago
FixKlusterServices

Auto-cert service not renewing expired SSL certificates

The auto-cert service was importing expired certs from shared storage and skipping Certificate CR creation, so cert-manager couldn't manage renewals. Also fixed...

Kamo·5mo ago
Fixkamo-internal

Add 30s polling fallback for real-time email updates when WebSocket is unavailable

The WebSocket connection silently fails after 3 retries, leaving the UI permanently stale. This adds a 30-second polling interval as a reliable fallback across ...

kamo·5mo ago
Fixkamo-internal

Align branch-setup and automation tabs with billing tab design

Standardize layout patterns across settings tabs: consistent padding, shared EmptyState component, matching table structure and header styles.

kamo·5mo ago
Fixkamo-internal

Use shared EmailWebSocketContext for real-time unread badge updates

ই-মেইল ওয়েবস্কেট (Mebers) ব্যবহার করে একটি অনুরূপ ওয়েবমার্ক সংযোগ তৈরি করা হয়েছে আর আশাবাদীভাবে না পড়া পর্যন্ত চলবে। এখন শেয়ার করা ব্যবহার ই-মেইল ব্যবহারকা...

kamo·5mo ago
Fixkamo-internal

Route media feed WebSocket through media.* subdomain with retry limit

useMediaFeedWebSocket was connecting to same-origin /ws (404) instead of media.kamocrm.com. Fix URL construction to match useChatWebSocket pattern and add MAX_R...

kamo·5mo ago
Fixkamo-internal

Correct KB article field names to match backend entity

Frontend was using wrong field names (dateModified, content, authorName) instead of the actual backend fields (dateUpdated, contentJson, authorMemberId). Also r...

kamo·5mo ago
FixSecurityService

COALESCE type mismatch on security_level — column is varchar not int

The SQL query for user details during session creation was failing with 'incompatible COALESCE expressions: expected 0 to be of type varchar' because **********...

Kamo·5mo ago
Fixkamo-internal

Remove debug logging, add email WS retry limit, proxy email WS through k8s DNS

Remove verbose console.log statements from useUserInfo, NavTop, NavPri, MemberListProvider, SessionManager, sessionMonitor, avatarUtils, and useChatWebSocket th...

kamo·5mo ago
FixKBService

Correct hasRight to match flat rights array format and honor god mode

Session rights are stored as ["VIEW_DASHBOARD", ...] not [{name, setting}]. Also bypass right checks when GD (god mode) is true.

Kamo·5mo ago
FixRAGService

Rename qdrant config properties to avoid K8s env var collision

Kubernetes auto-creates QDRANT_PORT env var from the qdrant Service, which overrides the Spring property with 'tcp://ip:port' instead of an integer. Renamed to ...

Kamo·5mo ago
FixRAGService

Make NATS consumer startup resilient with retry logic

Consumer now retries subscription in a background thread with backoff if KB_EVENTS stream doesn't exist yet. Prevents crash loop when KBService hasn't published...

Kamo·5mo ago

যেমন তুমি জাহাজ দেখেছ?

প্রত্যেকটা আপডেট স্বয়ংক্রিয়ভাবে আপনার কর্মক্ষেত্র স্বয়ংক্রিয়ভাবে. সপ্তাহের পর সপ্তাহের মধ্যে মুক্ত হয়ে তা দেখতে শুরু করুন।.

চিরকালের জন্য মুক্তকরণ আরম্ভ করা হবেপ্রদর্শন সংক্রান্ত পছন্দ