Phoenix 1.2.0 release prep (#248)

This commit is contained in:
Bryan Naegele 2024-02-04 21:44:37 -07:00 committed by GitHub
parent fba098719d
commit 385ee4843a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 2 deletions

View File

@ -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

View File

@ -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 |

View File

@ -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
[ [