Skip to content

Commit d33fd8e

Browse files
committed
Release v1.19.5
1 parent 02603b1 commit d33fd8e

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,32 @@ These additions offer greater transparency into the components and licenses of e
234234

235235
This work was performed by [Jonatan Männchen](https://maennchen.dev) and sponsored by the [Erlang Ecosystem Foundation](https://erlef.org).
236236

237+
## v1.19.5 (2026-01-09)
238+
239+
### 1. Enhancements
240+
241+
#### Elixir
242+
243+
* [Protocol] Optimize protocol consolidation to no longer load structs
244+
245+
### 2. Bug fixes
246+
247+
#### Elixir
248+
249+
* [Kernel] Fix unnecessary recompilation when `dbg_callback` is modified at runtime
250+
* [Kernel] Fix parser crash on missing parentheses on expression following operator `not in`
251+
* [Kernel] Support fetching abstract code for modules compiled with Elixir v1.14 and earlier
252+
* [Protocol] Ensure protocol consolidation no longer stores outdated struct types. As a consequence, protocols types only track struct names at the moment
253+
* [Stream] Revert optimization which caused nested streams in `Stream.flat_map/2` to crash
254+
255+
#### IEx
256+
257+
* [IEx] Fix usage of `#iex:break` as part of multi-line prompts
258+
259+
#### Logger
260+
261+
* [Logger.Backends] Do not crash on invalid metadata
262+
237263
## v1.19.4 (2025-11-27)
238264

239265
### 1. Enhancements

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.19.4
1+
1.19.5

bin/elixir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
set -e
88

9-
ELIXIR_VERSION=1.19.4
9+
ELIXIR_VERSION=1.19.5
1010

1111
if [ $# -eq 0 ] || { [ $# -eq 1 ] && { [ "$1" = "--help" ] || [ "$1" = "-h" ]; }; }; then
1212
cat <<USAGE >&2

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:: SPDX-FileCopyrightText: 2021 The Elixir Team
55
:: SPDX-FileCopyrightText: 2012 Plataformatec
66

7-
set ELIXIR_VERSION=1.19.4
7+
set ELIXIR_VERSION=1.19.5
88

99
if ""%1""=="""" if ""%2""=="""" goto documentation
1010
if /I ""%1""==""--help"" if ""%2""=="""" goto documentation

0 commit comments

Comments
 (0)