diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 72837b90a..416bf7818 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -21,11 +21,23 @@ endif::[] [[unreleased]] === Unreleased -https://github.com/elastic/apm-agent-go/compare/v2.2.0...main[View commits] +https://github.com/elastic/apm-agent-go/compare/v2.3.0...main[View commits] [[release-notes-2.x]] === Go Agent version 2.x +[[release-notes-2.3.0]] +==== 2.3.0 - 2023/03/30 + +- Ensure minimum retry interval of 5 seconds for fetching central configuration {pull}1337[#1337] +- Update span compression logic to handle `service.target.*` fields {pull}1339[#1339] +- module/apmchiv5: Add panic propogation option {pull}1359[#1359] +- module/apmgormv2: Add sqlserver support {pull}1356[#1356] +- module/apmsql: Add sqlserver support {pull}1356[#1356] +- Update compressed spans to use `service.target.*` fields to derive its name {pull}1336[#1336] +- module/apmpgxv5: new instrumentation module for jackc/pgx v5 with enhanced support e.g. detailed `BATCH` and `CONNECT` traces {pull}1364[#1364] +- Add support for `Unwrap []error` {pull}1400[#1400] + [[release-notes-2.2.0]] ==== 2.2.0 - 2022/10/31 diff --git a/internal/apmgodog/go.mod b/internal/apmgodog/go.mod index 985434501..c348ef834 100644 --- a/internal/apmgodog/go.mod +++ b/internal/apmgodog/go.mod @@ -4,9 +4,9 @@ go 1.13 require ( github.com/cucumber/godog v0.12.2 - go.elastic.co/apm/module/apmgrpc/v2 v2.1.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmgrpc/v2 v2.3.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 go.elastic.co/fastjson v1.1.0 google.golang.org/grpc v1.21.1 ) diff --git a/internal/apmgodog/go.sum b/internal/apmgodog/go.sum index 3ee571296..bb706d3fd 100644 --- a/internal/apmgodog/go.sum +++ b/internal/apmgodog/go.sum @@ -185,8 +185,6 @@ github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6So github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/santhosh-tekuri/jsonschema v1.2.4 h1:hNhW8e7t+H1vgY+1QeEQpveR6D4+OwKPXCfD2aieJis= -github.com/santhosh-tekuri/jsonschema v1.2.4/go.mod h1:TEAUOeZSmIxTTuHatJzrvARHiuO9LYd+cIxzgEHCQI4= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= diff --git a/internal/apmschema/go.mod b/internal/apmschema/go.mod index 4ea05f493..071514887 100644 --- a/internal/apmschema/go.mod +++ b/internal/apmschema/go.mod @@ -6,7 +6,7 @@ require ( github.com/pkg/errors v0.9.1 github.com/santhosh-tekuri/jsonschema v1.2.4 github.com/stretchr/testify v1.8.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) -replace go.elastic.co/apm/v2 => ../../ +replace go.elastic.co/apm/v2 => ../.. diff --git a/internal/apmversion/version.go b/internal/apmversion/version.go index f71a609ba..e8d74526e 100644 --- a/internal/apmversion/version.go +++ b/internal/apmversion/version.go @@ -19,5 +19,5 @@ package apmversion const ( // AgentVersion is the Elastic APM Go Agent version. - AgentVersion = "2.2.0" + AgentVersion = "2.3.0" ) diff --git a/module/apmawssdkgo/go.mod b/module/apmawssdkgo/go.mod index fc21e5f0c..21793bace 100644 --- a/module/apmawssdkgo/go.mod +++ b/module/apmawssdkgo/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/aws/aws-sdk-go v1.38.14 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmazure/go.mod b/module/apmazure/go.mod index f6f0f01d5..ffd1fab5e 100644 --- a/module/apmazure/go.mod +++ b/module/apmazure/go.mod @@ -8,8 +8,8 @@ require ( github.com/Azure/azure-storage-file-go v0.8.0 github.com/Azure/azure-storage-queue-go v0.0.0-20191125232315-636801874cdd github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect ) diff --git a/module/apmbeego/go.mod b/module/apmbeego/go.mod index a117bdd7f..edd157e9e 100644 --- a/module/apmbeego/go.mod +++ b/module/apmbeego/go.mod @@ -3,9 +3,9 @@ module go.elastic.co/apm/module/apmbeego/v2 require ( github.com/astaxie/beego v1.12.3 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmchi/go.mod b/module/apmchi/go.mod index 00e0f4718..deb27f0b8 100644 --- a/module/apmchi/go.mod +++ b/module/apmchi/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmchi/v2 require ( github.com/go-chi/chi v1.5.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmchiv5/go.mod b/module/apmchiv5/go.mod index 26aa6cffd..159cad240 100644 --- a/module/apmchiv5/go.mod +++ b/module/apmchiv5/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmchiv5/v2 require ( github.com/go-chi/chi/v5 v5.0.2 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmecho/go.mod b/module/apmecho/go.mod index 06ffe93f6..f2d48a24e 100644 --- a/module/apmecho/go.mod +++ b/module/apmecho/go.mod @@ -9,8 +9,8 @@ require ( github.com/stretchr/testify v1.6.1 github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 // indirect - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect ) diff --git a/module/apmechov4/go.mod b/module/apmechov4/go.mod index 05b2cd6c4..495b407c0 100644 --- a/module/apmechov4/go.mod +++ b/module/apmechov4/go.mod @@ -4,8 +4,8 @@ require ( github.com/labstack/echo/v4 v4.6.1 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmelasticsearch/go.mod b/module/apmelasticsearch/go.mod index ecc027a1c..b727e0192 100644 --- a/module/apmelasticsearch/go.mod +++ b/module/apmelasticsearch/go.mod @@ -2,8 +2,8 @@ module go.elastic.co/apm/module/apmelasticsearch/v2 require ( github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f ) diff --git a/module/apmelasticsearch/go.sum b/module/apmelasticsearch/go.sum index 0dfeb1016..f8558dce2 100644 --- a/module/apmelasticsearch/go.sum +++ b/module/apmelasticsearch/go.sum @@ -30,8 +30,6 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/santhosh-tekuri/jsonschema v1.2.4 h1:hNhW8e7t+H1vgY+1QeEQpveR6D4+OwKPXCfD2aieJis= -github.com/santhosh-tekuri/jsonschema v1.2.4/go.mod h1:TEAUOeZSmIxTTuHatJzrvARHiuO9LYd+cIxzgEHCQI4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= diff --git a/module/apmelasticsearch/internal/integration/go.mod b/module/apmelasticsearch/internal/integration/go.mod index 0cc7b5977..b6eab5f37 100644 --- a/module/apmelasticsearch/internal/integration/go.mod +++ b/module/apmelasticsearch/internal/integration/go.mod @@ -7,7 +7,7 @@ require ( github.com/olivere/elastic v6.2.16+incompatible github.com/stretchr/testify v1.6.1 go.elastic.co/apm/module/apmelasticsearch/v2 v2.1.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../../../.. diff --git a/module/apmelasticsearch/internal/integration/go.sum b/module/apmelasticsearch/internal/integration/go.sum index 864bf44d5..1a870a585 100644 --- a/module/apmelasticsearch/internal/integration/go.sum +++ b/module/apmelasticsearch/internal/integration/go.sum @@ -38,8 +38,6 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/santhosh-tekuri/jsonschema v1.2.4 h1:hNhW8e7t+H1vgY+1QeEQpveR6D4+OwKPXCfD2aieJis= -github.com/santhosh-tekuri/jsonschema v1.2.4/go.mod h1:TEAUOeZSmIxTTuHatJzrvARHiuO9LYd+cIxzgEHCQI4= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= diff --git a/module/apmfasthttp/go.mod b/module/apmfasthttp/go.mod index 3656541cc..728f318ea 100644 --- a/module/apmfasthttp/go.mod +++ b/module/apmfasthttp/go.mod @@ -6,8 +6,8 @@ require ( github.com/stretchr/testify v1.6.1 github.com/valyala/bytebufferpool v1.0.0 github.com/valyala/fasthttp v1.34.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace ( diff --git a/module/apmfiber/go.mod b/module/apmfiber/go.mod index 68af822a1..376f15703 100644 --- a/module/apmfiber/go.mod +++ b/module/apmfiber/go.mod @@ -5,9 +5,9 @@ require ( github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.7.0 github.com/valyala/fasthttp v1.34.0 - go.elastic.co/apm/module/apmfasthttp/v2 v2.2.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmfasthttp/v2 v2.3.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgin/go.mod b/module/apmgin/go.mod index 2a138f28d..5ebc7546e 100644 --- a/module/apmgin/go.mod +++ b/module/apmgin/go.mod @@ -4,8 +4,8 @@ require ( github.com/gin-gonic/gin v1.7.7 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgocql/go.mod b/module/apmgocql/go.mod index 7527ab67f..85887ed5d 100644 --- a/module/apmgocql/go.mod +++ b/module/apmgocql/go.mod @@ -5,7 +5,7 @@ require ( github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect github.com/gocql/gocql v0.0.0-20181124151448-70385f88b28b github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgokit/go.mod b/module/apmgokit/go.mod index 3fdf1b0d3..b33211977 100644 --- a/module/apmgokit/go.mod +++ b/module/apmgokit/go.mod @@ -6,9 +6,9 @@ require ( github.com/go-stack/stack v1.8.0 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmgrpc/v2 v2.2.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmgrpc/v2 v2.3.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f google.golang.org/grpc v1.17.0 ) diff --git a/module/apmgometrics/go.mod b/module/apmgometrics/go.mod index e6f177405..7287ec5a4 100644 --- a/module/apmgometrics/go.mod +++ b/module/apmgometrics/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmgometrics/v2 require ( github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgopg/go.mod b/module/apmgopg/go.mod index 07f98d1c2..fdc776579 100644 --- a/module/apmgopg/go.mod +++ b/module/apmgopg/go.mod @@ -6,8 +6,8 @@ require ( github.com/onsi/ginkgo v1.16.5 // indirect github.com/onsi/gomega v1.18.1 // indirect github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 mellium.im/sasl v0.2.1 // indirect ) diff --git a/module/apmgopgv10/go.mod b/module/apmgopgv10/go.mod index 812c353bb..21da3bf1b 100644 --- a/module/apmgopgv10/go.mod +++ b/module/apmgopgv10/go.mod @@ -4,8 +4,8 @@ require ( github.com/go-pg/pg/v10 v10.7.3 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgoredis/go.mod b/module/apmgoredis/go.mod index b12bd78c6..268d269b1 100644 --- a/module/apmgoredis/go.mod +++ b/module/apmgoredis/go.mod @@ -7,7 +7,7 @@ require ( github.com/onsi/ginkgo v1.8.0 // indirect github.com/onsi/gomega v1.5.0 // indirect github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/module/apmgoredisv8/go.mod b/module/apmgoredisv8/go.mod index 0226e82ac..f6326e42a 100644 --- a/module/apmgoredisv8/go.mod +++ b/module/apmgoredisv8/go.mod @@ -5,7 +5,7 @@ go 1.15 require ( github.com/go-redis/redis/v8 v8.11.4 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgorilla/go.mod b/module/apmgorilla/go.mod index afd345af4..beddd7dc1 100644 --- a/module/apmgorilla/go.mod +++ b/module/apmgorilla/go.mod @@ -4,8 +4,8 @@ require ( github.com/gorilla/context v1.1.1 // indirect github.com/gorilla/mux v1.6.2 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgorm/go.mod b/module/apmgorm/go.mod index 4844628bc..becd14af4 100644 --- a/module/apmgorm/go.mod +++ b/module/apmgorm/go.mod @@ -4,8 +4,8 @@ require ( github.com/jinzhu/gorm v1.9.10 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmgormv2/go.mod b/module/apmgormv2/go.mod index 78a92d4a4..51c398605 100644 --- a/module/apmgormv2/go.mod +++ b/module/apmgormv2/go.mod @@ -8,8 +8,8 @@ require ( github.com/jinzhu/now v1.1.5 // indirect github.com/mattn/go-sqlite3 v1.14.16 // indirect github.com/stretchr/testify v1.8.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/tools v0.1.11 // indirect gorm.io/driver/mysql v1.0.2 gorm.io/driver/postgres v1.3.4 diff --git a/module/apmgrpc/go.mod b/module/apmgrpc/go.mod index 72e84b5b5..503e0a01e 100644 --- a/module/apmgrpc/go.mod +++ b/module/apmgrpc/go.mod @@ -4,8 +4,8 @@ require ( github.com/golang/protobuf v1.2.0 github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f google.golang.org/grpc v1.17.0 ) diff --git a/module/apmhttp/go.mod b/module/apmhttp/go.mod index 1d7ebcfe5..6ce0e4306 100644 --- a/module/apmhttp/go.mod +++ b/module/apmhttp/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmhttp/v2 require ( github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f ) diff --git a/module/apmhttprouter/go.mod b/module/apmhttprouter/go.mod index 737d213cf..c3c5f79d2 100644 --- a/module/apmhttprouter/go.mod +++ b/module/apmhttprouter/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmhttprouter/v2 require ( github.com/julienschmidt/httprouter v1.2.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmlambda/go.mod b/module/apmlambda/go.mod index d149c0b7a..7d30d9d3f 100644 --- a/module/apmlambda/go.mod +++ b/module/apmlambda/go.mod @@ -2,7 +2,7 @@ module go.elastic.co/apm/module/apmlambda/v2 require ( github.com/aws/aws-lambda-go v1.8.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmlogrus/go.mod b/module/apmlogrus/go.mod index 63bff1da5..a9c504179 100644 --- a/module/apmlogrus/go.mod +++ b/module/apmlogrus/go.mod @@ -4,7 +4,7 @@ require ( github.com/pkg/errors v0.9.1 github.com/sirupsen/logrus v1.2.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect ) diff --git a/module/apmmongo/go.mod b/module/apmmongo/go.mod index 004a3f694..5fe0f3fbc 100644 --- a/module/apmmongo/go.mod +++ b/module/apmmongo/go.mod @@ -2,7 +2,7 @@ module go.elastic.co/apm/module/apmmongo/v2 require ( github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 go.mongodb.org/mongo-driver v1.5.1 ) diff --git a/module/apmnegroni/go.mod b/module/apmnegroni/go.mod index 32e947aa3..5c598f95a 100644 --- a/module/apmnegroni/go.mod +++ b/module/apmnegroni/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/stretchr/testify v1.6.1 github.com/urfave/negroni v1.0.0 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmot/go.mod b/module/apmot/go.mod index f7d45b591..afc93043c 100644 --- a/module/apmot/go.mod +++ b/module/apmot/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmot/v2 require ( github.com/opentracing/opentracing-go v1.1.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmpgx/go.mod b/module/apmpgx/go.mod index 09cad3439..6faa62e07 100644 --- a/module/apmpgx/go.mod +++ b/module/apmpgx/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/jackc/pgx/v4 v4.17.0 github.com/stretchr/testify v1.8.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmpgxv5/go.mod b/module/apmpgxv5/go.mod index 994f9dfc4..4c99ef6e3 100644 --- a/module/apmpgxv5/go.mod +++ b/module/apmpgxv5/go.mod @@ -5,8 +5,8 @@ go 1.15 require ( github.com/jackc/pgx/v5 v5.0.4 github.com/stretchr/testify v1.8.0 - go.elastic.co/apm/module/apmsql/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmsql/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmprometheus/go.mod b/module/apmprometheus/go.mod index 4d1bad6a6..bab68e089 100644 --- a/module/apmprometheus/go.mod +++ b/module/apmprometheus/go.mod @@ -5,7 +5,7 @@ require ( github.com/prometheus/client_golang v1.11.1 github.com/prometheus/client_model v0.2.0 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmredigo/go.mod b/module/apmredigo/go.mod index 699c2c676..800eb3fa7 100644 --- a/module/apmredigo/go.mod +++ b/module/apmredigo/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmredigo/v2 require ( github.com/gomodule/redigo v1.8.2 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmrestful/go.mod b/module/apmrestful/go.mod index 0e2aa591d..f8b3cd5cd 100644 --- a/module/apmrestful/go.mod +++ b/module/apmrestful/go.mod @@ -6,8 +6,8 @@ require ( github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.1 // indirect github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmrestfulv3/go.mod b/module/apmrestfulv3/go.mod index 4953ff2bb..4155907a3 100644 --- a/module/apmrestfulv3/go.mod +++ b/module/apmrestfulv3/go.mod @@ -4,8 +4,8 @@ require ( github.com/emicklei/go-restful/v3 v3.8.0 github.com/json-iterator/go v1.1.11 // indirect github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/module/apmhttp/v2 v2.2.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/module/apmhttp/v2 v2.3.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/module/apmsql/go.mod b/module/apmsql/go.mod index 1b70d6dda..9b3ea8685 100644 --- a/module/apmsql/go.mod +++ b/module/apmsql/go.mod @@ -7,7 +7,7 @@ require ( github.com/lib/pq v1.3.0 github.com/mattn/go-sqlite3 v1.10.0 github.com/stretchr/testify v1.7.0 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7 // indirect ) diff --git a/module/apmzap/go.mod b/module/apmzap/go.mod index 8a9353b40..ee8096d75 100644 --- a/module/apmzap/go.mod +++ b/module/apmzap/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmzap/v2 require ( github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 go.uber.org/atomic v1.3.2 // indirect go.uber.org/multierr v1.1.0 // indirect go.uber.org/zap v1.9.1 diff --git a/module/apmzerolog/go.mod b/module/apmzerolog/go.mod index c09967549..6af06d494 100644 --- a/module/apmzerolog/go.mod +++ b/module/apmzerolog/go.mod @@ -4,7 +4,7 @@ require ( github.com/pkg/errors v0.9.1 github.com/rs/zerolog v1.14.3 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm/v2 v2.2.0 + go.elastic.co/apm/v2 v2.3.0 ) replace go.elastic.co/apm/v2 => ../.. diff --git a/version.go b/version.go index 2885fbd91..444087bdd 100644 --- a/version.go +++ b/version.go @@ -19,5 +19,5 @@ package apm // import "go.elastic.co/apm/v2" const ( // AgentVersion is the Elastic APM Go Agent version. - AgentVersion = "2.2.0" + AgentVersion = "2.3.0" )