madiele / vod2pod-rss

Vod2Pod-RSS converts a YouTube or Twitch channel into a podcast with ease. It creates a podcast RSS that can be listened to directly inside any podcast client. VODs are transcoded to MP3 on the fly and no server storage is needed!
MIT License
202 stars 4 forks source link

Bump the rust-dependencies group with 4 updates #154

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Updates the requirements on google-youtube3, reqwest, redis and chrono to permit the latest version. Updates google-youtube3 to 5.0.4+20240303

Changelog

Sourced from google-youtube3's changelog.

api/cli-vNEXT (YYYY-MM-DD)

  • New GetToken trait for custom ways of specifying a token. The latter can now be a String or be NoToken as well.
  • Upgrade mkdocs to a more recent version that doesn't break in more recent python interpreters.

api/cli-v3.0.0 (2022-3-8)

  • Support for yup-oauth 0.6
  • Redesigned error handling which won't swallow errors anymore by making less assumptions about them. They are now merely assume to be JSON, with a fallback to the plain message.

api-v2.0.4:cli-v2.0.4 (2021-4-1)

  • every call is async
  • upgrade to hyper 0.14 and tokio 1.0

Note that there are still a few inefficiencies and oddities, but nothing that should prevent using libraries at least. CLIs are available but haven't been used in a while.

api-v1.0.4:cli-v1.0.4 (2017-2-1)

Upgrade to serde 0.9, which removes a lot of complexity and the need for nighly.

api-v1.0.3:cli-v1.0.3 (2017-2-1)

Uprade to hyper v0.10, and use hyper-rustls instead of openssl for all communication. Please note that authentication is still performed using openssl.

api-v1.0.1:cli-v1.0.1 (2016-12-24)

Bug Fixes

  • cli: try to depend on major version of api (b68b2a6b)
  • discovery: handle discovery urls with $ (0ba9535a)
  • license: correct link to license on github (f3d0ef45)
  • versions: cli + api use a single base version (5e28a06d)

Features

  • binaries: remove download information (e6468981)

... (truncated)

Commits


Updates reqwest to 0.11.25

Release notes

Sourced from reqwest's releases.

v0.11.25

What's Changed

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

New Contributors

Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.11.24...v0.11.25

Changelog

Sourced from reqwest's changelog.

v0.11.25

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

v0.11.24

  • Add Certificate::from_pem_bundle() to add a bundle.
  • Add http3_prior_knowledge() to blocking client builder.
  • Remove Sync bounds requirement for Body::wrap_stream().
  • Fix HTTP/2 to retry REFUSED_STREAM requests.
  • Fix instances of converting Url to Uri that could panic.

v0.11.23

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).

v0.11.22

  • Fix compilation on Windows when trust-dns is enabled.

v0.11.21

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.

v0.11.20

  • Fix deflate decompression back to using zlib, as outlined in the spec.

v0.11.19

  • Add ClientBuilder::http1_ignore_invalid_headers_in_responses() option.
  • Add ClientBuilder::http1_allow_spaces_after_header_name_in_responses() option.
  • Add support for ALL_PROXY environment variable.
  • Add support for use_preconfigured_tls when combined with HTTP/3.
  • Fix deflate decompression from using the zlib decoder.
  • Fix Response::{text, text_with_charset}() to strip BOM characters.
  • Fix a panic when HTTP/3 is used if UDP isn't able to connect.
  • Fix some dependencies for HTTP/3.
  • Increase MSRV to 1.63.

v0.11.18

... (truncated)

Commits


Updates redis to 0.25.0

Release notes

Sourced from redis's releases.

v0.25.0

0.25.0 (2024-03-08)

