Skip to content

Releases: miyamo2/sqldav

v0.2.1

06 Oct 22:34
6df97ee
Compare
Choose a tag to compare

What's Changed in v0.2.1

⬆️ Upgrading dependencies

  • github.com/aws/aws-sdk-go-v2 from 1.30.4 to 1.31.0
  • github.com/aws/aws-sdk-go-v2/service/dynamodb from v1.34.3 to v1.36.0
  • github.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

13 Jul 04:25
938319d
Compare
Choose a tag to compare

What's Changed in v0.2.0

✨ New Features

  • Set, List, Map and TypedList now implements gorm.io/gorm.schema.GormDataTypeInterface.

Full Changelog: v0.1.1...v0.2.0

v0.1.1

13 Jul 03:26
37254d4
Compare
Choose a tag to compare

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

13 Jul 01:24
b5a330b
Compare
Choose a tag to compare

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 to set in DynamoDB.
  • sqldav.List, the Defined Type of []interface{}. Converted to list in DynamoDB.
  • sqldav.Map, the Defined Type of map[string]interface{}. Converted to map in DynamoDB.
  • sqldav.TypedList[T], the Defined Type of []T. Converted to list in DynamoDB.