Live Change Log

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

17,888
Total Changes
4,594
Features
4,520
Fixes
32
Projects
Filter by project
All Projects17,888AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService364InitializerService299KBService74KlusterServices542MCPGatewayService43MediaService460RAGService61SecurityService1,519TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,557kamo-login318kamo-marketing584kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
Filter by type
All TypesBuild24CI522Chore670Docs226Feature4,594Fix4,520Other6,781Performance136Refactor274Revert23Style48Test69Upgrade1
September 7, 2026
Fixkamo-internal

Light the bell, and make a click mean something

Three defects behind one report: the browser tab alerted for an unread notification while the bell stayed dark, and clicking rows on /notifications went to the ...

Kamo·4d ago
Fixkamo-internal

Two more deadlines a background tab cannot meet

Swept the app for the failure the notification deck's repeat turned out to be: work whose correctness depends on a timer firing while nobody is looking. Chrome ...

Kamo·4d ago
FixSecurityService

A pane lock survives the editor alt-tabbing away

The client heartbeats its pane lock every 15s and the sweeper released any lock unheard from for 45s — three missed beats, which reads like a generous margin an...

Kamo·4d ago
FixMediaService

Stop writing "/" as the destination of a review notification

The Growth Hub has no screen of its own — kamo-internal's widgetRegistry says so where it decoders to give the widget an href: "the widget IS the feature". So t...

Kamo·4d ago
FixEmailService

A notification raised on the wrong pod reached nobody

The broker here is enableSimpleBroker — in-heap, per pod, no relay — and this deployment runs two replicas. MemberNotificationService published straight into it...

Kamo·4d ago
FixEmailService

The last two durable consumers become queues, and contact sync reaches every pod

The mail relay was one of four NATS subscriptions on a plain durable consumer. A plain durable admits exactly ONE subscriber, so at two replicas the second is r...

Kamo·4d ago
Fixkamo-internal

A bulk action announces the folder changed, like opening one message does

`email:folder-changed` is what the nav badge listens for while it is not being pushed a count — a socket that never came up, or one that came up and relays noth...

Kamo·4d ago
FixEmailService

A bulk mark-read announces itself, so the nav badge follows it

The single-message endpoints have always published the mailbox events that move the nav badge and reload the other tabs. The three batch endpoints — flags, move...

Kamo·4d ago
FixEmailService

Every pod relays the mailbox push, so the unread badge moves again

The browser's email relay bound a DURABLE NATS consumer named after the member ("email-ws-<id>"). A durable push consumer admits exactly one subscriber, so with...

Kamo·4d ago
Fixkamo-internal

The nav badge follows a message being read, instead of waiting for a reload

The badge treated the STOMP socket being UP as proof that counts were being pushed to it, and those are two different questions. EmailService relays the count f...

Kamo·4d ago
Fixkamo-internal

A lead outside the US lost its number's country code

The lead view read "+373 606208888" back as "606208888". `formatPhoneDisplay` chose between national and international form by comparing the number's calling co...

Kamo·4d ago
Fixkamo-internal

The repeating sound survives a tab nobody is looking at

"Repeat sound" saved correctly and did nothing audible. The deck beat the tone out with setInterval, and Chrome clamps timers in a page that has been hidden for...

Kamo·4d ago
Fixkamo-marketing

Let a local build reach the catalogue it already has the key for

`npm run build` on a laptop died prerendering /en/alternatives/gohighlevel with "Kamo seat prices unavailable", and `npm run dev` served a homepage with no pric...

Kamo·4d ago
Fixkamo-internal

The leaderboard called everyone on it a former member while it loaded

The board and the names come from two different places, and the names come second. The board is one request to SecurityService; the names are the shared member ...

Kamo·4d ago
Fixkamo-internal

The contact-effect editor's accent is the org's primary, not a fixed purple

The editor painted its reset control and its "Following the shipped default" helper lines in #8b5cf6, hardcoded four times over — the shared editor's default pl...

Kamo·4d ago
Fixkamo-internal

The storage meter's trough was black, which is most of the bar

Reported twice, and the first fix missed it. That pass corrected every foreground and left the trough at rgba(0,0,0,0.28) with a black inset shadow, on the reas...

Kamo·4d ago
Fixkamo-internal

The dock was reserving space for its own scrollbar, and walking left

A docked window crept left in 38px steps and then jumped back to the right edge, over and over, for as long as it was open. `rightEdgeReserve` accepts a scroll...

Kamo·4d ago
Fixkamo-internal

Remove the mock desktop dialog, and guard against it coming back

The celebration layer's corner alert reproduced a named third party's interface chrome — its title bar gradient, its double bevel, its close box — and said the ...

Kamo·4d ago
Fixkamo-internal

Round the artwork's corners

The picture sat square inside a pane with a 16px corner, cutting a rectangle out of the glass. 12px on the wrapper — the same radius the drop veil uses — and th...

Kamo·4d ago
Fixkamo-internal

Make the cabinet as tall as its own content

The page was dark for one screenful and then white for the rest of the scroll. `PageWrapper` is `height: 100%` with `flex-direction: column`, so every route in...

Kamo·4d ago
Fixkamo-internal

The white band under the cabinet

The application's `body` and `html` are `--background: #ffffff`, and this route is the one dark surface in it. The page element is `min-height: 100%` so it fill...

Kamo·4d ago
Fixkamo-internal

Every foreground on the storage meter is white

Reported unreadable, and it was. Four places went dark or coloured where the rest of the component is white on a dark ground: - The "Add 10 GB" button was #0b0...

Kamo·4d ago
Fixkamo-internal

A scrollbar 17px in from the edge is still a scrollbar the dock must not cover

The tool dock reserved the right edge for a page's vertical scrollbar only when that bar was AT the edge — within two pixels, for sub-pixel rounding. Almost no ...

Kamo·4d ago
Fixkamo-internal

The Accounts app was billed as Human Resources, so the Free plan lost it

The `accounts` option was gated on `organization.isHrs && VIEW_EMPLOYEES`. Neither half is what /account is: its own backend enforces VIEW_ACCOUNTS (CRM) on the...

Kamo·4d ago
FixSecurityService

The baseline award was two transactions, not one

`ensureBaselineFor` calls `ensureBaseline` on `this`, and Spring's transaction advice is a PROXY — a self-invocation does not pass through it, so the inner REQU...

Kamo·4d ago
Fixkamo-internal

Three React Compiler errors, and what each of them was really saying

