Skip to content

Update dependency phoenix_live_view to v1 - #11

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/phoenix_live_view-1.x
Open

Update dependency phoenix_live_view to v1#11
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/phoenix_live_view-1.x

Conversation

@renovate

@renovate renovate Bot commented Dec 6, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
phoenix_live_view (source) prod major ~> 0.20.4~> 1.2.0

Release Notes

phoenixframework/phoenix_live_view (phoenix_live_view)

v1.2.11

Compare Source

Bug fixes
  • Ensure stale diffs are discarded when view rejoins before the initial join succeeds (#​4405)
  • Ensure a LiveComponent's async tasks are cancelled when it is removed (#​4401)
  • Ensure formatter does not migrate expressions that close early (#​4409)

v1.2.10

Compare Source

Bug fixes
  • Preserve onReply exceptions in hook pushEvent / pushEventTo (#​4381)
  • Handle writer errors like other upload entry errors (#​4370)
  • Cancel scheduled submit when auto upload is invalid (#​3391)
  • Fix max_entries not working properly with auto uploads (#​2835)
  • Fix testing file uploads with multiple entries (#​3480)
  • Remove native input required attribute when LiveView tracks uploads (#​4377)
  • Accept new drops afrer too_many_files with max_entries 1 (#​3368)
  • Fix runtime hook added node tracking (#​4387)
  • Preserve zero-duration JS transitions (#​4385)
  • Cancel submit in EntryUploader.error (#​4382)
  • Cancel infinite scroll throttle timers on destroy (#​4384)
  • Clear focus stack entries on view teardown (#​4386)
  • Fix join completion for empty recovery markup (#​4390)
  • Fix missing return after child join failure (#​4391)
  • Stop page loading when pushes fail (#​4392)
  • Ensure external metadata failures are reported consistently (#​4397)
Enhancements
  • Mark morphdom as dev dependency, as it is already included in the bundle
  • Allow dynamically updating phx-hook attribute (#​4153)
  • Allow external uploads to be notified on cancel (#​4395)
  • Pass toEl to hook beforeUpdate (#​3616)
  • Improve error message when attributes have been defined after an embedded template (#​4396)
  • Add Phoenix.LiveView.navigation_type/2 (#​4393)
  • Cancel external uploads when navigating away (#​4398)
  • Allow to opt out of phx-remove cascade on navigation (#​4394)
  • Make phx-drop-target-active more reliable (#​4399)

v1.2.9

Compare Source

Security fixes
  • CVE-2026-64941: Fix open redirect in redirect/2 via ASCII tab, LF and CR
Bug fixes
  • Fix live components being wrongly destroyed in some rare cases (#​4350)
  • Ensure parent navigation succeeds with a blocked child (#​4359)
Enhancements
  • Add internal debug tooling to customize clientside rendering (#​4364)

v1.2.8

Compare Source

Enhancements
  • Allow cancelling client-side navigation (#​4332)
    You can now listen for the phx:before-navigate event and call event.preventDefault() to cancel the navigation synchronously.
    This is mostly useful to prevent a "do you really want to leave" scenario when a user has unsaved changes, combined with a beforeunload listener.
  • Sign LiveView upload tokens as :local to avoid node names being included in the token
  • Ensure async tasks exit gracefully in LiveView tests (#​4348)
  • Allow opting focused form elements into DOM patching (#​4339)
Bug fixes
  • Fix server close handler not being reattached after a manual disconnect + connect (#​4341)
  • Fix detail.lock() promise in phx:push event never resolving (#​4351)
  • Fix live components not being correctly patched when changing their DOM ID (#​4338)
  • Gracefully handle missing upload refs (#​4354)

v1.2.7

Compare Source

Security fixes
  • CVE-2026-58228: Fix scheme validation bypass in Phoenix.LiveView.Utils

v1.2.6

Compare Source

Bug fixes
  • Fix HTMLFormatter inserting extra characters in template with multi-codepoint emojis (#​4321)

v1.2.5

Compare Source

Enhancements
  • Ensure Phoenix.LiveView.TagEngine's EEx.Engine deprecation warning includes file and line information
  • Ensure a failing custom UploadWriter does not crash the LiveView process (#​4320)

v1.2.4

Compare Source

Bug fixes
  • Only warn about missing form ID when recovery actually applies (#​4315)
  • Add common img attributes to live_img_preview/1 that were missing after cleaning the global attribute list in 1.2.0 (#​4316)
  • Fix colocated CSS attributes being dropped if using colocated JS in the same component (#​4319)

v1.2.3

Compare Source

This is a followup release to v1.2.2 that fixes the TypeScript declaration files being in the wrong subfolder.
Again, it does not contain any changes to the Elixir or JavaScript code itself.

v1.2.2

Compare Source

This release fixes the npm package missing the TypeScript declaration files.
It does not contain any changes to the Elixir or JavaScript code itself, except small documentation improvements.

v1.2.1

Compare Source

Bug fixes
  • Fix stale events from the previous LiveView being sent to the new LiveView after a live redirect (#​4291)

v1.2.0

Compare Source

Enhancements
  • Support events pushed when connected mount redirects (#​4269)
Bug fixes
  • Ensure for comprehensions in HEEx use deterministic variables
  • Ensure connect_params are kept when following redirects in LiveViewTest (#​4005)
  • Ensure exceptions during LiveComponent renders are emitted as :telemetry event (#​4258)
  • Fix whitespace handling of EEx nodes in HEEx compiler (#​4277)

v1.1.33

Compare Source

Security fixes
  • CVE-2026-64941: Fix open redirect in redirect/2 via ASCII tab, LF and CR

v1.1.32

Compare Source

Bug fixes
  • Fix stale events from the previous LiveView being sent to the new LiveView after a live redirect (#​4291)

v1.1.31

Compare Source

Enhancements
  • Validate URL scheme in push_patch / push_navigate, JS.patch / JS.navigate, and clientside js().patch / js().navigate (#​4250)
Bug fixes
  • Fix nested assign change tracking (#​4225)
  • Ensure Phoenix.LiveViewTest.live_redirect/2 properly passes the URI as a string in handle_params (#​4247)

v1.1.30

Compare Source

Bug fixes
  • Ensure internal phx-viewport hook does not crash on update if no scroll container is used (#​4214), introduced in v1.1.29.

v1.1.29

Compare Source

Bug fixes
  • Prevent JS crash when hook has a duplicate ID (#​4196)
  • Recompute scroll container for phx-viewport bindings if it is no longer available (#​4169)
  • Fix phx-viewport events not firing when container has horizontal overflow (#​3897)
  • Handle locks on skipped nodes (#​4209)
  • Use moveBefore if available when reordering stream elements (#​4212)

v1.1.28

Compare Source

Bug fixes
  • Fix race condition that could lead to a JS exception when nested LiveView is removed while it is joining (#​4177)
Enhancements
  • A bunch of small performance and documentation improvements (thank you @​preciz!)

v1.1.27

Compare Source

Bug fixes
  • Workaround Chrome bug when patching <template> elements (#​4163)
  • Fix more type warnings on Elixir 1.20

v1.1.26

Compare Source

Bug fixes
  • Fix phx-click-away for nested portals
  • Fix type warnings on Elixir 1.20

v1.1.25

Compare Source

Bug fixes
  • Fix phx-click-away when clicked element is teleported (#​4141)
  • Handle phx-hook outside of LiveViews when reconnecting (#​4147)

v1.1.24

Compare Source

v1.1.23

Compare Source

v1.1.22

Compare Source

v1.1.21

Compare Source

v1.1.20

Compare Source

v1.1.19

Compare Source

v1.1.18

Compare Source

v1.1.17

Compare Source

v1.1.16

Compare Source

v1.1.15

Compare Source

v1.1.14

Compare Source

v1.1.13

Compare Source

v1.1.12

Compare Source

v1.1.11

Compare Source

v1.1.10

Compare Source

v1.1.9

Compare Source

v1.1.8

Compare Source

v1.1.7

Compare Source

v1.1.6

Compare Source

v1.1.5

Compare Source

v1.1.4

Compare Source

v1.1.3

Compare Source

v1.1.2

Compare Source

v1.1.1

Compare Source

v1.1.0

Compare Source

v1.0.19

Compare Source

v1.0.18

Compare Source

v1.0.17

Compare Source

v1.0.16

Compare Source

v1.0.15

Compare Source

v1.0.14

Compare Source

v1.0.13

Compare Source

v1.0.12

Compare Source

v1.0.11

Compare Source

v1.0.10

Compare Source

v1.0.9

Compare Source

v1.0.8

Compare Source

v1.0.7

Compare Source

v1.0.6

Compare Source

v1.0.5

Compare Source

v1.0.4

Compare Source

v1.0.3

Compare Source

v1.0.2

Compare Source

v1.0.1

Compare Source

v1.0.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Dec 6, 2024

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: mix.lock
Command failed: install-tool elixir v1.20.4

@renovate
renovate Bot force-pushed the renovate/phoenix_live_view-1.x branch from 979683f to 21eaa46 Compare July 30, 2025 12:46
@renovate
renovate Bot force-pushed the renovate/phoenix_live_view-1.x branch from 21eaa46 to d547dc8 Compare August 13, 2025 18:42
@renovate
renovate Bot force-pushed the renovate/phoenix_live_view-1.x branch from d547dc8 to 40a8d35 Compare June 10, 2026 19:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants