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 rust crate reqwest to 0.12.0 #4323

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
reqwest dependencies minor 0.11.24 -> 0.12.0

Release Notes

seanmonstar/reqwest (reqwest)

v0.12.1

Compare Source

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

v0.12.0

Compare Source

  • Upgrade to hyper, http, and http-body v1.
  • Add better support for converting to and from http::Request and http::Response.
  • Add http2 optional cargo feature, default on.
  • Add charset optional cargo feature, default on.
  • Add macos-system-configuration cargo feature, default on.
  • Change all optional dependencies to no longer be exposed as implicit features.
  • Add ClientBuilder::interface(str) to specify the local interface to bind to.
  • Experimental: disables the http3 feature temporarily.

v0.11.27

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

v0.11.26

  • Revert system-configuration upgrade, which broke MSRV on macOS.

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

  • Fix RequestBuilder::json() method from overriding a previously set content-type header. An existing value will be left in place.
  • Upgrade internal dependencies for rustls and compression.

v0.11.17

  • Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9
  • (wasm) Fix blob url support

v0.11.16

  • Chore: set MSRV in Cargo.toml.
  • Docs: fix build on docs.rs

v0.11.15

  • Add RequestBuilder methods to split and reconstruct from its parts.
  • Add experimental HTTP/3 support.
  • Fix connection_verbose to log write_vectored calls.
  • (wasm) Make requests actually cancel if the future is dropped.

v0.11.14

  • Adds Proxy::no_proxy(url) that works like the NO_PROXY environment variable.
  • Adds multipart::Part::headers(headers) method to add custom headers.
  • (wasm) Add Response::bytes_stream().
  • Perf: several internal optimizations reducing copies and memory allocations.

v0.11.13

  • Add ClientBuilder::dns_resolver() option for custom DNS resolvers.
  • Add ClientBuilder::tls_sni(bool) option to enable or disable TLS Server Name Indication.
  • Add Identity::from_pkcs8_pem() constructor when using native-tls.
  • Fix redirect::Policy::limited(0) from following any redirects.

v0.11.12

  • Add ClientBuilder::resolve_to_addrs() which allows a slice of IP addresses to be specified for a single host.
  • Add Response::upgrade() to await whether the server agrees to an HTTP upgrade.

v0.11.11

  • Add HTTP/2 keep-alive configuration methods on ClientBuilder.
  • Add ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses().
  • Add impl Service<Request> for Client and &'_ Client.
  • (wasm) Add RequestBuilder::basic_auth().
  • Fix RequestBuilder::header to not override sensitive if user explicitly set on a HeaderValue.
  • Fix rustls parsing of elliptic curve private keys.
  • Fix Proxy URL parsing of some invalid targets.

v0.11.10

  • Add Error::url() to access the URL of an error.
  • Add Response::extensions() to access the http::Extensions of a response.
  • Fix rustls-native-certs to log an error instead of panicking when loading an invalid system certificate.
  • Fix passing Basic Authorization header to proxies.

v0.11.9

  • Add ClientBuilder::http09_responses(bool) option to allow receiving HTTP/0.9 responses.
  • Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown.
  • Fix proxy loading from environment variables to ignore empty values.

v0.11.8

  • Update internal webpki-roots dependency.

v0.11.7

  • Add blocking::ClientBuilder::resolve() option, matching the async builder.
  • Implement From<tokio::fs::File> for Body.
  • Fix blocking request-scoped timeout applying to bodies as well.
  • (wasm) Fix request bodies using multipart vs formdata.
  • Update internal rustls to 0.20.

v0.11.6

  • (wasm) Fix request bodies more.

v0.11.5

  • Add ClientBuilder::http1_only() method.
  • Add tls::Version type, and ClientBuilder::min_tls_version() and ClientBuilder::max_tls_version() methods.
  • Implement TryFrom<Request> for http::Request.
  • Implement Clone for Identity.
  • Fix NO_PROXYenvironment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and * is allowed to match everything.
  • Fix redirection to respect https_only option.
  • (wasm) Add Body::as_bytes() method.
  • (wasm) Fix sometimes wrong conversation of bytes into a JsValue.
  • (wasm) Avoid dependency on serde-serialize feature.

v0.11.4

  • Add ClientBuilder::resolve() option to override DNS resolution for specific domains.
  • Add native-tls-alpn Cargo feature to use ALPN with the native-tls backend.
  • Add ClientBuilder::deflate() option and deflate Cargo feature to support decoding response bodies using deflate.
  • Add RequestBuilder::version() to allow setting the HTTP version of a request.
  • Fix allowing "invalid" certificates with the rustls-tls backend, when the server uses TLS v1.2 or v1.3.
  • (wasm) Add try_clone to Request and RequestBuilder

v0.11.3

  • Add impl From<hyper::Body> for reqwest::Body.
  • (wasm) Add credentials mode methods to RequestBuilder.

