Skip to content

Commit

Permalink
Release 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Feb 23, 2021
1 parent ce530e3 commit cfd5a6e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion guides/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
@@ -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}"

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit cfd5a6e

Please sign in to comment.