Skip to content

Commit c8a2c0c

Browse files
committed
Release 1.5.12
1 parent 8c1ef6c commit c8a2c0c

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Then once you start an application, you will get a warning about the `:pubsub` k
1212

1313
Phoenix built-in guides have been restructured and revamped, providing a better navigation structure and more content.
1414

15+
### 1.5.12 (2021-08-24)
16+
17+
### Bug Fixes
18+
* [Router] Ensure we properly track all Plug compile-time dependencies. This may increase compilation times during test, to address it, you may set `config :phoenix, :plug_init_mode, :runtime` in your `config/test.exs`
19+
1520
### 1.5.11 (2021-08-20)
1621

1722
### Bug Fixes
@@ -21,7 +26,6 @@ Phoenix built-in guides have been restructured and revamped, providing a better
2126

2227
### Bug Fixes
2328
* [Channel] Push proper close event to client on duplicate topic shutdown
24-
* [Router] Ensure we properly track all Plug compile-time dependencies. This may increase compilation times during test, to address it, you may set `config :phoenix, :plug_init_mode, :runtime` in your `config/test.exs`
2529
* [View] Do not render root layout outside of layout formats
2630

2731
### JavaScript Client Enhancements

assets/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phoenix",
3-
"version": "1.5.11",
3+
"version": "1.5.12",
44
"description": "The official JavaScript client for the Phoenix web framework.",
55
"license": "MIT",
66
"main": "./priv/static/phoenix.js",

guides/introduction/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Elixir 1.6.3
4343
Once we have Elixir and Erlang, we are ready to install the Phoenix application generator:
4444

4545
```console
46-
$ mix archive.install hex phx_new 1.5.11
46+
$ mix archive.install hex phx_new 1.5.12
4747
```
4848

4949
We will use this generator to generate new applications in the next guide, called [Up and Running](up_and_running.html).

installer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides `phx.new` installer as an archive.
44

55
To install from hex, run:
66

7-
$ mix archive.install hex phx_new 1.5.11
7+
$ mix archive.install hex phx_new 1.5.12
88

99
To build and install it locally,
1010
ensure any previous archive versions are removed:

installer/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Phx.New.MixProject do
22
use Mix.Project
33

4-
@version "1.5.11"
4+
@version "1.5.12"
55
@github_path "phoenixframework/phoenix"
66
@url "https://github.com/#{@github_path}"
77

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Phoenix.MixProject do
22
use Mix.Project
33

4-
@version "1.5.11"
4+
@version "1.5.12"
55

66
# If the elixir requirement is updated, we need to make the installer
77
# use at least the minimum requirement used here. Although often the

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phoenix",
3-
"version": "1.5.11",
3+
"version": "1.5.12",
44
"description": "The official JavaScript client for the Phoenix web framework.",
55
"license": "MIT",
66
"main": "./priv/static/phoenix.js",

0 commit comments

Comments
 (0)