Req v0.2.0 (#243)

This commit is contained in:
Bryan Naegele 2023-11-10 17:03:08 -07:00 committed by GitHub
parent 7a8f87d5bb
commit 1bf2f7f295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -1,13 +1,16 @@
# 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).
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

View File

@ -5,7 +5,7 @@ defmodule OpentelemetryReq.MixProject do
[
app: :opentelemetry_req,
description: description(),
version: "0.1.2",
version: "0.2.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),