diff --git a/CHANGELOG.md b/CHANGELOG.md index ee8f6e18bf..79ae43bab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,9 +46,10 @@ styled with Tailwind CSS by default. You can opt-out of Tailwind CSS with the `- flag (the Tailwind CSS classes are kept in the generated components as reference for future styling). -## 1.7.11 +## 1.7.11 (2024-02-01) ### Enhancements + * [phx.new] Default to the [Bandit webserver](https://github.com/mtrudel/bandit) for newly generated applications * [phx.new] Enable longpoll transport by default and auto fallback when websocket fails for newly generated applications ### JavaScript Client Enhancements diff --git a/assets/package-lock.json b/assets/package-lock.json index de09e0970a..57c6faf0c6 100644 --- a/assets/package-lock.json +++ b/assets/package-lock.json @@ -1,12 +1,12 @@ { "name": "phoenix", - "version": "1.7.10", + "version": "1.7.11", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "phoenix", - "version": "1.7.10", + "version": "1.7.11", "license": "MIT", "devDependencies": { "@babel/cli": "7.14.3", diff --git a/assets/package.json b/assets/package.json index 9f7a89ee19..0342f66b08 100644 --- a/assets/package.json +++ b/assets/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.7.10", + "version": "1.7.11", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "main": "./assets/js/phoenix/index.js", diff --git a/installer/mix.exs b/installer/mix.exs index 7bc7e50ea1..ca22a38052 100644 --- a/installer/mix.exs +++ b/installer/mix.exs @@ -6,7 +6,7 @@ end defmodule Phx.New.MixProject do use Mix.Project - @version "1.7.10" + @version "1.7.11" @scm_url "https://github.com/phoenixframework/phoenix" # If the elixir requirement is updated, we need to update: diff --git a/mix.exs b/mix.exs index 6272eef344..96d5270453 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule Phoenix.MixProject do end end - @version "1.7.10" + @version "1.7.11" @scm_url "https://github.com/phoenixframework/phoenix" # If the elixir requirement is updated, we need to make the installer diff --git a/package.json b/package.json index 9a5feb4ac7..e0ddc376be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phoenix", - "version": "1.7.10", + "version": "1.7.11", "description": "The official JavaScript client for the Phoenix web framework.", "license": "MIT", "module": "./priv/static/phoenix.mjs",