-
Notifications
You must be signed in to change notification settings - Fork 55
LiveView 0.18 not supported #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Found the same thing, trying to use the development head of
|
It might help to set up two CI jobs, one for the oldest stable versions, and another for the latest. I use a configuration like this for an unrelated elixir library. Proof of concept in #32 |
FWIW, getting compatible with LiveView 0.18.x (and phx 1.7) is a fairly light lift (if you're not worrying about backwards compatibility). This was all I needed to be able to start using it in a fresh phx.new 1.7 app. The desktop-example didn't need much more either, though there's a number of warning cleanups and additional changes worth making beyond the minimum. @dominicletz Is this project still active? If so, do you have any suggestions on how to make these changes backwards compatible? Would be happy to PR something if I can do it without breaking existing codebases. |
Definitely active and in use, the backwards compatible move is a good question... |
This has been fixed 1.4.4 -- Please have a look if that version works for you. It's using a conditional compile check for backwards compilation. |
Perfect, latest updates worked for me. Thanks for getting that updated. |
LiveView 0.18 moved the
sigil_H/2
macro fromPhoenix.LiveView.Helpers
toPhoenix.Component
.This is used in the
__using__
macro ofDesktop.Menu
.The text was updated successfully, but these errors were encountered: