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

fix(deps): update cargo pre-1.0 packages (patch) #6505

Merged
merged 1 commit into from
Jan 6, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 3, 2025

This PR contains the following updates:

Package Type Update Change
async-compression dependencies patch 0.4.11 -> 0.4.18
async-trait dependencies patch 0.1.84 -> 0.1.85
async-trait workspace.dependencies patch 0.1.84 -> 0.1.85
console dependencies patch 0.15.8 -> 0.15.10
env_logger dependencies patch 0.11.5 -> 0.11.6
futures (source) dependencies patch 0.3.30 -> 0.3.31
futures-test (source) dev-dependencies patch 0.3.30 -> 0.3.31
hickory-resolver (source) dependencies patch 0.24.1 -> 0.24.2
hyper (source) dependencies patch 0.14.31 -> 0.14.32
libc dependencies patch 0.2.167 -> 0.2.169
libfuzzer-sys dependencies patch 0.4.7 -> 0.4.8
linkme dependencies patch 0.3.27 -> 0.3.31
lru dependencies patch 0.12.3 -> 0.12.5
mockall dev-dependencies patch 0.13.0 -> 0.13.1
mockall dependencies patch 0.13.0 -> 0.13.1
pin-project-lite dependencies patch 0.2.14 -> 0.2.16
sysinfo dependencies patch 0.32.0 -> 0.32.1
tokio-stream (source) dependencies patch 0.1.15 -> 0.1.17
tokio-util (source) dependencies patch 0.7.11 -> 0.7.13
tower-service dependencies patch 0.3.2 -> 0.3.3

Release Notes

Nullus157/async-compression (async-compression)

v0.4.18

Compare Source

Fixed
  • Adjust Level::Precise clamp range for flate2.

v0.4.17

Compare Source

Fixed
  • Fix occasional panics when consuming from pending buffers.

v0.4.16

Compare Source

Other
  • Implement pass-through AsyncBufRead on write-based encoders & decoders.

v0.4.15

Compare Source

Feature
  • Implement pass-through AsyncRead or AsyncWrite where appropriate.
  • Relax AsyncRead/AsyncWrite bounds on *::{get_ref, get_mut, get_pin_mut, into_inner}() methods.

v0.4.14

Compare Source

Fixed
  • In Tokio-based decoders, attempt to decode from internal state even if nothing was read.

v0.4.13

Compare Source

Feature
  • Update brotli dependency to to 7.

v0.4.12

Compare Source

Feature
  • Enable customizing Zstd decoding parameters.
dtolnay/async-trait (async-trait)

v0.1.85

Compare Source

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

v0.15.10

Compare Source

What's Changed

v0.15.9

Compare Source

What's Changed

rust-cli/env_logger (env_logger)

v0.11.6

Compare Source

Features
  • Opt-in file and line rendering
