From 4ce3566c4898816659c5d380a70001c56019da87 Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Tue, 2 Jun 2026 10:35:24 +0530 Subject: [PATCH 1/3] fix: a hydration error due to nested a tags (#46551) Fixed the following error: ``` [browser] In HTML, cannot be a descendant of . This will cause a hydration error. ...
<_c size="large" className="flex flex-...">
> className="grid gap-0 @3xl:grid-cols-[var(--cover-width)_minmax(0,1fr)] hover:bg-selec..." > ref={function} > onClick={function onClick} > onMouseEnter={function onMouseEnter} > onTouchStart={function onTouchStart} > href="/project/cywuvygdoclpffkfasvi/integrations/stripe_sync_engine/overview" > >
... > data-size="tiny" > type="button" > className="relative justify-center cursor-pointer inline-flex items-center s..." > disabled={undefined} > tabIndex={0} > ref={function} > onClick={function onClick} > onMouseEnter={function onMouseEnter} > onTouchStart={function onTouchStart} > href="/project/cywuvygdoclpffkfasvi/integrations/stripe_sync_engine/overview" > > ... ... ``` ## Summary by CodeRabbit * **UI Changes** * Updated the visual presentation of the "Manage/View Integration" call-to-action in the marketplace featured section. The element now appears as inline text with an arrow icon instead of a traditional button, offering a more streamlined design. --- .../Marketplace/MarketplaceFeaturedHero.tsx | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/apps/studio/components/interfaces/Integrations/Marketplace/MarketplaceFeaturedHero.tsx b/apps/studio/components/interfaces/Integrations/Marketplace/MarketplaceFeaturedHero.tsx index 5c70808bca68a..4d5b521419ac2 100644 --- a/apps/studio/components/interfaces/Integrations/Marketplace/MarketplaceFeaturedHero.tsx +++ b/apps/studio/components/interfaces/Integrations/Marketplace/MarketplaceFeaturedHero.tsx @@ -142,17 +142,10 @@ export const MarketplaceFeaturedHero = ({
- + + {isActiveInstalled ? 'Manage integration' : 'View integration'} + +
From e874bdbb665d87293c80092dbeb21be287f27a6c Mon Sep 17 00:00:00 2001 From: Sugat Mahanti Date: Tue, 2 Jun 2026 05:08:47 -0400 Subject: [PATCH 2/3] feat(disk): enable io2 block express in additional regions (#46559) ## What kind of change does this PR introduce? This PR enables io2 block express in additional regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` as it is [now available](https://aws.amazon.com/about-aws/whats-new/2025/07/amazon-ebs-io2-block-express/) in all the regions as of 22 July, 2025 Depends on platform PR: https://github.com/supabase/platform/pull/33440 ## What is the current behavior? Currently IO2 block express is not available for these regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` ## What is the new behavior? You can use io2 block express in additional regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` ## Summary by CodeRabbit * **Improvements** * Disk management features are now available in three additional AWS regions: eu-central-2 (Central Europe), eu-west-3 (Western Europe), and sa-east-1 (South America). Users in these regions can now access storage management capabilities. --- .../interfaces/DiskManagement/DiskManagement.constants.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/studio/components/interfaces/DiskManagement/DiskManagement.constants.ts b/apps/studio/components/interfaces/DiskManagement/DiskManagement.constants.ts index aa06149d37199..3e2ee413dc22d 100644 --- a/apps/studio/components/interfaces/DiskManagement/DiskManagement.constants.ts +++ b/apps/studio/components/interfaces/DiskManagement/DiskManagement.constants.ts @@ -10,12 +10,12 @@ export const IO2_AVAILABLE_REGIONS = [ 'ap-southeast-2', 'ca-central-1', 'eu-central-1', - // 'eu-central-2', + 'eu-central-2', 'eu-north-1', 'eu-west-1', 'eu-west-2', - // 'eu-west-3', - // 'sa-east-1', + 'eu-west-3', + 'sa-east-1', 'us-east-1', 'us-east-2', 'us-west-1', From 812b0815caff4309ef9cbd8a95949c007b2f7328 Mon Sep 17 00:00:00 2001 From: Jeremias Menichelli Date: Tue, 2 Jun 2026 11:48:22 +0200 Subject: [PATCH 3/3] fix: Search embedding fails due to missing partial (#46560) After improving error handling on guides loader, of course, an error emerged about a missing partial that doesn't exist anymore within the project. Removing the partial importing within MDX to fix search embedding script. --- .../guides/local-development/cli/getting-started.mdx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/docs/content/guides/local-development/cli/getting-started.mdx b/apps/docs/content/guides/local-development/cli/getting-started.mdx index 8b4fb90c14d68..eb4f2186b2e2b 100644 --- a/apps/docs/content/guides/local-development/cli/getting-started.mdx +++ b/apps/docs/content/guides/local-development/cli/getting-started.mdx @@ -246,12 +246,6 @@ supabase stop --no-backup -<$Show if="!docs:hide_cli_profiles"> - -<$Partial path="cli_profiles.mdx" /> - - - ## Running Supabase locally The Supabase CLI uses Docker containers to manage the local development stack. Follow the official guide to install and configure [Docker Desktop](https://docs.docker.com/desktop):