Elixir v1.17.1 released

1. Enhancements

Mix

  • [mix compile.elixir] Do not run fixpoint computation on runtime dependencies. This should considerably improve compilation times for large projects when changing only one or two files

2. Bug fixes

EEx

  • [EEx] Do not warn for assignment with blocks in EEx

Elixir

  • [Kernel] Fix bug when using pinned variables inside with’s else patterns
  • [Kernel] Fix Dialyzer error when with else clause is calling a no_return function

ExUnit

  • [ExUnit] Do not alternative sync/async suites on --repeat-until-failure
28 Likes

What does it mean? could you give some examples about it? thank you in advance

Here is the relevant commit: Do not run fixpoint computations on runtime deps · elixir-lang/elixir@7890e56 · GitHub

4 Likes

If we introduce inference of return types, then we
need to infer and check the types for A again. This
may be an argument for not introducing inference of
return types (only of patterns and guards)

Interesting! This is probably the big thing I’m looking forward to but knew there had to be a catch :sweat_smile: That totally makes sense, though. Thanks for the question, @shahryarjb, and thanks for the answer, José.

2 Likes

Thanks for all the hard work! Quick question:

Do not run fixpoint computation on runtime dependencies. This should considerably improve compilation times for large projects when changing only one or two files

Is this improvement in relation to 17.0.0? Or is this an improvement over previous versions as well?

Previous ones as well.

2 Likes