Bump the rust-dependencies group with 8 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(3 months ago)
(3 months ago)
(3 months ago)
by isabelatkinson
dependencies rust
Bumps the rust-dependencies group with 8 updates:
Package | From | To |
---|---|---|
uuid | 1.16.0 |
1.17.0 |
cc | 1.2.21 |
1.2.24 |
errno | 0.3.11 |
0.3.12 |
rustversion | 1.0.20 |
1.0.21 |
tempfile | 3.19.1 |
3.20.0 |
windows-core | 0.61.0 |
0.61.2 |
windows-result | 0.3.2 |
0.3.4 |
windows-strings | 0.4.0 |
0.4.2 |
Updates uuid
from 1.16.0 to 1.17.0
Release notes
Sourced from uuid's releases.
v1.17.0
What's Changed
- Added convenience implementation TryFrom for std by
@Nahuel-M
in uuid-rs/uuid#819- Update OSX builds to arm by
@KodrAus
in uuid-rs/uuid#825- Replace derive(Hash) with manual impl in Uuid by
@diopoex
in uuid-rs/uuid#824- Add
wasm32v1-none
Support by@bushrat011899
in uuid-rs/uuid#828- Prepare for 1.17.0 release by
@KodrAus
in uuid-rs/uuid#829New Contributors
@Nahuel-M
made their first contribution in uuid-rs/uuid#819@diopoex
made their first contribution in uuid-rs/uuid#824Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0
Commits
2fd9b61
Merge pull request #829 from uuid-rs/cargo/v1.17.0ed0d385
prepare for 1.17.0 releasec54cadc
Merge pull request #828 from bushrat011899/wasm32v1-none625d769
Fix typo in MVP Web CI9d638e0
Add MVP Web CI Task83dc528
Addwasm32v1-none
support5fbd843
Merge pull request #824 from diopoex/main6635ae4
Merge pull request #825 from uuid-rs/ci/aarch64-apple-darwinb2370f2
update toolchain for outdated jobc74ad33
update OSX builds to arm- Additional commits viewable in compare view
Updates cc
from 1.2.21 to 1.2.24
Release notes
Sourced from cc's releases.
cc-v1.2.24
Other
- Regenerate windows sys bindings (#1471)
cc-v1.2.23
Other
- support "vxworks" and "nto" OSes on
get_base_archiver_variant
(#1456)cc-v1.2.22
Other
- Add
flags
method tocc::Build
for adding multiple flags (#1466)
Changelog
Sourced from cc's changelog.
1.2.24 - 2025-05-23
Other
- Regenerate windows sys bindings (#1471)
1.2.23 - 2025-05-16
Other
- support "vxworks" and "nto" OSes on
get_base_archiver_variant
(#1456)1.2.22 - 2025-05-09
Other
- Add
flags
method tocc::Build
for adding multiple flags (#1466)
Commits
332d31d
chore: release v1.2.24 (#1472)77dddca
Regenerate windows sys bindings (#1471)2e3a7a5
chore: release v1.2.23 (#1470)8ee6782
support "vxworks" and "nto" OSes onget_base_archiver_variant
(#1456)d61b3b3
chore: release v1.2.22 (#1467)f50ff26
Addflags
method tocc::Build
for adding multiple flags (#1466)- See full diff in compare view
Updates errno
from 0.3.11 to 0.3.12
Release notes
Sourced from errno's releases.
v0.3.12
- Issue a better error message if the target is unsupported. #110
Changelog
Sourced from errno's changelog.
[0.3.12] - 2025-05-12
- Issue a better error message if the target is unsupported. #110
Commits
eb75f22
Release 0.3.12. (#111)a9bd71e
Issue a better error message if the target is unsupported. (#110)- See full diff in compare view
Updates rustversion
from 1.0.20 to 1.0.21
Commits
Updates tempfile
from 3.19.1 to 3.20.0
Changelog
Sourced from tempfile's changelog.
3.20.0
This release mostly unifies the behavior/capabilities around "keeping" temporary files:
- Rename
Builder::keep(bool)
(via deprecation) toBuilder::disable_cleanup(bool)
to make it clear that behaves differently fromNamedTempFile::keep()
. The former disables automatic cleanup while the latter consumes theNamedTempFile
object entirely and unsets the "temporary file" attribute (on Windows).- Rename
TempDir::into_path
(via deprecation) toTempDir::keep
to mirrorNamedTempFile::keep
.- Add
TempDir::disable_cleanup
,NamedTempFile::disable_cleanup
, andTempPath::disable_cleanup
making it possible to disable automatic cleanup in-place after creating a temporary file/directory (equivalent to callingBuilder::disable_cleanup
before creating the file/directory).Additionally, it adds a few spooled temporary file features:
- Add
SpooledTempFile::into_file
for turning aSpooledTempFile
into a regular unnamed temporary file, writing it to the backing storage ("rolling" it) if it was still stored in-memory.- Add
spooled_tempfile_in
andSpooledTempFile::new_in
methods for creating spooled temporary files in a specific directory. This makes it possible to choose the backing device for your spooled temporary file which is rather important on Linux where the default temporary directory is likely backed by memory (defeating the entire point of having a spooled temporary file).Finally, this release improves documentation, especially the top-level documentation explaining which temporary file type to use.
BREAKING for those with
deny(warnings)
:
Builder::keep
deprecated in favor ofBuilder::disable_cleanup
.TempDir::into_path
is deprecated in favor ofTempDir::keep
.BREAKING:
Commits
99ffea6
chore: release v3.20.0 (#358)bd2b267
feat: make it possible to disable cleanup in-place after creation (#355)3b30099
ci: really check docs for warnings (#357)f701f52
ci: check docs (#356)d34afe9
doc: improve SpooledData documentation6deb42e
doc: make it easier to pick the correct tempfile constructor/typee284782
feat: allow creating spooled temporary files in a specific directory (#353)07edc31
feat: implementSpooledTempFile::into_file
(#352)b122355
fix: add must_use attribute to TempDir::keep (#351)cbd1e97
feat: renameTempDir::into_path
toTempDir::keep
(#349)- Additional commits viewable in compare view
Updates windows-core
from 0.61.0 to 0.61.2
Commits
- See full diff in compare view
Updates windows-result
from 0.3.2 to 0.3.4
Commits
- See full diff in compare view
Updates windows-strings
from 0.4.0 to 0.4.2
Commits
- See full diff 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 show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
1
+16
-16
Package Dependencies
Technical Details
ID: | 1155567 |
UUID: | 2550489916 |
Node ID: | PR_kwDOAgEgAM6YBWM8 |
Host: | GitHub |
Repository: | mongodb/bson-rust |
Merge State: | Unknown |