[chore]: Bump github.com/minio/minio-go/v7 from 7.0.72 to 7.0.73 ()

This commit is contained in:
dependabot[bot] 2024-07-08 07:59:07 +00:00 committed by GitHub
parent ae349dd6a5
commit 43c480aec4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
44 changed files with 3889 additions and 245 deletions
vendor/github.com/goccy/go-json/internal/encoder

View file

@ -480,7 +480,7 @@ func (c *Compiler) mapCode(typ *runtime.Type) (*MapCode, error) {
func (c *Compiler) listElemCode(typ *runtime.Type) (Code, error) {
switch {
case c.isPtrMarshalJSONType(typ):
case c.implementsMarshalJSONType(typ) || c.implementsMarshalJSONType(runtime.PtrTo(typ)):
return c.marshalJSONCode(typ)
case !typ.Implements(marshalTextType) && runtime.PtrTo(typ).Implements(marshalTextType):
return c.marshalTextCode(typ)