Skip to content

Commit 511a51b

Browse files
author
José Valim
committed
Release v1.8.1
1 parent 7e4f9c5 commit 511a51b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,24 @@ When a task is spawned directly from your code, without a supervisor, then the p
6363

6464
This small feature is very powerful. It allows instrumentation and monitoring tools to better track and relate the events happening in your system. This feature can also be used by tools like the "Ecto Sandbox". The "Ecto Sandbox" allows developers to run tests concurrently against the database, by using transactions and an ownership mechanism where each process explicitly gets a connection assigned to it. Without `$callers`, every time you spawned a task that queries the database, the task would not know its caller, and therefore it would be unable to know which connection was assigned to it. This often meant features that relies on tasks could not be tested concurrently. With `$callers`, figuring out this relationship is trivial and you have more tests using the full power of your machine.
6565

66+
## v1.8.1 (2019-01-30)
67+
68+
### 1. Bug fixes
69+
70+
#### Elixir
71+
72+
* [Float] Fix rounding for subnormal floats
73+
74+
#### IEx
75+
76+
* [IEx] Fix `IEx.pry` crash when IEx isn't running
77+
* [IEx.CLI] Add IEx warning when using `--remsh` with dumb terminal
78+
* [IEx.Helpers] Sort results by arity on `h` helper
79+
80+
#### Mix
81+
82+
* [mix compile] Do not include optional dependencies in extra applications as it is incompatible with shared deps in umbrellas
83+
6684
## v1.8.0 (2019-01-14)
6785

6886
### 1. Enhancements

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.0
1+
1.8.1

0 commit comments

Comments
 (0)