dependabot[bot] opened a new pull request, #3018:
URL: https://github.com/apache/iggy/pull/3018

   Bumps the minor-and-patch group with 5 updates:
   
   | Package | From | To |
   | --- | --- | --- |
   | [moka](https://github.com/moka-rs/moka) | `0.12.14` | `0.12.15` |
   | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.49.5` | `0.49.6` |
   | [passterm](https://github.com/finfet/passterm) | `2.0.1` | `2.0.6` |
   | [toml](https://github.com/toml-rs/toml) | `1.0.7+spec-1.1.0` | 
`1.1.0+spec-1.1.0` |
   | [zip](https://github.com/zip-rs/zip2) | `8.3.0` | `8.4.0` |
   
   Updates `moka` from 0.12.14 to 0.12.15
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/moka-rs/moka/releases";>moka's releases</a>.</em></p>
   <blockquote>
   <h2>Moka 0.12.15</h2>
   <h2>Version 0.12.15</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Fixed a bug where re-inserting an expired entry could cause it to lose 
its expiration time and remain in the cache indefinitely when using a custom 
<code>Expiry</code> policy with per-entry expiration. (<a 
href="https://redirect.github.com/moka-rs/moka/issues/582";>#582</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/582/";>gh-pull-0582</a> by 
<a href="https://github.com/jiangzhe";><code>@​jiangzhe</code></a>, <a 
href="https://redirect.github.com/moka-rs/moka/issues/581";>#581</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/581/";>gh-pull-0581</a> by 
<a href="https://github.com/atrocities";><code>@​atrocities</code></a>, reported 
in <a href="https://redirect.github.com/moka-rs/moka/issues/575";>#575</a><a 
href="https://redirect.github.com/moka-rs/moka/issues/575/";>gh-issue-0575</a>):
   <ul>
   <li>This occurred when an entry that had expired but not yet been evicted 
was re-inserted, and <code>expire_after_update</code> returned 
<code>None</code>. This primarily affected users who only override 
<code>expire_after_create</code>, since the default 
<code>expire_after_update</code> returns <code>duration_until_expiry</code>, 
which is <code>None</code> for expired entries.</li>
   <li>This bug was introduced by the changes in v0.12.13 (<a 
href="https://redirect.github.com/moka-rs/moka/issues/549";>#549</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/549/";>gh-pull-0549</a> and 
<a href="https://redirect.github.com/moka-rs/moka/issues/564";>#564</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/564/";>gh-pull-0564</a>).</li>
   <li><strong>Subtle behavior change</strong>:
   <ul>
   <li>Before this fix, re-inserting an expired entry was treated as an update, 
so <code>Expiry::expire_after_update</code> was called.</li>
   <li>After this fix, re-inserting an expired entry is treated as a creation, 
so <code>Expiry::expire_after_create</code> is called instead.</li>
   <li>This may change the expiration time of re-inserted entries, depending on 
your <code>Expiry</code> trait implementation.</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>Fixed flaky tests <code>cht::segment::tests::drop_many_values</code> and 
<code>drop_many_values_concurrent</code> that were failing on high-core-count 
machines (<a 
href="https://redirect.github.com/moka-rs/moka/issues/586";>#586</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/586/";>gh-pull-0586</a>):
   <ul>
   <li>These tests were using a CPU-dependent segment count, causing 
inconsistent bucket array shrinking behavior of the internal segmented hash map 
across different machines.</li>
   <li>Changed these tests to use a fixed segment count (4) for consistent 
results.</li>
   </ul>
   </li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Disabled flaky GC-dependent tests by default using 
<code>run_flaky_tests</code> cfg (<a 
href="https://redirect.github.com/moka-rs/moka/issues/584";>#584</a><a 
href="https://redirect.github.com/moka-rs/moka/pull/584/";>gh-pull-0584</a>):
   <ul>
   <li>These tests rely on epoch-based garbage collection 
(<code>crossbeam-epoch</code>) timing that is not guaranteed, causing 
intermittent failures.</li>
   <li>Fixed <a 
href="https://redirect.github.com/moka-rs/moka/issues/539";>#539</a><a 
href="https://redirect.github.com/moka-rs/moka/issues/539/";>gh-issue-0539</a> 
and <a href="https://redirect.github.com/moka-rs/moka/issues/580";>#580</a><a 
href="https://redirect.github.com/moka-rs/moka/issues/580/";>gh-issue-0580</a>.</li>
   <li>To run these tests, set <code>RUSTFLAGS='--cfg 
run_flaky_tests'</code>.</li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/moka-rs/moka/blob/main/CHANGELOG.md";>moka's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 0.12.15</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Fixed a bug where re-inserting an expired entry could cause it to lose 
its
   expiration time and remain in the cache indefinitely when using a custom 
<code>Expiry</code>
   policy with per-entry expiration. (<a 
href="https://redirect.github.com/moka-rs/moka/issues/582";>#582</a>[gh-pull-0582]
 by [<a 
href="https://github.com/jiangzhe";><code>@​jiangzhe</code></a>][gh-jiangzhe],
   <a 
href="https://redirect.github.com/moka-rs/moka/issues/581";>#581</a>[gh-pull-0581]
 by [<a 
href="https://github.com/atrocities";><code>@​atrocities</code></a>][gh-atrocities],
 reported in
   <a 
href="https://redirect.github.com/moka-rs/moka/issues/575";>#575</a>[gh-issue-0575]):
   <ul>
   <li>This occurred when an entry that had expired but not yet been evicted was
   re-inserted, and <code>expire_after_update</code> returned 
<code>None</code>. This primarily
   affected users who only override <code>expire_after_create</code>, since the 
default
   <code>expire_after_update</code> returns <code>duration_until_expiry</code>, 
which is <code>None</code> for
   expired entries.</li>
   <li>This bug was introduced by the changes in v0.12.13 (<a 
href="https://redirect.github.com/moka-rs/moka/issues/549";>#549</a>[gh-pull-0549]
 and
   <a 
href="https://redirect.github.com/moka-rs/moka/issues/564";>#564</a>[gh-pull-0564]).</li>
   <li><strong>Subtle behavior change</strong>:
   <ul>
   <li>Before this fix, re-inserting an expired entry was treated as an update,
   so <code>Expiry::expire_after_update</code> was called.</li>
   <li>After this fix, re-inserting an expired entry is treated as a creation,
   so <code>Expiry::expire_after_create</code> is called instead.</li>
   <li>This may change the expiration time of re-inserted entries, depending on
   your <code>Expiry</code> trait implementation.</li>
   </ul>
   </li>
   </ul>
   </li>
   <li>Fixed flaky tests <code>cht::segment::tests::drop_many_values</code> and
   <code>drop_many_values_concurrent</code> that were failing on 
high-core-count machines
   (<a 
href="https://redirect.github.com/moka-rs/moka/issues/586";>#586</a>[gh-pull-0586]):
   <ul>
   <li>These tests were using a CPU-dependent segment count, causing 
inconsistent
   bucket array shrinking behavior of the internal segmented hash map across
   different machines.</li>
   <li>Changed these tests to use a fixed segment count (4) for consistent 
results.</li>
   </ul>
   </li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Disabled flaky GC-dependent tests by default using 
<code>run_flaky_tests</code> cfg
   (<a 
href="https://redirect.github.com/moka-rs/moka/issues/584";>#584</a>[gh-pull-0584]):
   <ul>
   <li>These tests rely on epoch-based garbage collection 
(<code>crossbeam-epoch</code>) timing
   that is not guaranteed, causing intermittent failures.</li>
   <li>Fixed <a 
href="https://redirect.github.com/moka-rs/moka/issues/539";>#539</a>[gh-issue-0539]
 and <a 
href="https://redirect.github.com/moka-rs/moka/issues/580";>#580</a>[gh-issue-0580].</li>
   <li>To run these tests, set <code>RUSTFLAGS='--cfg 
run_flaky_tests'</code>.</li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/moka-rs/moka/commit/616473ee923f4cd1429b3d8eb3be7df3eb9906b1";><code>616473e</code></a>
 Merge pull request <a 
href="https://redirect.github.com/moka-rs/moka/issues/586";>#586</a> from 
moka-rs/fix-flaky-cht-test-on-many-core-machines</li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/caf8c828ae537d7a2505145998aabe53dfd03a9b";><code>caf8c82</code></a>
 Apply cargo fmt</li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/65ff43316d0f78f0050659ba2a943f625471ec95";><code>65ff433</code></a>
 Fix flaky test <code>cht::segment::tests::drop_many_values</code> on many-core 
machines</li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/fd103ad11c50097537259673e6bc141e7597e84a";><code>fd103ad</code></a>
 Update the change log for PR <a 
href="https://redirect.github.com/moka-rs/moka/issues/586";>#586</a></li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/5baf38ca4e31d96a1c7c0de1cd69cf726aac8ca5";><code>5baf38c</code></a>
 Fix flaky test 
<code>cht::segment::tests::drop_many_values_concurrent</code></li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/4b709c8d320fc9614c21801f94a7142fb36afd36";><code>4b709c8</code></a>
 Merge pull request <a 
href="https://redirect.github.com/moka-rs/moka/issues/585";>#585</a> from 
moka-rs/chore/prepare-v0.12.15</li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/9e7c73b795148774e6775664331e868112e33c42";><code>9e7c73b</code></a>
 Remove an unused link from the change log</li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/fa14f78d6e0fda0683dd6b243e288025bedac59d";><code>fa14f78</code></a>
 Bump the version to <code>v0.12.15</code></li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/98968b30aa6bbd0401a85448aea4cc40f4db8131";><code>98968b3</code></a>
 Update the change log for <code>v0.12.15</code></li>
   <li><a 
href="https://github.com/moka-rs/moka/commit/4c37fd4e2f8679240e5c33750301e0bf3863472c";><code>4c37fd4</code></a>
 Merge pull request <a 
href="https://redirect.github.com/moka-rs/moka/issues/584";>#584</a> from 
moka-rs/chore/disable-flaky-tests-by-default</li>
   <li>Additional commits viewable in <a 
href="https://github.com/moka-rs/moka/compare/v0.12.14...v0.12.15";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `octocrab` from 0.49.5 to 0.49.6
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/XAMPPRocky/octocrab/releases";>octocrab's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.49.6</h2>
   <h3>Added</h3>
   <ul>
   <li><em>(activity/starring)</em> add list_repos_starred_by_user (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/861";>#861</a>)</li>
   <li>added undocumented events (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/858";>#858</a>)</li>
   <li>repository variables handler (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/857";>#857</a>)</li>
   </ul>
   <h3>Other</h3>
   <ul>
   <li>Remove Lines Of Code badge from README</li>
   <li>Add Event::CopilotWorkStarted (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/854";>#854</a>)</li>
   <li>actualized <code>Commit</code> for GET <code>/search/commits</code> (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/851";>#851</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md";>octocrab's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/XAMPPRocky/octocrab/compare/v0.49.5...v0.49.6";>0.49.6</a>
 - 2026-03-23</h2>
   <h3>Added</h3>
   <ul>
   <li><em>(activity/starring)</em> add list_repos_starred_by_user (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/861";>#861</a>)</li>
   <li>added undocumented events (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/858";>#858</a>)</li>
   <li>repository variables handler (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/857";>#857</a>)</li>
   </ul>
   <h3>Other</h3>
   <ul>
   <li>Remove Lines Of Code badge from README</li>
   <li>Add Event::CopilotWorkStarted (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/854";>#854</a>)</li>
   <li>actualized <code>Commit</code> for GET <code>/search/commits</code> (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/851";>#851</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/908472c5116c71452a73eca56ebe0e95681ab6a1";><code>908472c</code></a>
 chore: release v0.49.6 (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/852";>#852</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/d33aeb34d17701e0bb4983dcbe1978315cba25e2";><code>d33aeb3</code></a>
 feat(activity/starring): add list_repos_starred_by_user (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/861";>#861</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/f33fbcf701c824aaf43fd0f439cab30865897364";><code>f33fbcf</code></a>
 Remove Lines Of Code badge from README</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/c5527e1b62238426c6084c2f8dde1ae927d468c3";><code>c5527e1</code></a>
 feat: added undocumented events (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/858";>#858</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/458d1604b7c1a3b5093d25fcff723fe1f8327687";><code>458d160</code></a>
 feat: repository variables handler (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/857";>#857</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/460733dd3f49863b159ffb48050ab9523300ff84";><code>460733d</code></a>
 Add Event::CopilotWorkStarted (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/854";>#854</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/d5a81d6c900fb6bb2b43c7c7e5e6afd7567df252";><code>d5a81d6</code></a>
 Fix: actualized <code>Commit</code> for GET <code>/search/commits</code> (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/851";>#851</a>)</li>
   <li>See full diff in <a 
href="https://github.com/XAMPPRocky/octocrab/compare/v0.49.5...v0.49.6";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `passterm` from 2.0.1 to 2.0.6
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/finfet/passterm/blob/main/CHANGELOG.md";>passterm's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 2.0.6</h2>
   <p>2025-02-01</p>
   <ul>
   <li>Switch to windows-link for windows linking</li>
   </ul>
   <h2>Version 2.0.5</h2>
   <p>2024-12-07</p>
   <ul>
   <li>Fix extraneous newline being printed on windows</li>
   <li>Open tty with O_NOCTTY on unix systems to prevent the prompt from 
becoming
   the controlling terminal</li>
   <li>Fix stdin password prompt to always attempt to disable echo even if stdin
   is not a tty</li>
   </ul>
   <h2>Version 2.0.4</h2>
   <p>2024-10-27</p>
   <ul>
   <li>Various windows fixes. Add check for null stdin handle, and avoid 
closing it</li>
   <li>Upgrade zeroize version</li>
   </ul>
   <h2>Version 2.0.3</h2>
   <p>2023-12-15</p>
   <ul>
   <li>Remove usage of windows-sys</li>
   </ul>
   <h2>Version 2.0.2</h2>
   <p>2023-12-15</p>
   <ul>
   <li>Upgrade dependencies</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/finfet/passterm/commit/fe55ce8cca520700a8ee92d621b9d1449ba77471";><code>fe55ce8</code></a>
 Fix windows-link macro call</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/f1a851a61fe4dec73e992bcfec9a5349bf9b9dd4";><code>f1a851a</code></a>
 passterm v2.0.6</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/4fc1d4cba0acc4eec07a52289cff22e9371319ed";><code>4fc1d4c</code></a>
 Update CHANGELOG</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/2f4bcc5587798b998216522ef8bb182d82ad26f2";><code>2f4bcc5</code></a>
 Fix tty prompt to use O_CNOTTY</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/d38759b11665760906417ea3df0df040d3403a17";><code>d38759b</code></a>
 Fix extraneous newline on windows pass prompts</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/6d677ab5f5f69ed8b0a0adf535012f969f2ed43c";><code>6d677ab</code></a>
 Version 2.0.4</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/8f1388d4692e625b48f18fade6c5bc2856c3ec6d";><code>8f1388d</code></a>
 Various Windows fixes</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/79ee0fe86d5436402d4b001bd22d06e51bab089b";><code>79ee0fe</code></a>
 Version 2.0.3</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/064cca7c0bc7470dfc6896f1e9c2fd59464c753c";><code>064cca7</code></a>
 Remove windows-sys dependency</li>
   <li><a 
href="https://github.com/finfet/passterm/commit/21a47e676cfc038c59e49d1f6940b6e9106d8641";><code>21a47e6</code></a>
 Upgrade deps</li>
   <li>See full diff in <a 
href="https://github.com/finfet/passterm/compare/v2.0.1...v2.0.6";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `toml` from 1.0.7+spec-1.1.0 to 1.1.0+spec-1.1.0
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/toml-rs/toml/commit/d66e46e2c3f91e1d6d6479c5decea0993c2c76ba";><code>d66e46e</code></a>
 chore: Release</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/8a05aef303b194e0b6fc07ecddd2968243e9f9ef";><code>8a05aef</code></a>
 docs: Update changelog</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/dae17528484ebfd8c223bff6e34e2fb2df84d0bf";><code>dae1752</code></a>
 chore: Bump to Edition 2024 (<a 
href="https://redirect.github.com/toml-rs/toml/issues/1124";>#1124</a>)</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/88aaa9ceec8d3dd71333f2a54b0c10ed175c2ecc";><code>88aaa9c</code></a>
 chore: Bump to Edition 2024</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/35ae47fb75ed61950370353c2782474b6ea78ba3";><code>35ae47f</code></a>
 refactor(bench): Rename away from 'gen'</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/7f439365135f9c833c145b1c64fd6718844af7ac";><code>7f43936</code></a>
 style: Remove redundant ref</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/24a472a8b1494970a66f085509a2844d5236a5bb";><code>24a472a</code></a>
 refactor: Use core::error::Error with MSRV 1.85</li>
   <li><a 
href="https://github.com/toml-rs/toml/commit/b4c084065e88190b83b9efc60e75da924e7f84f1";><code>b4c0840</code></a>
 chore: Bump MSRV to 1.85</li>
   <li>See full diff in <a 
href="https://github.com/toml-rs/toml/compare/toml-v1.0.7...toml-v1.1.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `zip` from 8.3.0 to 8.4.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/zip-rs/zip2/releases";>zip's 
releases</a>.</em></p>
   <blockquote>
   <h2>v8.4.0</h2>
   <h3><!-- raw HTML omitted -->🚀 Features</h3>
   <ul>
   <li>add a check for building benches (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/748";>#748</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->🚜 Refactor</h3>
   <ul>
   <li>split part of <code>read.rs</code> for code readability (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/744";>#744</a>)</li>
   <li>remove unused allow (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/745";>#745</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚡ Performance</h3>
   <ul>
   <li>skip BufReader for Stored files in make_reader (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/739";>#739</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>move pull request template to correct folder (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/749";>#749</a>)</li>
   </ul>
   <h2>v8.3.1</h2>
   <h3><!-- raw HTML omitted -->🚜 Refactor</h3>
   <ul>
   <li>use <code>AexEncryption::new</code> (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/736";>#736</a>)</li>
   <li>update tests to add big endian miri check (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/735";>#735</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>cleanup repository files (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/743";>#743</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md";>zip's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/zip-rs/zip2/compare/v8.3.1...v8.4.0";>8.4.0</a> - 
2026-03-23</h2>
   <h3><!-- raw HTML omitted -->🚀 Features</h3>
   <ul>
   <li>add a check for building benches (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/748";>#748</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->🚜 Refactor</h3>
   <ul>
   <li>split part of <code>read.rs</code> for code readability (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/744";>#744</a>)</li>
   <li>remove unused allow (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/745";>#745</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚡ Performance</h3>
   <ul>
   <li>skip BufReader for Stored files in make_reader (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/739";>#739</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>move pull request template to correct folder (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/749";>#749</a>)</li>
   </ul>
   <h2><a 
href="https://github.com/zip-rs/zip2/compare/v8.3.0...v8.3.1";>8.3.1</a> - 
2026-03-21</h2>
   <h3><!-- raw HTML omitted -->🚜 Refactor</h3>
   <ul>
   <li>use <code>AexEncryption::new</code> (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/736";>#736</a>)</li>
   <li>update tests to add big endian miri check (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/735";>#735</a>)</li>
   </ul>
   <h3><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>cleanup repository files (<a 
href="https://redirect.github.com/zip-rs/zip2/pull/743";>#743</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/a73f55b481b07d4592d387108b897679cb707724";><code>a73f55b</code></a>
 chore: release v8.3.2 (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/746";>#746</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/f5e7fd56cf6efa2b403c5f1548e9fc404f8f7ac8";><code>f5e7fd5</code></a>
 feat: add a check for building benches (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/748";>#748</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/abc0424ad8a6d5764c653c865180161ede627d4c";><code>abc0424</code></a>
 chore: move pull request template to correct folder (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/749";>#749</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/bae095bd3a1f57fc378a602e0ee26f7e4e82a3b9";><code>bae095b</code></a>
 refactor: split part of <code>read.rs</code> for code readability (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/744";>#744</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/f5813c50bcd41349b1d9face44f041216798835f";><code>f5813c5</code></a>
 refactor: remove unused allow (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/745";>#745</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/c2999bcad2284d7a5ffafc1797f0fbfb5e127964";><code>c2999bc</code></a>
 perf: skip BufReader for Stored files in make_reader (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/739";>#739</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/e615f8e7b7c3bdca71aed8a96ba1b2e2ba041b6c";><code>e615f8e</code></a>
 chore: release v8.3.1 (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/742";>#742</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/053d38b0d088805522e14eac79d43bb3158477ab";><code>053d38b</code></a>
 chore: cleanup repository files (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/743";>#743</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/52d841212a46f9eb9777171857983784c127d272";><code>52d8412</code></a>
 refactor: use <code>AexEncryption::new</code> (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/736";>#736</a>)</li>
   <li><a 
href="https://github.com/zip-rs/zip2/commit/350b8a211f43c1a7081d2f4286aa4cc62ba8846c";><code>350b8a2</code></a>
 refactor: update tests to add big endian miri check (<a 
href="https://redirect.github.com/zip-rs/zip2/issues/735";>#735</a>)</li>
   <li>See full diff in <a 
href="https://github.com/zip-rs/zip2/compare/v8.3.0...v8.4.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   You can trigger a rebase of this PR 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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </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]

Reply via email to