File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -245,9 +245,10 @@ the approaches and options available.
245
245
246
246
This release adds basic support for Erlang/OTP 26. When migrating
247
247
to Erlang/OTP 26, keep it mind it changes how maps are stored
248
- internally (note maps never provided a guarantee of their order).
249
- This release adds ` :sort_maps ` to ` inspect ` custom options,
250
- in case you want to sort them before inspection:
248
+ internally and they will be printed and traversed in a different
249
+ order (note maps never provided a guarantee of their order).
250
+ To aid migration, this release adds ` :sort_maps ` to ` inspect `
251
+ custom options, in case you want to sort them before inspection:
251
252
252
253
inspect(map, custom_options: [sort_maps: true])
253
254
@@ -271,7 +272,13 @@ in case you want to sort them before inspection:
271
272
272
273
* [ Code] Properly handle blocks with comments in all cases in ` Code.quoted_to_string_with_comments/2 `
273
274
* [ Kernel] Fix ` debug_info/4 ` when returning core_v1
274
- * [ Kernel] Store complete path on ` quote keep: true ` to avoid invalid stacktraces
275
+ * [ Kernel] Store complete path on ` quote keep: true ` to avoid invalid stacktraces
276
+ * [ Kernel] Fix column count when tokenizing escaped interpolations
277
+ * [ Stream] Fix ` Stream.zip/1 ` hanging on empty list
278
+
279
+ #### Mix
280
+
281
+ * [ mix fomrat] Don't call formatter on directories
275
282
276
283
## v1.14.3 (2023-01-14)
277
284
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ Erlang/OTP versioning is independent from the versioning of Elixir. Erlang relea
42
42
43
43
Elixir version | Supported Erlang/OTP versions
44
44
:------------- | :-------------------------------
45
- 1.14 | 23 - 25
45
+ 1.14 | 23 - 25 (and Erlang/OTP 26 from v1.14.4)
46
46
1.13 | 22 - 24 (and Erlang/OTP 25 from v1.13.4)
47
47
1.12 | 22 - 24
48
48
1.11 | 21 - 23 (and Erlang/OTP 24 from v1.11.4)
You can’t perform that action at this time.
0 commit comments