diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index d6944b636..03e843aba 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -21,7 +21,16 @@ endif::[] [[unreleased]] === Unreleased -https://github.com/elastic/apm-agent-go/compare/v1.11.0...master[View commits] +https://github.com/elastic/apm-agent-go/compare/v1.12.0...master[View commits] + + +[[release-notes-1.x]] +=== Go Agent version 1.x + +[[release-notes-1.12.0]] +==== 1.12.0 - 2021/05/25 + +https://github.com/elastic/apm-agent-go/releases/tag/v1.12.0[View release] - module/apmgrpc: fix status code to outcome mapping {pull}902[#(902)] - module/apmawssdkgo: add support for instrumenting s3 RPC calls {pull}927[#(927)] @@ -35,9 +44,6 @@ https://github.com/elastic/apm-agent-go/compare/v1.11.0...master[View commits] - module/apmot: handle http.host tag as url.Host {pull}954[#(954)] - apm: add add ParentID methods to Span and Transaction {pull}956[#(956)] -[[release-notes-1.x]] -=== Go Agent version 1.x - [[release-notes-1.11.0]] ==== 1.11.0 - 2021/02/01 diff --git a/docs/upgrading.asciidoc b/docs/upgrading.asciidoc index 209330a85..55282c5d1 100644 --- a/docs/upgrading.asciidoc +++ b/docs/upgrading.asciidoc @@ -21,6 +21,7 @@ The table below is a simplified description of this policy. [options="header"] |==== |Agent version |EOL Date |Maintained until +|1.12.x |2022/11/25 |1.13.0 |1.11.x |2022/08/01 |1.12.0 |1.10.x |2022/07/20 |1.11.0 |1.9.x |2022/05/02 |1.10.0 diff --git a/internal/apmgodog/go.mod b/internal/apmgodog/go.mod index 702f6f02a..a698f77c0 100644 --- a/internal/apmgodog/go.mod +++ b/internal/apmgodog/go.mod @@ -4,9 +4,9 @@ go 1.13 require ( github.com/cucumber/godog v0.8.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmgrpc v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmgrpc v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 go.elastic.co/fastjson v1.1.0 google.golang.org/grpc v1.17.0 ) diff --git a/internal/apmversion/version.go b/internal/apmversion/version.go index ff17d880a..4af51cb73 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 = "1.11.0" + AgentVersion = "1.12.0" ) diff --git a/internal/tracecontexttest/go.mod b/internal/tracecontexttest/go.mod index 07d410022..96ec64da5 100644 --- a/internal/tracecontexttest/go.mod +++ b/internal/tracecontexttest/go.mod @@ -1,6 +1,6 @@ module tracecontexttest -require go.elastic.co/apm/module/apmhttp v1.11.0 +require go.elastic.co/apm/module/apmhttp v1.12.0 replace go.elastic.co/apm => ../.. diff --git a/module/apmawssdkgo/go.mod b/module/apmawssdkgo/go.mod index e15fe246e..c50dbf109 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 v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmbeego/go.mod b/module/apmbeego/go.mod index 694efd349..4a6235924 100644 --- a/module/apmbeego/go.mod +++ b/module/apmbeego/go.mod @@ -3,9 +3,9 @@ module go.elastic.co/apm/module/apmbeego require ( github.com/astaxie/beego v1.11.1 github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 - go.elastic.co/apm/module/apmsql v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 + go.elastic.co/apm/module/apmsql v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmchi/go.mod b/module/apmchi/go.mod index 7ded0ba3d..c1225f49c 100644 --- a/module/apmchi/go.mod +++ b/module/apmchi/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmchi require ( github.com/go-chi/chi v1.5.1 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmchiv5/go.mod b/module/apmchiv5/go.mod index 6da13c2dc..10b28c76d 100644 --- a/module/apmchiv5/go.mod +++ b/module/apmchiv5/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmchiv5 require ( github.com/go-chi/chi/v5 v5.0.2 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmecho/go.mod b/module/apmecho/go.mod index 506fe9551..411ca9490 100644 --- a/module/apmecho/go.mod +++ b/module/apmecho/go.mod @@ -9,8 +9,8 @@ require ( github.com/stretchr/testify v1.4.0 github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 // indirect - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect ) diff --git a/module/apmechov4/go.mod b/module/apmechov4/go.mod index 9642e3c06..83df6b2f3 100644 --- a/module/apmechov4/go.mod +++ b/module/apmechov4/go.mod @@ -4,8 +4,8 @@ require ( github.com/labstack/echo/v4 v4.0.0 github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect ) diff --git a/module/apmelasticsearch/go.mod b/module/apmelasticsearch/go.mod index 62b532a37..a93563c38 100644 --- a/module/apmelasticsearch/go.mod +++ b/module/apmelasticsearch/go.mod @@ -2,8 +2,8 @@ module go.elastic.co/apm/module/apmelasticsearch require ( github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 golang.org/x/net v0.0.0-20200226121028-0de0cce0169b ) diff --git a/module/apmelasticsearch/internal/integration/go.mod b/module/apmelasticsearch/internal/integration/go.mod index a3b3afb9b..57d581ecd 100644 --- a/module/apmelasticsearch/internal/integration/go.mod +++ b/module/apmelasticsearch/internal/integration/go.mod @@ -6,8 +6,8 @@ require ( github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect github.com/olivere/elastic v6.2.16+incompatible github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmelasticsearch v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmelasticsearch v1.12.0 ) replace go.elastic.co/apm => ../../../.. diff --git a/module/apmgin/go.mod b/module/apmgin/go.mod index 634edd8f1..05226497a 100644 --- a/module/apmgin/go.mod +++ b/module/apmgin/go.mod @@ -4,8 +4,8 @@ require ( github.com/gin-gonic/gin v1.4.0 github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgocql/go.mod b/module/apmgocql/go.mod index 3bf7f0059..28b6908de 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.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgokit/go.mod b/module/apmgokit/go.mod index 7f7a30b12..82f356d88 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.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmgrpc v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmgrpc v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 golang.org/x/net v0.0.0-20200226121028-0de0cce0169b google.golang.org/grpc v1.17.0 ) diff --git a/module/apmgometrics/go.mod b/module/apmgometrics/go.mod index 1e650455d..254b5a5b5 100644 --- a/module/apmgometrics/go.mod +++ b/module/apmgometrics/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmgometrics require ( github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgopg/go.mod b/module/apmgopg/go.mod index d91e10f15..e207d99c7 100644 --- a/module/apmgopg/go.mod +++ b/module/apmgopg/go.mod @@ -6,8 +6,8 @@ require ( github.com/onsi/ginkgo v1.8.0 // indirect github.com/onsi/gomega v1.5.0 // indirect github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmsql v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmsql v1.12.0 mellium.im/sasl v0.2.1 // indirect ) diff --git a/module/apmgopgv10/go.mod b/module/apmgopgv10/go.mod index 5dfb94733..095d34d0a 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.8.1 github.com/stretchr/testify v1.6.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmsql v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmsql v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgoredis/go.mod b/module/apmgoredis/go.mod index 0199be3ec..088508ff4 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.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgoredisv8/go.mod b/module/apmgoredisv8/go.mod index a24c25008..bb2600e8b 100644 --- a/module/apmgoredisv8/go.mod +++ b/module/apmgoredisv8/go.mod @@ -5,7 +5,7 @@ go 1.14 require ( github.com/go-redis/redis/v8 v8.0.0-beta.2 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgorilla/go.mod b/module/apmgorilla/go.mod index ff4c61918..c684d91d8 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.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgorm/go.mod b/module/apmgorm/go.mod index 04fe9f4ed..45770efbd 100644 --- a/module/apmgorm/go.mod +++ b/module/apmgorm/go.mod @@ -5,8 +5,8 @@ require ( github.com/jinzhu/gorm v1.9.10 github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmsql v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmsql v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmgormv2/go.mod b/module/apmgormv2/go.mod index db082d935..d0f3b5062 100644 --- a/module/apmgormv2/go.mod +++ b/module/apmgormv2/go.mod @@ -2,8 +2,8 @@ module go.elastic.co/apm/module/apmgormv2 require ( github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmsql v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmsql v1.12.0 gorm.io/driver/mysql v1.0.2 gorm.io/driver/postgres v1.0.2 gorm.io/driver/sqlite v1.1.4-0.20200928065301-698e250a3b0d diff --git a/module/apmgrpc/go.mod b/module/apmgrpc/go.mod index 3db893fa0..a3ad23670 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.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 golang.org/x/net v0.0.0-20200226121028-0de0cce0169b google.golang.org/grpc v1.17.0 ) diff --git a/module/apmhttp/go.mod b/module/apmhttp/go.mod index 5d5873e87..3bcc4b87b 100644 --- a/module/apmhttp/go.mod +++ b/module/apmhttp/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmhttp require ( github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 golang.org/x/net v0.0.0-20200226121028-0de0cce0169b golang.org/x/text v0.3.2 // indirect ) diff --git a/module/apmhttprouter/go.mod b/module/apmhttprouter/go.mod index 2b813bdc4..dbbe0312b 100644 --- a/module/apmhttprouter/go.mod +++ b/module/apmhttprouter/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmhttprouter require ( github.com/julienschmidt/httprouter v1.2.0 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmlambda/go.mod b/module/apmlambda/go.mod index 15e33234c..d7ce84a01 100644 --- a/module/apmlambda/go.mod +++ b/module/apmlambda/go.mod @@ -2,7 +2,7 @@ module go.elastic.co/apm/module/apmlambda require ( github.com/aws/aws-lambda-go v1.8.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmlogrus/go.mod b/module/apmlogrus/go.mod index 8077c039e..d068c84a7 100644 --- a/module/apmlogrus/go.mod +++ b/module/apmlogrus/go.mod @@ -4,7 +4,7 @@ require ( github.com/pkg/errors v0.8.1 github.com/sirupsen/logrus v1.2.0 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect ) diff --git a/module/apmmongo/go.mod b/module/apmmongo/go.mod index 21311b9c2..08132f8b5 100644 --- a/module/apmmongo/go.mod +++ b/module/apmmongo/go.mod @@ -2,7 +2,7 @@ module go.elastic.co/apm/module/apmmongo require ( github.com/stretchr/testify v1.6.1 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 go.mongodb.org/mongo-driver v1.5.1 ) diff --git a/module/apmnegroni/go.mod b/module/apmnegroni/go.mod index 4f4064731..d77ce3f66 100644 --- a/module/apmnegroni/go.mod +++ b/module/apmnegroni/go.mod @@ -5,8 +5,8 @@ go 1.13 require ( github.com/stretchr/testify v1.4.0 github.com/urfave/negroni v1.0.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmot/go.mod b/module/apmot/go.mod index 6bc0a0964..a06a2a6a3 100644 --- a/module/apmot/go.mod +++ b/module/apmot/go.mod @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmot require ( github.com/opentracing/opentracing-go v1.1.0 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmprometheus/go.mod b/module/apmprometheus/go.mod index fba3fb144..8cd997d16 100644 --- a/module/apmprometheus/go.mod +++ b/module/apmprometheus/go.mod @@ -5,7 +5,7 @@ require ( github.com/prometheus/client_golang v0.9.2 github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmredigo/go.mod b/module/apmredigo/go.mod index 83c7264ac..dc59d93e9 100644 --- a/module/apmredigo/go.mod +++ b/module/apmredigo/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmredigo require ( github.com/gomodule/redigo v1.8.2 github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmrestful/go.mod b/module/apmrestful/go.mod index 3da432a25..0228506fb 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.4.0 - go.elastic.co/apm v1.11.0 - go.elastic.co/apm/module/apmhttp v1.11.0 + go.elastic.co/apm v1.12.0 + go.elastic.co/apm/module/apmhttp v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmsql/go.mod b/module/apmsql/go.mod index d13bb2020..c682695ed 100644 --- a/module/apmsql/go.mod +++ b/module/apmsql/go.mod @@ -6,7 +6,7 @@ require ( github.com/lib/pq v1.3.0 github.com/mattn/go-sqlite3 v1.10.0 github.com/stretchr/testify v1.5.1 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/module/apmzap/go.mod b/module/apmzap/go.mod index e6a4bcfa2..4a91b79cd 100644 --- a/module/apmzap/go.mod +++ b/module/apmzap/go.mod @@ -3,7 +3,7 @@ module go.elastic.co/apm/module/apmzap require ( github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.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 5bc0bcfd6..4747ba578 100644 --- a/module/apmzerolog/go.mod +++ b/module/apmzerolog/go.mod @@ -4,7 +4,7 @@ require ( github.com/pkg/errors v0.8.1 github.com/rs/zerolog v1.14.3 github.com/stretchr/testify v1.4.0 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/scripts/before_install.sh b/scripts/before_install.sh index 9e92ba858..e5decbb20 100755 --- a/scripts/before_install.sh +++ b/scripts/before_install.sh @@ -36,11 +36,12 @@ if (! go run scripts/mingoversion.go 1.11 &>/dev/null); then pin github.com/go-chi/chi v1.5.1 pin github.com/prometheus/client_golang v1.1.0 pin github.com/emicklei/go-restful v2.9.6 + pin github.com/go-sql-driver/mysql v1.4.1 + pin golang.org/x/net 5f58ad60dda6 https://github.com/golang/net fi if (! go run scripts/mingoversion.go 1.10 &>/dev/null); then pin github.com/gocql/gocql 16cf9ea1b3e2 - pin github.com/go-sql-driver/mysql v1.4.1 pin github.com/labstack/echo v4.1.9 pin github.com/lib/pq v1.0.0 fi diff --git a/scripts/genmod/go.mod b/scripts/genmod/go.mod index dae410214..4c2a58336 100644 --- a/scripts/genmod/go.mod +++ b/scripts/genmod/go.mod @@ -2,7 +2,7 @@ module genmod require ( github.com/pkg/errors v0.8.1 - go.elastic.co/apm v1.11.0 + go.elastic.co/apm v1.12.0 ) replace go.elastic.co/apm => ../.. diff --git a/version.go b/version.go index 05b3accd8..ddde18f62 100644 --- a/version.go +++ b/version.go @@ -19,5 +19,5 @@ package apm // import "go.elastic.co/apm" const ( // AgentVersion is the Elastic APM Go Agent version. - AgentVersion = "1.11.0" + AgentVersion = "1.12.0" )