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 cargo pre-1.0 packages (minor) #11

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 10, 2023

This PR contains the following updates:

Package Type Update Change
apollo-federation-types workspace.dependencies minor 0.10.0 -> 0.15.0
apollo-parser workspace.dependencies minor 0.5 -> 0.8
ariadne workspace.dependencies minor 0.3 -> 0.5
base64 workspace.dependencies minor 0.21 -> 0.22
cargo_metadata workspace.dependencies minor 0.17 -> 0.19
dialoguer workspace.dependencies minor 0.10 -> 0.11
git2 workspace.dependencies minor 0.17 -> 0.19
graphql_client workspace.dependencies minor 0.13 -> 0.14
heck workspace.dependencies minor 0.4 -> 0.5
httpmock workspace.dependencies minor 0.6 -> 0.7
lychee-lib dependencies minor 0.13 -> 0.17
opener workspace.dependencies minor 0.6 -> 0.7
reqwest workspace.dependencies minor 0.11 -> 0.12
strsim workspace.dependencies minor 0.10 -> 0.11
strum workspace.dependencies minor 0.25 -> 0.26
strum_macros workspace.dependencies minor 0.25 -> 0.26
termimad workspace.dependencies minor 0.23 -> 0.31
toml workspace.dependencies minor 0.7 -> 0.8
winreg dependencies minor 0.50 -> 0.52

Release Notes

apollographql/federation-rs (apollo-federation-types)

v0.15.0

Compare Source

v0.14.1

Compare Source

v0.14.0

Compare Source

v0.13.2

Compare Source

v0.13.1

Compare Source

v0.13.0

Compare Source

v0.12.0

Compare Source

v0.11.0

Compare Source

apollographql/apollo-rs (apollo-parser)

v0.8.1

Compare Source

0.8.1 - 2024-08-20

Features

This makes it easier for pretty-printers, linters and the like to work with the
parser API.

v0.8.0

Compare Source

BREAKING

This release removes the Error::new constructor. We recommend not creating instances of
apollo_parser::Error yourself at all.

Fixes

  • add missing location information for lexer errors - PhoebeSzmucer, pull/886, issue/731
    Unexpected characters now raise an error pointing to the character itself, instead of the start of the input document.

v0.7.7

Compare Source

Fixes

  • raise an error for empty field sets - tinnou, pull/845
    It's not legal to write type Object {} with braces but without declaring
    any fields. In the past this was accepted by apollo-parser, now it raises an
    error as required by the spec.

v0.7.6

Compare Source

Fixes

  • optimize the most common lexer matches into lookup tables - allancalix, pull/814
    Parsing large schema documents can be up to 18% faster, typical documents a few percent.
  • fix infinite loops and crashes found through fuzzing - goto-bus-stop, pull/828
    When using a token limit, it was possible to craft a document that would cause an infinite
    loop, eventually leading to an out of memory crash. This is addressed along with several panics.

Maintenance

v0.7.5

Compare Source

0.7.5 - 2023-12-18

Fixes

  • fix parsing \\""" in block string - goto-bus-stop, pull/774
    Previously this was parsed as \ followed by the end of the string,
    now it's correctly parsed as \ followed by an escaped """.
  • emit syntax errors for variables in constant values - SimonSapin, pull/777
    default values and type system directive arguments are considered constants
    and may not use $foo variable values.
  • emit syntax errors for type condition without a type name rishabh3112, pull/781

v0.7.4

Compare Source

Features

  • parse_type parses a selection set with optional outer brackets - lrlna, pull/718 fixing issue/715
    This returns a SyntaxTree<Type> which instead of .document() -> cst::Document
    has .type() -> cst::Type.
    This is intended to parse the string value of a @field(type:) argument
    used in some Apollo Federation directives.
    let source = r#"[[NestedList!]]!"#;
    
    let parser = Parser::new(source);
    let cst: SyntaxTree<cst::Type> = parser.parse_type();
    let errors = cst.errors().collect::<Vec<_>>();
    assert_eq!(errors.len(), 0);

