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

chore(deps): bump the all-dependencies group with 10 updates #54

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 12, 2024

Bumps the all-dependencies group with 10 updates:

Package From To
anyhow 1.0.93 1.0.94
chrono 0.4.38 0.4.39
clap 4.5.21 4.5.23
cookie 0.17.0 0.18.1
cookie_store 0.20.0 0.21.1
reqwest_cookie_store 0.7.0 0.8.0
rusqlite 0.31.0 0.32.1
rustc-demangle 0.1.21 0.1.24
serde 1.0.215 1.0.216
unicode-truncate 1.1.0 2.0.0

Updates anyhow from 1.0.93 to 1.0.94

Release notes

Sourced from anyhow's releases.

1.0.94

  • Documentation improvements
Commits
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • 8852dc3 Prevent upload-artifact from causing CI failure
  • See full diff in compare view

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates clap from 4.5.21 to 4.5.23

Release notes

Sourced from clap's releases.

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Changelog

Sourced from clap's changelog.

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Commits

Updates cookie from 0.17.0 to 0.18.1

Changelog

Sourced from cookie's changelog.

Version 0.18.1 (Mar 25, 2024)

New Features

  • Added support for the draft Partitioned attribute.

    The new CookieBuilder::partition(), Cookie::partitioned(), and Cookie::set_partitioned() methods allow enabling and/or disabling the attribute. Additionally, the attribute is recognized during parsing.

  • Added CookieBuilder::removal(), counterpart to Cookie::make_removal().

Version 0.18.0 (Oct 9, 2023)

Breaking Changes

  • The MSRV is now 1.56.

  • Cookie::value() no longer trims surrounding double quotes. (89eddd)

    Use Cookie::value_trimmed() for the previous behavior.

  • Many methods now expect a T: Into<Cookie> in place of Cookie. (49ff7b)

    Functions and methods that previously accepted a Cookie now accept any T: Into<Cookie>. This particularly affects the CookieJar API, which now allows simpler addition and removal of cookies:

    • jar.add(("foo", "bar"));
    • jar.add(Cookie::build(("foo", "bar")).path("/"));
    • jar.remove("foo");
    • jar.remove(Cookie::build("foo").path("/"));
  • CookieJar::force_remove() now expects a T: AsRef<str> in place of &Cookie.

    Force-removal never requires more information than a cookie's name. The API has been simplified to reflect this.

  • CookieBuilder::finish() was deprecated in favor of CookieBuilder::build().

    This largely serves as a compile-time notice that calling finish() or build() is largely unnecessary given that CookieBuilder implements Into<Cookie>.

  • Cookie::named() was deprecated in favor of using Cookie::build() or Cookie::from().

    • Cookie::named("foo") is equivalent to Cookie::from("foo").

... (truncated)

Commits
  • ba46fc5 New version: 0.18.1.
  • cf37d0a Add 'CookieBuilder::removal()'.
  • 273e397 Add support for CHIPS 'partitioned' attribute.
  • 4e48da0 New version: 0.18.0.
  • e2d8dde Fix doc typos.
  • d68d011 Implement cookie prefixes via 'PrefixedJar'.
  • c105b67 Update CHANGELOG for 0.18.
  • fa5de84 Add CI job to check MSRV.
  • b919a52 Update deprecated CI actions.
  • cb84f3a New version: 0.18.0-rc.0.
  • Additional commits viewable in compare view

Updates cookie_store from 0.20.0 to 0.21.1

Changelog

Sourced from cookie_store's changelog.

[0.21.1] - 2024-11-09

Documentation

  • Update CONTRIBUTORS.md
  • Switch to using document-feature for genearating feature flag documentation
  • Improve documentation around features
  • Add documentation around legacy serialization vs. serde module

Features

  • Gate serialization behind features serde{,_json,_ron}

Miscellaneous Tasks

  • Bump indexmap to 2.6.0

Build

  • Set rust-version=1.63.0
  • Add serde_json as a default feature
  • Specify feature dependencies with explcit dep:

Ci

  • Split ci check step build into build + test. Add msrv job

Refact

  • De/serialize through simple Vec instead of CookieStoreSerialized
  • Collect legacy mod cookie_store serialization impl
  • Rename mod serialization -> serde; split out json, ron
  • Split ron and json serialization tests
  • Reorganize tests to respect serde* features
  • Move serialization into dedicated mod serialization

[0.21.0] - 2024-02-08

Miscellaneous Tasks

  • Update CONTRIBUTORS.md

Ci

  • Add missing v0.20.1 CHANGELOG entries
  • Rm --topo-order from git-cliff call

[0.20.1] - 2024-02-08

Bug Fixes

... (truncated)

Commits
  • 01d9a5f chore(release): prepare for v0.21.1
  • edf6359 Merge branch 'master' into idna-1.0
  • 08560c2 ci: split ci check step build into build + test. Add msrv job
  • 7babde5 Update to idna 1.0
  • 1eed496 chore(deps): bump indexmap to 2.6.0
  • 5063890 Merge pull request #46 from dcampbell24/change-edition-set-rust-version
  • 18f9a3b build: set rust-version=1.63.0
  • 05b3187 Include the patch version in MSRV.
  • 50c1e36 doc: update CONTRIBUTORS.md
  • 8baab50 Set the rust-version, update edition.
  • Additional commits viewable in compare view

Updates reqwest_cookie_store from 0.7.0 to 0.8.0

Changelog

Sourced from reqwest_cookie_store's changelog.

[0.8.0] - 2024-05-31

Miscellaneous Tasks

  • Update cookie_store = "^0.21"
Commits

Updates rusqlite from 0.31.0 to 0.32.1

Release notes

Sourced from rusqlite's releases.

0.32.1

What's Changed

  • Fix clippy warnings #1542
  • Prevent interrupt from non-owned connection #1548
  • Test direct-minimal-versions #1549

Full Changelog: rusqlite/rusqlite@v0.32.0...v0.32.1

0.32.0

What's Changed

  • Remove obsolete codes and comments #1458
  • expose total_changes() #1461
  • Fix RawStatement#clear_bindings #1465
  • Add binding to sqlite3_is_interrupted #1468
  • Use CStr::to_str where possible #1470
  • Add binding to sqlite3_db_name #1471
  • Fix Connection::db_name #1476
  • Omit UTF-16 API #1478
  • Omit API #1479
  • Fix test_busy_handler #1480
  • Remove test_busy_timeout #1481
  • Add test to Connection::backup/restore #1482
  • Use C-string literals #1483
  • Activate SQLITE_OPEN_EXRESCODE by default #1485
  • Respect missing values in session's conflict #1230
  • Add bindings to automatic extension loading API #1487
  • Remove Ref/UnwindSafe constraint on FFI callback #1488
  • Check callbacks lifetime #1052
  • Use catch_unwind in init_auto_extension #1489
  • Add preupdate hook #1486, #897
  • Improve test coverage #1490
  • Improve Connection::extension_init2 #1494
  • Bump sqlcipher version to v4.5.7 #1504
  • Fix parsing of virtual table parameters #1506
  • Bump bundled SQLite version to 3.46.0 #1508
  • fix: build should support lib64 dir for OpenSSL3.x #1502
  • chore: fix some comments #1515
  • Applied some spellchecker suggestions #1531
  • Allow setting default connection transaction behavior #1532
  • Bump sqlite3-parser version #1538

Full Changelog: rusqlite/rusqlite@v0.31.0...v0.32.0

Commits

Updates rustc-demangle from 0.1.21 to 0.1.24

Commits
  • d43f6d5 0.1.24 release
  • 0ad7b13 Always omit zero disambiguators on crate-roots.
  • af38dc6 0.1.23 release
  • 61c64c3 Merge pull request #63 from Mark-Simulacrum/direct-write
  • 13be70d Directly write to output instead of local String buffer
  • 69fb82b Merge pull request #62 from Mark-Simulacrum/stream-api
  • 9cb4703 Bump to 0.1.22
  • 6c371e0 Skip no-op replacement via try_demangle
  • ae66b3e Bump cargo-fuzz in CI
  • 332c4da Support searching for and demangling symbols
  • See full diff in compare view

Updates serde from 1.0.215 to 1.0.216

Release notes

Sourced from serde's releases.

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • 9497463 Mark all generated trait impls as #[automatically_derived]
  • 46e9ecf Merge pull request #2866 from tdittr/mark-visitors-as-generated
  • e9c399c Mark generated impl de::Visitor blocks as #[automatically_derived]
  • b9dbfcb Switch out fnv in favor of foldhash in test
  • c270e27 Use BuildHasher instead of Hasher in collection macros
  • 0307f60 Resolve question_mark clippy lint in build script
  • See full diff in compare view

Updates unicode-truncate from 1.1.0 to 2.0.0

Release notes

Sourced from unicode-truncate's releases.

v2.0.0

Fixed

  • (deps) update rust crate unicode-width to 0.2

Other

  • make release-plz use github app token
  • [breaking] bump MSRV to 1.66
Changelog

Sourced from unicode-truncate's changelog.

2.0.0 - 2024-11-10

Fixed

  • (deps) update rust crate unicode-width to 0.2

Other

  • make release-plz use github app token
  • [breaking] bump MSRV to 1.66
Commits
  • 95b4d26 chore: release v2.0.0
  • 4c0b472 ci: make release-plz use github app token
  • 2812162 build!: bump MSRV to 1.66
  • 8984d15 fix(deps): update rust crate unicode-width to 0.2
  • abd6d91 fix(deps): update rust crate unicode-segmentation to v1.12.0
  • 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

Bumps the all-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.94` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` |
| [cookie](https://github.com/SergioBenitez/cookie-rs) | `0.17.0` | `0.18.1` |
| [cookie_store](https://github.com/pfernie/cookie_store) | `0.20.0` | `0.21.1` |
| [reqwest_cookie_store](https://github.com/pfernie/reqwest_cookie_store) | `0.7.0` | `0.8.0` |
| [rusqlite](https://github.com/rusqlite/rusqlite) | `0.31.0` | `0.32.1` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.21` | `0.1.24` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.216` |
| [unicode-truncate](https://github.com/Aetf/unicode-truncate) | `1.1.0` | `2.0.0` |


Updates `anyhow` from 1.0.93 to 1.0.94
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.93...1.0.94)

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

Updates `clap` from 4.5.21 to 4.5.23
- [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.21...clap_complete-v4.5.23)

Updates `cookie` from 0.17.0 to 0.18.1
- [Changelog](https://github.com/rwf2/cookie-rs/blob/master/CHANGELOG.md)
- [Commits](rwf2/cookie-rs@0.17.0...0.18.1)

Updates `cookie_store` from 0.20.0 to 0.21.1
- [Changelog](https://github.com/pfernie/cookie_store/blob/master/CHANGELOG.md)
- [Commits](pfernie/cookie_store@v0.20.0...v0.21.1)

Updates `reqwest_cookie_store` from 0.7.0 to 0.8.0
- [Changelog](https://github.com/pfernie/reqwest_cookie_store/blob/main/CHANGELOG.md)
- [Commits](pfernie/reqwest_cookie_store@v0.7.0...v0.8.0)

Updates `rusqlite` from 0.31.0 to 0.32.1
- [Release notes](https://github.com/rusqlite/rusqlite/releases)
- [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md)
- [Commits](rusqlite/rusqlite@v0.31.0...v0.32.1)

Updates `rustc-demangle` from 0.1.21 to 0.1.24
- [Commits](rust-lang/rustc-demangle@0.1.21...0.1.24)

Updates `serde` from 1.0.215 to 1.0.216
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.216)

Updates `unicode-truncate` from 1.1.0 to 2.0.0
- [Release notes](https://github.com/Aetf/unicode-truncate/releases)
- [Changelog](https://github.com/Aetf/unicode-truncate/blob/master/CHANGELOG.md)
- [Commits](Aetf/unicode-truncate@v1.1.0...v2.0.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: cookie
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: cookie_store
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: reqwest_cookie_store
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rusqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: rustc-demangle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: unicode-truncate
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from ThomasTNO December 12, 2024 13:09
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 12, 2024

The following labels could not be found: dependencies, rust.

@ThomasTNO ThomasTNO added dependencies Dependencies update rust Rust related issue labels Dec 12, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the 853bdependabot/cargo/all-dependencies-402e68635d branch December 23, 2024 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependencies update rust Rust related issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant