Skip to content

Commit

Permalink
Bump version to 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
axw committed Feb 1, 2021
1 parent dd3e8c5 commit c5c7e21
Show file tree
Hide file tree
Showing 37 changed files with 64 additions and 59 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,18 @@ endif::[]
[[unreleased]]
=== Unreleased
https://github.com/elastic/apm-agent-go/compare/v1.10.0...master[View commits]
- Make TRANSACTION_IGNORE_URLS dynamically configurable: {pull}872[#872]
https://github.com/elastic/apm-agent-go/compare/v1.11.0...master[View commits]
[[release-notes-1.x]]
=== Go Agent version 1.x
[[release-notes-1.11.0]]
==== 1.11.0 - 2021/02/01
https://github.com/elastic/apm-agent-go/releases/tag/v1.11.0[View release]
- Make TRANSACTION_IGNORE_URLS dynamically configurable: {pull}872[#872]
[[release-notes-1.10.0]]
==== 1.10.0 - 2021/01/20
Expand Down
1 change: 1 addition & 0 deletions docs/upgrading.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The table below is a simplified description of this policy.
[options="header"]
|====
|Agent version |EOL Date |Maintained until
|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
|1.8.x |2021-11-06 |1.9.0
Expand Down
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.10.0"
AgentVersion = "1.11.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.10.0
require go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm/module/apmsql v1.10.0
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
)

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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm/module/apmelasticsearch v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmelasticsearch v1.11.0
)

replace go.elastic.co/apm => ../../../..
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.10.0
go.elastic.co/apm/module/apmhttp v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmhttp v1.11.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.10.0
go.elastic.co/apm v1.11.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.10.0
go.elastic.co/apm/module/apmgrpc v1.10.0
go.elastic.co/apm/module/apmhttp v1.10.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
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.10.0
go.elastic.co/apm v1.11.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.10.0
go.elastic.co/apm/module/apmsql v1.10.0
go.elastic.co/apm v1.11.0
go.elastic.co/apm/module/apmsql v1.11.0
mellium.im/sasl v0.2.1 // indirect
)

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

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

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion module/apmzap/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0
go.elastic.co/apm v1.11.0
go.uber.org/atomic v1.3.2 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.9.1
Expand Down
2 changes: 1 addition & 1 deletion module/apmzerolog/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/rs/zerolog v1.14.3
github.com/stretchr/testify v1.4.0
go.elastic.co/apm v1.10.0
go.elastic.co/apm v1.11.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion scripts/genmod/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module genmod

require (
github.com/pkg/errors v0.8.1
go.elastic.co/apm v1.10.0
go.elastic.co/apm v1.11.0
)

replace go.elastic.co/apm => ../..
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ package apm // import "go.elastic.co/apm"

const (
// AgentVersion is the Elastic APM Go Agent version.
AgentVersion = "1.10.0"
AgentVersion = "1.11.0"
)

0 comments on commit c5c7e21

Please sign in to comment.