Skip to content

Releases: moov-io/base

v0.19.0

11 May 20:02
9c28900
Compare
Choose a tag to compare

Add transaction type signatures to database

Admin Server Subrouter

09 Apr 20:43
794a68c
Compare
Choose a tag to compare

Added Subrouter() function to admin Server to create a subrouter.

v0.18.0

29 Mar 17:46
Compare
Choose a tag to compare

Contains the following major changed.
STRICT_ALL_TABLES on MySQL connections: #153
Updates library that reported a CVE: #156

v0.16.0

10 Feb 17:46
Compare
Choose a tag to compare

BREAKING CHANGES

  • Adding timezone/location parameter to time Now func

IMPROVEMENTS

  • docs: update "Getting Help" section

BUILD

  • chore(deps): update module golang-migrate/migrate/v4 to v4.14.1
  • chore(deps): update module google/uuid to v1.2.0
  • chore(deps): update module mattn/go-sqlite3 to v1.14.6
  • chore(deps): update module ory/dockertest/v3 to v3.6.3
  • chore(deps): update module prometheus/client_golang to v1.9.0

v0.15.4

14 Jan 22:14
7f95fd5
Compare
Choose a tag to compare
stringOrNil valuer (#140)

v0.15.0

16 Nov 21:54
Compare
Choose a tag to compare

v0.15.0 (Released 2020-11-16)

IMPROVEMENTS

  • logging: Restricts the logging values from interface{} to specific types that are easily converted into a log line.

v0.14.1

06 Nov 16:16
3887de3
Compare
Choose a tag to compare

FIXES:

  • database: fix parallel tests data race in migrations

v0.14.0

21 Oct 19:23
f7c88c1
Compare
Choose a tag to compare

BREAKING CHANGES

  • database: removed InMemorySqliteConfig object

ADDITIONS

  • log: add timestamp, ts, field to all logs

v0.13.1

19 Oct 15:14
0160957
Compare
Choose a tag to compare

FIXES:

database: CreateTestSqliteDB didn't use path of SQLite DB for migrations

v0.13.0

16 Oct 20:32
Compare
Choose a tag to compare

BREAKING CHANGES

  • log: Logger.LogError and Logger.LogErrorf no longer return an error, they will return LoggedError which can be called with Err() to return an error
  • database: changed signature of New and NewAndMigrate functions by reordering arguments and changing return types
  • database: renamed Sqlite to SQlite and MySql to MySQL in database config

ADDITIONS

  • database: load sql files for migrations from /migrations directory

FIXES:

  • database: fix leaked DB connection created by migrator