From 32825ebaa0c1f6785dcd30d87f0ade45cd6c20cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 2 Jan 2019 20:27:59 +0100 Subject: [PATCH] Release v1.8.0-rc.1 --- CHANGELOG.md | 8 ++++++++ VERSION | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3efa768a1e2..73748028096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,14 @@ When a task is spawned directly from your code, without a supervisor, then the p 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. +## v1.8.0-rc.1 (2018-01-03) + +### 1. Bug fixes + +#### Elixir + + * [Kernel] Only validate the argument of `record/1` and `record/2` types in typespecs (regression) + ## v1.8.0-rc.0 (2018-12-24) ### 1. Enhancements diff --git a/VERSION b/VERSION index 8ea6f63ecf1..7a2b22a60e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.0-rc.0 \ No newline at end of file +1.8.0-rc.1 \ No newline at end of file