chore(deps): update rust crate typed-builder to 0.16.0 #53
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.11.0
->0.16.0
Release Notes
idanarye/rust-typed-builder (typed-builder)
v0.16.0
Added
#[builder(crate_module_path = ...)]
for overcoming cases where the derivemacro is used in another crate's macro (see issue #109)
v0.15.2
Fixed
consecutive commas (see issue #106)
v0.15.1
Fixed
v0.15.0
Changed
crate. This is considered a
breaking change because reexporting and/or renmaing the crate can now prevent
the generated code from finding the types it needs (see issue #101)
Fixed
#[deprecated]
now behaves properly -TypedBuilder
generated code itself does trigger the deprecation warning, and instead the
setter for that field now does.
build
method when required fields are not provided now returnsthe never type ("
!
"). Refer to PR #97 for more thorough explanation.Added
#[builder(field_defaults(setter(prefix = "...", suffix = "...")))]
.This either prepends or appends the provided string to the setter method. This allows method names like:
set_x()
,with_y()
, orset_z_value()
.v0.14.0
Added
build_method(into)
andbuild_method(into = ...)
.v0.13.0
Changed
y
empty tuples. This means the empty builder, where no parameter is yet set.
Fixed
#[builder(build_method(...))]
now affects the fakebuild
method that'sgenerated to add information to the compiler error.
v0.12.0
Removed
builder_method_doc = "..."
,builder_type_doc = "..."
andbuild_method_doc = "..."
are replaced withbuilder_method(doc = "...")
,builder_type(doc = "...")
andbuild_method(doc = "...")
.Added
build_method(...)
now has adoc
field.builder_method(...)
andbuilder_type(...)
, which are structured similarly tobuild_method(...)
.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.