Remove Neon DB adapter and documentation#54
Merged
Conversation
✅ Deploy Preview for agent-native-fw ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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 free
to 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.
Summary
Removes the Neon DB adapter from
@agent-native/corealong with all associated documentation, tests, and package dependencies.Problem
The Neon database adapter added complexity and an optional peer dependency (
@neondatabase/serverless) to the core package. Removing it simplifies the adapter surface area to the two primary supported adapters: Firestore and Supabase.Solution
Deleted all Neon adapter source files and tests, removed the
@neondatabase/serverlessdependency frompackage.json, and updated all documentation and search index entries to reflect that only two adapters (Firestore and Supabase) ship out of the box.Key Changes
packages/core/src/adapters/neon/adapter.ts— core Neon adapter implementationpackages/core/src/adapters/neon/adapter.spec.ts— all Neon adapter unit testspackages/core/package.json— removed./adapters/neonsubpath export, removed@neondatabase/serverlessfrom peer dependencies, optional peer dependencies, and dev dependenciespackages/docsscripts and key-concepts pages — removed Neon code examples, usage guides, and SQL migration referencespackages/docs/src/routes/docs/database-adapters.tsxandkey-concepts.tsx— updated adapter count from three to two, removed Neon card from the adapter gridpackages/docs/src/components/searchIndex.ts— removed all Neon references from search index entriesTo clone this PR locally use the Github CLI with command
gh pr checkout 54You can tag me at @BuilderIO for anything you want me to fix or change