Skip to content

Commit

Permalink
v1.10.0 (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
simitt authored Jan 20, 2021
1 parent 580656d commit ba58cd6
Show file tree
Hide file tree
Showing 38 changed files with 83 additions and 71 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,27 @@ endif::[]
[[unreleased]]
=== Unreleased
https://github.com/elastic/apm-agent-go/compare/v1.9.0...master[View commits]
https://github.com/elastic/apm-agent-go/compare/v1.10.0...master[View commits]
[[release-notes-1.x]]
=== Go Agent version 1.x
[[release-notes-1.10.0]]
==== 1.10.0 - 2021/01/20
https://github.com/elastic/apm-agent-go/releases/tag/v1.10.0[View release]
- module/apmsql: add tracingDriver.Unwrap method to get underlying driver {pull}#849[#(849)]
- module/apmgopgv10: add support for github.com/go-pg/pg/v10 {pull}857[(#857)]
- Enable central configuration of "sanitize_field_names" {pull}856[(#856)]
- module/apmgrpc: set span destination context {pull}861[(#861)]
[[release-notes-1.x]]
=== Go Agent version 1.x
[[release-notes-1.9.0]]
==== 1.9.0 - 2020/11/02
https://github.com/elastic/apm-agent-go/releases/tag/v1.9.0[View release]
- module/apmgoredisv8: introduce new package to support go-redis v8 {pull}780[#(780)]
- module/apmhttp: introduce httptrace client option {pull}788[#(788)]
- module/apmsql: add support for database/sql/driver.Validator {pull}791[#(791)]
Expand All @@ -53,6 +61,8 @@ https://github.com/elastic/apm-agent-go/compare/v1.9.0...master[View commits]
[[release-notes-1.8.0]]
==== 1.8.0 - 2020/05/06
https://github.com/elastic/apm-agent-go/releases/tag/v1.8.0[View release]
- Add "recording" config option, to dynamically disable event recording {pull}737[(#737)]
- Enable central configuration of "stack_frames_min_duration" and "stack_trace_limit" {pull}742[(#742)]
- Implement "CloseIdleConnections" on the Elasticsearch RoundTripper {pull}750[(#750)]
Expand All @@ -61,6 +71,8 @@ https://github.com/elastic/apm-agent-go/compare/v1.9.0...master[View commits]
[[release-notes-1.7.2]]
==== 1.7.2 - 2020/03/19
https://github.com/elastic/apm-agent-go/releases/tag/v1.7.2[View release]
- Update cucumber/godog to 0.8.1 {pull}733[(#733)]
[[release-notes-1.7.1]]
Expand Down
21 changes: 11 additions & 10 deletions docs/upgrading.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ The table below is a simplified description of this policy.
[options="header"]
|====
|Agent version |EOL Date |Maintained until
|1.9.x |2022/05/02 |1.10.0
|1.8.x |2021-11-06 |1.9.0
|1.7.x |2021-07-09 |1.8.0
|1.6.x |2021-05-17 |1.7.0
|1.5.x |2021-01-31 |1.6.0
|1.4.x |2020-12-20 |1.5.0
|1.3.x |2020-09-20 |1.4.0
|1.2.x |2020-07-17 |1.3.0
|1.1.x |2020-06-12 |1.2.0
|1.0.x |2020-05-14 |1.1.0
|1.10.x |2022/07/20 |1.11.0
|1.9.x |2022/05/02 |1.10.0
|1.8.x |2021-11-06 |1.9.0
|1.7.x |2021-07-09 |1.8.0
|1.6.x |2021-05-17 |1.7.0
|1.5.x |2021-01-31 |1.6.0
|1.4.x |2020-12-20 |1.5.0
|1.3.x |2020-09-20 |1.4.0
|1.2.x |2020-07-17 |1.3.0
|1.1.x |2020-06-12 |1.2.0
|1.0.x |2020-05-14 |1.1.0
|====
2 changes: 1 addition & 1 deletion internal/apmversion/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ package apmversion

const (
// AgentVersion is the Elastic APM Go Agent version.
AgentVersion = "1.9.0"
AgentVersion = "1.10.0"
)
2 changes: 1 addition & 1 deletion internal/tracecontexttest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tracecontexttest

require go.elastic.co/apm/module/apmhttp v1.9.0
require go.elastic.co/apm/module/apmhttp v1.10.0

replace go.elastic.co/apm => ../..

Expand Down
6 changes: 3 additions & 3 deletions module/apmbeego/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm/module/apmsql v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm/module/apmsql v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmchi/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmchi
require (
github.com/go-chi/chi v4.0.2+incompatible
github.com/stretchr/testify v1.4.0
go.elastic.co/apm v1.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmecho/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
)

Expand Down
4 changes: 2 additions & 2 deletions module/apmechov4/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
)

Expand Down
4 changes: 2 additions & 2 deletions module/apmelasticsearch/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module go.elastic.co/apm/module/apmelasticsearch

require (
github.com/stretchr/testify v1.4.0
go.elastic.co/apm v1.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
)

Expand Down
4 changes: 2 additions & 2 deletions module/apmelasticsearch/internal/integration/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmelasticsearch v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmelasticsearch v1.10.0
)

replace go.elastic.co/apm => ../../../..
Expand Down
2 changes: 0 additions & 2 deletions module/apmelasticsearch/internal/integration/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80 h1:Ao/3l156eZf2AW5wK8a7/smtodRU+gha3+BeqJ69lRk=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
Expand Down
4 changes: 2 additions & 2 deletions module/apmgin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmgocql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
6 changes: 3 additions & 3 deletions module/apmgokit/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmgrpc v1.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmgrpc v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
google.golang.org/grpc v1.17.0
)
Expand Down
2 changes: 1 addition & 1 deletion module/apmgometrics/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmgopg/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmsql v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmsql v1.10.0
mellium.im/sasl v0.2.1 // indirect
)

Expand Down
5 changes: 3 additions & 2 deletions module/apmgopgv10/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ module go.elastic.co/apm/module/apmgopgv10

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.9.0
go.elastic.co/apm/module/apmsql v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmsql v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmgoredis/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
2 changes: 1 addition & 1 deletion module/apmgoredisv8/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
4 changes: 2 additions & 2 deletions module/apmgorilla/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmgorm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmsql v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmsql v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmgormv2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module go.elastic.co/apm/module/apmgormv2

require (
github.com/stretchr/testify v1.5.1
go.elastic.co/apm v1.9.0
go.elastic.co/apm/module/apmsql v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmsql v1.10.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
Expand Down
4 changes: 2 additions & 2 deletions module/apmgrpc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module go.elastic.co/apm/module/apmgrpc
require (
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0
github.com/stretchr/testify v1.4.0
go.elastic.co/apm v1.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
google.golang.org/grpc v1.17.0
)
Expand Down
2 changes: 1 addition & 1 deletion module/apmhttp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
golang.org/x/text v0.3.2 // indirect
)
Expand Down
4 changes: 2 additions & 2 deletions module/apmhttprouter/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmlambda/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmlogrus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
)

Expand Down
2 changes: 1 addition & 1 deletion module/apmmongo/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51 // indirect
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect
github.com/xdg/stringprep v1.0.0 // indirect
go.elastic.co/apm v1.9.0
go.elastic.co/apm v1.10.0
go.mongodb.org/mongo-driver v1.0.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
golang.org/x/text v0.3.2 // indirect
Expand Down
4 changes: 2 additions & 2 deletions module/apmnegroni/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmot/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmprometheus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmredigo/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmrestful/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0
go.elastic.co/apm/module/apmhttp v1.9.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
)

replace go.elastic.co/apm => ../..
Expand Down
Loading

0 comments on commit ba58cd6

Please sign in to comment.