You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+42
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,48 @@ Those improvements will help developers better understand the relationship betwe
123
123
124
124
Other improvements in Mix include better compiler diagnostics for editor integration, support for the `--slowest N` flag in `mix test` that shows the slowest tests in your suite, and a new `mix profile.eprof` task that provides time based profiling, complementing the existing `mix profile.cprof` (count based) and `mix profile.fprof` (flame based).
125
125
126
+
## v1.6.0-rc.1 (2018-01-11)
127
+
128
+
### 1. Enhancements
129
+
130
+
#### Elixir
131
+
132
+
*[Code] Render tuples and bitstrings as "flex" in the formatter so they attempt to fit the maximum amount of entries in the same line
133
+
*[Exception] Improve the printing of guards on blamed exceptions
134
+
*[List] Rearrange equals and inserts for shorter diff scripts in `List.myers_difference/2`
135
+
*[Kernel] Warn if heredoc is outdented compared to its closing quotes
136
+
*[Record] Allow `:macros` and `:includes` to be given to `Record.extract/2`
137
+
138
+
#### ExUnit
139
+
140
+
*[ExUnit.Assertions] Perform inclusive checks in `assert_in_delta`
141
+
142
+
#### IEx
143
+
144
+
*[IEx.CLI] Provide hints for developers when a bad host name is given to `--remsh`
145
+
146
+
#### Logger
147
+
148
+
*[Logger] Add `:discard_threshold` to Logger to help with buffer overflow
149
+
150
+
### 2. Bug fixes
151
+
152
+
#### Elixir
153
+
154
+
*[Inspect] Properly handle minus signal for non-decimal negative integers
155
+
*[Kernel] Allow `defguard` to call another `defguard` (previous RC only)
156
+
*[Kernel] Return right side expression value on variable struct matching (previous RC only)
157
+
*[Kernel] Do not leak variables during optimizations (previous RC only)
158
+
*[Kernel] Avoid badarg/badfun on long-lived functions defined during compilation (previous RC only)
159
+
*[Kernel] Fix precedence of `&` in regards to `=` (previous RC only)
160
+
*[String] Consider case ignorable characters when downcasing greek characters (previous RC only)
0 commit comments