Skip to content

Commit 14b13f5

Browse files
committed
release v1.1.3
1 parent 0457420 commit 14b13f5

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,19 +265,22 @@ When `:debug_heex_annotations` is enabled, LiveView will now annotate the beginn
265265

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

268-
## v1.1.3 (Unreleased)
268+
## v1.1.3 (2025-08-05)
269269

270270
### Bug fixes
271271

272272
* Fix warning when importing LiveView JS ([#3926](https://github.com/phoenixframework/phoenix_live_view/pull/3926))
273273
* Ensure form recovery respects fieldsets ([#3921](https://github.com/phoenixframework/phoenix_live_view/pull/3921))
274274
* LiveViewTest: Fix crasj when submitting a form with custom submitter, but without ID ([#3927](https://github.com/phoenixframework/phoenix_live_view/issues/3927))
275275
* LiveViewTest: Ensure whitespace in textarea content is preserved when submitting a form ([#3928](https://github.com/phoenixframework/phoenix_live_view/pull/3928))
276+
* Make hook types less strict ([#3913](https://github.com/phoenixframework/phoenix_live_view/issues/3913))
276277

277278
### Enhancements
278279

279280
* HTMLFormatter: do not try to format attributes into a single line when they are spread over multiple lines.
280281
This follows the behavior of the Elixir formatter that also respects newlines.
282+
* Re-enable component change tracking in case the dynamic expression does not have any dependencies, for example:
283+
`<.my_component some="key" {%{static: "map"}}>` ([#3936](https://github.com/phoenixframework/phoenix_live_view/pull/3936))
281284

282285
## v1.1.2 (2025-07-31)
283286

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.2"
4+
@version "1.1.3"
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.2",
3+
"version": "1.1.3",
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
@@ -5785,7 +5785,7 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
57855785
}
57865786
// public
57875787
version() {
5788-
return "1.1.2";
5788+
return "1.1.3";
57895789
}
57905790
isProfileEnabled() {
57915791
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)