Fixes

  • Input object values can be empty - goto-bus-stop, pull/745 fixing issue/744
    apollo-parser version 0.7.3 introduced a regression where empty input objects failed to parse.
    This is now fixed.

    { field(argument: {}) }

v0.7.3

Compare Source

0.7.3 - 2023-11-07

Fixes

  • Less recursion in parser implementation - goto-bus-stop, pull/721 fixing issue/666
    The parser previously used recursive functions while parsing some repetitive nodes, like members of an enum:

    enum Alphabet { A B C D E F G etc }

    Even though this is a flat list, each member would use a recursive call. Having many members, or fields in a type
    definition, or arguments in a directive, would all contribute to the recursion limit.

    Those cases are now using iteration instead and no longer contribute to the recursion limit. The default recursion limit
    is unchanged at 500, but you could reduce it depending on your needs.

  • Fix overly permissive parsing of implements lists and union member types - goto-bus-stop, pull/721 fixing issue/659
    Previously these definitions were all accepted, despite missing or excessive & and | separators:
    type Ty implements A B
    type Ty implements A && B
    type Ty implements A & B &
    
    union Ty = A B
    union Ty = A || B
    union Ty = A | B |
    Now they report a syntax error.

v0.7.2

Compare Source

0.7.2 - 2023-11-03

Fixes

v0.7.1

Compare Source

0.7.1 - 2023-10-10

Features

  • parse_field_set parses a selection set with optional outer brackets - lrlna, pull/685 fixing issue/681
    This returns a SyntaxTree<SelectionSet> which instead of .document() -> cst::Document
    has .field_set() -> cst::SelectionSet.
    This is intended to parse string value of a FieldSet custom scalar
    used in some Apollo Federation directives.
    let source = r#"a { a }"#;
    
    let parser = Parser::new(source);
    let cst: SyntaxTree<cst::SelectionSet> = parser.parse_selection_set();
    let errors = cst.errors().collect::<Vec<_>>();
    assert_eq!(errors.len(), 0);

v0.7.0

Compare Source

BREAKING

  • rename ast to cst - SimonSapin, commit/f30642aa
    The Rowan-based typed syntax tree emitted by the parser used to be called
    Abstract Syntax Tree (AST) but is in fact not very abstract: it preserves
    text input losslessly, and all tree leaves are string-based tokens.
    This renames it to Concrete Syntax Tree (CST) and renames various APIs accordingly.
    This leaves the name available for a new AST in apollo-compiler 1.0.

v0.6.3

Compare Source

Fixes

  • apply recursion limit where needed, reduce its default from 4096 to 500 - SimonSapin, pull/662
    The limit was only tracked for nested selection sets, but the parser turns out
    to use recursion in other cases too. Issue 666 tracks reducing them.
    Stack overflow was observed with little more than 2000
    nesting levels or repetitions in the new test.
    Defaulting to a quarter of that leaves a comfortable margin.
  • fix various lexer bugs - SimonSapin, pull/646, pull/652
    The lexer was too permissive in emitting tokens instead of errors
    in various cases around numbers, strings, and EOF.
  • fix panic on surrogate code points in unicode escape sequences - SimonSapin, issue/608, pull/658

v0.6.2

Compare Source

Fixes

  • fixes to conversions from AST string nodes to Rust Strings - goto-bus-stop, pull/633, issue/609, issue/611
    This fix affects the String::from(ast::StringValue) conversion function, which returns the contents of a GraphQL string node.
    "\"" was previously interpreted as just a backslash, now it is correctly interpreted as a double quote. For block strings, indentation is stripped as required by the spec.

v0.6.1

Compare Source

