This project is mirrored from https://github.com/phoenixframework/phoenix.
Pull mirroring updated .
- Nov 07, 2018
-
-
Chris McCord authored
-
Chris McCord authored
-
Tan Jay Jun authored
-
Stephen Bussey authored
The timer state must be known in order to know if the channel was attempting to rejoin or not. It is not correct to start a channel rejoin timer if it was not previously running.
-
- Nov 06, 2018
-
-
Tan Jay Jun authored
-
Jeff Kreeftmeijer authored
Currently, context tests generated by running the html generator (`mix phx.gen.context Accounts User users name:string`), produce a test with an extra line with some trailing whitespace (illustrated with dots here): test "update_user/2 with valid data updates the user" do user = user_fixture() assert {:ok, %User{} = user} = Accounts.update_user(user, @update_attrs) ······ assert user.name == "some updated name" end This patch removes both newlines from the template, resulting in a generated test like this: test "update_user/2 with valid data updates the user" do user = user_fixture() assert {:ok, %User{} = user} = Accounts.update_user(user, @update_attrs) assert user.name == "some updated name" end
-
Gerry Shaw authored
Correctly prints `cd path/to/project` when project is created in a nested directory.
-
- Nov 05, 2018
-
-
Fernando Tapia Rico authored
The documentation of "mix format" states that the parent .formatter.exs must not specify files in its :inputs configuration that are inside the subdirectories listed in the :subdirectories option. If this happens, the behaviour of which formatter configuration will be picked is unspecified.
-
Christian Kruse authored
-
José Valim authored
-
- Nov 02, 2018
-
-
José Valim authored
-
- Nov 01, 2018
-
-
Chris McCord authored
-
Joshua Nussbaum authored
-
- Oct 31, 2018
-
-
Chris McCord authored
-
- Oct 30, 2018
-
-
Chris McCord authored
-
Chris McCord authored
-
Chris McCord authored
-
José Valim authored
-
- Oct 29, 2018
-
-
José Valim authored
-
- Oct 26, 2018
-
-
Ben Olive authored
Fixes #3105
-
Dave Lucia authored
* upgrade mocha due to security audit
-
- Oct 25, 2018
-
-
Gerry Shaw authored
* Remove hardcoded 1.3.0 reference * Update Phoenix specific mix tasks section
-
Gary Rennie authored
-
Dave Lucia authored
-
Hubert Łępicki authored
The feature itself was discussed here: https://github.com/phoenixframework/phoenix/pull/2887
-
- Oct 24, 2018
-
-
Fernando Tapia Rico authored
-
Fernando Tapia Rico authored
-
- Oct 21, 2018
-
-
José Valim authored
-
- Oct 20, 2018
-
-
Chris McCord authored
-
Fernando Tapia Rico authored
The Plug options passed when building the route are not escaped while building the `:dispatch` expression in `Phoenix.Router.Route.exprs/1`. That produces `CompileError`s when building and unquoting the matches in `Phoenix.Router.__before_compile__/1`
-
José Valim authored
* Prepare for Plug v1.7 and default to Cowboy 2.0 * Start plug_cowboy instead * Require Plug v1.7
-
Benjamin Milde authored
The mix task for phx.gen.cert should also propose `cipher_suite: :string` like the comments in dev.exs (#3111)
-
Benjamin Milde authored
-
- Oct 17, 2018
-
-
Gary Rennie authored
Using `FunctionClauseError` results in showing the available clauses when displaying the error message. This also renders nicely in the plug exceptions page. Instead of using `plug_status` in the exception, the `Plug.Exception` protocol is explicitly defined for the `ActionClauseError` to allow easy transitioning between `ActionClauseError` and `FunctionClauseError`.` This closes #2657
-
- Oct 15, 2018
-
-
Chris McCord authored
-
Chris McCord authored
-
Chris McCord authored
-
Chris McCord authored
-
https://github.com/akshbn/phoenixChris McCord authored
Merge branch 'improved_getcsrftoken_docs' of https://github.com/akshbn/phoenix into akshbn-improved_getcsrftoken_docs
-
Chris McCord authored
-