Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions flow/cmd/check_pinned_versions/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ var pinnedVersions = map[string]string{
"github.com/aws/aws-sdk-go-v2/feature/s3/manager": "v1.21.0",
"google.golang.org/api": "v0.257.0",
"github.com/tikv/pd/client": "v0.0.0-20251229071808-6173d50c004c",
"github.com/jackc/pgx/v5": "v5.9.1",
}

func main() {
Expand Down
3 changes: 2 additions & 1 deletion flow/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ require (
github.com/hamba/avro/v2 v2.31.0
github.com/jackc/pgerrcode v0.0.0-20250907135507-afb5586c32a6
github.com/jackc/pglogrepl v0.0.0-20251213150135-2e8d0df862c1
github.com/jackc/pgx/v5 v5.9.1
github.com/jackc/pgx/v5 v5.9.1 // PINNED: v5.9.2 enables Postgres wire protocol v3.2 by default which changes macaddr[] decoding
github.com/joho/godotenv v1.5.1
github.com/json-iterator/go v1.1.12
github.com/lestrrat-go/httprc/v3 v3.0.5
Expand Down Expand Up @@ -338,6 +338,7 @@ exclude (
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.15
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.16
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.22.17
github.com/jackc/pgx/v5 v5.9.2
google.golang.org/api v0.258.0
google.golang.org/api v0.259.0
google.golang.org/api v0.260.0
Expand Down
5 changes: 5 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@
"matchPackageNames": ["github.com/tikv/pd/client"],
"allowedVersions": "v0.0.0-20251229071808-6173d50c004c"
},
{
"matchManagers": ["gomod"],
"matchPackageNames": ["github.com/jackc/pgx/v5"],
"allowedVersions": "v5.9.1"
},
// This package rule instruct renovate to require approval from
// the dependency dashboard before proposing major upgrades.
// This sets a default is approval mindset for automatic proposals.
Expand Down
Loading