Skip to content

Commit 2eee2fc

Browse files
author
José Valim
committed
Release v1.8.0
1 parent b1a10f2 commit 2eee2fc

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,7 @@ 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.0-rc.1 (2018-01-03)
67-
68-
### 1. Bug fixes
69-
70-
#### Elixir
71-
72-
* [Kernel] Only validate the argument of `record/1` and `record/2` types in typespecs (regression)
73-
74-
## v1.8.0-rc.0 (2018-12-24)
66+
## v1.8.0 (2018-01-14)
7567

7668
### 1. Enhancements
7769

@@ -140,6 +132,7 @@ This small feature is very powerful. It allows instrumentation and monitoring to
140132
* [Kernel] Do not leak variables in `cond` clauses with a single matching at compile-time clause
141133
* [NaiveDateTime] Do not accept leap seconds in builder and parsing functions
142134
* [String] Fix ZWJ handling in Unicode grapheme clusters
135+
* [StringIO] Handle non-printable args in StringIO gracefully
143136

144137
#### IEx
145138

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.0-rc.1
1+
1.8.0

lib/mix/lib/mix.ex

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ defmodule Mix do
116116
is `:host` but it can be set via the `MIX_TARGET` environment variable.
117117
The target can be read via `Mix.target/0`.
118118
119-
This feature is considered experimental and may change in future releases.
120-
121119
## Aliases
122120
123121
Aliases are shortcuts or tasks specific to the current project.

lib/mix/lib/mix/tasks/deps.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ defmodule Mix.Tasks.Deps do
8282
* `:targets` - the dependency is made available only for the given targets.
8383
By default the dependency will be available in all environments. The value
8484
of this option can either be a single target (like `:host`) or a list of
85-
environments (like `[:host, :rpi3]`)
85+
environments (like `[:host, :rpi3]`). This option is **experimental**
86+
and it may change behaviour or be removed in future releases.
8687
8788
* `:override` - if set to `true` the dependency will override any other
8889
definitions of itself by other dependencies

0 commit comments

Comments
 (0)