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): update dependencies #701

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2024

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.91 -> 1.0.95
arrow workspace.dependencies minor 53.2.0 -> 53.4.0
arrow-array workspace.dependencies minor 53.2.0 -> 53.4.0
arrow-data workspace.dependencies minor 53.2.0 -> 53.4.0
arrow-schema workspace.dependencies minor 53.2.0 -> 53.4.0
async-trait dependencies patch 0.1.83 -> 0.1.85
bytemuck dependencies minor 1.20.0 -> 1.21.0
chrono dependencies patch 0.4.38 -> 0.4.39
clap dependencies patch 4.5.20 -> 4.5.27
colored dependencies minor 2.1.0 -> 2.2.0
cxx (source) dependencies patch 1.0.128 -> 1.0.137
cxx-build (source) build-dependencies patch 1.0.128 -> 1.0.137
env_logger dependencies patch 0.11.5 -> 0.11.6
flume dependencies patch 0.11.0 -> 0.11.1
futures-concurrency dependencies patch 7.6.1 -> 7.6.2
futures-lite dependencies minor 2.3.0 -> 2.6.0
glob dependencies patch 0.3.1 -> 0.3.2
hyper (source) dependencies patch 0.14.30 -> 0.14.32
indexmap dependencies minor 2.6.0 -> 2.7.1
log dependencies patch 0.4.22 -> 0.4.25
parquet dependencies minor 53.1.0 -> 53.4.0
proc-macro2 dependencies patch 1.0.92 -> 1.0.93
pyo3 workspace.dependencies patch 0.22.5 -> 0.22.6
quote dependencies patch 1.0.37 -> 1.0.38
reqwest dependencies patch 0.12.8 -> 0.12.12
ros2-client (source) dependencies patch 0.7.5 -> 0.7.6
semver dependencies patch 1.0.23 -> 1.0.25
serde (source) dependencies patch 1.0.214 -> 1.0.217
serde_json dependencies patch 1.0.128 -> 1.0.137
tabwriter dependencies patch 1.4.0 -> 1.4.1
thiserror dependencies patch 1.0.66 -> 1.0.69
tokio (source) dependencies minor 1.41.0 -> 1.43.0
tokio (source) dev-dependencies minor 1.41.0 -> 1.43.0
tokio-stream (source) dependencies patch 0.1.16 -> 0.1.17
tokio-stream (source) dev-dependencies patch 0.1.16 -> 0.1.17
tracing (source) dependencies patch 0.1.40 -> 0.1.41
tracing (source) dev-dependencies patch 0.1.40 -> 0.1.41
tracing-subscriber (source) dependencies patch 0.3.18 -> 0.3.19
url dependencies patch 2.5.2 -> 2.5.4
uuid dependencies minor 1.11.0 -> 1.12.1
uuid dev-dependencies minor 1.11.0 -> 1.12.1

Release Notes

dtolnay/anyhow (anyhow)

v1.0.95

Compare Source

v1.0.94

Compare Source

  • Documentation improvements

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)
apache/arrow-rs (arrow)

v53.4.0

Compare Source

v53.3.0

Compare Source

dtolnay/async-trait (async-trait)

v0.1.85

Compare Source

  • Omit Self: 'async_trait bound in impl when not needed by signature (#​284)

v0.1.84

