Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Prepare v1.15.0 version #1165

Merged
merged 2 commits into from
Dec 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ endif::[]
[[unreleased]]
=== Unreleased

https://github.com/elastic/apm-agent-go/compare/v1.14.0...master[View commits]
https://github.com/elastic/apm-agent-go/compare/v1.15.0...master[View commits]

[[release-notes-1.x]]
=== Go Agent version 1.x

[[release-notes-1.15.0]]
==== 1.15.0 - 2021/12/08

- Deprecate `http.request.socket.encrypted` and stop recording it in `module/apmhttp`, `module/apmgrpc` and `module/apmfiber`. {pull}1129[#(1129)]
- Collect and send span destination service timing statistics about the dropped spans to the apm-server. {pull}1132[#(1132)]
Expand All @@ -32,9 +38,6 @@ https://github.com/elastic/apm-agent-go/compare/v1.14.0...master[View commits]
- Fixed a data race related to HTTP request header sanitisation {pull}1159[#(1159)]
- `apm.CaptureError`, `apm.Error.SetTransaction`, and `apm.Error.SetSpan` will now set the associated transaction or span's default outcome to "failure" {pull}1160[#(1160)]

[[release-notes-1.x]]
=== Go Agent version 1.x

[[release-notes-1.14.0]]
==== 1.14.0 - 2021/09/22

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.15.x |2023-06-07 |1.16.0
|1.14.x |2023/03/22 |1.15.0
|1.13.x |2023/02/03 |1.14.0
|1.12.x |2022/11/25 |1.13.0
Expand Down
6 changes: 3 additions & 3 deletions internal/apmgodog/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ go 1.13

require (
github.com/cucumber/godog v0.12.2
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmgrpc v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmgrpc v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.0
go.elastic.co/fastjson v1.1.0
google.golang.org/grpc v1.21.1
)
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.14.0"
AgentVersion = "1.15.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.14.0
require go.elastic.co/apm/module/apmhttp v1.15.0

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

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

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmazure/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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 v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.0
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
)
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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm/module/apmsql v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.0
go.elastic.co/apm/module/apmsql v1.15.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 v1.5.1
github.com/stretchr/testify v1.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.0
)

replace go.elastic.co/apm => ../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmchiv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4 // indirect
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmelasticsearch v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmelasticsearch v1.15.0
)

replace go.elastic.co/apm => ../../../..
Expand Down
4 changes: 2 additions & 2 deletions module/apmfasthttp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require (
github.com/stretchr/testify v1.6.1
github.com/valyala/bytebufferpool v1.0.0
github.com/valyala/fasthttp v1.26.0
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.0
)

replace (
Expand Down
6 changes: 3 additions & 3 deletions module/apmfiber/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ require (
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
github.com/valyala/fasthttp v1.29.0
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmfasthttp v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmfasthttp v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.7.2
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
gopkg.in/yaml.v2 v2.2.2 // indirect
)

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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmgrpc v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmgrpc v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
gopkg.in/yaml.v2 v2.2.2 // indirect
)

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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmsql v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmsql v1.15.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.14.0
go.elastic.co/apm/module/apmsql v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmsql v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
gopkg.in/yaml.v2 v2.2.2 // indirect
)

Expand Down
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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmsql v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmsql v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmsql v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmsql v1.15.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 @@ -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 v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
golang.org/x/text v0.3.2 // indirect
gopkg.in/yaml.v2 v2.2.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.14.0
go.elastic.co/apm v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
gopkg.in/yaml.v2 v2.2.2 // 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 @@ -2,7 +2,7 @@ module go.elastic.co/apm/module/apmmongo

require (
github.com/stretchr/testify v1.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
go.mongodb.org/mongo-driver v1.5.1
)

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.6.1
github.com/urfave/negroni v1.0.0
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm/module/apmhttp v1.14.0
go.elastic.co/apm v1.15.0
go.elastic.co/apm/module/apmhttp v1.15.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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
gopkg.in/yaml.v2 v2.2.2 // indirect
)

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.6.1
go.elastic.co/apm v1.14.0
go.elastic.co/apm v1.15.0
)

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