Releases: miyamo2/sqldav
Releases · miyamo2/sqldav
v0.2.1
What's Changed in v0.2.1
⬆️ Upgrading dependencies
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
Full Changelog: v0.2.0...v0.2.1
v0.2.0
What's Changed in v0.2.0
✨ New Features
Set
,List
,Map
andTypedList
now implementsgorm.io/gorm.schema.GormDataTypeInterface
.
Full Changelog: v0.1.1...v0.2.0
v0.1.1
What's Changed in v0.1.1
Bug Fix🐛
driver.Valuer
implementations
Receiver is now a physical value instead of a pointer.
This ensures that type switches and type assertions work properly.
Full Changelog: v0.1.0...v0.1.1
v0.1.0
What's Changed in v0.1.0
Initial Release🎉
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.