v0.11.2

  • Add CookieStore trait to customize the type that stores and retrieves cookies for a session.
  • Add cookie::Jar as a default CookieStore, easing creating some session cookies before creating the Client.
  • Add ClientBuilder::http2_adaptive_window() option to configure an adaptive HTTP2 flow control behavior.
  • Add ClientBuilder::http2_max_frame_size() option to adjust the maximum HTTP2 frame size that can be received.
  • Implement IntoUrl for String, making it more convenient to create requests with format!.

v0.11.1

  • Add ClientBuilder::tls_built_in_root_certs() option to disable built-in root certificates.
  • Fix rustls-tls glue to more often support ALPN to upgrade to HTTP/2.
  • Fix proxy parsing to assume http:// if no scheme is found.
  • Fix connection pool idle reaping by enabling hyper's runtime feature.
  • (wasm) Add Request::new() constructor.

v0.11.27

Compare Source

  • Add hickory-dns feature, deprecating trust-dns.
  • (wasm) Fix Form::text() to not set octet-stream for plain text fields.

v0.11.26

Compare Source

  • Revert system-configuration upgrade, which broke MSRV on macOS.

v0.11.25

Compare Source

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

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Mar 24, 2024

⚠ 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 packages/libraries/router/Cargo.toml --package reqwest@0.11.24 --precise 0.12.1
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for the requirement `reqwest = "^0.11.24"`
candidate versions found which didn't match: 0.12.1
location searched: crates.io index
required by package `apollo-router v1.43.0`
    ... which satisfies dependency `apollo-router = "^1.13.0"` (locked to 1.43.0) of package `graphql-hive-router v0.0.1 (/tmp/renovate/repos/github/kamilkisiela/graphql-hive/packages/libraries/router)`
perhaps a crate was updated and forgotten to be re-vendored?

Copy link

changeset-bot bot commented Mar 24, 2024

⚠️ No Changeset found

Latest commit: 08e5d45

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Mar 24, 2024

🐋 This PR was built and pushed to the following Docker images (tag: 08e5d4573ea18e3a5351600d3b7d2b3f404b5296):

