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 across 1 directory with 13 updates #57

Closed

Conversation

dependabot[bot]
Copy link

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

Bumps the all-dependencies group with 13 updates in the / directory:

Package From To
anyhow 1.0.93 1.0.95
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
env_logger 0.11.5 0.11.6
reqwest 0.12.9 0.12.11
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.217
serde_json 1.0.133 1.0.134
unicode-truncate 1.1.0 2.0.0

Updates anyhow from 1.0.93 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 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
  • Additional commits viewable 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 env_logger from 0.11.5 to 0.11.6

Release notes

Sourced from env_logger's releases.

v0.11.6

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering
Changelog

Sourced from env_logger's changelog.

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering
Commits
  • dc1a01a chore: Release
  • 65f81b3 docs: Update changelog
  • 7742599 Merge pull request #345 from EriKWDev/main
  • 59229bc fix: Test result of everything enabled has changed
  • b0d4760 spelling + field names
  • 1bad1f5 feature: ability to display source file path and line number with default for...
  • cc97bf7 chore(deps): Update Rust Stable to v1.83 (#343)
  • 240cd21 style: Make clippy happy
  • da7ff82 chore: Update from _rust template
  • ab1d854 chore(deps): Update Rust crate snapbox to v0.6.20 (#342)
  • Additional commits viewable in compare view

Updates reqwest from 0.12.9 to 0.12.11

Release notes

Sourced from reqwest's releases.

v0.12.11

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.10...v0.12.11

v0.12.10

What's Changed

New Contributors

Thanks

Full Changelog: seanmonstar/reqwest@v0.12.9...v0.12.10

Changelog

Sourced from reqwest's changelog.

v0.12.11

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.
Commits
  • 224f0b8 v0.12.11
  • beea332 fix decoding extra empty frame (#2508)
  • 177cc7f cleanup: typo fix
  • 409cff3 v0.12.10
  • ea48da7 docs: fix a few spelling issues (#2478)
  • 3ce98b5 fix: propagate Body::size_hint when wrapping bodies (#2503)
  • 44ca5ee remove Clone from connect::Unnameable for now (#2502)
  • 2a7c1b6 feat: allow pluggable tower layers in connector service stack (#2496)
  • 8a2174f chore: in README, update requirements to mention rustls along with vendored o...
  • d36c0f5 perf: fix decoder streams to make pooled connections reusable (#2484)
  • 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.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • 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

…13 updates

Bumps the all-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` |
| [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` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.5` | `0.11.6` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.9` | `0.12.11` |
| [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.217` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.134` |
| [unicode-truncate](https://github.com/Aetf/unicode-truncate) | `1.1.0` | `2.0.0` |



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

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 `env_logger` from 0.11.5 to 0.11.6
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.5...v0.11.6)

Updates `reqwest` from 0.12.9 to 0.12.11
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.9...v0.12.11)

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.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

Updates `serde_json` from 1.0.133 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.133...v1.0.134)

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: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: serde_json
  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 added dependencies Dependencies update rust Rust related issue labels Dec 30, 2024
@dependabot dependabot bot requested a review from ThomasTNO December 30, 2024 07:40
Copy link
Author

dependabot bot commented on behalf of github Jan 6, 2025

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

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the 987cdependabot/cargo/all-dependencies-3c7a6f4bda branch January 6, 2025 07:39
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.

0 participants