rust-lang/futures-rs (futures)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in select!/select_biased! (#​2832)
    This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#​2848)
hickory-dns/hickory-dns (hickory-resolver)

v0.24.2

Compare Source

What's Changed

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

rust-lang/libc (libc)

v0.2.169

Compare Source

Added
  • FreeBSD: add more socket TCP stack constants #​4193
  • Fuchsia: add a sockaddr_vm definition #​4194
Fixed

Breaking: rust-lang/rust#132975 corrected the signedness of core::ffi::c_char on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to libc, including the following specific pull requests:

  • ESP-IDF: Replace arch-conditional c_char with a reexport #​4195
  • Fix c_char on various targets #​4199
  • Mirror c_char configuration from rust-lang/rust #​4198
Cleanup
  • Do not re-export c_void in target-specific code #​4200

v0.2.168

Compare Source

Added
Deprecated
  • FreeBSD: Deprecate the CAP_UNUSED* and CAP_ALL* constants (#​4183)
Fixed
  • Make the Debug implementation for unions opaque (#​4176)
Other
  • Allow the unpredictable_function_pointer_comparisons lint where needed #​4177
  • CI: Upload artifacts created by libc-test #​4180
  • CI: Use workflow commands to group output by target #​4179
  • CI: add caching #​4183
rust-fuzz/libfuzzer (libfuzzer-sys)

v0.4.8

Compare Source

Released 2024-11-07.

Added
  • Bindings to LLVMFuzzerCustomCrossOver through the fuzz_crossover
    macro. See the example_crossover directory in this crate's repo for a
    complete example.
Changed
  • Updated to libFuzzer commit ab51eccf88f5321e7c60591c5546b254b6afab99
    (release/19.x).

dtolnay/linkme (linkme)

v0.3.31

Compare Source

  • Prevent ref_option_ref pedantic clippy lint from triggering inside generated code (#​103)
  • Implement Debug for DistributedSlice (#​105)

v0.3.30

Compare Source

  • Support Rust 2024 edition (#​102)

v0.3.29

Compare Source

v0.3.28

Compare Source

  • Documentation improvements
jeromefroe/lru-rs (lru)

v0.12.5

Compare Source

  • Upgrade hashbrown dependency to 0.15.

v0.12.4

Compare Source

  • Add methods that take a reference to the key that should be inserted.
asomers/mockall (mockall)

v0.13.1

Compare Source

Fixed
  • Suppress warnings about the #[expect] lint, new in Rust 1.81.0, in
    generated code.
    (#​619)

  • Suppress the #[clippy::ref_option] warning, new in Rust 1.83.0, in
    generated code.
    (#​618)

  • When mocking functions with a closure argument, but not using
    #[concretize], include any additional trait bounds in the trait object
    argument passed to .with and .returning.
    (#​606)

  • Fixed naming conflict when mocking multiple traits with same name but from
    different modules.
    (#​601)

taiki-e/pin-project-lite (pin-project-lite)

v0.2.16

Compare Source

  • Suppress clippy::absolute_paths, clippy::min_ident_chars, and clippy::single_char_lifetime_names lints in generated code.

v0.2.15

Compare Source

  • Work around an issue on negative_impls that allows unsound overlapping Unpin implementations. (#​84)
GuillaumeGomez/sysinfo (sysinfo)

v0.32.1

Compare Source

  • Fix compilation error due to libc update.
tokio-rs/tokio (tokio-stream)

v0.1.17

Compare Source

v0.1.16

Compare Source

tower-rs/tower (tower-service)

v0.3.3

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) January 3, 2025 12:06
Copy link
Contributor Author

renovate bot commented Jan 3, 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 apollo-router/Cargo.toml --package [email protected] --precise 0.3.31
warning: profiles for the non root package will be ignored, specify profiles at the workspace root:
package:   /tmp/renovate/repos/github/apollographql/router/apollo-router-scaffold/scaffold-test/Cargo.toml
workspace: /tmp/renovate/repos/github/apollographql/router/Cargo.toml
    Updating crates.io index
error: failed to select a version for `futures-macro`.
    ... required by package `futures-util v0.3.31`
    ... which satisfies dependency `futures-util = "^0.3.31"` of package `futures v0.3.31`
    ... which satisfies dependency `futures = "^0.3"` of package `external-subgraph v0.1.0 (/tmp/renovate/repos/github/apollographql/router/examples/coprocessor-subgraph/rust)`
versions that meet the requirements `=0.3.31` are: 0.3.31

all possible versions conflict with previously selected packages.

  previously selected package `futures-macro v0.3.30`
    ... which satisfies dependency `futures-macro = "=0.3.30"` of package `futures-test v0.3.30`
    ... which satisfies dependency `futures-test = "^0.3.30"` (locked to 0.3.30) of package `apollo-router v1.59.0 (/tmp/renovate/repos/github/apollographql/router/apollo-router)`
    ... which satisfies path dependency `apollo-router` (locked to 1.59.0) of package `add-timestamp-header v0.1.0 (/tmp/renovate/repos/github/apollographql/router/examples/add-timestamp-header/rhai)`

failed to select a version for `futures-macro` which could resolve this conflict

@svc-apollo-docs
Copy link
Collaborator

svc-apollo-docs commented Jan 3, 2025

✅ Docs Preview Ready

No new or changed pages found.

Copy link
Contributor

github-actions bot commented Jan 3, 2025

@renovate[bot], please consider creating a changeset entry in /.changesets/. These instructions describe the process and tooling.

@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from 166ff7a to d74e1df Compare January 6, 2025 13:40
@renovate renovate bot force-pushed the renovate/patch-cargo-all-pre-1.0 branch from d74e1df to 9ec8ec4 Compare January 6, 2025 21:05
@renovate renovate bot merged commit 49af470 into dev Jan 6, 2025
13 of 14 checks passed
@renovate renovate bot deleted the renovate/patch-cargo-all-pre-1.0 branch January 6, 2025 21:22
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.

1 participant