Skip to content

Commit 4838611

Browse files
committed
release v1.1.8
1 parent 223d351 commit 4838611

8 files changed

Lines changed: 14 additions & 8 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,12 @@ 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.8 (2025-08-20)
271+
272+
### Bug fixes
273+
274+
* Fix race condition where patches were discarded when a join was still pending ([#3957](https://github.com/phoenixframework/phoenix_live_view/issues/3957))
275+
270276
## v1.1.7 (2025-08-18)
271277

272278
### 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.7"
4+
@version "1.1.8"
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.7",
3+
"version": "1.1.8",
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
@@ -5806,7 +5806,7 @@ removing illegal node: "${(childNode.outerHTML || childNode.nodeValue).trim()}"
58065806
}
58075807
// public
58085808
version() {
5809-
return "1.1.7";
5809+
return "1.1.8";
58105810
}
58115811
isProfileEnabled() {
58125812
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)