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.
📬 Issue #, if available:
n/a
✍️ Description of changes:
Preparing releases for new changes to various crates.
Breaking changes
I was considering #955 as a semver breaking change since it is changing the serialized output type of a field. It seems like it would mostly break tests since customers are not really serializing request structs in the wild, rather they are deserializing. But test breakage is still breakage.
And since that is a breaking change,
lambda_http
would be breaking by bumping its dependency.Glad to revise this if other maintainers feel differently.
Not bumping patch versions on path dependencies
Meanwhile, I intentionally did not bump path dependency versions for non-breaking (patch version) changes. Since, all that really accomplishes is break somebody that for some odd reason wants to pin back to an older version and/or is using an older mirror of the crates.io index or something.
Anyway cargo resolution will use the newest version for any consumers that aren't pinning it. So, I don't see much benefit.
Generally you only see larger repos like tokio bumping patch versions of patch dependencies when they want to explicitly use a new API.
🔏 By submitting this pull request
cargo +nightly fmt
.cargo clippy --fix
.