From 658a5c7feed6d64f700772143f30526af5c14f0c Mon Sep 17 00:00:00 2001 From: Wendie Cheung <49030266+wendeh@users.noreply.github.com> Date: Fri, 28 Aug 2026 07:53:31 +1000 Subject: [PATCH 1/2] Update Lingo.dev customer story slug to lingodotdev (#49623) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What kind of change does this PR introduce? Content: slug update for an already-live customer story. ## What is the current behavior? The Lingo.dev customer story (originally added in #49595) lives at `/customers/lingo-dev`. ## What is the new behavior? - Renames `apps/www/_customers/lingo-dev.mdx` to `apps/www/_customers/lingodotdev.mdx`. - Updates the `url` in `apps/www/data/CustomerStories.ts` to `/customers/lingodotdev`. - Adds a permanent redirect from `/customers/lingo-dev` to `/customers/lingodotdev` in `apps/www/lib/redirects.js`. ## Summary by CodeRabbit * **New Features** * Added a customer story highlighting Lingo.dev’s localization workflow, platform usage, security practices, results, and future plans. * **Bug Fixes** * Updated the customer story link to its new URL. * Added a permanent redirect so existing links to the previous URL continue to work. Co-authored-by: Wendie Cheung --- apps/www/_customers/{lingo-dev.mdx => lingodotdev.mdx} | 0 apps/www/data/CustomerStories.ts | 2 +- apps/www/lib/redirects.js | 5 +++++ 3 files changed, 6 insertions(+), 1 deletion(-) rename apps/www/_customers/{lingo-dev.mdx => lingodotdev.mdx} (100%) diff --git a/apps/www/_customers/lingo-dev.mdx b/apps/www/_customers/lingodotdev.mdx similarity index 100% rename from apps/www/_customers/lingo-dev.mdx rename to apps/www/_customers/lingodotdev.mdx diff --git a/apps/www/data/CustomerStories.ts b/apps/www/data/CustomerStories.ts index 835f8732bcfac..69be3a6483f0d 100644 --- a/apps/www/data/CustomerStories.ts +++ b/apps/www/data/CustomerStories.ts @@ -27,7 +27,7 @@ export const data: CustomerStoryType[] = [ imgUrl: 'images/customers/logos/on-light/lingo-dev.png', logo: '/images/customers/logos/on-light/lingo-dev.png', logo_inverse: '/images/customers/logos/on-dark/lingo-dev.png', - url: '/customers/lingo-dev', + url: '/customers/lingodotdev', ctaText: 'View story', }, { diff --git a/apps/www/lib/redirects.js b/apps/www/lib/redirects.js index 5a7e091eb1a09..723f5daf43638 100644 --- a/apps/www/lib/redirects.js +++ b/apps/www/lib/redirects.js @@ -2283,6 +2283,11 @@ module.exports = [ source: '/customers/mendableai', destination: '/customers/firecrawl', }, + { + permanent: true, + source: '/customers/lingo-dev', + destination: '/customers/lingodotdev', + }, { permanent: true, From c984771ed809174a83ddc58ca2035fd1715bb7a2 Mon Sep 17 00:00:00 2001 From: Wendie Cheung <49030266+wendeh@users.noreply.github.com> Date: Fri, 28 Aug 2026 07:53:48 +1000 Subject: [PATCH 2/2] =?UTF-8?q?Update=20pricing=20page:=20BYO=20Cloud=20?= =?UTF-8?q?=E2=86=92=20AWS=20PrivateLink=20(#49624)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Content update to /pricing. ## What is the current behavior? - The Enterprise plan card lists "BYO Cloud supported" as a feature. - The Platform Security and Compliance comparison table has a separate "BYO cloud" row (Enterprise-only), alongside an existing "AWS PrivateLink" row. ## What is the new behavior? - Enterprise plan card bullet changed to "Supports AWS PrivateLink". - Removed the "BYO cloud" row entirely from the Platform Security and Compliance comparison table (the AWS PrivateLink row already covers this). ## Additional context Data-only change in `packages/shared-data/plans.ts` and `packages/shared-data/pricing.ts`. No component logic changed. ## Summary by CodeRabbit * **Updates** * Enterprise plan details now highlight AWS PrivateLink support. * Removed the BYO Cloud feature from the security feature listings. Co-authored-by: Wendie Cheung Co-authored-by: Claude Sonnet 5 --- packages/shared-data/plans.ts | 2 +- packages/shared-data/pricing.ts | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/packages/shared-data/plans.ts b/packages/shared-data/plans.ts index 76ef6e1239fdd..bc2f7cfd89331 100644 --- a/packages/shared-data/plans.ts +++ b/packages/shared-data/plans.ts @@ -99,7 +99,7 @@ export const plans: PricingInformation[] = [ features: [ 'Designated Support manager', 'Uptime SLAs', - 'BYO Cloud supported', + 'Supports AWS PrivateLink', '24×7×365 premium enterprise support', 'Private Slack channel', 'Custom Security Questionnaires', diff --git a/packages/shared-data/pricing.ts b/packages/shared-data/pricing.ts index 30dc6695f9c7c..532a5df56a92c 100644 --- a/packages/shared-data/pricing.ts +++ b/packages/shared-data/pricing.ts @@ -70,7 +70,6 @@ export type FeatureKey = | 'realtime.maxMessageSize' | 'dashboard.teamMembers' | 'security.platformAuditLogs' - | 'security.byoc' | 'security.logRetention' | 'security.logDrain' | 'security.metricsEndpoint' @@ -572,17 +571,6 @@ export const pricing: Pricing = { title: 'Platform Security and Compliance', icon: 'M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z', features: [ - { - key: 'security.byoc', - title: 'BYO cloud', - plans: { - free: false, - pro: false, - team: false, - enterprise: true, - }, - usage_based: false, - }, { key: 'security.logRetention', title: 'Log retention (API & Database)',