Skip to content

Commit b07c643

Browse files
chore(deps): bump github.com/stripe/pg-schema-diff from 0.8.0 to 0.9.0 (#3344)
* chore(deps): bump github.com/stripe/pg-schema-diff from 0.8.0 to 0.9.0 Bumps [github.com/stripe/pg-schema-diff](https://github.com/stripe/pg-schema-diff) from 0.8.0 to 0.9.0. - [Release notes](https://github.com/stripe/pg-schema-diff/releases) - [Commits](stripe/pg-schema-diff@v0.8.0...v0.9.0) --- updated-dependencies: - dependency-name: github.com/stripe/pg-schema-diff dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore: update schema source --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Qiao Han <[email protected]>
1 parent b1b3d1f commit b07c643

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/supabase/cli
22

33
go 1.24.1
4+
45
require (
56
github.com/BurntSushi/toml v1.5.0
67
github.com/Netflix/go-env v0.1.2
@@ -43,7 +44,7 @@ require (
4344
github.com/spf13/pflag v1.0.6
4445
github.com/spf13/viper v1.20.1
4546
github.com/stretchr/testify v1.10.0
46-
github.com/stripe/pg-schema-diff v0.8.0
47+
github.com/stripe/pg-schema-diff v0.9.0
4748
github.com/tidwall/jsonc v0.3.2
4849
github.com/withfig/autocomplete-tools/packages/cobra v1.2.0
4950
github.com/zalando/go-keyring v0.2.6

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -938,8 +938,8 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o
938938
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
939939
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
940940
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
941-
github.com/stripe/pg-schema-diff v0.8.0 h1:Ggm4yDbPtaflYQLV3auEMTLxQPaentV/wmDEoCF5jxQ=
942-
github.com/stripe/pg-schema-diff v0.8.0/go.mod h1:HuTBuWLuvnY9g9nptbSD58xugN19zSJNkF4w/sYRtdU=
941+
github.com/stripe/pg-schema-diff v0.9.0 h1:qzm2VUdbZ2kYwqxoQqtEP3uLQI0B+ymS947zqFTZGBk=
942+
github.com/stripe/pg-schema-diff v0.9.0/go.mod h1:cl2VC6te/cCTOewTRvv4pYsgQqAOhvRQmatCHfYwy8c=
943943
github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8=
944944
github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU=
945945
github.com/tdakkota/asciicheck v0.4.1 h1:bm0tbcmi0jezRA2b5kg4ozmMuGAFotKI3RZfrhfovg8=

internal/db/diff/pgschema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func DiffPgSchema(ctx context.Context, source, target string, schema []string) (
2424
// Generate DDL based on schema plan
2525
plan, err := pgschema.Generate(
2626
ctx,
27-
dbSrc,
27+
pgschema.DBSchemaSource(dbSrc),
2828
pgschema.DBSchemaSource(dbDst),
2929
pgschema.WithDoNotValidatePlan(),
3030
pgschema.WithIncludeSchemas(schema...),

0 commit comments

Comments
 (0)