File tree Expand file tree Collapse file tree 4 files changed +33
-3
lines changed Expand file tree Collapse file tree 4 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,36 @@ These additions offer greater transparency into the components and licenses of e
234234
235235This work was performed by [ Jonatan Männchen] ( https://maennchen.dev ) and sponsored by the [ Erlang Ecosystem Foundation] ( https://erlef.org ) .
236236
237+ ## v1.19.2 (2025-11-02)
238+
239+ ### 1. Enhancements
240+
241+ #### Elixir
242+
243+ * [ Kernel] Measure and optimize writing of ` .beam ` files in the compiler
244+ * [ Kernel] Optimize rare scenarios where type checking took too long
245+
246+ #### Mix
247+
248+ * [ mix compile] Add flag ` --no-check-cwd ` to skip compiler check to aid debugging
249+
250+ ### 2. Bug fixes
251+
252+ #### Elixir
253+
254+ * [ IO] Fix dialyzer warning on ` IO.inspect :label `
255+ * [ Kernel] Ensure we warn on deprecated ` ~~~ ` unary operator
256+
257+ #### Logger
258+
259+ * [ Logger] Reset ansi escapes before newlines in Logger
260+
261+ #### Mix
262+
263+ * [ mix compile] Warn if ` elixirc_paths ` is not a list of string paths
264+ * [ mix compile] Address regression where umbrella children were compiled too early and without respecting compilation flags
265+ * [ mix deps.compile] Improve reliability of ` MIX_OS_DEPS_COMPILE_PARTITION_COUNT ` across ` mix escript.install ` , ` mix archive.install ` , and others
266+
237267## v1.19.1 (2025-10-20)
238268
239269### 1. Bug fixes
Original file line number Diff line number Diff line change 1- 1.19.1
1+ 1.19.2
Original file line number Diff line number Diff line change 66
77set -e
88
9- ELIXIR_VERSION=1.19.1
9+ ELIXIR_VERSION=1.19.2
1010
1111if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ " $1 " = " --help" ] || [ " $1 " = " -h" ]; }; }; then
1212 cat << USAGE >&2
Original file line number Diff line number Diff line change 44:: SPDX-FileCopyrightText: 2021 The Elixir Team
55:: SPDX-FileCopyrightText: 2012 Plataformatec
66
7- set ELIXIR_VERSION = 1.19.1
7+ set ELIXIR_VERSION = 1.19.2
88
99if " " %1 " " == " " " " if " " %2 " " == " " " " goto documentation
1010if /I " " %1 " " == " " --help" " if " " %2 " " == " " " " goto documentation
You can’t perform that action at this time.
0 commit comments