Skip to content

Releases: vgarvardt/go-pg-adapter

v1.1.0

14 Jan 13:31
5f1f5c3
Compare
Choose a tag to compare

What's Changed

  • Updated deps and pipeline by @vgarvardt in #9
  • ci: align pipelines and enable dependabot by @vgarvardt in #10
  • Bump github.com/jackc/pgx/v4 from 4.16.1 to 4.17.2 by @dependabot in #11
  • Bump github.com/stretchr/testify from 1.7.1 to 1.8.1 by @dependabot in #12
  • chore: fixed some linting issues by @vgarvardt in #13
  • Bump github.com/jackc/pgx/v4 from 4.17.2 to 4.18.0 by @dependabot in #14
  • Bump github.com/vgarvardt/pgx-helpers/v4 from 4.0.0-20200225100150-876aee3d1a22 to 4.1.0 by @dependabot in #15
  • Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 by @dependabot in #16
  • Bump github.com/jackc/pgx/v4 from 4.18.0 to 4.18.1 by @dependabot in #17
  • Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 by @dependabot in #18
  • Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 by @dependabot in #19
  • Bump golang.org/x/crypto from 0.6.0 to 0.17.0 by @dependabot in #20
  • Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #22
  • Bump github.com/jackc/pgx/v4 from 4.18.1 to 4.18.2 by @dependabot in #23
  • Bump github.com/jackc/pgx/v4 from 4.18.2 to 4.18.3 by @dependabot in #24
  • Bump github.com/jmoiron/sqlx from 1.3.5 to 1.4.0 by @dependabot in #25
  • Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by @dependabot in #26
  • chore: bump golang.org/x/crypto by @vgarvardt in #27

New Contributors

Full Changelog: v1.0.0...v1.1.0

Let it be the first stable version

24 Jun 20:41
6e03cb3
Compare
Choose a tag to compare
Merge pull request #8 from vgarvardt/patch/gh-actions

Added GH Actions pipeline

Fixed pgx v4 adapter package name

01 Mar 20:43
ac489a2
Compare
Choose a tag to compare
Merge pull request #7 from vgarvardt/hotfix/pgx-v4-package

Fixed pgx v4 adapter package name

Added pgx v4 support

01 Mar 20:04
b18e54b
Compare
Choose a tag to compare
Merge pull request #6 from vgarvardt/feature/pgx-v4

Added pgx v4 support

Added adapter for sql.Conn

17 Jul 07:51
229a04c
Compare
Choose a tag to compare
Merge pull request #5 from vgarvardt/feature/sql-conn-adapter

Added adapter for sql.Conn

Go modules for vendoring

04 Jul 08:14
6919e2c
Compare
Choose a tag to compare
Merge pull request #4 from vgarvardt/patch/go-mod

Go modules for vendoring

Removed undersores from package names

26 Feb 20:23
Compare
Choose a tag to compare
v0.1.1

Fixed install package name

Initial release

26 Feb 20:09
0ce0bd3
Compare
Choose a tag to compare

The following adapter interface with pgx.Conn, pgx.ConnPool, sql, and sqlx implementations:

type Adapter interface {
	Exec(query string, args ...interface{}) error
	SelectOne(dst interface{}, query string, args ...interface{}) error
}