Uh oh!
There was an error while loading. Please reload this page.
feat(functions) update functions template to match new 'server' style - #5063
Merged
kallebysantos merged 15 commits intoMay 6, 2026
Merged
Conversation
Coverage Report for CI Build 25400572175Coverage decreased (-0.04%) to 63.707%Details
Uncovered Changes
Coverage Regressions9 previously-covered lines in 3 files lost coverage.
Coverage Stats
💛 - Coveralls |
kallebysantos
commented
Apr 10, 2026
MemberAuthor
WIP: Do not merge until |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
avallete
left a comment
Member
There was a problem hiding this comment.
A few comments. Otherwise LGTM.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
kallebysantosforce-pushed
the
feat-update-functions-template-server-sdk
branch
from
April 29, 2026 18:52
6b96df4 to
b24c3aaCompare- Creating different templates for 'functions new' command - Handling '--auth' flag to specify which template use
kallebysantosforce-pushed
the
feat-update-functions-template-server-sdk
branch
from
May 5, 2026 17:12
830a4af to
9d8c4fdComparekallebysantos
commented
May 5, 2026
MemberAuthor
Last update: Towards FUNC-581 |
avallete
approved these changes
May 6, 2026
Uh oh!
There was an error while loading. Please reload this page.
Merged
avallete added a commit
that referenced
this pull request
May 7, 2026
Will avoid in the future a PR getting merged with invalid semantic release name, causing it to be dismissed from deployment: #5176https://github.com/supabase/cli/actions/runs/25422547737/job/74567952624#5063
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Feature
What is the new behavior?
Apply
withSupabasehelper from@supabase/serverAdditional context
A new optional flag
--authwas introduced for thefunctions newcommand, chose between the auth access template:noneNo credentials required - Open endpoints, wrappers that handle their own authapikeyValid publishable key or secret key - Use respectively for Client-facing, key-validated endpoints or Server-to-server, internal callsuserUser JWT required - Authenticated user endpointsCurrent default
--auth apikey--
Towards FUNC-563