chore: release (alpha)#270
Merged
Merged
Conversation
commit: |
c155125 to
f873569
Compare
f873569 to
7ae945f
Compare
avallete
approved these changes
Jun 5, 2026
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@supabase/pg-delta@1.0.0-alpha.27
Minor Changes
--filteroption to thecatalog-exportCLI command to scope the exported catalog to matching schemas/objects.Patch Changes
71cce8a: fix(pg-delta): suppress user triggers on pgmq queue/archive tables in supabase integration
Follow-up to the Wasm FDW dependents fix.
pgmq.q_<name>andpgmq.a_<name>are materialized lazily byselect pgmq.create('<name>'), not byCREATE EXTENSION pgmq. The trigger extractor already drops these via thepg_depend deptype='e'row that pgmq records, but real-world cloud projects can lose that row (older pgmq versions — pgmq1.4.4which Supabase Cloud currently ships never records it — manualpg_dump/restore that strips extension deps, etc.), sosupabase db resetaborts at the trigger statement withrelation "pgmq.q_<name>" does not exist. Add a defensive name-match fallback in the supabase integration filter so the trigger is dropped even when the principled signal is missing.71cce8a: fix(pg-delta): suppress Wasm FDW servers, foreign tables, and user mappings in supabase integration
Follow-up to CLI-1470. Also suppress SERVER (object/comment/security-label scopes), FOREIGN TABLE, and USER MAPPING changes whose parent wrapper is a Supabase Wasm FDW — identified by the
extensions.wasm_fdw_handler/extensions.wasm_fdw_validatorfunctions thewrappersextension ships — sodb pullno longer emitsCREATE SERVER clerk_oauth_serverfor platform Wasm FDWs that local Docker cannot provision.The discriminator is the Wasm handler/validator function names, not the bare
extensions.*namespace: contrib FDWs likepostgres_fdwinstall their handler/validator intoextensionson Supabase too, but they ARE available in the local image, so user-createdpostgres_fdwwrappers (and their servers, foreign tables, and user mappings) must still roundtrip. Server privilege scope is likewise preserved —GRANT/REVOKE ON SERVERdoes not require superuser.