From cfd5a6e91b0d60c5dc84ad5874506444f5d65251 Mon Sep 17 00:00:00 2001 From: Chris McCord Date: Tue, 23 Feb 2021 15:22:42 -0500 Subject: [PATCH] Release 1.5.8 --- CHANGELOG.md | 10 ++++++++++ assets/package.json | 2 +- guides/introduction/installation.md | 2 +- installer/README.md | 2 +- installer/mix.exs | 2 +- mix.exs | 2 +- package.json | 2 +- 7 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a199a1c6..22992fa990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ Then once you start an application, you will get a warning about the `:pubsub` k Phoenix built-in guides have been restructured and revamped, providing a better navigation structure and more content. +### 1.5.8 (2021-02-23) + +### Enhancements + * [Endpoint] - Add `:log_access_url` config to endpoint start + * [Router] - Include route information in router_dispatch exception for telemetry events + * [Router] - Optimize router code generation to reduce compilation dependencies + +### JavaScript client + * Default channel `push` payload to empty object for backwards compatibility + ### 1.5.7 (2020-11-20) ### Enhancements diff --git a/assets/package.json b/assets/package.json index f837dfd178..d43269f44b 100644 --- a/assets/package.json +++ b/assets/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.5.7", + "version": "1.5.8", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "main": "./priv/static/phoenix.js", diff --git a/guides/introduction/installation.md b/guides/introduction/installation.md index 3e3b5a5980..b4d5fbdf90 100644 --- a/guides/introduction/installation.md +++ b/guides/introduction/installation.md @@ -43,7 +43,7 @@ Elixir 1.6.3 Once we have Elixir and Erlang, we are ready to install the Phoenix application generator: ```console -$ mix archive.install hex phx_new 1.5.7 +$ mix archive.install hex phx_new 1.5.8 ``` We will use this generator to generate new applications in the next guide, called [Up and Running](up_and_running.html). diff --git a/installer/README.md b/installer/README.md index b5be0ab6b7..4cf06aad07 100644 --- a/installer/README.md +++ b/installer/README.md @@ -4,7 +4,7 @@ Provides `phx.new` installer as an archive. To install from hex, run: - $ mix archive.install hex phx_new 1.5.7 + $ mix archive.install hex phx_new 1.5.8 To build and install it locally, ensure any previous archive versions are removed: diff --git a/installer/mix.exs b/installer/mix.exs index d1e574ef79..1b617033c3 100644 --- a/installer/mix.exs +++ b/installer/mix.exs @@ -1,7 +1,7 @@ defmodule Phx.New.MixProject do use Mix.Project - @version "1.5.7" + @version "1.5.8" @github_path "phoenixframework/phoenix" @url "https://github.com/#{@github_path}" diff --git a/mix.exs b/mix.exs index 6281eb207a..e8e3958c0f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Phoenix.MixProject do use Mix.Project - @version "1.5.7" + @version "1.5.8" # If the elixir requirement is updated, we need to make the installer # use at least the minimum requirement used here. Although often the diff --git a/package.json b/package.json index 5d1c67f663..4cbed1ab7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.5.7", + "version": "1.5.8", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "main": "./priv/static/phoenix.js",