| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-07-09 | 1.1 kB | |
| v2.5.1 source code.tar.gz | 2026-07-09 | 561.3 kB | |
| v2.5.1 source code.zip | 2026-07-09 | 648.6 kB | |
| Totals: 3 Items | 1.2 MB | 0 | |
Enhancements
- Add
ignore_advisoriesandignore_retirementsconfigs to acknowledge security advisories and package retirements. Configure them in themix.exs:hexblock (ignore_advisories: ["CVE-2026-32686"],ignore_retirements: [:decimal, phoenix: "1.0.0"]) or with theHEX_IGNORE_ADVISORIESandHEX_IGNORE_RETIREMENTSenvironment variables. An advisory can be ignored by any of its aliased identifiers (for example the GHSA alias of a CVE).mix hex.auditlists ignored findings in separate sections without failing and warns about entries that no longer match anything, andmix deps.get/mix deps.updatestop warning about ignored findings - List each package override with its requirement and allow/deny status in
mix hex.policy showinstead of only an override count.mix hex.policywithout a subcommand now prints usage instead of defaulting toshow
Bug fixes
- Remove regexes from compiled code. Compiled regex patterns are not portable across OTP versions, so the precompiled archive could crash with
:re.import/1 is undefinedwhen built and run on different OTP versions