-
Notifications
You must be signed in to change notification settings - Fork 2
feat: comprehensive core tasks for March 2026 release #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0ed2304
feat(cli): add auth providers command and enhance auth functionality
weroperking a42bc49
feat(cli): enhance dev server and add RLS testing commands
weroperking 57b06a3
feat(cli): add migrate command with schema and utilities
weroperking 4a0a31d
feat(cli): enhance webhook command functionality
weroperking 105098a
refactor(cli): update main entry point and logger utilities
weroperking 09cc014
feat(core): enhance webhook dispatcher with advanced event handling
weroperking 3a2e537
feat(core): update webhook startup and add schema definitions
weroperking f676882
feat(core): add S3 storage adapter and type definitions
weroperking 6083a9f
feat(core): add storage index and image transformation support
weroperking dfd89a0
feat(core): enhance GraphQL resolvers and server functionality
weroperking 90ba380
feat(core): add GraphQL schema generator and realtime bridge
weroperking 20eed93
feat(core): add local function runtime support
weroperking 7c67b3a
feat(core): add request logger middleware and logger module
weroperking 33f1c83
feat(core): enhance auto-rest and migration functionality
weroperking 42bf136
feat(core): update branching, config and database providers
weroperking 4e20cfd
feat(core): update core exports and add realtime module
weroperking 0fccc08
feat(client): enhance realtime functionality
weroperking b42a0b7
feat(test-project): update template with new features
weroperking e9b7894
test(cli): add function, graphql and storage command tests
weroperking b8dcb78
test(core): add auto-rest, functions and image transformer tests
weroperking 7faef73
test(core): add middleware, realtime, vector and webhook tests
weroperking 9394ce1
docs: add new features documentation and remove old issues
weroperking ed98b12
chore: update dependencies in lockfile and package.json
weroperking 55c6724
fix: resolve lint and typecheck issues
weroperking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import type { FunctionContext } from "@betterbase/core/functions"; | ||
|
|
||
| /** | ||
| * Sample function that returns a greeting | ||
| * Access at http://localhost:3000/functions/hello | ||
| */ | ||
| export default async function(ctx: FunctionContext): Promise<Response> { | ||
| return new Response(JSON.stringify({ | ||
| message: "Hello from function!", | ||
| env: Object.keys(ctx.env), | ||
| }), { | ||
| headers: { 'Content-Type': 'application/json' } | ||
| }); | ||
| } |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| import { Hono } from "hono"; | ||
|
|
||
| export const webhooksRoute = new Hono(); | ||
|
|
||
| webhooksRoute.get("/:webhookId/deliveries", async (c) => { | ||
| const webhookId = c.req.param("webhookId"); | ||
| const limitParam = c.req.query("limit"); | ||
| const limit = limitParam ? Number.parseInt(limitParam, 10) : 50; | ||
|
|
||
| if (isNaN(limit) || limit < 1) { | ||
| return c.json({ error: "Invalid limit parameter" }, 400); | ||
| } | ||
|
|
||
| return c.json({ | ||
| data: [], | ||
| count: 0, | ||
| message: "Webhook deliveries not yet implemented - table requires migration", | ||
| }); | ||
| }); | ||
|
|
||
| webhooksRoute.get("/deliveries/:deliveryId", async (c) => { | ||
| const deliveryId = c.req.param("deliveryId"); | ||
|
|
||
| return c.json({ error: "Delivery not found" }, 404); | ||
| }); |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: weroperking/Betterbase
Length of output: 48
🏁 Script executed:
Repository: weroperking/Betterbase
Length of output: 5788
Remove the unused
dbimport.The
dbimport on line 9 is not used anywhere in this file and should be removed.🤖 Prompt for AI Agents