Official announcement: <a href="https://elixir-lang.org/blog/2017/07/25/elixir-v1-5-0-released/" rel="nofollow">https://elixir-lang.org/blog/2017/07/25/elixir-v1-5-0-releas...</a><p>We have published a draft version of the announcement since the release notes are not super helpful for those unfamiliar with Elixir. Is it possible to update the link to the official announcement? Thank you!<p>EDIT: We are done with the changes on the draft. We've added asciicinema snippets to show some features, improved the section on Calendar changes and also mentioned the compilation time improvements (expect at least 10% faster compilation).
Elixir is truly an under-appreciated language. I've only toyed with it, and I'm really impressed with the whole ecosystem. Elixir, Phoenix, Ecto, Hex, etc all make a great ecosystem, and the awesomeness that is BEAM/OTP is just amazing. I loved the hot code deploys, and updating a system while it's running is something I've never seen before in action. Also Rustler is a great way to write CPU intensive NIF code too.
I highly recommend playing with Elixir or another purely functional language. I've only gone through the Programming Elixir book[1], but it has fundamentally challenged how I think about solving problems in other languages.<p>[1](<a href="https://pragprog.com/book/elixir13/programming-elixir-1-3" rel="nofollow">https://pragprog.com/book/elixir13/programming-elixir-1-3</a>)
It's a fast-paced development! That's pretty great. I hope core team would consider slowing down a bit and catch up with Deployment, Monitoring(which Phoenix team working on it) and Platform(e.g. http/2) departments.<p>v1.5 seems to have a bunch of bug fixes and deprecation (Hah! I'm not sure if it's like move fast and break thing). It is potentially the case.<p>In every important part, there seems to have a solo smart person working on it. E.g. Cowboy(I know it's erlang but Phoenix depends on it significantly), Distillery. That could be a good thing. Less people may catch up with each other faster. It also mean a load of works! And also mean some convention are out of sync (e.g. configuration which I think Conform is the proper way lately)
Can anyone doing Phoenix in production share their typical HTTP response times?<p>I built a small Phoenix project about a year ago, and compared to Rails it wasn't quite as fluent but still pretty nice. But ever since then, I've been trying to decide if the extra development time is worth it for the performance gains. I get that Elixir is more scalable, and I love how the RAM requirements compared to Rails are tiny, but what I still haven't been able to really answer is the latency improvement. According to these benchmarks it is about as fast as Django:<p><a href="https://www.techempower.com/benchmarks/#section=data-r14&hw=ph&test=query&b=2&s=1&l=sg&d=1n" rel="nofollow">https://www.techempower.com/benchmarks/#section=data-r14&hw=...</a><p>Is that really the best I can hope for?
I think this is the best news all week! Congrats to the Elixir team. I love working with Elixir. Hopefully I will be able to contribute to the ecosystem soon. Excited about the future.
There's quite a few nifty little things in this one.<p>I'm not sure I like the child_spec change, personally I like the supervision mode to be explicit when calling children.<p>I do like the developer tools, the breakpoint support, the UTF8 for atoms (which I'm realizing we may want in our DSL since we're converting user input strings to atoms), and the @impl that allows to explicitly declare which functions are there for an interface.<p>Overall, it's amazing to be part of the elixir community, rarely have I seen such emulation, positivity, speed of growth, and effectiveness achieved so fast for a language. Congrats @josevalim for bring the power of BEAM through a wonderful syntax!
Congrats on the new release! While this is all great news, it's still quite hard to get a full-time Elixir job outside of US. Kind of like staring at the candy shop display while it's closed. I'm wondering how to make this happen. I'm in a place where Elixir is just not going to happen and seems unreasonable to expect that I'll be able to convince people to switch to it right after joining a new place. Seems like the only option is to find spare time for playing with Elixir, but that proved to be difficult when I need to invested time in a different stack that actually helps me pay the bills.
I haven't had this tingly feeling since when I first used Ruby/Rails 2. Elixir is growing and setting the bar of what "developer ux" means.<p>mix test
mix docs
Genserver
Pattern matching<p>The list goes on, you find yourself in The Zone more often.
I would love to see these 2 year old performance benchmarks updated where Elixir scaled to 2m connection on a single node.<p><a href="http://www.phoenixframework.org/blog/the-road-to-2-million-websocket-connections" rel="nofollow">http://www.phoenixframework.org/blog/the-road-to-2-million-w...</a>
Congrats to the Elixir core dev team for another fine release. The improvements to iEX's debugging capabilities are going to make a big difference to day-to-day developer UX. Thanks!
What an amazing release! I've never been as excited about a language and its ongoings as I am with Elixir. Thank you Elixir team for creating such a great language and making all of your work so accessable, transparent, and friendly.<p>Well done!
Great news, all those debugging improvements look great. I was actually considering how break points would help me on my current debugging.<p>I've been using Elixir for almost two years now and it's no silver bullet, but overall it has been a really great experience.
That, great news, I'm especially curious about this line here:<p>[ExUnit] Show code snippet from test source file in case of test errors<p>ExUnit backtraces have historically been a bit hard to read sometimes IMHO.