Compare Source

  • Support impl Trait in return type (#​282)
Lokathor/bytemuck (bytemuck)

v1.21.0

Compare Source

chronotope/chrono (chrono)

v0.4.39: 0.4.39

Compare Source

What's Changed

clap-rs/clap (clap)

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

Fixes
  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

Compare Source

Fixes
  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
mackwic/colored (colored)

v2.2.0

Compare Source

  • Updated top-level docs to include a note about ColoredString's role in the Colorize pipeline as well as link to it to suggest learning more about how to manipulate existing ColoredString's.
  • Changes to ColoredString:
    • Expose fields.
    • [DEPRECATION]: Deprecated methods fgcolor, bgcolor, and style due to their obsolescence in the face of the exposing of their represented fields.
    • Add methods for clearing specific elements of fgcolor, bgcolor, and style.
    • Change Default implementation to be via derive as Style now implements Default (see changes to Style below).
    • Add implementation of DerefMut.
    • Updated docs to reflect the above changes as well as generally greatly expand them.
  • Changes to Style:
    • Implemented Default for Style (returns CLEAR). This exposes a method by which users can create plain Style's from scratch.
    • Implemented From<Styles> for Style. This lets users easily create Style's from specific styles.
    • Exposed previously private method add.
    • Created method remove which essentially does the opposite.
    • Added builder-style methods in the vein of Colorize to add stylings (e.g. bold, underline, italic, strikethrough).
    • Implemented bitwise operators BitAnd, BitOr, BitXor, and Not as well as their representative assignment operators. You can also use a Styles as an operand for these.
    • Implemented FromIterator<Styles> for Style.
  • Changes to Styles:
    • Implemented bitwise operators BitAnd, BitOr, BitXor, and Not which all combine Styles's and output Style's. These can also take a Style as an operand.
  • Added additional testing for all of the above changes.
  • Added methods with_style and with_color_and_style to Colorize.
dtolnay/cxx (cxx)

v1.0.137

Compare Source

v1.0.136

Compare Source

v1.0.135

Compare Source

v1.0.134

Compare Source

  • Mark all generated impl blocks with #[automatically_derived] to exclude from required test coverage (#​1412)

v1.0.133

Compare Source

  • Move cxxbridge-cmd from dependencies to build-dependencies (#​1409)

v1.0.132

Compare Source

  • Add a matching version of cxxbridge-cmd into any lockfile that contains cxx, to facilitate non-Cargo builds (#​1408)

v1.0.131

Compare Source

v1.0.130

Compare Source

  • Make #[cxx::bridge] generated code compatible with Rust 2024 edition crates (#​1395)

v1.0.129

Compare Source

  • Fix "expected square brackets" error in modules containing inner attributes (#​1380)
rust-cli/env_logger (env_logger)

v0.11.6

Compare Source

Features
  • Opt-in file and line rendering
zesterer/flume (flume)

v0.11.1

Added
  • SendSink::sender
  • SendFut, SendSink, RecvFut, RecvStream, WeakSender, Iter, TryIter, and IntoIter now implement Debug
  • Docs now show required features
Removed
Changed
  • WeakSender is now Clone
  • spin feature no longer uses std::thread::sleep for locking except on Unix-like operating systems and Windows
  • Flume is now in casual maintenance mode.
Fixed
yoshuawuyts/futures-concurrency (futures-concurrency)

v7.6.2

Compare Source

What's Changed
New Contributors

Full Changelog: yoshuawuyts/futures-concurrency@v7.6.1...v7.6.2

smol-rs/futures-lite (futures-lite)

v2.6.0

Compare Source

  • Add Stream::map_while() combinator. (#​116)
  • Add list of excluded features to crate documentation. (#​112)
  • Update docs for AsyncRead::read_exact (#​121)

v2.5.0

Compare Source

  • Remove Unpin bound from the Lines I/O adapter. (#​113)

v2.4.0

Compare Source

  • Add a "fuse" method that makes it so a Future returns Poll::Pending
    forever after it returns Poll::Pending once. (#​101)
  • Add a "stop_after_future" function that allows for running a Stream until a
    Future completes. (#​103)
  • Make it so Zip/TryZip drop completed futures. (#​106)
rust-lang/glob (glob)

v0.3.2

Compare Source

hyperium/hyper (hyper)

v0.14.32

Compare Source

Features

  • server: add Builder::max_pending_accept_reset_streams(num) option (a24f0c0)

Bug Fixes

  • http1: fix intermittent panic parsing partial headers (0f274ae)

New Contributors

Full Changelog: hyperium/hyper@v0.14.31...v0.14.32

v0.14.31

Compare Source

Bug Fixes

  • http1: improve performance of parsing sequentially partial messages (97b595e)
indexmap-rs/indexmap (indexmap)

v2.7.1

Compare Source

  • Added #[track_caller] to functions that may panic.
  • Improved memory reservation for insert_entry.

v2.7.0

Compare Source

  • Added methods Entry::insert_entry and VacantEntry::insert_entry, returning
    an OccupiedEntry after insertion.
rust-lang/log (log)

v0.4.25

Compare Source

v0.4.24

Compare Source

v0.4.23

Compare Source

dtolnay/proc-macro2 (proc-macro2)

v1.0.93

Compare Source

pyo3/pyo3 (pyo3)

v0.22.6: PyO3 0.22.6

Compare Source

This release corrects the check for free-threaded Python introduced in PyO3 0.22.2 to prevent users accidentally installing PyO3 packages on Python 3.13t; PyO3 0.22 does not support free-threaded Python. (Stay tuned for the 0.23 release coming very soon!)

Thanks @​minrk for the report and @​davidhewitt for the fix!

dtolnay/quote (quote)

v1.0.38

Compare Source

  • Support interpolating arrays inside of arrays using a repetition (#​286)
seanmonstar/reqwest (reqwest)

v0.12.12

Compare Source

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

Compare Source

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

v0.12.10

Compare Source

  • 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.

v0.12.9

Compare Source

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.
jhelovuo/ros2-client (ros2-client)

v0.7.6

Compare Source

dtolnay/semver (semver)

v1.0.25

Compare Source

v1.0.24

Compare Source

  • Optimize Ord impls for semver::Prerelease and semver::BuildMetadata (#​328, thanks @​Eh2406)
serde-rs/serde (serde)

v1.0.217

Compare Source

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

v1.0.216

Compare Source

v1.0.215

Compare Source

serde-rs/json (serde_json)

v1.0.137

Compare Source

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#​1231)

v1.0.136

Compare Source

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#​1230, thanks @​goffrie)

v1.0.135

Compare Source

v1.0.134

Compare Source

  • Add RawValue associated constants for literal null, true, false (#​1221, thanks @​bheylin)

v1.0.133

Compare Source

  • Implement From<[T; N]> for serde_json::Value (#​1215)

v1.0.132

Compare Source

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#​1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#​1206)

v1.0.131

Compare Source

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#​1135, thanks @​swlynch99)

v1.0.130

Compare Source

  • Support converting and deserializing Number from i128 and u128 (#​1141, thanks @​druide)

v1.0.129

Compare Source

BurntSushi/tabwriter (tabwriter)

v1.4.1

Compare Source

dtolnay/thiserror (thiserror)

v1.0.69

Compare Source

v1.0.68

Compare Source

  • Handle incomplete expressions more robustly in format arguments, such as while code is being typed (#​341, #​344)

v1.0.67

Compare Source

tokio-rs/tokio (tokio)

v1.43.0: Tokio v1.43.0

Compare Source

1.43.0 (Jan 8th, 2025)

Added
  • net: add UdpSocket::peek methods (#​7068)
  • net: add support for Haiku OS (#​7042)
  • process: add Command::into_std() (#​7014)
  • signal: add SignalKind::info on illumos (#​6995)
  • signal: add support for realtime signals on illumos (#​7029)
Fixed
  • io: don't call set_len before initializing vector in Blocking (#​7054)
  • macros: suppress clippy::needless_return in #[tokio::main] (#​6874)
  • runtime: fix thread parking on WebAssembly (#​7041)
Changes
  • chore: use unsync loads for unsync_load (#​7073)
  • io: use Buf::put_bytes in Repeat read impl (#​7055)
  • task: drop the join waker of a task eagerly (#​6986)
Changes to unstable APIs
  • metrics: improve flexibility of H2Histogram Configuration (#​6963)
  • taskdump: add accessor methods for backtrace (#​6975)
Documented
  • io: clarify ReadBuf::uninit allows initialized buffers as well (#​7053)
  • net: fix ambiguity in TcpStream::try_write_vectored docs (#​7067)
  • runtime: fix LocalRuntime doc links (#​7074)
  • sync: extend documentation for watch::Receiver::wait_for (#​7038)
  • sync: fix typos in OnceCell docs (#​7047)

v1.42.0: Tokio v1.42.0

Compare Source

1.42.0 (Dec 3rd, 2024)

Added
  • io: add AsyncFd::{try_io, try_io_mut} (#​6967)
Fixed
  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#​6929)
  • runtime: do not defer yield_now inside block_in_place (#​6999)
Changes
  • io: simplify io readiness logic (#​6966)
Documented
  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#​6791)
  • time: fix a typo in Instant docs (#​6982)

v1.41.1: Tokio v1.41.1

Compare Source

1.41.1 (Nov 7th, 2024)

Fixed
  • metrics: fix bug with wrong number of buckets for the histogram (#​6957)
  • net: display net requirement for net::UdpSocket in docs (#​6938)
  • net: fix typo in TcpStream internal comment (#​6944)
tokio-rs/tracing (tracing)

v0.1.41: tracing 0.1.41

Compare Source

[ crates.io ] | [ docs.rs ]

This release updates the tracing-core dependency to v0.1.33 and
the tracing-attributes dependency to v0.1.28.

Added
  • core: Add index API for Field (#​2820)
  • core: Allow &[u8] to be recorded as event/span field (#​2954)
Changed
  • Bump MSRV to 1.63 (#​2793)
  • core: Use const thread_locals when possible (#​2838)
Fixed
  • Removed core imports in macros (#​2762)
  • attributes: Added missing RecordTypes for instrument (#​2781)
  • attributes: Change order of async and unsafe modifier (#​2864)
  • Fix missing field prefixes (#​2878)
  • attributes: Extract match scrutinee (#​2880)
  • Fix non-simple macro usage without message (#​2879)
  • Fix event macros with constant field names in the first position (#​2883)
  • Allow field path segments to be keywords (#​2925)
  • core: Fix missed register_callsite error (#​2938)
  • attributes: Support const values for target and name (#​2941)
  • Prefix macro calls with ::core to avoid clashing with local macros (#​3024)
servo/rust-url (url)

v2.5.4

Compare Source

What's Changed

Full Changelog: servo/rust-url@v2.5.3...v2.5.4

v2.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3

uuid-rs/uuid (uuid)

v1.12.1

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.12.0...1.12.1

v1.12.0

Compare Source

⚠️ Possible Breakage

This release includes additional PartialEq implementations on Uuid, which can break inference in some cases.

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.11.1...1.12.0

v1.11.1

Compare Source

What's Changed
New Contributors

Full Changelog: uuid-rs/uuid@1.11.0...1.11.1


Configuration

📅 Schedule: Branch creation - "on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from 090d1f5 to ee7bae5 Compare November 10, 2024 09:26
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 22af10a to 9b77415 Compare November 18, 2024 17:39
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 91507fa to ff61651 Compare November 29, 2024 19:11
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from e8f2389 to d5e5847 Compare December 1, 2024 20:09
@renovate renovate bot changed the title Update dependencies chore(deps): update dependencies Dec 1, 2024
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from ab580ee to 7f2280e Compare December 6, 2024 11:53
@renovate renovate bot changed the title chore(deps): update dependencies Update dependencies Dec 6, 2024
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from e0ba4e8 to 394d943 Compare December 15, 2024 15:55
@renovate renovate bot force-pushed the renovate/dependencies branch 6 times, most recently from 4e21165 to ae0edd4 Compare December 20, 2024 21:27
@renovate renovate bot force-pushed the renovate/dependencies branch 6 times, most recently from 2d00562 to 0347a25 Compare December 31, 2024 18:22
@renovate renovate bot force-pushed the renovate/dependencies branch 9 times, most recently from 1e6b8e8 to 2be780a Compare January 10, 2025 05:24
@renovate renovate bot force-pushed the renovate/dependencies branch 7 times, most recently from 0ad061f to 500c27f Compare January 13, 2025 15:05
Copy link
Contributor Author

renovate bot commented Jan 13, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path libraries/extensions/download/Cargo.toml --package [email protected] --precise 0.12.12
    Updating crates.io index
error: failed to select a version for `tower-layer`.
    ... required by package `tonic v0.11.0`
    ... which satisfies dependency `tonic = "^0.11"` (locked to 0.11.0) of package `opentelemetry-otlp v0.15.0`
    ... which satisfies dependency `opentelemetry-otlp = "^0.15.0"` (locked to 0.15.0) of package `dora-metrics v0.3.8 (/tmp/renovate/repos/github/dora-rs/dora/libraries/extensions/telemetry/metrics)`
    ... which satisfies path dependency `dora-metrics` (locked to 0.3.8) of package `dora-runtime v0.3.8 (/tmp/renovate/repos/github/dora-rs/dora/binaries/runtime)`
    ... which satisfies path dependency `dora-runtime` (locked to 0.3.8) of package `dora-cli v0.3.8 (/tmp/renovate/repos/github/dora-rs/dora/binaries/cli)`
versions that meet the requirements `^0.3` (locked to 0.3.2) are: 0.3.2

all possible versions conflict with previously selected packages.

  previously selected package `tower-layer v0.3.3`
    ... which satisfies dependency `tower-layer = "^0.3.3"` of package `tower v0.5.2`
    ... which satisfies dependency `tower = "^0.5.2"` of package `reqwest v0.12.12`
    ... which satisfies dependency `reqwest = "^0.12.4"` of package `dora-download v0.3.8 (/tmp/renovate/repos/github/dora-rs/dora/libraries/extensions/download)`
    ... which satisfies path dependency `dora-download` (locked to 0.3.8) of package `dora-cli v0.3.8 (/tmp/renovate/repos/github/dora-rs/dora/binaries/cli)`

failed to select a version for `tower-layer` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from edeccd3 to 83c410f Compare January 20, 2025 04:30
@renovate renovate bot changed the title Update dependencies chore(deps): update dependencies Jan 20, 2025
@renovate renovate bot force-pushed the renovate/dependencies branch from 83c410f to 1328b2a Compare January 21, 2025 10:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants