Skip to content

Commit d37acf1

Browse files
committed
release v1.1.19
1 parent f8922e3 commit d37acf1

File tree

8 files changed

+20
-8
lines changed

8 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,18 @@ 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.19 (2025-12-12)
271+
272+
### Bug fixes
273+
274+
* Ensure stale token redirect uses the correct URL ([#4068](https://github.com/phoenixframework/phoenix_live_view/issues/4068))
275+
* Ignore events from elements that are not connected to the DOM ([#4066](https://github.com/phoenixframework/phoenix_live_view/issues/4066))
276+
* Skip `phx-click-away` if clicked element is hidden ([#4070](https://github.com/phoenixframework/phoenix_live_view/issues/4070))
277+
278+
### Enhancements
279+
280+
* Allow disabling symlink warning for colocated js ([#4057](https://github.com/phoenixframework/phoenix_live_view/pull/4057))
281+
270282
## v1.1.18 (2025-11-25)
271283

272284
### 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.18"
4+
@version "1.1.19"
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.18",
3+
"version": "1.1.19",
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
@@ -5899,7 +5899,7 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
58995899
}
59005900
// public
59015901
version() {
5902-
return "1.1.18";
5902+
return "1.1.19";
59035903
}
59045904
isProfileEnabled() {
59055905
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)