Skip to content

Releases: DATA-DOG/go-sqlmock

v1.5.2

06 Jan 21:36
13767dc
Compare
Choose a tag to compare

What's Changed

Fixes breaking change from: #295

  • fix: make no argument passed validation opt-in by @IvoGoman in #329

Full Changelog: v1.5.1...v1.5.2

v1.5.1

11 Dec 00:12
b2d135c
Compare
Choose a tag to compare

Release was tested & verified using aws-sqk

What's Changed

New Contributors

Full Changelog: v1.5.0...v1.5.1

adds column metadata for mocking

14 Aug 18:10
b8a63d3
Compare
Choose a tag to compare
Merge pull request #231 from bonitoo-io/pr-152-again

Add Column Metadata

maintenance release

31 Jan 20:27
7d7fc89
Compare
Choose a tag to compare
Merge pull request #216 from gliptak/gomod1

Remove 1.12 minimum Go version from go.mod

Expected ping support from go 1.8 onwards

06 Jan 08:18
012d928
Compare
Choose a tag to compare
Merge pull request #208 from zevst/master

migration from custom namedValue to driver.NamedValue

maintenance release

06 Mar 12:57
3f9954f
Compare
Choose a tag to compare

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

fixes the module name (jump over 1.3.1)

12 Feb 13:26
472e287
Compare
Choose a tag to compare
v1.3.2

fixes the go module name

maintenance release (is broken due to module name. do not use it!)

12 Feb 12:32
4076b74
Compare
Choose a tag to compare

Maintenance release

04 Oct 14:28
d76b18b
Compare
Choose a tag to compare

New features:

  1. Allows expecting prepared statements to be closed.

Patches:

  1. Obeys matching expectations in order for Prepare statement.

GO 1.8 SQL features

21 Feb 16:00
Compare
Choose a tag to compare

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.