Go Sqlmock Versions Save

Sql mock driver for golang to test database interactions

v1.5.2

4 months ago

What's Changed

Fixes breaking change from: https://github.com/DATA-DOG/go-sqlmock/pull/295

Full Changelog: https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.1...v1.5.2

v1.5.1

5 months ago

Release was tested & verified using aws-sqk

What's Changed

New Contributors

Full Changelog: https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.0...v1.5.1

v1.5.0

3 years ago

v1.4.1

4 years ago

v1.4.0

4 years ago

v1.3.3

5 years ago

just migrating from examples with gopkg.in and other minor fixes

v1.3.2

5 years ago

v1.3.1

5 years ago

adds go.mod for future support

v1.3.0

6 years ago

New features:

  1. Allows expecting prepared statements to be closed.

Patches:

  1. Obeys matching expectations in order for Prepare statement.

v1.2.0

7 years ago

see #52

NOTE: in v1.2.0 sqlmock.Rows has changed to struct from interface, if you were using any type references to that interface, you will need to switch it to a pointer struct type. Also, sqlmock.Rows were used to implement driver.Rows interface, which was not required or useful for mocking and was removed. Hope it will not cause issues.