Releases: go-testfixtures/testfixtures
Releases · go-testfixtures/testfixtures
v3.0.0
Breaking changes
- The import path changed from
gopkg.in/testfixtures.v2
to
github.com/go-testfixtures/testfixtures/v3
. - This package no longer support Oracle databases. This decision was
taken because too few people actually used this package with Oracle and it
was the most difficult to test (we didn't run on CI due the lack of an
official Docker image, etc). - The public API was totally rewritten to be more flexible and ideomatic.
It now uses functional options. It differs from v2, but should be easy
enough to upgrade. - Some deprecated APIs from v2 were removed as well.
- This now requires Go >= 1.13.
New features
- We now have a CLI so you can easily use testfixtures to load a sample
database from fixtures if you want. - Templating via text/template
is now available. This allows some fancier use cases like generating data
or specific columns dynamically. - It's now possible to choose which time zone to use when parsing timestamps
from fixtures. The default is the same as before, whatever is set on
time.Local
. - Errors now use the new
%w
verb only available on Go >= 1.13.
MISC
- Travis and AppVeyor are gone. We're using GitHub Actions exclusively now.
The whole suite is ran inside Docker (with help of Docker Compose), so it's
easy to run tests locally as well.
v2.6.0
v2.5.3
v2.5.2
- This library now supports Go Modules;
- Also allow
.yaml
(as an alternative to.yml
) as the file extension (#42).