Skip to content

Commit 24090b5

Browse files
committed
Release v1.1.29
1 parent cc83643 commit 24090b5

8 files changed

Lines changed: 18 additions & 8 deletions

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,16 @@ When `:debug_heex_annotations` is enabled, LiveView will now annotate the beginn
267267

268268
To enable this, a new callback called `annotate_slot/4` was added. Custom implementations of `Phoenix.LiveView.TagEngine` must implement it accordingly.
269269

270+
## v1.1.29 (2026-05-04)
271+
272+
### Bug fixes
273+
274+
* Prevent JS crash when hook has a duplicate ID ([#4196](https://github.com/phoenixframework/phoenix_live_view/issues/4196))
275+
* Recompute scroll container for phx-viewport bindings if it is no longer available ([#4169](https://github.com/phoenixframework/phoenix_live_view/issues/4169))
276+
* Fix phx-viewport events not firing when container has horizontal overflow ([#3897](https://github.com/phoenixframework/phoenix_live_view/issues/3897))
277+
* Handle locks on skipped nodes ([#4209](https://github.com/phoenixframework/phoenix_live_view/issues/4209))
278+
* Use `moveBefore` if available when reordering stream elements ([#4212](https://github.com/phoenixframework/phoenix_live_view/issues/4212))
279+
270280
## v1.1.28 (2026-03-27)
271281

272282
### Bug fixes

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.1.28"
4+
@version "1.1.29"
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.1.28",
3+
"version": "1.1.29",
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
@@ -5992,7 +5992,7 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
59925992
}
59935993
// public
59945994
version() {
5995-
return "1.1.28";
5995+
return "1.1.29";
59965996
}
59975997
isProfileEnabled() {
59985998
return this.sessionStorage.getItem(PHX_LV_PROFILE) === "true";

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)