Fixes

  • fix lexing escape-sequence-like text in block strings - goto-bus-stop, pull/638, issue/632
    Fixes a regression in 0.6.0 that could cause apollo-parser to reject valid input if a
    block string contained backslashes. Block strings do not support escape sequences so
    backslashes are normally literal, but 0.6.0 tried to lex them as escape sequences,
    which could be invalid (eg. \W is not a supported escape sequence).
    Now block strings are lexed like in 0.5.3. Only the \""" sequence is treated as an
    escape sequence.

v0.6.0

Compare Source

Features

  • zero-alloc lexer - allancalix, pull/322
    Rewrites the lexer to avoid allocating for each token. Synthetic benchmarks
    show about a 25% performance improvement to the parser as a whole.

Fixes

  • fix token limit edge case - goto-bus-stop, pull/619, issue/610
    token_limit now includes the EOF token. In the past you could get
    token_limit + 1 tokens out of the lexer if the token at the limit was the
    EOF token, but now it really always stops at token_limit.

  • create EOF token with empty data - allancalix, pull/591
    Makes consuming the token stream's data produce an identical string to the
    original input of the lexer.

zesterer/ariadne (ariadne)

v0.5.0

Added
  • Support for multi-line notes
  • Support for RangeInclusive as spans
Changed
  • Made Report::build accept a proper span, avoiding much type annotation trouble
Fixed
  • Handling of empty lines
  • Config::new() is now const
  • Several subtle formatting bugs

v0.4.1

Added
  • Support for byte spans

  • The ability to fetch the underlying &str of a Source using source.as_ref()

Changed
  • Upgraded yansi to 1.0

v0.4.0

Breaking changes
  • Added missing S: Span bound for Label::new constructor.

  • Previously labels with backwards spans could be constructed and
    only resulted in a panic when writing (or printing) the report.
    Now Label::new panics immediately when passed a backwards span.

Added
  • Support for alternative string-like types in Source
Changed
  • Memory & performance improvements
Fixed
  • Panic when provided with an empty input

  • Invalid unicode characters for certain arrows

marshallpierce/rust-base64 (base64)

v0.22.1

Compare Source

  • Correct the symbols used for the predefined alphabet::BIN_HEX.

v0.22.0

Compare Source

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

v0.21.7

Compare Source

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

v0.21.6

Compare Source

  • Improved introductory documentation and example

v0.21.5

Compare Source

  • Add Debug and Clone impls for the general purpose Engine

v0.21.4

Compare Source

  • Make encoded_len const, allowing the creation of arrays sized to encode compile-time-known data lengths

v0.21.3

Compare Source

  • Implement source instead of cause on Error types
  • Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
  • Slightly faster chunked encoding for short inputs
  • Decrease binary size
oli-obk/cargo_metadata (cargo_metadata)

v0.19.0

Compare Source

Added
  • Re-exported semver crate directly.
  • Added implementation of std::ops::Index<&PackageId> for Resolve.
  • Added pub fn is_kind(&self, name: TargetKind) -> bool to Target.
  • Added derived implementations of PartialEq, Eq and Hash for Metadata and its members' types.
  • Added default fields to PackageBuilder.
  • Added pub fn new(name:version:id:path:) -> Self to PackageBuilder for providing all required fields upfront.
Changed
  • Bumped MSRV from 1.42.0 to 1.56.0.
  • Made parse_stream more versatile by accepting anything that implements Read.
  • Converted TargetKind and CrateType to an enum representation.
Removed
  • Removed re-exports for BuildMetadata and Prerelease from semver crate.
  • Removed .is_lib(…), .is_bin(…), .is_example(…), .is_test(…), .is_bench(…), .is_custom_build(…), and .is_proc_macro(…) from Target (in favor of adding .is_kind(…)).
Fixed
  • Added missing manifest_path field to Artifact. Fixes #​187.

v0.18.1

Compare Source

v0.18.0

Compare Source

console-rs/dialoguer (dialoguer)

v0.11.0

Compare Source

Enhancements
  • Added dialoguer::Result and dialoguer::Error
  • Added a BasicHistory implementation for History
  • Added vim mode for FuzzySelect
  • All prompts implement Clone
  • Add handling of Delete key for FuzzySelect
Bug fixes
  • Resolve some issues on Windows where pressing shift keys sometimes aborted dialogs
  • Resolve MultiSelect checked and unchecked variants looking the same on Windows
  • Input values that are invalid are now also stored in History
  • Resolve some issues with cursor positioning in Input when using utf-8 characters
  • Correct page is shown when default selected option is not on the first page for Select
  • Fix panic in FuzzySelect when using non-ASCII characters
Breaking
  • Updated MSRV to 1.63.0 due to multiple dependencies on different platforms: rustix, tempfile,linux-raw-sys
  • Removed deprecated Confirm::with_text
  • Removed deprecated ColorfulTheme::inline_selections
  • Prompt builder functions now take mut self instead of &mut self
  • Prompt builder functions now return Self instead of &mut Self
  • Prompt interaction functions now take self instead of &self
  • Prompt interaction functions and other operations now return dialoguer::Result instead of std::io::Result
  • Rename Validator to InputValidator
  • The trait method Theme::format_fuzzy_select_prompt() now takes a byte position instead of a cursor position in order to support UTF-8.
rust-lang/git2-rs (git2)

v0.19.0

Compare Source

0.18.3...0.19.0

Added
  • Added opts functions to control server timeouts (get_server_connect_timeout_in_milliseconds, set_server_connect_timeout_in_milliseconds, get_server_timeout_in_milliseconds, set_server_timeout_in_milliseconds), and add ErrorCode::Timeout.
    #​1052
Changed
Fixed
  • Fixed some callbacks to relay the error from the callback to libgit2.
    #​1043

v0.18.3

Compare Source

0.18.2...0.18.3

Added
  • Added opts:: functions to get / set libgit2 mwindow options
    #​1035
Changed
  • Updated examples to use clap instead of structopt
    #​1007

v0.18.2

Compare Source

0.18.1...0.18.2

Added
  • Added opts::set_ssl_cert_file and opts::set_ssl_cert_dir for setting Certificate Authority file locations.
    #​997
  • Added TreeIter::nth which makes jumping ahead in the iterator more efficient.
    #​1004
  • Added Repository::find_commit_by_prefix to find a commit by a shortened hash.
    #​1011
  • Added Repository::find_tag_by_prefix to find a tag by a shortened hash.
    #​1015
  • Added Repository::find_object_by_prefix to find an object by a shortened hash.
    #​1014
Changed

v0.18.1

Compare Source

0.18.0...0.18.1

Added
  • Added FetchOptions::depth to set the depth of a fetch or clone, adding support for shallow clones.
    #​979
Fixed
  • Fixed an internal data type (TreeWalkCbData) to not assume it is a transparent type while casting.
    #​989
  • Fixed so that DiffPatchidOptions and StashSaveOptions are publicly exported allowing the corresponding APIs to actually be used.
    #​988

v0.18.0

Compare Source

0.17.2...0.18.0

Added
  • Added Blame::blame_buffer for getting blame data for a file that has been modified in memory.
    #​981
Changed
  • Updated to libgit2 1.7.0.
    #​968
  • Updated to libgit2 1.7.1.
    #​982
  • Switched from bitflags 1.x to 2.1. This brings some small changes to types generated by bitflags.
    #​973
  • Changed Revwalk::with_hide_callback to take a mutable reference to its callback to enforce type safety.
    #​970
  • Implemented FusedIterator for many iterators that can support it.
    #​955
Fixed
  • Fixed builds with cargo's -Zminimal-versions.
    #​960
graphql-rust/graphql-client (graphql_client)

v0.14.0

Compare Source

  • Add support for GraphQL’s extend type directive
  • Add support for graphqls:// schema
  • Expose generate_module_token_stream_from_string to allow custom macro wrappers
withoutboats/heck (heck)

v0.5.0

  • Add no_std support.
  • Remove non-additive unicode feature. The library now uses char::is_alphanumeric
    instead of the unicode-segmentation library to determine word boundaries in all cases.
alexliesenfeld/httpmock (httpmock)

v0.7.0

Compare Source

  • BREAKING CHANGES:

  • Improvements:

    • The dependency tree has been significantly slimmed down when the remote feature is not enabled.
    • If the new remote feature is not enabled, httpmock no longer has a dependency on a real HTTP client.
      As a result, certain TLS issues previously reported by users
      should no longer arise.
  • This release also updates all dependencies to the most recent version.

  • The minimum Rust version has been bumped to 1.70.

lycheeverse/lychee (lychee-lib)

v0.17.0

Compare Source

Added
Other
  • Bump the dependencies group across 1 directory with 12 updates (#​1544)
  • Ignore casing when processing markdown fragments + check for percent encoded ancors (#​1535)
  • Fix skipping of email addresses in stylesheets (#​1546)
  • Add support for relative links (#​1489)
  • Box Octocrab error as it is too large (#​1543)
  • Don't check prefix attribute (#​1536)
  • Bump the dependencies group with 3 updates (#​1530)
  • Allow excluding cache based on status code (#​1403)
  • Ignore textContent links in html nodes (#​1528)
  • Exclude rel=dns-prefetch links (#​1520)
  • Improve docs for fragment checker
  • Don't check preconnect links (#​1187)
  • Bump the dependencies group with 6 updates (#​1516)

v0.16.1

Compare Source

v0.16.0

Compare Source

What's Changed

Miscellaneous and Others 🔔

New Contributors

Full Changelog: lycheeverse/lychee@v0.15.1...lychee-lib-v0.16.0

v0.15.1: Version 0.15.1

Compare Source

Overview

Minor improvements. The plugin request chain is ready for use. Take a look at examples/chain/chain.rs to see how it can be used.

What's Changed

Miscellaneous and Others 🔔

New Contributors

Full Changelog: lycheeverse/lychee@v0.15.0...v0.15.1

v0.15.0: Version 0.15.0

Compare Source

What's Changed

Miscellaneous and Others 🔔

New Contributors

Full Changelog: lycheeverse/lychee@v0.14.3...v0.15.0

v0.14.3: Version 0.14.3

Compare Source

What's Changed

Miscellaneous and Others 🔔

New Contributors

Full Changelog: lycheeverse/lychee@v0.14.2...v0.14.3

v0.14.2: Version 0.14.2

Compare Source

Overview

Minor bug fixes and improvements.

What's Changed

Miscellaneous and Others 🔔

New Contributors

Full Changelog: lycheeverse/lychee@v0.14.1...v0.14.2

v0.14.1: Version 0.14.1

Compare Source

Overview

This is a quick patch release with an important fix for the accept setting in the configuration, which
allows overwriting the accepted HTTP status codes.

We re-enabled support for integers:

accept = [200, 203, 429]

You can also mix and match strings (e.g. for ranges) and integers now:

accept = [200, "203", "301..=304", 429]

Ranges behave just like other ranges in Rust. See Range expression docs.

Special thanks to @​Techassi for the quick turnaround on this one. 👍

What's Changed

Miscellaneous and Others 🔔

Full Changelog: lycheeverse/lychee@v0.14.0...v0.14.1

v0.14.0: Version 0.14.0

Compare Source

What's Changed

Breaking Changes and Bugs 🚨
Enhancements and Performance Improvements 🚀

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.

@stackblitz
Copy link

stackblitz bot commented Oct 10, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@changeset-bot
Copy link

changeset-bot bot commented Oct 10, 2023

⚠️ No Changeset found

Latest commit: 233546b

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.

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

@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from eeedf8a to b9f8ded Compare November 4, 2023 02:50
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from b9f8ded to cb52b5b Compare November 21, 2023 23:41
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from cb52b5b to c939d20 Compare January 2, 2024 02:48
Copy link
Contributor Author

renovate bot commented Jan 2, 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 installers/binstall/Cargo.toml --package winreg@0.50.0 --precise 0.52.0
    Updating crates.io index
error: failed to select a version for the requirement `winreg = "^0.50.0"`
candidate versions found which didn't match: 0.52.0
location searched: crates.io index
required by package `ipconfig v0.3.2`
    ... which satisfies dependency `ipconfig = "^0.3.0"` (locked to 0.3.2) of package `trust-dns-resolver v0.21.2`
    ... which satisfies dependency `trust-dns-resolver = "^0.21.1"` (locked to 0.21.2) of package `async-std-resolver v0.21.2`
    ... which satisfies dependency `async-std-resolver = "^0.21.2"` (locked to 0.21.2) of package `check-if-email-exists v0.9.1`
    ... which satisfies dependency `check-if-email-exists = "^0.9.1"` (locked to 0.9.1) of package `lychee-lib v0.15.0`
    ... which satisfies dependency `lychee-lib = "^0.15"` (locked to 0.15.0) of package `xtask v0.1.0 (/tmp/renovate/repos/github/X-oss-byte/Graphrover/xtask)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 3 times, most recently from 536a2b5 to b990c27 Compare January 9, 2024 23:51
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 2 times, most recently from 20b8660 to d78f28e Compare January 25, 2024 02:54
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from d78f28e to 0f83f09 Compare January 30, 2024 05:29
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 0f83f09 to 06beee1 Compare March 2, 2024 08:00
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 06beee1 to 810f1ae Compare March 13, 2024 05:23
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 3 times, most recently from 6b4ef90 to 3ef5e82 Compare March 27, 2024 21:01
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 3ef5e82 to 527f368 Compare April 26, 2024 05:48
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 527f368 to 03d26a9 Compare June 15, 2024 05:29
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 2 times, most recently from 4095114 to c3ed27d Compare July 12, 2024 20:32
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from c3ed27d to 21a74bf Compare August 1, 2024 05:37
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 21a74bf to a1c68c4 Compare August 13, 2024 05:56
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from a1c68c4 to 5edb70b Compare September 12, 2024 05:29
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from 5edb70b to f11b442 Compare October 7, 2024 02:43
Copy link
Contributor Author

renovate bot commented Oct 7, 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 installers/binstall/Cargo.toml --package winreg@0.50.0 --precise 0.52.0
warning: `/tmp/renovate/repos/github/X-oss-byte/Graphrover/.cargo/config` is deprecated in favor of `config.toml`
note: if you need to support cargo 1.38 or earlier, you can symlink `config` to `config.toml`
    Updating crates.io index
error: failed to select a version for the requirement `winreg = "^0.50.0"`
candidate versions found which didn't match: 0.52.0
location searched: crates.io index
required by package `ipconfig v0.3.2`
    ... which satisfies dependency `ipconfig = "^0.3.0"` (locked to 0.3.2) of package `trust-dns-resolver v0.21.2`
    ... which satisfies dependency `trust-dns-resolver = "^0.21.1"` (locked to 0.21.2) of package `async-std-resolver v0.21.2`
    ... which satisfies dependency `async-std-resolver = "^0.21.2"` (locked to 0.21.2) of package `check-if-email-exists v0.9.1`
    ... which satisfies dependency `check-if-email-exists = "^0.9.1"` (locked to 0.9.1) of package `lychee-lib v0.17.0`
    ... which satisfies dependency `lychee-lib = "^0.17"` (locked to 0.17.0) of package `xtask v0.1.0 (/tmp/renovate/repos/github/X-oss-byte/Graphrover/xtask)`

@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 2 times, most recently from d3cdc47 to 8a40c0b Compare October 30, 2024 08:39
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch 2 times, most recently from 40df791 to a76a9cb Compare November 9, 2024 02:46
@renovate renovate bot force-pushed the renovate/cargo-all-pre-1.0 branch from a76a9cb to 233546b Compare November 21, 2024 05:42
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.

0 participants