chore: bump postgres-meta to v0.99.0 - #6405
Merged
Merged
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a2cecc5c9f
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
Contributor
Supabase CLI previewnpx --yes https://pkg.pr.new/supabase/cli/supabase@c2d9eff6194952f510ef5192cc21938e2a1225f2Preview package for commit |
avallete
approved these changes
Aug 31, 2026
Member
|
Thank's ! Will update the test so it stop failing whenever we upgrade the docker / services images version. |
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
Bumps the pinned pg-meta image from
v0.98.0tov0.99.0in the shared service-image manifest (apps/cli-go/pkg/config/templates/Dockerfile, imported by the TypeScript CLI as its image source).postgres-meta v0.99.0 replaces the embedded type-generation templates with the shared
@supabase/postgrest-typegenpackage (supabase/postgres-meta#1084). This is part of a coordinated rollout with the hosted path (supabase/platform#37764) sogen typesproduces the same output locally and via--project-id.Relationship to #6404
#6404 makes
gen typesrun postgrest-typegen in-process, removing the pg-meta container from that command entirely. This pin still matters independently of it: the same manifest entry provides thepgmetaservice thatsupabase startruns for Studio's local API, and it coversgen typesfor any release cut before #6404 lands. The two do not conflict (different files), and output is consistent either way since v0.99.0 serves the same generator package that #6404 embeds.What changes for users
Generated TypeScript output changes in two deliberate ways: deterministic metadata ordering (a one-time reordering diff when regenerating existing types) and oxfmt formatting instead of prettier (style-only). Content is otherwise unchanged.
Validation
go build ./...passes in both modules.gen typese2e tests pull this image tag directly, so CI exercises the new release; the image is published on Docker Hub and ECR Public.