The compiler rules caught three things in the achievement surfaces, and none of them was a style complaint. A component aliased into a local during render (`co...

Kamo·4d ago
Fixkamo-internal

A two-level jump published two frames and the browser kept one

`useMediaTopic` holds ONE message slot and overwrites it, so two frames arriving in the same tick are batched by React into a single render and only the last is...

Kamo·4d ago
Fixkamo-internal

The docked row has one height, and no way left to arrive at another

Resizing a docked window's top edge moves every window's top edge — the row sits on the bottom with its tops in a line, and a row of different heights is a ragg...

Kamo·4d ago
FixMediaService

A redacted status event kept its type, and pin the redaction

Two things, both found by writing the test for the actorName path rather than by reading it. messageType was being read off the body AFTER redaction. redactEve...

Kamo·4d ago
Fixkamo-internal

The launchpad hid the App Shelf to say the member had no apps

A member granted an app or two and no widget right — Support and the Knowledge Base, say — opened their launchpad to "No apps yet. You don't have access to any ...

Kamo·4d ago
FixEmailService

A service may change a meeting's link, and the room is told

updateEvent restated the title, description, location, colour, timezone and deep link, and dropped meetingUrl — so a link added to a callback that had already b...

Kamo·4d ago
Fixkamo-internal

A meeting link the member can set, and one guest row per guest

Two halves of "Add external guest to meetings does not send an email to that person". The link. meetingUrl came back from the API, was bound to nothing, and co...

Kamo·4d ago
FixEmailService

A preference PUT was resetting every setting it did not mention

Reported as "when I enable repeating sound it does not save". It saved. Then the next preference the member touched turned it off again — and the settings page ...

Kamo·4d ago
FixSecurityService

A callback can carry the link to the call

The lead page composes a callback in the calendar's own dialog, and every field that dialog collects is meant to survive the trip through here. meetingUrl did n...

Kamo·5d ago
FixVOIPService

Stop telling people to add the text provider they already added

Reported from a real setup, and the report was right. An organization running FreePBX added Telnyx as a text provider, opened the SMS window, and was shown Free...

Kamo·5d ago
FixEmailService

A meeting link can be set, not only read

meetingUrl has been on the entity, in EventDto and in meetingSignature for as long as the dialog has existed, and nothing could ever write it. EventRequest did ...

Kamo·5d ago
FixVOIPService

Tell a member the number is missing, not that their PBX cannot text

Reported from a real setup: an organization added Telnyx as a text provider, opened the SMS window, and was told "This phone server is a FreePBX PBX, which carr...

Kamo·5d ago
FixEmailService

The join link reaches the guest's calendar, not just their inbox

An invitation carried its meeting link in the html body and nowhere else, so a guest who accepted it on Monday and opened their calendar on Friday had no way in...

Kamo·5d ago
Fixkamo-internal

A knowledge-base link the member can actually click

The assistant's KB links did nothing at all. Not a wrong path and not a rights problem — the click handler was never called, because no click event was ever dis...

Kamo·5d ago
Fixkamo-internal

The unread-chat card opened the member's mailbox

It carried deepLink: '/messages', which is the mail client. Chat has no route to point at — its window is a tool raised by a tool:open event — so the card navig...

Kamo·5d ago
FixVOIPService

A frozen CHECK blocked every Telnyx AND JustCall provider from being created

Adding a Telnyx text provider 500'd. The log named it plainly and the screen said nothing useful: constraint **************** Failing row contains (..., 6)...

Kamo·5d ago
Fixkamo-internal

The wallpaper was painting under the body, not failing to load

The launchpad backdrop — the plain gradient, the org watermark and the wallpaper slideshow it carries — has been completely invisible since 03743d02. Nothing fa...

Kamo·5d ago
FixBillingService

A price Stripe has never heard of is a fault, not a silence

The reconciler compared mapped prices against the catalogue and returned early whenever nothing was mapped at all. So a term the catalogue had gained since the ...

Kamo·5d ago
Fixkamo-internal

An expired card can no longer be the one you are billed to

Answering "is changing the default still there on Payment Info" — it was, and reading it turned up a defect worth more than the answer: nothing stopped an EXPIR...

Kamo·5d ago
FixAPIService

Forward carrier SMS webhooks, which reached nothing at all

Traefik sends every path on api.kamocrm.com to this gateway with no path split, and this class forwarded /api/voip/** and nothing else. So /api/bulktext/inbound...

Kamo·5d ago
FixAPIService

Forward carrier SMS webhooks, which reached nothing at all

Traefik sends every path on api.kamocrm.com to this gateway with no path split, and this class forwarded /api/voip/** and nothing else. So /api/bulktext/inbound...

Kamo·5d ago
September 6, 2026
Fixkamo-internal

A NUL byte in two source files, which made git call them binary

Caught on a last pass over my own work: `billingDraft.ts` committed as "Bin 0 -> 6882 bytes". A separator written as a space had reached the file as a raw NUL b...

Kamo·5d ago
FixEmailService

Watch a mailbox for the phone, not only for the browser

An IMAP IDLE listener is the only thing that notices a message arriving; it publishes email.inbox.<addr>, which is what eventually asks MediaService to buzz a p...

Kamo·5d ago
FixMediaService

Stop the presence gate silencing every mail notification

A member with a live MediaService socket was treated as having already seen every non-call push, mail included. That is true of what travels on that socket — a ...

Kamo·5d ago
Fixkamo-internal

Pay without leaving the order, and never lose it again

Sending somebody to another page to add a card was the wrong answer, and it was wrong at the worst possible moment. The console noticed there was no card and li...

Kamo·5d 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