-
-
Notifications
You must be signed in to change notification settings - Fork 828
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 #18617
Conversation
c3656bb
to
1e257b4
Compare
1e257b4
to
1c9341d
Compare
…ates Bumps the cargo-minor group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.34` | `1.0.35` | | [serde](https://github.com/serde-rs/serde) | `1.0.214` | `1.0.215` | | [rfd](https://github.com/PolyMeilex/rfd) | `0.15.0` | `0.15.1` | | [linkme](https://github.com/dtolnay/linkme) | `0.3.29` | `0.3.31` | | [ashpd](https://github.com/bilelmoussaoui/ashpd) | `0.9.2` | `0.10.2` | Updates `clap` from 4.5.20 to 4.5.21 - [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.20...clap_complete-v4.5.21) Updates `flate2` from 1.0.34 to 1.0.35 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md) - [Commits](rust-lang/flate2-rs@1.0.34...1.0.35) Updates `serde` from 1.0.214 to 1.0.215 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.214...v1.0.215) Updates `rfd` from 0.15.0 to 0.15.1 - [Release notes](https://github.com/PolyMeilex/rfd/releases) - [Changelog](https://github.com/PolyMeilex/rfd/blob/master/CHANGELOG.md) - [Commits](PolyMeilex/rfd@0.15.0...0.15.1) Updates `linkme` from 0.3.29 to 0.3.31 - [Release notes](https://github.com/dtolnay/linkme/releases) - [Commits](dtolnay/linkme@0.3.29...0.3.31) Updates `ashpd` from 0.9.2 to 0.10.2 - [Release notes](https://github.com/bilelmoussaoui/ashpd/releases) - [Commits](bilelmoussaoui/ashpd@0.9.2...0.10.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: flate2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: rfd dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: linkme 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1c9341d
to
87d6c3f
Compare
[target.'cfg(target_os = "linux")'.dependencies] | ||
ashpd = "0.9.2" | ||
# The `tokio` and `async-std` features are mutually exclusive, and `ashpd` itself enables `tokio` | ||
# by default, while `rfd` enables `async-std` for it by default. So we need to disable `tokio` here. | ||
ashpd = { version = "0.10.2", default-features = false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or should it be the other way around: Disable async-std
and use tokio
? Does it matter? I dunno... @kjarosh ?
See:
https://github.com/PolyMeilex/rfd/blob/5cb7002452da5d583f580c50f9753bc97117b1c7/Cargo.toml#L13-L21
https://github.com/bilelmoussaoui/ashpd/blob/62954f769c1ee7731fb59ed3a3d15c0410b82d2c/Cargo.toml#L14-L26
https://github.com/bilelmoussaoui/ashpd/blob/62954f769c1ee7731fb59ed3a3d15c0410b82d2c/src/lib.rs#L9-L10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good question... I see it's mainly used for IO stuff, i.e. detecting Flatpak. So maybe running this inside+outside of Flatpak and checking whether it works is enough
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be sure, which one have we been using by default until now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For future reference: #18645 (comment)
Looks like these dependencies are updatable in another way, so this is no longer needed. |
Bumps the cargo-minor group with 6 updates in the / directory:
4.5.20
4.5.21
1.0.34
1.0.35
1.0.214
1.0.215
0.15.0
0.15.1
0.3.29
0.3.31
0.9.2
0.10.2
Updates
clap
from 4.5.20 to 4.5.21Release notes
Sourced from clap's releases.
Changelog
Sourced from clap's changelog.
Commits
03d7226
chore: Release3df70fb
docs: Update changelog3266c36
Merge pull request #5691 from epage/custom951762d
feat(complete): Allow any OsString-compatible type to be a CompletionCandidatebb6493e
feat(complete): Offer - as a path option27b348d
refactor(complete): Simplify ArgValueCandidates code49b8108
feat(complete): Add PathCompleter82a360a
feat(complete): Add ArgValueCompleter47aedc6
fix(complete): Ensure paths are sorted431e2bc
test(complete): Ensure ArgValueCandidates get filteredUpdates
flate2
from 1.0.34 to 1.0.35Release notes
Sourced from flate2's releases.
Commits
14aec22
Merge pull request #439 from folkertdev/update-zlib-rs-0.4.0eff67ad
upgrade zlib-rs to version0.4.0
ce18d3a
Merge pull request #438 from jdno/upgrade-action74841c5
Upgrade actions/upload-artifactUpdates
serde
from 1.0.214 to 1.0.215Release notes
Sourced from serde's releases.
Commits
8939af4
Release 1.0.215fa5d58c
Use ui test syntax that does not interfere with rustfmt1a3cf4b
Update PR 2562 ui tests7d96352
Merge pull request #2857 from dtolnay/collide111ecc5
Update ui tests for warning on colliding aliasesedd6fe9
Revert "Add checks for conflicts for aliases"a20e924
Revert "pacify clippy"b1353a9
Merge pull request #2856 from dtolnay/denamec59e876
Produce a separate warning for every colliding name7f1e697
Merge pull request #2855 from dtolnay/namespanUpdates
rfd
from 0.15.0 to 0.15.1Release notes
Sourced from rfd's releases.
Changelog
Sourced from rfd's changelog.
Commits
5cb7002
Version bump 0.15.1 (#222)48c452c
deps: Update ashpd to 0.10 (#220)Updates
linkme
from 0.3.29 to 0.3.31Release notes
Sourced from linkme's releases.
Commits
3c09b2b
Release 0.3.3123f271c
Merge pull request #105 from dtolnay/debug310fb2b
Delete redundant DistributedSlice impl block9156041
Implement Debug for DistributedSlice2890326
Merge pull request #104 from dtolnay/refoptionref1096508
Ignore ref_option_ref pedantic clippy lint in generated code2c96488
Release 0.3.300b94c7e
Merge pull request #102 from dtolnay/rust2024107cd3c
Reorder test lint settings to ignore unknown rust-2024-compatibility in old r...42a27d9
Add CI job on Rust 1.82 to test unsafe attrsUpdates
ashpd
from 0.9.2 to 0.10.2Release notes
Sourced from ashpd's releases.
Commits
87ca64b
Release 0.10.2ca96396
docs: Build backend feature for docs.rs as well9760626
Release 0.10.1acc69ad
desktop/notification: Fix glib enum feature7aff974
Bump version to 0.10.0f9caf80
deskto/notification: Support V2291726a
activation-token: Fix clippy warningb61d118
demo: Bump to ashpd gite9d9d92
activation token: Add a Wayland implementation98c44dd
fixup! activation_token: Provide GTK 4 helperDependabot 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