Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the cargo-minor group across 1 directory with 6 updates #19549

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps the cargo-minor group with 6 updates in the / directory:

Package From To
clap 4.5.29 4.5.30
smallvec 1.13.2 1.14.0
quick-xml 0.37.0 0.37.2
ashpd 0.10.2 0.11.0
tempfile 3.15.0 3.17.1
lru 0.12.5 0.13.0

Updates clap from 4.5.29 to 4.5.30

Release notes

Sourced from clap's releases.

v4.5.30

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions
Changelog

Sourced from clap's changelog.

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions
Commits
  • f40b37f chore: Release
  • 63bfe1a docs: Update changelog
  • d6bd7e2 Merge pull request #5763 from epage/complete
  • 0887593 fix(complete): Change ValueHint::Unknown to Other, from AnyPath
  • 61ebe72 chore: Release
  • 2e3fcc6 docs: Update changelog
  • 13dad4c Merge pull request #5759 from clap-rs/renovate/unicode-width-0.x
  • 3ca44c7 Merge pull request #5758 from clap-rs/renovate/terminal_size-0.x
  • d71ae66 Merge pull request #5760 from clap-rs/renovate/stable-1.x
  • a25c734 chore(deps): Update dependency STABLE to v1.81.0
  • Additional commits viewable in compare view

Updates smallvec from 1.13.2 to 1.14.0

Release notes

Sourced from smallvec's releases.

v1.14.0

What's Changed

New Contributors

Full Changelog: servo/rust-smallvec@v1.13.2...v1.14.0

Commits
  • 174f4f0 Version 1.14.0
  • eaeb871 Bump locked hongfuzz version
  • cd9f7d3 Implement MallocSizeOf for SmallVec (v1)
  • 03d9069 Make test_size test aware of target pointer width and "union" feature.
  • See full diff in compare view

Updates quick-xml from 0.37.0 to 0.37.2

Release notes

Sourced from quick-xml's releases.

v0.37.2 - se::to_utf8_io_writer()

What's Changed

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

New Contributors

Full Changelog: tafia/quick-xml@v0.37.1...v0.37.2

v0.37.1 - Write CDATA safely

What's Changed

New Features

  • #831: Add BytesCData::escaped() fn to construct CDATA events from arbitrary user input.

#831: tafia/quick-xml#831

New Contributors

Full Changelog: tafia/quick-xml@v0.37.0...v0.37.1

Changelog

Sourced from quick-xml's changelog.

0.37.2 -- 2024-12-29

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

0.37.1 -- 2024-11-17

New Features

  • #831: Add BytesCData::escaped() fn to construct CDATA events from arbitrary user input.

#831: tafia/quick-xml#831

Commits
  • 52169ca Release 0.37.2
  • 9ad2010 Merge pull request #836 from pronebird/utf8writer
  • 3b5c74d Add to_utf8_io_writer accepting std::io::Write
  • 0793d6a Merge pull request #833 from Mingun/fix-serde-warnings
  • 65f57b2 Remove ignored tests which produces warnings since serde 1.0.215
  • 10177b1 Release 0.37.1
  • 6c4c766 Merge pull request #832 from Turbo87/cdata-escape
  • be09876 Add BytesCData::escaped() fn
  • a5ad85e Merge pull request #830 from allan2/fix-typo
  • 7b5c972 Fix typo
  • See full diff in compare view

Updates ashpd from 0.10.2 to 0.11.0

Release notes

Sourced from ashpd's releases.

0.11.0

What's Changed

Commits
  • 621dde4 desktop/usb: Mark AcquireDevice as private
  • 21ace41 demo: Add a WIP global shortcuts page
  • 56e6e1f demo/usb: Small cleanups
  • 70e8dfd desktop/print: Use boolean externally for collate/reverse
  • 8683be9 desktop/print: Mark use-color as a String
  • 3922a67 desktop/print: Fix PageSetup fields names
  • 79868e6 demo: Update deps
  • cf57aae demo: Added USB portal support
  • 4dc394e desktop: Added usb portal
  • c097e15 flatpak: Allow the base bus name in flatpak
  • Additional commits viewable in compare view

Updates tempfile from 3.15.0 to 3.17.1

Changelog

Sourced from tempfile's changelog.

3.17.1

  • Fix build with windows-sys 0.52. Unfortunately, we have no CI for older windows-sys versions at the moment...

3.17.0

  • Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in Builder::make_in (when creating temporary files of arbitrary types).
  • Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
  • When reseeding with getrandom, use platform (e.g., CPU) specific randomness sources where possible.
  • Clarify some documentation.
  • Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.

3.16.0

  • Update getrandom to 0.3.0 (thanks to @​paolobarbolini).
  • Allow windows-sys versions 0.59.x in addition to 0.59.0 (thanks @​ErichDonGubler).
  • Improved security documentation (thanks to @​n0toose for collaborating with me on this).
Commits
  • 714a259 chore: release 3.17.1
  • 78309ed fix: cast handle to the windows crate HANDLE (#332)
  • 6e7d167 chore: release 3.17.0
  • 3718075 doc: remove incorrect documentation about windows and open files
  • 461369f feat: delete unnamed temporary files on windows immediately
  • 78d30a2 doc: clarify "inner file will be deleted" documentation (#329)
  • 0fe11c4 doc: document how to "keep" temporary files/dirs after creation (#328)
  • 35e0629 feat: simplify getrandom call (#325)
  • 1e5059f fix: handle TLS deallocation (#324)
  • c7b2e1a chore: simplify reborrow
  • Additional commits viewable in compare view

Updates lru from 0.12.5 to 0.13.0

Changelog

Sourced from lru's changelog.

v0.13.0 - 2025-01-27

  • Add peek_mru and pop_mru methods, upgrade dependency on hashbrown to 0.15.2, and update MSRV to 1.65.0.
Commits
  • 6ad1127 Merge pull request #208 from jeromefroe/jerome/prepare-0-13-0-release
  • e0d89c7 Prepare 0.13.0 release
  • 32e2c06 Merge pull request #204 from magick93/upgrade_hashbrown
  • 5c1b2d9 Merge pull request #207 from jeromefroe/jerome/bump-msrv-to-1-65
  • 2f10be2 Bump MSRV to 1.65.0
  • 16048d8 Merge pull request #206 from traceflight/mru
  • 066d9bf Add peek_mru pop_mru
  • b7fec4a Update hashbrown dependency to version 0.15.2
  • 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

…ates

Bumps the cargo-minor group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.29` | `4.5.30` |
| [smallvec](https://github.com/servo/rust-smallvec) | `1.13.2` | `1.14.0` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.37.0` | `0.37.2` |
| [ashpd](https://github.com/bilelmoussaoui/ashpd) | `0.10.2` | `0.11.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.15.0` | `3.17.1` |
| [lru](https://github.com/jeromefroe/lru-rs) | `0.12.5` | `0.13.0` |



Updates `clap` from 4.5.29 to 4.5.30
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.29...clap_complete-v4.5.30)

Updates `smallvec` from 1.13.2 to 1.14.0
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](servo/rust-smallvec@v1.13.2...v1.14.0)

Updates `quick-xml` from 0.37.0 to 0.37.2
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.37.0...v0.37.2)

Updates `ashpd` from 0.10.2 to 0.11.0
- [Release notes](https://github.com/bilelmoussaoui/ashpd/releases)
- [Commits](bilelmoussaoui/ashpd@0.10.2...0.11.0)

Updates `tempfile` from 3.15.0 to 3.17.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.15.0...v3.17.1)

Updates `lru` from 0.12.5 to 0.13.0
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.12.5...0.13.0)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: smallvec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: quick-xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: ashpd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: lru
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done) labels Feb 17, 2025
Comment on lines +268 to +284
[[package]]
name = "ashpd"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df"
dependencies = [
"enumflags2",
"futures-channel",
"futures-util",
"rand 0.9.0",
"serde",
"serde_repr",
"tokio",
"url",
"zbus",
]

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I highly doubt that we want this...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Referencing PolyMeilex/rfd#240.

"getrandom",
"getrandom 0.2.15",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"zerocopy",
"zerocopy 0.7.35",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on lines -3697 to +3726
"zerocopy",
"zerocopy 0.7.35",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -3826,8 +3855,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
dependencies = [
"bytes",
"getrandom",
"rand",
"getrandom 0.2.15",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -4118,7 +4178,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
"cfg-if",
"getrandom",
"getrandom 0.2.15",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant