dependabot[bot] opened a new pull request, #657: URL: https://github.com/apache/paimon-rust/pull/657
Bumps [lz4_flex](https://github.com/pseitz/lz4_flex) from 0.11.6 to 0.13.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pseitz/lz4_flex/releases">lz4_flex's releases</a>.</em></p> <blockquote> <h2>0.13.1</h2> <h2>What's Changed</h2> <ul> <li>Fix panic in From<a href="io::Error">io::Error</a> implementation for frame::Error by <a href="https://github.com/phoerious"><code>@phoerious</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/221">PSeitz/lz4_flex#221</a></li> <li>fix: handle short compression dictionaries by <a href="https://github.com/PSeitz"><code>@PSeitz</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/222">PSeitz/lz4_flex#222</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dglittle"><code>@dglittle</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/205">PSeitz/lz4_flex#205</a></li> <li><a href="https://github.com/phoerious"><code>@phoerious</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/221">PSeitz/lz4_flex#221</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/PSeitz/lz4_flex/compare/0.13.0...0.13.1">https://github.com/PSeitz/lz4_flex/compare/0.13.0...0.13.1</a></p> <h2>0.13.0</h2> <h2>What's Changed</h2> <ul> <li>add minimal security policy by <a href="https://github.com/Marcono1234"><code>@Marcono1234</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/203">PSeitz/lz4_flex#203</a></li> <li>Fix get_maximum_output_size overflow on 32-bit targets by <a href="https://github.com/dglittle"><code>@dglittle</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/205">PSeitz/lz4_flex#205</a></li> <li>lz4_block exposes option to reuse compression dict by <a href="https://github.com/matthewfollegot"><code>@matthewfollegot</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/207">PSeitz/lz4_flex#207</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Marcono1234"><code>@Marcono1234</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/203">PSeitz/lz4_flex#203</a></li> <li><a href="https://github.com/dglittle"><code>@dglittle</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/205">PSeitz/lz4_flex#205</a></li> <li><a href="https://github.com/matthewfollegot"><code>@matthewfollegot</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/207">PSeitz/lz4_flex#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/PSeitz/lz4_flex/compare/0.12.0...0.13.0">https://github.com/PSeitz/lz4_flex/compare/0.12.0...0.13.0</a></p> <h2>0.12.0</h2> <h2>What's Changed</h2> <ul> <li>Fix integer overflows when decoding large payloads by <a href="https://github.com/teh-cmc"><code>@teh-cmc</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/192">PSeitz/lz4_flex#192</a></li> <li>chore(readme): add python binding impl by <a href="https://github.com/LVivona"><code>@LVivona</code></a> in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/190">PSeitz/lz4_flex#190</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/teh-cmc"><code>@teh-cmc</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/192">PSeitz/lz4_flex#192</a></li> <li><a href="https://github.com/LVivona"><code>@LVivona</code></a> made their first contribution in <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/190">PSeitz/lz4_flex#190</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/PSeitz/lz4_flex/compare/0.11.5...0.12.0">https://github.com/PSeitz/lz4_flex/compare/0.11.5...0.12.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PSeitz/lz4_flex/blob/main/CHANGELOG.md">lz4_flex's changelog</a>.</em></p> <blockquote> <h1>0.13.1 (2026-05-09)</h1> <h3>Fixes</h3> <ul> <li>Fix compression with short dictionaries (less than 4 bytes), avoiding a panic/out-of-bounds read <a href="https://redirect.github.com/PSeitz/lz4_flex/issues/222">#222</a></li> </ul> <pre><code>Compression with dictionaries shorter than the minimum match length of 4 now falls back to compression without a dictionary instead of panicking or reading past the dictionary. <p>This is a security fix for <code>unsafe</code> compression with untrusted dictionaries.<br /> Users on 0.13.0 should upgrade to 0.13.1.<br /> </code></pre></p> <ul> <li>Fix panic in <code>From<io::Error></code> implementation for <code>frame::Error</code> <a href="https://redirect.github.com/PSeitz/lz4_flex/issues/221">#221</a> (thanks <a href="https://github.com/phoerious"><code>@phoerious</code></a>)</li> </ul> <h1>0.13.0 (2026-03-15)</h1> <h3>Features</h3> <ul> <li>Add option to reuse compression dict <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/207">#207</a> (thanks <a href="https://github.com/matthewfollegot"><code>@matthewfollegot</code></a>)</li> </ul> <h3>Fixes</h3> <ul> <li>Fix handling of invalid match offsets during decompression <a href="https://github.com/PSeitz/lz4_flex/commit/055502e">#055502e</a> (thanks <a href="https://github.com/Marcono1234"><code>@Marcono1234</code></a>)</li> </ul> <pre><code>Invalid match offsets (offset == 0) during decompression were not properly handled, which could lead to invalid memory reads. This is a security fix that was also backported to 0.12.1 and 0.11.6. </code></pre> <ul> <li>Fix <code>get_maximum_output_size</code> overflow on 32-bit targets <a href="https://redirect.github.com/PSeitz/lz4_flex/pull/205">#205</a> (thanks <a href="https://github.com/dglittle"><code>@dglittle</code></a>)</li> </ul> <pre><code>Cast input_len to u64 before multiplying by 110, avoiding overflow on 32-bit targets (e.g. wasm32) where input_len * 110 overflows usize when input_len > ~39MB. </code></pre> <h1>0.12.2 (2026-05-09)</h1> <h3>Fixes</h3> <ul> <li>Fix compression with short dictionaries (less than 4 bytes), avoiding a panic/out-of-bounds read <a href="https://redirect.github.com/PSeitz/lz4_flex/issues/222">#222</a></li> </ul> <pre><code>Compression with dictionaries shorter than the minimum match length of 4 now falls back to compression without a dictionary instead of panicking or reading past the dictionary. <p>This is a security fix for <code>unsafe</code> compression with untrusted dictionaries.<br /> Users on 0.12.1 should upgrade to 0.12.2.<br /> </code></pre></p> <h1>0.12.1 (2026-03-14)</h1> <h3>Security Fix</h3> <ul> <li>Fix handling of invalid match offsets during decompression <a href="https://github.com/PSeitz/lz4_flex/commit/a0b9154">#a0b9154</a> (thanks <a href="https://github.com/Marcono1234"><code>@Marcono1234</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PSeitz/lz4_flex/commit/8507d2e68ba2477fd087b7fa55d6806ca63f8138"><code>8507d2e</code></a> bump version</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/5a1962ca37eb2818a3beb252f3f40a146408aea7"><code>5a1962c</code></a> update CHANGELOG</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/ce548ab152d430d39b1fd207d1a06e9a78cfb627"><code>ce548ab</code></a> fix: handle short compression dictionaries</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/1756d134e99dcab6fc74a6993abf3621e3ecdfcf"><code>1756d13</code></a> Fix panic in From<io::Error> implementation for frame::Error</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/a5130300bf7b9f44c3a3148b199a5cb73ed42c1f"><code>a513030</code></a> update binggan</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/0b9bd1d62fc0ebef71e9435e3b1578504a513a48"><code>0b9bd1d</code></a> check fmt in CI</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/c5b546fe45b9572dd7cc2cedbf264d924529712c"><code>c5b546f</code></a> release 0.13.0</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/055502ee5d297ecd6bf448ac91c055c7f6df9b6d"><code>055502e</code></a> fix handling of invalid match offsets during decompression</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/7191df8231f2be4daa70c9171ed1c1521123efe5"><code>7191df8</code></a> make hashtable visibility crate public</li> <li><a href="https://github.com/PSeitz/lz4_flex/commit/1bdafca3edf87b60fb5e045af9c37702e5c83ca5"><code>1bdafca</code></a> add doc comments</li> <li>Additional commits viewable in <a href="https://github.com/pseitz/lz4_flex/compare/0.11.6...0.13.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
