Skip to content

Commit 3f62b74

Browse files
authored
Merge branch 'main' into docs/sidebar-banner-software-factory
2 parents 0cf38ff + 71b34b7 commit 3f62b74

1 file changed

Lines changed: 26 additions & 4 deletions

File tree

apps/site/src/components/sections/pricing-spec-table.tsx

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.
4549
const YES = "yes";
4650

4751
type 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

Comments
 (0)