Releases: DATA-DOG/go-sqlmock
Releases · DATA-DOG/go-sqlmock
v1.5.2
v1.5.1
Release was tested & verified using aws-sqk
What's Changed
- Add go 1.15 in travis by @gold-kou in #234
- Update code sample by @ashhadsheikh in #244
- Fix ExpectedExec Stringer implementation by @maguro in #249
- Add Multi Row Support by @asahasrabuddhe in #263
- Add Go 1.16 and 1.17 to Travis by @gliptak in #279
- fix package by @col3name in #284
- [Chore]: Add Issue Template by @Ghvstcode in #289
- Fix args passed not exp by @IvoGoman in #295
- fixes csv parse errors being silently ignored by @IvoGoman in #315
- CSVColParser: correctly set nil values in Rows by @IvoGoman in #318
- Modify: existing panic in AddRow to give a hint to the issue by @co60ca in #326
New Contributors
- @gold-kou made their first contribution in #234
- @ashhadsheikh made their first contribution in #244
- @maguro made their first contribution in #249
- @asahasrabuddhe made their first contribution in #263
- @col3name made their first contribution in #284
- @Ghvstcode made their first contribution in #289
- @IvoGoman made their first contribution in #295
- @co60ca made their first contribution in #326
Full Changelog: v1.5.0...v1.5.1
adds column metadata for mocking
Merge pull request #231 from bonitoo-io/pr-152-again Add Column Metadata
maintenance release
Merge pull request #216 from gliptak/gomod1 Remove 1.12 minimum Go version from go.mod
Expected ping support from go 1.8 onwards
Merge pull request #208 from zevst/master migration from custom namedValue to driver.NamedValue
maintenance release
just migrating from examples with gopkg.in and other minor fixes
fixes the module name (jump over 1.3.1)
v1.3.2 fixes the go module name
maintenance release (is broken due to module name. do not use it!)
adds go.mod for future support
Maintenance release
New features:
- Allows expecting prepared statements to be closed.
Patches:
- Obeys matching expectations in order for Prepare statement.
GO 1.8 SQL features
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.