diff options
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/github.com/jackc/pgx/v5/CHANGELOG.md | 4 | ||||
| -rw-r--r-- | vendor/github.com/jackc/pgx/v5/pgtype/json.go | 2 | ||||
| -rw-r--r-- | vendor/modules.txt | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/vendor/github.com/jackc/pgx/v5/CHANGELOG.md b/vendor/github.com/jackc/pgx/v5/CHANGELOG.md index 75578db0a..e18b0db8c 100644 --- a/vendor/github.com/jackc/pgx/v5/CHANGELOG.md +++ b/vendor/github.com/jackc/pgx/v5/CHANGELOG.md @@ -1,3 +1,7 @@ +# 5.7.4 (March 24, 2025) + +* Fix / revert change to scanning JSON `null` (Felix Röhrich) + # 5.7.3 (March 21, 2025) * Expose EmptyAcquireWaitTime in pgxpool.Stat (vamshiaruru32) diff --git a/vendor/github.com/jackc/pgx/v5/pgtype/json.go b/vendor/github.com/jackc/pgx/v5/pgtype/json.go index 6f7ebb51f..60aa2b71d 100644 --- a/vendor/github.com/jackc/pgx/v5/pgtype/json.go +++ b/vendor/github.com/jackc/pgx/v5/pgtype/json.go @@ -197,7 +197,7 @@ type scanPlanJSONToJSONUnmarshal struct { } func (s *scanPlanJSONToJSONUnmarshal) Scan(src []byte, dst any) error { - if src == nil || string(src) == "null" { + if src == nil { dstValue := reflect.ValueOf(dst) if dstValue.Kind() == reflect.Ptr { el := dstValue.Elem() diff --git a/vendor/modules.txt b/vendor/modules.txt index 45f574dfe..14998a7cc 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -592,7 +592,7 @@ github.com/jackc/pgpassfile # github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 ## explicit; go 1.14 github.com/jackc/pgservicefile -# github.com/jackc/pgx/v5 v5.7.3 +# github.com/jackc/pgx/v5 v5.7.4 ## explicit; go 1.21 github.com/jackc/pgx/v5 github.com/jackc/pgx/v5/internal/iobufpool |
