phoenixframework / phoenix_live_reload

Provides live-reload functionality for Phoenix
MIT License
315 stars 90 forks source link

new release #143

Closed inoas-nbw closed 7 months ago

inoas-nbw commented 7 months ago

can we have a new release?

josevalim commented 7 months ago

We will soon, if you need a new release because of the file system dependency, you can always override it locally.

inoas-nbw commented 7 months ago

Would be nice to be warning free on new vanilla phoenix projects:

==> phoenix_live_reload Compiling 3 files (.ex) warning: Phoenix.Socket.transport/2 is deprecated. transport/3 in Phoenix.Socket is deprecated and has no effect lib/phoenix_live_reload/socket.ex:9: Phoenix.LiveReloader.Socket (module)

warning: Phoenix.Socket.transport/2 is deprecated. transport/3 in Phoenix.Socket is deprecated and has no effect lib/phoenix_live_reload/socket.ex:10: Phoenix.LiveReloader.Socket (module)

warning: String.lstrip/2 is deprecated. Use String.trim_leading/2 with a binary as second argument instead lib/phoenix_live_reload/channel.ex:19: Phoenix.LiveReload.Channel.handle_info/2

josevalim commented 7 months ago

You are probably using a very old version.

inoas-nbw commented 7 months ago

I had {:phoenix_live_reload, ">= 0.0.0", only: :dev} but somehow it did not fetch a recent version even after unlocking. Now using {:phoenix_live_reload, "~> 1.4", only: :dev} however switching back to 0.0.0 and unlocking fetches the most recent one now.

Sorry for the noise.