josevalim
Elixir v1.5.0-rc.1 has been released.
This is the second release candidate for the upcoming Elixir v1.5. It includes bug fixes, enhancements and it integrates many new features that are part of OTP 20+.
Compared to the previous release candidate, it includes the ability to set breakpoints in IEx and further improves compilation times from 10% to 15% on average.
Here is the prerelease page with CHANGELOG: Release v1.5.0-rc.1 · elixir-lang/elixir · GitHub
Since it is a release candidate, please report any breaking changes you may find. To run this version, you can either compile from source or use the precompiled packages in the link above. If you need help to compile from source or use the precompiled packages, check our Install page.
Special thanks to everyone who tried the first release candidate and reported regressions!
Happy coding!
EDIT: A regression on Stream.chunk/4 has been found and fixed on both master and v1.5 branches. If you run into this bug in your applications, you can consider using Stream.chunk_every/4. For libraries that use Stream.chunk/4, it is best to wait for the next release candidate and/or the final version.
Trending in News
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 7 of 7 Posts
OvermindDL1
I’ve been watching that PR you’ve been building, it looks awesome!
Eiji
I’m using first release candidate when working on my library
ExApi- better error messages are really useful and it’s also stable .btw. I need only to write documentation and tests for this library. I’m not spending on it much time, but it already looks really good. I will publish it as soon as possible.
PatNowak
Does the debugging works only in IEx? If so, will it work fine when using
iex -S mix phoenix.server?aseigo
Very excited about this release … so many good things in it!
In the release notes there is this:
Does anyone have a link, or a pointer to where I could look, for some numbers on this? I couldn’t find it in a quick rummaging through the PR’s…
Also .. Optimize String.replace_* functions by michalmuskala · Pull Request #6240 · elixir-lang/elixir · GitHub ← that one is potentially significant, perhaps interesting enough to make it into the release notes as well?
Also .. has it been considered to add links to the relevant PRs (if any?) for entires on the release notes to make it easier for people to drill down into what the changes entail?
michalmuskala
Here’s the relevant commit: Cache the AST on definitions · elixir-lang/elixir@8518652 · GitHub
aseigo
Sweet, thanks! Looks like I’ll have to do some local measurements, still … thank goodness for asdf, no?
josevalim
Yes. it only works on IEx and it will work fine with the command above.