Packages
phoenix
1.4.2
1.8.9
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.8.0-rc.4
1.8.0-rc.3
1.8.0-rc.2
1.8.0-rc.1
1.8.0-rc.0
1.7.24
1.7.23
1.7.22
1.7.21
1.7.20
1.7.19
1.7.18
1.7.17
1.7.16
1.7.15
1.7.14
1.7.13
1.7.12
1.7.11
1.7.10
1.7.9
1.7.8
1.7.7
1.7.6
1.7.5
1.7.4
1.7.3
1.7.2
1.7.1
1.7.0
1.7.0-rc.3
1.7.0-rc.2
1.7.0-rc.1
1.7.0-rc.0
1.6.17
1.6.16
1.6.15
1.6.14
1.6.13
1.6.12
1.6.11
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.6.0-rc.1
1.6.0-rc.0
1.5.15
1.5.14
1.5.13
1.5.12
1.5.11
1.5.10
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.5.0-rc.0
1.4.18
1.4.17
1.4.16
1.4.15
1.4.14
1.4.13
1.4.12
1.4.11
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.4.0-rc.3
1.4.0-rc.2
1.4.0-rc.1
1.4.0-rc.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.3.0-rc.3
1.3.0-rc.2
1.3.0-rc.1
1.3.0-rc.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.2.0-rc.1
1.2.0-rc.0
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.17.1
0.17.0
0.16.1
0.16.0
0.15.0
0.14.0
0.13.1
0.13.0
0.12.0
0.11.0
0.10.0
0.9.0
0.8.0
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Productive. Reliable. Fast. A productive web framework that does not compromise speed or maintainability.
Security advisory:
This version has known vulnerabilities.
View advisories
Current section
Files
Jump to
Current section
Files
CHANGELOG.md
# Changelog for v1.4
See the [upgrade guides](https://gist.github.com/chrismccord/bb1f8b136f5a9e4abc0bfc07b832257e) to bring your Phoenix 1.3.x apps up to speed, including instructions on upgrading to Cowboy 2 for HTTP support.
## The Socket <-> Transport contract
We have used the opportunity of writing the new Cowboy 2 adapter to do an overhaul in how `Phoenix.Socket` interacts with transports. The result is a new API that makes it very easy to implement new transports and also allows developers to provide custom socket implementations without ceremony. For example, if you would like to have direct control of the socket and bypass the channel implementation completely, it is now very straight-forward to do so. See the `Phoenix.Socket.Transport` behaviour for more information.
This overhaul means that the `transport/3` macro in `Phoenix.Socket` is deprecated. Instead of defining transports in your socket.ex file:
transport :websocket, Phoenix.Transport.Websocket,
key1: value1, key2: value2, key3: value3
transport :longpoll, Phoenix.Transport.LongPoll,
key1: value1, key2: value2, key3: value3
Configurations must be applied directly in your endpoint file via the `Phoenix.Endpoint.socket/3` macro:
socket "/socket", MyApp.UserSocket,
websocket: [key1: value1, key2: value2, key3: value3],
longpoll: [key1: value1, key2: value2, key3: value3]
Note the websocket/longpoll configuration given to socket/3 will only apply after you remove all `transport/3` calls from your socket definition. If you have explicitly upgraded to Cowboy 2, any transport defined with the `transport/3` macro will be ignored.
The old APIs for building transports are also deprecated. The good news is: adapting an existing transport to the new API is a less error prone process where you should mostly remove code.
## 1.4.2 (2019-03-13)
### Enhancements
* [Router] add `scoped_alias` to return the full alias with the current scope's aliased prefix
* [Router] add `alias: false` option to router definitions to to disable scope prefix on case by case basis
* [Router] Support any struct with :endpoint key in path/url helpers
* [Channel] Optimize channel join through non-blocking callback init
* [Endpoint] Log Web access URLs for HTTP and HTTPS configurations
* [phx.routes] Show socket paths for websocket and longpoll transports
* [phx.new] Add `--verbose` flag for verbose installer output
* [phx.gen.schema] Allow the app configuration to specify a custom migration module for the generated migration code
### Bug Fixes
* [phx.gen.json] Fix invalid map fields for generated json tests
* [phx.gen.html|json|context|schema] prohibit context or schema creation with the same name as the application causing incorrect aliases to be generated
## 1.4.1 (2019-02-12)
### Enhancements
* Optimize router helper generation for faster compilation
* Drop special convention for context locations
### Bug Fixes
* Add missing `:jason` to generated umbrella application
### JavaScript client bug fixes
* Fix reconnect regression experienced with spotty connections
## 1.4.0 (2018-11-07)
### Enhancements
* [phx.new] Update Ecto deps with the release of Ecto 3.0 including `phoenix_ecto` 4.0
* [phx.new] Import Ecto's `.formatter.exs` in new projects
* [phx.new] Use Ecto 3.0RC, with `ecto_sql` in new project deps
* [phx.new] Use Plug 1.7 with new `:plug_cowboy` dependency for cowboy adapter
* [phx.gen.html|json|schema|context] Support new Ecto 3.0 usec datetime types
* [Phoenix] Add `Phoenix.json_library/0` and replace `Poison` with `Jason` for JSON encoding in new projects
* [Endpoint] Add `Cowboy2Adapter` for HTTP2 support with cowboy2
* [Endpoint] The `socket/3` macro now accepts direct configuration about websockets and longpoll
* [Endpoint] Support MFA function in `:check_origin` config for custom origin checking
* [Endpoint] Add new `:phoenix_error_render` instrumentation callback
* [Endpoint] Log the configured url instead of raw IP when booting endpoint webserver
* [Endpoint] Allow custom keyword pairs to be passed to the socket `:connect_info` options.
* [Router] Display list of available routes on debugger 404 error page
* [Router] Raise on duplicate plugs in `pipe_through` scopes
* [Controller] Support partial file downloads with `:offset` and `:length` options to `send_download/3`
* [Controller] Add additional security headers to `put_secure_browser_headers` (`x-content-type-options`, `x-download-options`, and `x-permitted-cross-domain-policies`)
* [Controller] Add `put_router_url/2` to override the default URL generation pulled from endpoint configuration
* [Logger] Add whitelist support to `filter_parameters` logger configuration, via new `:keep` tuple format
* [Socket] Add new `phoenix_socket_connect` instrumentation
* [Socket] Improve error message when missing socket mount in endpoint
* [Logger] Log calls to user socket connect
* [Presence] Add `Presence.get_by_key` to fetch presences for specific user
* [CodeReloader] Add `:reloadable_apps` endpoint configuration option to allow recompiling local dependencies
* [ChannelTest] Respect user's configured ExUnit `:assert_receive_timeout` for macro assertions
### Bug Fixes
* Add missing `.formatter.exs` to Hex package for proper elixir formatter integration
* [phx.gen.cert] Fix usage inside umbrella applications
* [phx.new] Revert `Routes.static_url` in app layout in favor of original `Routes.static_path`
* [phx.new] Use `phoenix_live_reload` 1.2 to fix Hex version errors
* [phx.gen.json|html] Fix generator tests incorrectly encoding datetimes
* [phx.gen.cert] Fix generation of cert inside umbrella projects
* [Channel] Fix issue with WebSocket transport sending wrong ContentLength header with 403 response
* [Router] Fix forward aliases failing to expand within scope block
* [Router] Fix regression in router compilation failing to escape plug options
### phx.new installer
* Generate new Elixir 1.5+ child spec (therefore new apps require Elixir v1.5)
* Use webpack for asset bundling
### Deprecations
* Elixir 1.3 is no longer supported, Elixir 1.4+ is required
* [Controller] Passing a view in `render/3` and `render/4` is deprecated in favor of `put_view/2`
* [Endpoint] The `:handler` option in the endpoint is deprecated in favor of `:adapter`
* [Socket] `transport/3` is deprecated. The transport is now specified in the endpoint
* [Transport] The transport system has seen an overhaul and been drastically simplified. The previous mechanism for building transports is still supported but it is deprecated. Please see `Phoenix.Socket.Transport` for more information
### JavaScript client
* Add new instance-based Presence API with simplified synchronization callbacks
* Accept a function for socket and channel `params` for dynamic parameter generation when connecting and joining
* Fix race condition when presence diff arrives before state
* Immediately rejoin channels on socket reconnect for faster recovery after reconnection
* Fix reconnect caused by pending heartbeat
## v1.3
The CHANGELOG for v1.3 releases can be found [in the v1.3 branch](https://github.com/phoenixframework/phoenix/blob/v1.3/CHANGELOG.md).