Phoenix 1.2.0 release prep (#248)
This commit is contained in:
parent
fba098719d
commit
385ee4843a
|
@ -1,5 +1,19 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.0
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add support for LiveView courtesy of @derekkraan
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Do not set a span as errored for exceptions, only based on 5xx HTTP status
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Minimum supported Elixir version changed to 1.11.
|
||||||
|
|
||||||
## 1.1.1
|
## 1.1.1
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|
|
@ -22,11 +22,16 @@ may be supplied.
|
||||||
```elixir
|
```elixir
|
||||||
def deps do
|
def deps do
|
||||||
[
|
[
|
||||||
{:opentelemetry_phoenix, "~> 1.1"}
|
{:opentelemetry_phoenix, "~> 1.2"}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
It is high recommended to also install [OpentelemetryCowboy](https://hex.pm/packages/opentelemetry_cowboy) to capture the full
|
||||||
|
request lifecycle. Phoenix only handles part of the request lifecycle which can lead
|
||||||
|
to incomplete request durations and lost traces for requests terminated at the socket
|
||||||
|
level or before reaching Phoenix.
|
||||||
|
|
||||||
## Compatibility Matrix
|
## Compatibility Matrix
|
||||||
|
|
||||||
| OpentelemetryPhoenix Version | Otel Version | Notes |
|
| OpentelemetryPhoenix Version | Otel Version | Notes |
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
defmodule OpentelemetryPhoenix.MixProject do
|
defmodule OpentelemetryPhoenix.MixProject do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@version "1.1.1"
|
@version "1.2.0"
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in New Issue