Features

  • Breaking change: Add connection timeout to the cluster client (#834)
  • Breaking change: Deprecate aio::Connection (#889)
  • Cluster: fix read from replica & missing slots (#965)
  • Async cluster connection: Improve handling of missing connections (#968)
  • Add support for parsing to/from any sized arrays (#981)
  • Upgrade to rustls 0.22 (#1000 @​djc)
  • add SMISMEMBER command (#1002 @​Zacaria)
  • Add support for some big number types (#1014 @​AkiraMiyakoda)
  • Add Support for UUIDs (#1029 @​Rabbitminers)
  • Add FromRedisValue::from_owned_redis_value to reduce copies while parsing response (#1030 @​Nathan-Fenner)
  • Save reconnected connections during retries (#1033)
  • Avoid panic on connection failure (#1035)
  • add disable client setinfo feature and its default mode is off (#1036 @​Ggiggle)
  • Reconnect on parsing errors (#1051)
  • preallocate buffer for evalsha in Script (#1044 @​framlog)

Changes

  • Align more commands routings (#938)
  • Fix HashMap conversion (#977 @​mxbrt)
  • MultiplexedConnection: Remove unnecessary allocation in send (#990)
  • Tests: Reduce cluster setup flakiness (#999)
  • Remove the unwrap_or! macro (#1010)
  • Remove allocation from command function (#1008)
  • Catch panics from task::spawn in tests (#1015)
  • Fix lint errors from new Rust version (#1016)
  • Fix warnings that appear only with native-TLS (#1018)
  • Hide the req_packed_commands from docs (#1020)
  • Fix documentaion error (#1022 @​rcl-viveksharma)
  • Fixes minor grammar mistake in json.rs file (#1026 @​RScrusoe)
  • Enable ignored pipe test (#1027)
  • Fix names of existing async cluster tests (#1028)
  • Add lock file to keep MSRV constant (#1039)
  • Fail CI if lock file isn't updated (#1042)
  • impl Clone/Copy for SetOptions (#1046 @​ahmadbky)
  • docs: add "connection-manager" cfg attr (#1048 @​DCNick3)
  • Remove the usage of aio::Connection in tests (#1049)
  • Fix new clippy lints (#1052)
  • Handle server errors in array response (#1056)
  • Appease Clippy (#1061)
  • make Pipeline handle returned bulks correctly (#1063 @​framlog)
  • Update mio dependency due to vulnerability (#1064)
  • Simplify Sink polling logic (#1065)
  • Separate parsing errors from general response errors (#1069)
Commits
  • c90a96e Release redis 0.25.0 / redis-test 0.4.0
  • 38e4179 Separate parsing errors from general response errors.
  • 069a952 Create a server error type.
  • b0955da Handle server errors in array response.
  • 4c9924e Fail CI if lock file isn't updated.
  • 1a5032d Remove the usage of aio::Connection in tests.
  • 97b5be1 Simplify Sink polling logic.
  • afd0e0d Update mio dependency due to vulnerability. (#1064)
  • 3867f3f [fix] make Pipeline handle returned bulks correctly
  • 78a37b5 Save reconnected connections during retries.
  • Additional commits viewable in compare view


Updates chrono to 0.4.35

Release notes

Sourced from chrono's releases.

v0.4.35

Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.

The most significant changes in this release are two sets of deprecations.

  • We deprecated all timestamp-related methods on NaiveDateTime. The reason is that a timestamp is defined to be in UTC. The NaiveDateTime type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the DateTime<Utc> type, or from the TimeZone trait.

    Converting from NaiveDateTime to DateTime<Utc> is simple with .and_utc(), and in the other direction with .naive_utc().

  • The panicking constructors of TimeDelta (the new name of the Duration type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.

  • A nice change is that NaiveDate now includes a niche. So now Option<NaiveDate>, Option<NaiveDateTime> and Option<DateTime<Tz>> are the same size as their base types.

  • format::Numeric and format::Fixed are marked as non_exhaustive. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.

Additions

  • Add DateTime::{from_timestamp_micros, from_timestamp_nanos} (#1234)
  • Add getters to Parsed (#1465)

Deprecations

  • Deprecate timestamp methods on NaiveDateTime (#1473)
  • Deprecate panicking constructors of TimeDelta (#1450)

Changes/fixes

  • Use NonZeroI32 inside NaiveDate (#1207)
  • Mark format::Numeric and format::Fixed as non_exhaustive (#1430)
  • Parsed fixes to error values (#1439)
  • Use overflowing_naive_local in DateTime::checked_add* (#1333)
  • Do complete range checks in Parsed::set_* (#1465)

Documentation

  • Rustfmt doctests (#1452)
  • Improve docs for crate features (#1455, thanks @​edmorley)
  • Add more documentation and examples to Parsed (#1439)

Internal

  • Refactor internals module (#1428, #1429, #1431, #1432, #1433, #1438)
  • CI: test cross-compiling to x86_64-unknown-illumos instead of Solaris (#1437)
  • CI: lint Windows target, fix clippy warning (#1441)
  • CI: only run cargo hack check on Linux (#1442)
  • Update windows-bindgen to 0.54 (#1462, #1483)
  • Simplify error value of parse_internal (#1459)
  • Simplify SerdeError (#1458)
  • Simplify NaiveDate::from_isoywd a bit (#1464)

... (truncated)

Changelog

Sourced from chrono's changelog.

ChangeLog for Chrono

This documents notable changes to Chrono up to and including version 0.4.19. For later releases, please review the release notes on GitHub.

0.4.19

  • Correct build on solaris/illumos

0.4.18

  • Restore support for x86_64-fortanix-unknown-sgx

0.4.17

  • Fix a name resolution error in wasm-bindgen code introduced by removing the dependency on time v0.1

0.4.16

Features

  • Add %Z specifier to the FromStr, similar to the glibc strptime (does not set the offset from the timezone name)

  • Drop the dependency on time v0.1, which is deprecated, unless the oldtime feature is active. This feature is active by default in v0.4.16 for backwards compatibility, but will likely be removed in v0.5. Code that imports time::Duration should be switched to import chrono::Duration instead to avoid breakage.

0.4.15

Fixes

0.4.14 YANKED

Features

  • Add day and week iterators for NaiveDate (@​gnzlbg & @​robyoung)
  • Add a Month enum (@​hhamana)
  • Add locales. All format functions can now use locales, see the documentation for the unstable-locales feature.
  • Fix Local.from_local_datetime method for wasm

Improvements

... (truncated)

Commits
  • 9fdb596 Prepare 0.4.35
  • 9e667b6 Deprecate panicking TimeDelta constructors
  • 2c1b0be Tests: replace TimeDelta::milliseconds with try_milliseconds
  • 2bf3302 Tests: replace TimeDelta::seconds with try_seconds
  • f93508f Tests: replace TimeDelta::minutes with try_minutes
  • 9fc931a Tests: replace TimeDelta::hours with try_hours
  • 9f23c08 Tests: replace TimeDelta::days with try_days
  • e8f9b5e Tests: replace TimeDelta::weeks with try_weeks
  • 51a1aa2 Tests: use Days type when it is more appropriate than TimeDelta
  • 4251bd1 Replace TimeDelta::seconds with try_seconds
  • Additional commits viewable 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions