fix(deps): update rust crate trash to v5 #439
Merged
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:
4
->5
Release Notes
ArturKovacs/trash (trash)
v5.0.0
Compare Source
To support non-UTF8 encoding in paths, the
name
field changed fromString
to
OsString
in theTrashItem
struct. As it's a return value, one won't seecode break unless
name
is actually used.Bug Fixes
Support non-Unicode paths
There are several spots where paths are assumed to be Unicode. However,
some (all?) operating systems support non-Unicode paths which causes
trash-rs
to panic if encountered. I switched some of those code to useOsString
s instead ofString
s. Unfortunately, I had to add a newdependency,
urlencoding
, in order to properly handle decoding non-UTF8byte slices.
As of this commit, the test suite passes and code should be ready, but I
will try to remove the
url
crate and useurlencoding
in its placein the next commit.
Other
Bug Fixes (BREAKING)
Note that this changes the type of returned paths to
OsString
from String,hence the breaking change.
Commit Statistics
Commit Details
view details
02d1a8d
)0971b8f
)e4b7119
)559b57b
)209db9d
)2f31116
)url
and replace withurlencoding
(67fb256
)15a15f8
)46585ce
)58b99ef
)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.