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
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,7 @@ Elixir v1.12 has the additional of many functions across the standard library. T
126
126
*[Range] Add `Range.new/3` and `Range.size/1`
127
127
*[Regex] Add offset option to `Regex.scan/3` and `Regex.run/3`
128
128
*[Registry] Support `:compression` on `Registry` tables
129
+
*[Registry] Support `Registry.values/3` for reading values under a given key-pid pair
129
130
*[Stream] Add `Stream.zip_with/2` and `Stream.zip_with/3`
130
131
*[String] Add `:turkic` mode option to String case functions
131
132
*[System] Add `System.trap_signal/3` and `System.untrap_signal/2`
@@ -170,7 +171,9 @@ Elixir v1.12 has the additional of many functions across the standard library. T
170
171
*[Kernel] Do not crash when complex literals (binaries and maps) are used in guards
171
172
*[Kernel] Properly parse keywords (such as `end`) followed by the `::` operator
172
173
*[Macro]`Macro.decompose_call/1` now also consider tuples with more than 2 elements to not be valid calls
173
-
*[Macro] Fix `Macro.underscore/1` for digit preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o10"
174
+
*[Macro] Fix `Macro.to_string/1` double-escaping of escape characters in sigils
175
+
*[Macro] Fix `Macro.underscore/1` on digits preceded by capitals: "FOO10" now becomes "foo10" instead of "fo_o10"
176
+
*[Macro] Preserve underscores between digits on `Macro.underscore/1`
174
177
*[OptionParser] Properly parse when numbers follow-up aliases, for example, `-ab3` is now parsed as `-a -b 3`
175
178
*[Path] Fix `Path.relative_to/2` when referencing self
176
179
*[Task] Ensure `Task.async_stream/2` with `ordered: false` discard results as they are emitted, instead of needlessly accumulating inside the stream manager
0 commit comments