Debian Package Tracker
Register | Log in
Subscribe

elixir-lang

functional meta-programming aware language

Choose email to subscribe with

general
  • source: elixir-lang (main)
  • version: 1.20.1.dfsg-2
  • maintainer: Evgeny Golyshev (DMD)
  • uploaders: Sergei Golovan [DMD]
  • arch: any
  • std-ver: 4.7.4
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • o-o-stable: 1.10.3.dfsg-1.1
  • oldstable: 1.14.0.dfsg-2
  • stable: 1.18.3.dfsg-1
  • testing: 1.20.1.dfsg-2
  • unstable: 1.20.1.dfsg-2
versioned links
  • 1.10.3.dfsg-1.1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.14.0.dfsg-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.18.3.dfsg-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 1.20.1.dfsg-2: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • elixir (1 bugs: 0, 1, 0, 0)
action needed
A new upstream version is available: 1.20.4 high
A new upstream version 1.20.4 is available, you should consider packaging it.
Created: 2026-06-25 Last update: 2026-09-06 13:19
1 security issue in sid high

There is 1 open security issue in sid.

1 important issue:
  • CVE-2026-75758: Uncontrolled Recursion vulnerability in the Elixir standard library allows an attacker who controls a list passed to inspect/1, List.to_string/1, or List.to_charlist/1 to exhaust a BEAM node's memory. Inspect.List's charlist branch in lib/elixir/lib/inspect.ex classifies a list as a charlist using List.ascii_printable?/2, which examines only the first :printable_limit (4096 by default) elements, and then calls IO.chardata_to_string/1 on the whole term. A list whose printable prefix exceeds that limit but which contains a later element that is not a code point (an atom, an out-of-range integer, or an improper tail) is therefore mis-classified, and the conversion raises ArgumentError. That conversion runs inside List.to_string/1, whose rescue clause builds its message by interpolating inspect(list), which re-enters the same branch and raises again. The nested inspection is an argument to raise, so the recursion is not in tail position and every level is retained: the process stack grows monotonically while each cycle re-walks the list, until the process is killed by max_heap_size or, by default, the node runs out of memory. List.to_charlist/1 has the same rescue shape. Below the printable limit the inner inspect/1 sees the invalid element within its counter and renders the list in ordinary bracket form, so a single ArgumentError is raised and no recursion occurs. This issue affects elixir: from 1.15.0-rc.0 before 1.18.5, from 1.19.0-rc.0 before 1.19.6, and from 1.20.0-rc.0 before 1.20.4.
Created: 2026-09-03 Last update: 2026-09-04 22:01
1 security issue in forky high

There is 1 open security issue in forky.

1 important issue:
  • CVE-2026-75758: Uncontrolled Recursion vulnerability in the Elixir standard library allows an attacker who controls a list passed to inspect/1, List.to_string/1, or List.to_charlist/1 to exhaust a BEAM node's memory. Inspect.List's charlist branch in lib/elixir/lib/inspect.ex classifies a list as a charlist using List.ascii_printable?/2, which examines only the first :printable_limit (4096 by default) elements, and then calls IO.chardata_to_string/1 on the whole term. A list whose printable prefix exceeds that limit but which contains a later element that is not a code point (an atom, an out-of-range integer, or an improper tail) is therefore mis-classified, and the conversion raises ArgumentError. That conversion runs inside List.to_string/1, whose rescue clause builds its message by interpolating inspect(list), which re-enters the same branch and raises again. The nested inspection is an argument to raise, so the recursion is not in tail position and every level is retained: the process stack grows monotonically while each cycle re-walks the list, until the process is killed by max_heap_size or, by default, the node runs out of memory. List.to_charlist/1 has the same rescue shape. Below the printable limit the inner inspect/1 sees the invalid element within its counter and renders the list in ordinary bracket form, so a single ArgumentError is raised and no recursion occurs. This issue affects elixir: from 1.15.0-rc.0 before 1.18.5, from 1.19.0-rc.0 before 1.19.6, and from 1.20.0-rc.0 before 1.20.4.
Created: 2026-09-03 Last update: 2026-09-04 22:01
Fails to build during reproducibility testing normal
A package building reproducibly enables third parties to verify that the source matches the distributed binaries. It has been identified that this source package produced different results, failed to build or had other issues in a test environment. Please read about how to improve the situation!
Created: 2024-12-19 Last update: 2026-09-06 14:30
lintian reports 1 warning normal
Lintian reports 1 warning about this package. You should make the package lintian clean getting rid of them.
Created: 2026-06-13 Last update: 2026-06-13 17:30
2 low-priority security issues in trixie low

There are 2 open security issues in trixie.

2 issues left for the package maintainer to handle:
  • CVE-2026-49762: (needs triaging) Uncontrolled Resource Consumption vulnerability in the Elixir standard library's Version module allows an attacker who controls a version string to cause a denial of service through CPU and memory exhaustion. The version parser converts numeric version components (major, minor, patch and numeric pre-release/build identifiers) to integers without bounding their length. A single large all-digit component therefore forces a super-linear, non-yielding base-10 to arbitrary-precision integer conversion (String.to_integer/1, i.e. :erlang.binary_to_integer/1) that pins a BEAM scheduler, and a larger component raises an uncaught SystemLimitError that crashes the calling process. A single moderately sized string (around one megabyte) is enough; no authentication is required. This is reachable from the public entry points Version.parse/1, Version.parse!/1, Version.match?/3, Version.compare/2, and Version.parse_requirement/1, which applications routinely call on untrusted input such as HTTP parameters, dependency-manifest fields, and package metadata. This vulnerability is associated with program files lib/version.ex and program routines 'Elixir.Version.Parser':parse_digits/2. This issue affects Elixir: from 1.5.0 before 1.20.1.
  • CVE-2026-75758: (needs triaging) Uncontrolled Recursion vulnerability in the Elixir standard library allows an attacker who controls a list passed to inspect/1, List.to_string/1, or List.to_charlist/1 to exhaust a BEAM node's memory. Inspect.List's charlist branch in lib/elixir/lib/inspect.ex classifies a list as a charlist using List.ascii_printable?/2, which examines only the first :printable_limit (4096 by default) elements, and then calls IO.chardata_to_string/1 on the whole term. A list whose printable prefix exceeds that limit but which contains a later element that is not a code point (an atom, an out-of-range integer, or an improper tail) is therefore mis-classified, and the conversion raises ArgumentError. That conversion runs inside List.to_string/1, whose rescue clause builds its message by interpolating inspect(list), which re-enters the same branch and raises again. The nested inspection is an argument to raise, so the recursion is not in tail position and every level is retained: the process stack grows monotonically while each cycle re-walks the list, until the process is killed by max_heap_size or, by default, the node runs out of memory. List.to_charlist/1 has the same rescue shape. Below the printable limit the inner inspect/1 sees the invalid element within its counter and renders the list in ordinary bracket form, so a single ArgumentError is raised and no recursion occurs. This issue affects elixir: from 1.15.0-rc.0 before 1.18.5, from 1.19.0-rc.0 before 1.19.6, and from 1.20.0-rc.0 before 1.20.4.

You can find information about how to handle these issues in the security team's documentation.

Created: 2026-06-10 Last update: 2026-09-04 22:01
debian/patches: 5 patches to forward upstream low

Among the 5 debian patches available in version 1.20.1.dfsg-2 of the package, we noticed the following issues:

  • 5 patches where the metadata indicates that the patch has not yet been forwarded upstream. You should either forward the patch upstream or update the metadata to document its real status.
Created: 2023-02-26 Last update: 2026-06-13 17:32
news
[rss feed]
  • [2026-06-18] elixir-lang 1.20.1.dfsg-2 MIGRATED to testing (Debian testing watch)
  • [2026-06-13] Accepted elixir-lang 1.20.1.dfsg-2 (source) into unstable (Sergei Golovan)
  • [2026-06-11] Accepted elixir-lang 1.20.1.dfsg-1 (source) into unstable (Sergei Golovan)
  • [2026-06-05] Accepted elixir-lang 1.20.0.dfsg-1 (source) into experimental (Sergei Golovan)
  • [2026-05-21] elixir-lang 1.18.3.dfsg-2 MIGRATED to testing (Debian testing watch)
  • [2026-05-06] Accepted elixir-lang 1.18.3.dfsg-2 (source) into unstable (Sergei Golovan)
  • [2026-05-03] Accepted elixir-lang 1.19.5.dfsg-2 (source) into experimental (Sergei Golovan)
  • [2026-03-23] Accepted elixir-lang 1.19.5.dfsg-1 (source) into experimental (Sergei Golovan)
  • [2025-04-01] elixir-lang 1.18.3.dfsg-1 MIGRATED to testing (Debian testing watch)
  • [2025-03-27] Accepted elixir-lang 1.18.3.dfsg-1 (source) into unstable (Sergei Golovan)
  • [2025-03-09] elixir-lang 1.18.1.dfsg-1.1 MIGRATED to testing (Debian testing watch)
  • [2025-02-08] Accepted elixir-lang 1.18.1.dfsg-1.1 (source) into unstable (Sergei Golovan)
  • [2025-01-10] Accepted elixir-lang 1.18.1.dfsg-1 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2024-12-18] Accepted elixir-lang 1.17.3.dfsg-2 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2024-12-04] Accepted elixir-lang 1.17.3.dfsg-1 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2023-07-11] Accepted elixir-lang 1.7.4-0.1+deb10u1 (source) into oldoldstable (Markus Koschany)
  • [2022-10-14] elixir-lang 1.14.0.dfsg-2 MIGRATED to testing (Debian testing watch)
  • [2022-10-08] Accepted elixir-lang 1.14.0.dfsg-2 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2022-10-03] Accepted elixir-lang 1.14.0.dfsg-1 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2022-02-26] elixir-lang 1.12.2.dfsg-2.2 MIGRATED to testing (Debian testing watch)
  • [2022-02-24] Accepted elixir-lang 1.12.2.dfsg-2.2 (source) into unstable (Antonio Terceiro)
  • [2021-12-25] elixir-lang 1.12.2.dfsg-2.1 MIGRATED to testing (Debian testing watch)
  • [2021-10-24] Accepted elixir-lang 1.12.2.dfsg-2.1 (source) into unstable (Sergei Golovan)
  • [2021-08-27] elixir-lang 1.12.2.dfsg-2 MIGRATED to testing (Debian testing watch)
  • [2021-08-25] Accepted elixir-lang 1.12.2.dfsg-2 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2021-08-24] Accepted elixir-lang 1.12.2.dfsg-1 (source) into unstable (Evgeny Golyshev) (signed by: Dmitry Shachnev)
  • [2020-10-16] Accepted elixir-lang 1.9.1.dfsg-1~bpo10+2 (source) into buster-backports (Baptiste Beauplat) (signed by: Mattia Rizzolo)
  • [2020-06-21] elixir-lang 1.10.3.dfsg-1.1 MIGRATED to testing (Debian testing watch)
  • [2020-06-18] Accepted elixir-lang 1.10.3.dfsg-1.1 (source) into unstable (Sergei Golovan)
  • [2020-05-11] elixir-lang 1.10.3.dfsg-1 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 2
  • RC: 0
  • I&N: 2
  • M&W: 0
  • F&P: 0
  • patch: 0
links
  • homepage
  • lintian (0, 1)
  • buildd: logs, reproducibility, cross
  • popcon
  • browse source code
  • other distros
  • security tracker
  • debian patches
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 1.18.3.dfsg-1build1
  • 1 bug

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing