You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2024/01/29 17:03:21 UTC

[PR] Bump strum_macros from 0.25.3 to 0.26.1 in /lang/rust [avro]

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

   Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.25.3 to 0.26.1.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/Peternator7/strum/blob/master/CHANGELOG.md">strum_macros's changelog</a>.</em></p>
   <blockquote>
   <h2>0.26.1</h2>
   <ul>
   <li><a href="https://redirect.github.com/Peternator7/strum/pull/325">#325</a>: use <code>core</code> instead of <code>std</code> in VariantArray.</li>
   </ul>
   <h2>0.26.0</h2>
   <h3>Breaking Changes</h3>
   <ul>
   <li>The <code>EnumVariantNames</code> macro has been renamed <code>VariantNames</code>. The deprecation warning should steer you in
   the right direction for fixing the warning.</li>
   <li>The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually
   added the implementation in your code.</li>
   <li><code>Display</code> now supports format strings using named fields in the enum variant. This should be a no-op for most code.
   However, if you were outputting a string like <code>&quot;Hello {field}&quot;</code>, this will now be interpretted as a format string.</li>
   <li>EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type
   closer to a mirror of the original and that's always the goal.</li>
   </ul>
   <h3>New features</h3>
   <ul>
   <li>
   <p>The <code>VariantArray</code> macro has been added. This macro adds an associated constant <code>VARIANTS</code> to your enum. The constant
   is a <code>&amp;'static [Self]</code> slice so that you can access all the variants of your enum. This only works on enums that only
   have unit variants.</p>
   <pre lang="rust"><code>use strum::VariantArray;
   <p>#[derive(Debug, VariantArray)]
   enum Color {
   Red,
   Blue,
   Green,
   }</p>
   <p>fn main() {
   println!(&quot;{:?}&quot;, Color::VARIANTS); // prints: [&quot;Red&quot;, &quot;Blue&quot;, &quot;Green&quot;]
   }
   </code></pre></p>
   </li>
   <li>
   <p>The <code>EnumTable</code> macro has been <em>experimentally</em> added. This macro adds a new type that stores an item for each variant
   of the enum. This is useful for storing a value for each variant of an enum. This is an experimental feature because
   I'm not convinced the current api surface area is correct.</p>
   <pre lang="rust"><code>use strum::EnumTable;
   <p>#[derive(Copy, Clone, Debug, EnumTable)]
   enum Color {
   Red,
   Blue,
   Green,
   </code></pre></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a href="https://github.com/Peternator7/strum/commits">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=strum_macros&package-manager=cargo&previous-version=0.25.3&new-version=0.26.1)](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 merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@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: dev-unsubscribe@avro.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Bump strum_macros from 0.25.3 to 0.26.1 in /lang/rust [avro]

Posted by "martin-g (via GitHub)" <gi...@apache.org>.
martin-g merged PR #2716:
URL: https://github.com/apache/avro/pull/2716


-- 
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: dev-unsubscribe@avro.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org