github.com/aws/aws-sdk-go-v2
from 1.30.4 to 1.31.0github.com/aws/aws-sdk-go-v2/service/dynamodb
from v1.34.3 to v1.36.0github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue
from v1.14.9 to v1.15.10
Set
,List
,Map
andTypedList
now implementsgorm.io/gorm.schema.GormDataTypeInterface
.
Receiver is now a physical value instead of a pointer. This ensures that type switches and type assertions work properly.
implements the following sql.Scanner
, driver.Valuer
-
sqldav.Set[string | int | float64 | []byte]
, the Defined Type of[]string
,[]int
,[]float64
,[][]byte
. Converted toset
in DynamoDB. -
sqldav.List
, the Defined Type of[]interface{}
. Converted tolist
in DynamoDB. -
sqldav.Map
, the Defined Type ofmap[string]interface{}
. Converted tomap
in DynamoDB. -
sqldav.TypedList[T]
, the Defined Type of[]T
. Converted tolist
in DynamoDB.