[PR #195] [MERGED] Update derive_builder requirement from 0.9.0 to 0.10.0 #304

Closed
opened 2026-02-27 20:24:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ramsayleung/rspotify/pull/195
Author: @dependabot[bot]
Created: 3/31/2021
Status: Merged
Merged: 4/1/2021
Merged by: @ramsayleung

Base: masterHead: dependabot/cargo/derive_builder-0.10.0


📝 Commits (1)

  • 28e27eb Update derive_builder requirement from 0.9.0 to 0.10.0

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 Cargo.toml (+1 -1)

📄 Description

Updates the requirements on derive_builder to permit the latest version.

Release notes

Sourced from derive_builder's releases.

v0.10.0

  • Requires Rust 1.40.0 or newer (was 1.37.0) #169
  • Logging feature is removed #177
  • Type parameters no longer have the Default bound #178
  • Make most of derive_builder_core private #189
  • Add setter(each = "name") for extension of collection-like fields #199

This release changes how derive_builder handles errors; instead of returning a string, a structured error is now returned from build. This implements std::error::Error, making it easy to use alongside libraries such as anyhow, and it is replaceable, making it easy to drop in your library's own error instead. In addition, this approach means that builders no longer force any allocations, useful in no_std contexts.

Commits
  • 9d2ee6f Bump version to 0.10.0
  • 6f6c0fe Update README with 0.10.0 material
  • 7cde486 Add setter(each = "...") option to extend collection-like fields (#199)
  • c72cd24 Safely support custom errors (#194)
  • ee13c51 Update all dependencies to latest
  • c86f615 Remove all mentions of Travis
  • 39b6ce6 Cumulative CHANGELOG update
  • a9259a8 Add derive_builder_macro to deploy script
  • 76b6454 Shrink derive_builder_core's public API (#189)
  • aa07ba1 Remove skeptic (#188)
  • Additional commits viewable in compare view

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ramsayleung/rspotify/pull/195 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/31/2021 **Status:** ✅ Merged **Merged:** 4/1/2021 **Merged by:** [@ramsayleung](https://github.com/ramsayleung) **Base:** `master` ← **Head:** `dependabot/cargo/derive_builder-0.10.0` --- ### 📝 Commits (1) - [`28e27eb`](https://github.com/ramsayleung/rspotify/commit/28e27ebb0610bcf542bd9430868bfdb607c8908c) Update derive_builder requirement from 0.9.0 to 0.10.0 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Updates the requirements on [derive_builder](https://github.com/colin-kiegel/rust-derive-builder) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/colin-kiegel/rust-derive-builder/releases">derive_builder's releases</a>.</em></p> <blockquote> <h2>v0.10.0</h2> <ul> <li>Requires Rust 1.40.0 or newer (was 1.37.0) <a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/169">#169</a></li> <li>Logging feature is removed <a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/177">#177</a></li> <li>Type parameters no longer have the Default bound <a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/178">#178</a></li> <li>Make most of derive_builder_core private <a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/189">#189</a></li> <li>Add setter(each = &quot;name&quot;) for extension of collection-like fields <a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/199">#199</a></li> </ul> <p>This release changes how <code>derive_builder</code> handles errors; instead of returning a string, a structured error is now returned from <code>build</code>. This implements <code>std::error::Error</code>, making it easy to use alongside libraries such as <code>anyhow</code>, and it is replaceable, making it easy to drop in your library's own error instead. In addition, this approach means that builders no longer force any allocations, useful in <code>no_std</code> contexts.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/9d2ee6ffb7864401e5299b6104721db7a742223b"><code>9d2ee6f</code></a> Bump version to 0.10.0</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/6f6c0fe53f7f88afd5951058a967a741f76027df"><code>6f6c0fe</code></a> Update README with 0.10.0 material</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/7cde4861025278c3af73236263e67c27ac6e20d9"><code>7cde486</code></a> Add setter(each = &quot;...&quot;) option to extend collection-like fields (<a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/199">#199</a>)</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/c72cd242b282d12dcc55dcb8d3e322830c26eec2"><code>c72cd24</code></a> Safely support custom errors (<a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/194">#194</a>)</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/ee13c513e97cf61ea4871b3b6233c833fb1aed37"><code>ee13c51</code></a> Update all dependencies to latest</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/c86f615daf40559be31798429ce366b2387d0c98"><code>c86f615</code></a> Remove all mentions of Travis</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/39b6ce694588ea746037e35beff45672ea86a2b1"><code>39b6ce6</code></a> Cumulative CHANGELOG update</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/a9259a896c705b8f44f3d0cff1aa0e18557dffdf"><code>a9259a8</code></a> Add derive_builder_macro to deploy script</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/76b64542d2406836b62758daa7b7741cc4073fb5"><code>76b6454</code></a> Shrink derive_builder_core's public API (<a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/189">#189</a>)</li> <li><a href="https://github.com/colin-kiegel/rust-derive-builder/commit/aa07ba19c356e250d0f3768817898e7c249a13e1"><code>aa07ba1</code></a> Remove skeptic (<a href="https://github-redirect.dependabot.com/colin-kiegel/rust-derive-builder/issues/188">#188</a>)</li> <li>Additional commits viewable in <a href="https://github.com/colin-kiegel/rust-derive-builder/compare/v0.9.0...v0.10.0">compare view</a></li> </ul> </details> <br /> 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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:24:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rspotify#304
No description provided.