Release 1.66.4

Release date: May 25, 2026

Release Notes - Seatmap Platform

Version 1.66.4 - 2026-05-25

Release Focus: Booking renderer hotfix that restores the GA price-dot bullet on GA-mode tables — a regression introduced by the SEAT-895 hotfix chain in 1.65.0.


What’s Fixed

GA-mode tables get their selection bullet back

Tables booked as a general-admission section no longer showed the price-color bullet that toggles between unselected and selected styling. Regular (non-table) GA sections still rendered the bullet correctly, so the regression was isolated to tables. Issue: SEAT-1003.

Root cause

The SEAT-895 label-visibility work added an early-return gate that excluded any TABLE whose labelVisible !== true from sectionLabelInfo. GA-mode tables default to labelVisible !== true, so they were dropped from sectionLabelInfo. With no entry there, renderGaTitles never iterated the table and the renderSelectedSeat / renderSeat branch — which draws the actual selection visual — never fired.

What changed

The gate now permits tables to remain in sectionLabelInfo when they carry a section-level priceId (i.e. the GA-mode signature), while still hiding the text label per labelVisible. Selection styling and the price-color bullet are restored on GA-mode tables across both renderer paths.


Affected products

  • booking-clientOutlineRenderer.ts, OutlineLayer.ts, SelectionLayer.ts.

Upgrade

npm install @seatmap.pro/renderer@1.66.4

No API or configuration changes; this is a visual regression repair.