Releases: vgarvardt/go-pg-adapter
Releases · vgarvardt/go-pg-adapter
v1.1.0
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
- @dependabot made their first contribution in #11
Full Changelog: v1.0.0...v1.1.0
Let it be the first stable version
Merge pull request #8 from vgarvardt/patch/gh-actions Added GH Actions pipeline
Fixed pgx v4 adapter package name
Merge pull request #7 from vgarvardt/hotfix/pgx-v4-package Fixed pgx v4 adapter package name
Added pgx v4 support
Merge pull request #6 from vgarvardt/feature/pgx-v4 Added pgx v4 support
Added adapter for sql.Conn
Merge pull request #5 from vgarvardt/feature/sql-conn-adapter Added adapter for sql.Conn
Go modules for vendoring
Merge pull request #4 from vgarvardt/patch/go-mod Go modules for vendoring
Removed undersores from package names
v0.1.1 Fixed install package name
Initial release
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
}