Skip to content

Commit 6c2dc63

Browse files
committed
Release v1.2.4
1 parent d4b8703 commit 6c2dc63

8 files changed

Lines changed: 16 additions & 8 deletions

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,14 @@ by setting `phx-ignore-missing-id` or disable it globally with the `:missing_for
115115

116116
See the module documentation or `Phoenix.LiveViewTest` for more information.
117117

118+
## v1.2.4 (2026-06-29)
119+
120+
### Bug fixes
121+
122+
* Only warn about missing form ID when recovery actually applies ([#4315](https://github.com/phoenixframework/phoenix_live_view/pull/4315))
123+
* Add common img attributes to `live_img_preview/1` that were missing after cleaning the global attribute list in 1.2.0 ([#4316](https://github.com/phoenixframework/phoenix_live_view/issues/4316))
124+
* Fix colocated CSS attributes being dropped if using colocated JS in the same component ([#4319](https://github.com/phoenixframework/phoenix_live_view/pull/4319))
125+
118126
## v1.2.3 (2026-06-12)
119127

120128
This is a followup release to v1.2.2 that fixes the TypeScript declaration files being in the wrong subfolder.

mix.exs

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

4-
@version "1.2.3"
4+
@version "1.2.4"
55

66
def project do
77
[

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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phoenix_live_view",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "The Phoenix LiveView JavaScript client.",
55
"license": "MIT",
66
"type": "module",

priv/static/phoenix_live_view.cjs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

priv/static/phoenix_live_view.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

priv/static/phoenix_live_view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6117,7 +6117,7 @@ removing illegal node: "${("outerHTML" in childNode && childNode.outerHTML || ch
61176117
* Returns the version of the LiveView client.
61186118
*/
61196119
version() {
6120-
return "1.2.3";
6120+
return "1.2.4";
61216121
}
61226122
/**
61236123
* Returns true if profiling is enabled. See {@link enableProfiling} and {@link disableProfiling}.

priv/static/phoenix_live_view.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)