Docker Bake metadata
{
"app": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/tmffv80uhachki8ut8ioumd5c",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:690fb446eb027043da7d9867617bf521fefbead3750d1bc7e2d9c1dc497c2767",
    "size": 685
  },
  "containerimage.digest": "sha256:690fb446eb027043da7d9867617bf521fefbead3750d1bc7e2d9c1dc497c2767",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/app:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/app:renovate_reqwest_0.x"
},
"composition-federation-2": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/gv9qv32t66qs5hphs2vmmsdv2",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:c6eda39af54f1c3682c2161ac224a56cbf1d3acb02c762fc038ac2ae6a8e627a",
    "size": 685
  },
  "containerimage.digest": "sha256:c6eda39af54f1c3682c2161ac224a56cbf1d3acb02c762fc038ac2ae6a8e627a",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/composition-federation-2:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/composition-federation-2:renovate_reqwest_0.x"
},
"emails": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/hog353ufx0teiz0obvkyviuir",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:cbe06235959d026e30ecd517dcb46641ae0c71b79d014d75ceea85c2aaee28f6",
    "size": 685
  },
  "containerimage.digest": "sha256:cbe06235959d026e30ecd517dcb46641ae0c71b79d014d75ceea85c2aaee28f6",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/emails:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/emails:renovate_reqwest_0.x"
},
"policy": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/bwohx5pua78zvrcw0xwwpcd2p",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:9e9fdcabf8073343fe3f0728ea4e8c3aa146f2b7de3db7de551c7d5dd7ba3894",
    "size": 685
  },
  "containerimage.digest": "sha256:9e9fdcabf8073343fe3f0728ea4e8c3aa146f2b7de3db7de551c7d5dd7ba3894",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/policy:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/policy:renovate_reqwest_0.x"
},
"rate-limit": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/8nj1ucf8425rkgcrohy3vxb2d",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:f07b7994a67fb176961a4899fb6bb04e5f2749196de96ad2e6858a4847586d4e",
    "size": 685
  },
  "containerimage.digest": "sha256:f07b7994a67fb176961a4899fb6bb04e5f2749196de96ad2e6858a4847586d4e",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/rate-limit:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/rate-limit:renovate_reqwest_0.x"
},
"schema": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/ph81skwofzda3d93dgvtwonsn",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:23b8d8f4b059d8a03853a8da760248bf93e5e5bb1eb03f28b5dbe30e9f7141f4",
    "size": 685
  },
  "containerimage.digest": "sha256:23b8d8f4b059d8a03853a8da760248bf93e5e5bb1eb03f28b5dbe30e9f7141f4",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/schema:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/schema:renovate_reqwest_0.x"
},
"server": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/r3frirqibm7iu0f5q4csdrvbb",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:8951e224235f580530bb7b091f9507981fe681bb58f4d15cdbaacc98d2b2bf13",
    "size": 685
  },
  "containerimage.digest": "sha256:8951e224235f580530bb7b091f9507981fe681bb58f4d15cdbaacc98d2b2bf13",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/server:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/server:renovate_reqwest_0.x"
},
"storage": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/dxa71zekhgsw4clujwljpp2vj",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:c3bd6e3e2e03aaadce5e9750a6ebcdfe4cd5abf1e95a9164123ab7ff1810f2ec",
    "size": 685
  },
  "containerimage.digest": "sha256:c3bd6e3e2e03aaadce5e9750a6ebcdfe4cd5abf1e95a9164123ab7ff1810f2ec",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/storage:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/storage:renovate_reqwest_0.x"
},
"stripe-billing": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/czvrsrhxrqprj0uxd0eikj5z3",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:7974155457d6b55b27dc624e390827177c5a048d610cacaeb63ff7457a8597f2",
    "size": 685
  },
  "containerimage.digest": "sha256:7974155457d6b55b27dc624e390827177c5a048d610cacaeb63ff7457a8597f2",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/stripe-billing:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/stripe-billing:renovate_reqwest_0.x"
},
"tokens": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/t6wv5drnq8jctejlv4v7ic5bs",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:5fdc2e7cfac910d59ba1fe379bb40a45202403feb454ab592970e6e95a5489c4",
    "size": 685
  },
  "containerimage.digest": "sha256:5fdc2e7cfac910d59ba1fe379bb40a45202403feb454ab592970e6e95a5489c4",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/tokens:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/tokens:renovate_reqwest_0.x"
},
"usage": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/yenmnjft4az3iyj5sqywk723d",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:f24aa5bfee0abc147de3b0bc46b7ce35df30afec4302cc8c63eb20b2a79813fe",
    "size": 685
  },
  "containerimage.digest": "sha256:f24aa5bfee0abc147de3b0bc46b7ce35df30afec4302cc8c63eb20b2a79813fe",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/usage:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/usage:renovate_reqwest_0.x"
},
"usage-estimator": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/t4o3n80143ryo5ab8zgv15el8",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:27a0b59c9030b03262ff7d95ddf29ee2c49a378dd93db9fe2f7ffa659c17e2d4",
    "size": 685
  },
  "containerimage.digest": "sha256:27a0b59c9030b03262ff7d95ddf29ee2c49a378dd93db9fe2f7ffa659c17e2d4",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/usage-estimator:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/usage-estimator:renovate_reqwest_0.x"
},
"usage-ingestor": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/mh1ch683cg1vn7ft0bzaui2ni",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:c97dd85835aa95d30d06d385e2c888589f91785e34503125aeaf1d724b8dbab9",
    "size": 685
  },
  "containerimage.digest": "sha256:c97dd85835aa95d30d06d385e2c888589f91785e34503125aeaf1d724b8dbab9",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/usage-ingestor:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/usage-ingestor:renovate_reqwest_0.x"
},
"webhooks": {
  "buildx.build.ref": "builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e73/builder-0e3614db-ae4d-4d7e-b79b-f98b1dc01e730/ncu7768q77n5d25z645z0tsld",
  "containerimage.descriptor": {
    "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
    "digest": "sha256:62245a8795d6bf24576c5c4bb972aa721daf28baa2e9c3bfb010e77420c52bae",
    "size": 685
  },
  "containerimage.digest": "sha256:62245a8795d6bf24576c5c4bb972aa721daf28baa2e9c3bfb010e77420c52bae",
  "image.name": "ghcr.io/kamilkisiela/graphql-hive/webhooks:08e5d4573ea18e3a5351600d3b7d2b3f404b5296,ghcr.io/kamilkisiela/graphql-hive/webhooks:renovate_reqwest_0.x"
}
}

Copy link
Contributor Author

renovate bot commented May 28, 2024

⚠️ 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 packages/libraries/router/Cargo.toml --package reqwest@0.11.24 --precise 0.12.4
warning: virtual workspace defaulting to `resolver = "1"` despite one or more workspace members being on edition 2021 which implies `resolver = "2"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
note: for more details see https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
    Updating crates.io index
error: failed to select a version for the requirement `reqwest = "^0.11.24"`
candidate versions found which didn't match: 0.12.4
location searched: crates.io index
required by package `apollo-router v1.47.0`
    ... which satisfies dependency `apollo-router = "^1.13.0"` (locked to 1.47.0) of package `graphql-hive-router v0.0.1 (/tmp/renovate/repos/github/kamilkisiela/graphql-hive/packages/libraries/router)`
perhaps a crate was updated and forgotten to be re-vendored?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants