Skip to content

Commit f814cd7

Browse files
committed
Update CHANGELOG, closes #12601
1 parent 6564e3d commit f814cd7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,25 @@ in the long term.
109109
See the new `Logger` documentation for more information on the
110110
new features and on compatibility.
111111

112+
## v1.15.0-rc.1
113+
114+
### 1. Enhancements
115+
116+
* [File] Support distributed `File.Stream`
117+
* [Task] Reduce footprint of tasks by avoiding unecessary work during spawning
118+
119+
### 2. Bug fixes
120+
121+
#### Elixir
122+
123+
* [Kernel] Raise when macros are given to dialyzer
124+
* [Kernel] Support bitstring specifiers as map keys in pattern (regression)
125+
* [Task] Do not double log Task failure reports
126+
127+
#### IEx
128+
129+
* [IEx] Fix IO operations not returning when booting IEx
130+
112131
## v1.15.0-rc.0 (2022-05-22)
113132

114133
### 1. Enhancements
@@ -138,6 +157,7 @@ new features and on compatibility.
138157
* [Kernel] Warn for nested calls without parens inside keywords
139158
* [Kernel] Support for multi-letter uppercase sigils
140159
* [Kernel] Introduce mechanism to collect several errors in a module. Previously, as soon as there was a compilation error, compilation would fail. Now the compiler became a bit smarter and will report multiple errors whenever possible as multiple `error: ...` messages, similar to `warning: ...`
160+
* [Kernel] Raise instead of warning on undefined variables. Previously, an undefined variable would attempt to invoke a function of the same name, which led to confusing error messages, especially to newcomers. To enable the previous behaviour, invoke `Code.compiler_options(on_undefined_variable: :warn)` at the top of your `mix.exs`
141161
* [Kernel.CLI] Support `--sname undefined`/`--name undefined` so a name is automatically generated
142162
* [Keyword] Add `Keyword.split_with/2`
143163
* [Macro] Improve error message when piping into an expression ending in bracket-based access

0 commit comments

Comments
 (0)