@@ -39,9 +39,13 @@ const HALO =
3939// it — don't reintroduce a placeholder, since the page has no legend
4040// explaining one (that note was pulled on the client's instruction 2026-07-30).
4141//
42- // One open question remains, and it is about the group, not a value: Gregory
43- // said Accelerate is being deprecated, so confirm whether the GLOBAL CACHE
44- // rows belong on the page at all.
42+ // The Accelerate open question was resolved 2026-08-25: the limits come back,
43+ // but only in this table — deliberately NOT in the plan cards, so they are
44+ // documented without being highlighted. The 60,000-operation allowance,
45+ // operation overage, and per-query egress figures are the last ones the old
46+ // site published, from the plan cards' acceleratePoints in pricing-data.ts at
47+ // b41116959; the invalidation and purge rows were already restored from its
48+ // comparison table.
4549const YES = "yes" ;
4650
4751type Row = { label : string ; values : [ string , string , string , string ] } ;
@@ -171,10 +175,28 @@ const GROUPS: Group[] = [
171175 ] ,
172176 } ,
173177 {
174- label : "Global cache" ,
178+ // Accelerate limits restored 2026-08-25 — table only, not the plan cards
179+ // (see the header note). Values are the old site's last published figures.
180+ label : "Accelerate (global cache)" ,
175181 icon : Layers ,
176182 color : "text-prism-cyan-500" ,
177183 rows : [
184+ {
185+ label : "Operations included" ,
186+ values : [ "60,000" , "60,000" , "60,000" , "60,000" ] ,
187+ } ,
188+ {
189+ label : "Operation overage" ,
190+ values : [ "—" , "$0.018 per 1,000" , "$0.008 per 1,000" , "$0.006 per 1,000" ] ,
191+ } ,
192+ {
193+ label : "Egress included" ,
194+ values : [ "1 KiB per query" , "1 KiB per query" , "1 KiB per query" , "2 KiB per query" ] ,
195+ } ,
196+ {
197+ label : "Egress overage" ,
198+ values : [ "—" , "$0.09 per GiB" , "$0.09 per GiB" , "$0.08 per GiB" ] ,
199+ } ,
178200 // Live-page values, restored from the pre-rebrand table
179201 // (apps/site/src/app/pricing/pricing-data.ts at 528ab05fc^). Free and
180202 // Starter get no tag invalidations at all, hence the em dash.
0 commit comments