Skip to content

Commit 72189f6

Browse files
committed
release v1.1.12
1 parent f6c87c4 commit 72189f6

File tree

8 files changed

+18
-8
lines changed

8 files changed

+18
-8
lines changed

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.12 (2025-09-14)
271+
272+
### Bug fixes
273+
274+
* Prevent HEEx line from being reported as uncovered when using a pattern in `:let={}` ([#3989](https://github.com/phoenixframework/phoenix_live_view/pull/3989))
275+
276+
### Enhancements
277+
278+
* Automatically symlink `assets/node_modules` folder for colocated hooks (see the documentation for `Phoenix.LiveView.ColocatedJS`, [#3988](https://github.com/phoenixframework/phoenix_live_view/pull/3988))
279+
270280
## v1.1.11 (2025-09-04)
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.11"
4+
@version "1.1.12"
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.11",
3+
"version": "1.1.12",
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
@@ -5811,7 +5811,7 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
58115811
}
58125812
// public
58135813
version() {
5814-
return "1.1.11";
5814+
return "1.1.12";
58155815
}
58165816
isProfileEnabled() {
58175817
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)