Replies: 5 comments 5 replies
|
@laktek . It seems to work ok BUT previously it also worked having a link to the main entrypoint file ( This is obviously not directly related to your SAAS Supabase offering but is a change for those of us wanting to use the open source version on Kubernetes (mounted via a configmap). |
|
When will this be available in the hosted version? |
|
Also waiting..watching for.
…On Wed, Apr 9, 2025 at 9:39 PM Jermaine McFarlane ***@***.***> wrote:
When will this be available in the hosted version?
—
Reply to this email directly, view it on GitHub
<#34054 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AG5E53EXNQLIN45PF627B4D2YXRW3AVCNFSM6AAAAABYQLPJ6KVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTENZYGYYDSNQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***
com>
|
|
Deno 2 seems to solve some important problems with CA certificate handling and debugging fetch related errors - see https://github.com/orgs/supabase/discussions/36035 - I'd be curious when Deno 2 is planned to be available in the hosted Supabase? |
|
When will this be available in the hosted version? |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
You can now try Deno 2.1 locally with Supabase CLI. The goal of local preview is to identify any regressions or missing functionality before we upgrade hosted version to Deno 2.1.
The hosted version still uses Deno 1.4+, and if you deploy functions written with Deno 2.1, some of the features may not work.UPDATE 04/09/25: hosted version is now using Deno 2.1 - https://github.com/orgs/supabase/discussions/37941
How to try
Install Deno 2.1 or newer version on your machine (https://docs.deno.com/runtime/getting_started/installation/)
Go to your Supabase project.
cd my-supabase-projectOpen
supabase/config.tomland setdeno_version = 2*To scaffold a new function as a Deno 2 project:
supabase/config.tomland add the following:Use
npx supabase@beta functions serve --no-verify-jwtto start the dev server.Visit http://localhost:54321/functions/v1/hello-world.
To run built-in tests,
cd supabase/functions/hello-world; deno testPlease give it a try and report any bugs and feedback.
All reactions