diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f39858..85a45902 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 1.1.0 (2 Nov 2023) + +### Changes + +* Messages sent to Bandit HTTP/1 handlers no longer intentionally crash the + handler process but are now logged in the same manner as messages sent to a + no-op GenServer (#259) +* Messages regarding normal termination of monitored processes are no longer + handled by the WebSocket handler, but are now passed to the configured + `c:WebSock.handle_info/2` callback (#259) + +### Enhancements + +* Add support for `Phoenix.Endpoint.server_info/1` (now in Phoenix main; #258) +* Add support for `:max_heap_size` option in WebSocket handler (introduced in + websock_adapter 0.5.5; #255, thanks @v0idpwn!) + ## 1.0.0 (18 Oct 2023) ### Changes diff --git a/mix.exs b/mix.exs index 2f0727cf..879afae7 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Bandit.MixProject do def project do [ app: :bandit, - version: "1.0.0", + version: "1.1.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, deps: deps(),