diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 01185b317..0ae50b5e0 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -36,6 +36,8 @@ https://github.com/elastic/apm-agent-go/compare/v1.8.0...master[View commits] - Round ELASTIC_APM_SAMPLING_RATE with 4 digits precision {pull}828[#(828)] - module/apmhttp: implement io.ReaderFrom in wrapped http.ResponseWriter {pull}830[#(830)] - Fixed Transaction.Discard so that it sets TransactionData to nil {pull}836[#(836)] +- module/apmsql/pgxv4: add support for pgx driver {pull}831[#(831)] +- module/apmgormv2: add support for gorm.io (GORM v2) {pull}825[#(825)] [[release-notes-1.x]] === Go Agent version 1.x diff --git a/docs/instrumenting.asciidoc b/docs/instrumenting.asciidoc index d37b6e971..33f46caa4 100644 --- a/docs/instrumenting.asciidoc +++ b/docs/instrumenting.asciidoc @@ -342,6 +342,7 @@ As a convenience, we also provide packages which will automatically register pop with apmsql.Register: - module/apmsql/pq (github.com/lib/pq) +- module/apmsql/pgxv4 (github.com/jackc/pgx/v4/stdlib) - module/apmsql/mysql (github.com/go-sql-driver/mysql) - module/apmsql/sqlite3 (github.com/mattn/go-sqlite3) diff --git a/docs/supported-tech.asciidoc b/docs/supported-tech.asciidoc index 975f3d7e1..2f1726cb3 100644 --- a/docs/supported-tech.asciidoc +++ b/docs/supported-tech.asciidoc @@ -124,6 +124,7 @@ be able to parse the datasource name, and provide more context in the spans it emits: - https://github.com/lib/pq[lib/pq] (PostgreSQL) +- https://github.com/jackc/pgx[jackc/pgx] (PostgreSQL) - https://github.com/go-sql-driver/mysql[go-sql-driver/mysql] - https://github.com/go-sqlite3[mattn/go-sqlite3]