Req v0.2.0 (#243)
This commit is contained in:
parent
7a8f87d5bb
commit
1bf2f7f295
|
@ -1,13 +1,16 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Unreleased
|
## 0.2.0
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Add support for Req v0.4
|
||||||
|
|
||||||
* Change span_name to follow [OpenTelemetry http spec](https://opentelemetry.io/docs/reference/specification/trace/semantic_conventions/http/#name)
|
|
||||||
* Use span_name if provided, otherwise use path_params. If there are no path_params,
|
|
||||||
default to http.method
|
|
||||||
* Change http.url to follow [OpenTelemetry http spec](https://opentelemetry.io/docs/reference/specification/trace/semantic_conventions/http/#http-client).
|
* Change http.url to follow [OpenTelemetry http spec](https://opentelemetry.io/docs/reference/specification/trace/semantic_conventions/http/#http-client).
|
||||||
Full HTTP request URL in the form scheme://host[:port]/path?query[#fragment].
|
|
||||||
Must not contain credentials passed via URL.
|
* Full HTTP request URL in the form `scheme://host[:port]/path?query[#fragment]`
|
||||||
|
|
||||||
|
* Strip user credentials passed via URL
|
||||||
|
|
||||||
## 0.1.2
|
## 0.1.2
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ defmodule OpentelemetryReq.MixProject do
|
||||||
[
|
[
|
||||||
app: :opentelemetry_req,
|
app: :opentelemetry_req,
|
||||||
description: description(),
|
description: description(),
|
||||||
version: "0.1.2",
|
version: "0.2.0",
|
||||||
elixir: "~> 1.11",
|
elixir: "~> 1.11",
|
||||||
start_permanent: Mix.env() == :prod,
|
start_permanent: Mix.env() == :prod,
|
||||||
deps: deps(),
|
deps: deps(),
|
||||||
|
|
Loading…
Reference in New Issue