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 compatible #12426

Merged
merged 1 commit into from
Aug 1, 2023
Merged

chore(deps): update compatible #12426

merged 1 commit into from
Aug 1, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
anyhow workspace.dependencies patch 1.0.47 -> 1.0.72
base64 workspace.dependencies patch 0.21.0 -> 0.21.2
bytesize workspace.dependencies minor 1.0 -> 1.2
clap workspace.dependencies minor 4.2.0 -> 4.3.19
core-foundation workspace.dependencies patch 0.9.0 -> 0.9.3
filetime workspace.dependencies patch 0.2.9 -> 0.2.21
flate2 workspace.dependencies patch 1.0.3 -> 1.0.26
git2 workspace.dependencies patch 0.17.1 -> 0.17.2
glob workspace.dependencies patch 0.3.0 -> 0.3.1
handlebars workspace.dependencies minor 3.2.1 -> 3.5.5
hex workspace.dependencies patch 0.4.2 -> 0.4.3
http-auth workspace.dependencies patch 0.1.6 -> 0.1.8
humantime workspace.dependencies minor 2.0.0 -> 2.1.0
ignore (source) workspace.dependencies patch 0.4.7 -> 0.4.20
im-rc (source) workspace.dependencies minor 15.0.0 -> 15.1.0
lazy_static workspace.dependencies minor 1.3.0 -> 1.4.0
lazycell workspace.dependencies minor 1.2.0 -> 1.3.0
libc workspace.dependencies patch 0.2.144 -> 0.2.147
libgit2-sys workspace.dependencies patch 0.15.1 -> 0.15.2+1.6.4
log workspace.dependencies patch 0.4.17 -> 0.4.19
memchr workspace.dependencies minor 2.1.3 -> 2.5.0
os_info workspace.dependencies minor 3.5.0 -> 3.7.0
pasetors workspace.dependencies patch 0.6.4 -> 0.6.7
percent-encoding workspace.dependencies minor 2.0 -> 2.3
pkg-config workspace.dependencies patch 0.3.19 -> 0.3.27
pretty_assertions workspace.dependencies minor 1.3.0 -> 1.4.0
proptest (source) workspace.dependencies minor 1.1.0 -> 1.2.0
pulldown-cmark workspace.dependencies patch 0.9.2 -> 0.9.3
rustfix workspace.dependencies patch 0.6.0 -> 0.6.1
security-framework (source) workspace.dependencies minor 2.0.0 -> 2.9.2
semver workspace.dependencies patch 1.0.3 -> 1.0.18
serde (source) workspace.dependencies patch 1.0.123 -> 1.0.180
serde_ignored workspace.dependencies patch 0.1.0 -> 0.1.9
serde_json workspace.dependencies patch 1.0.59 -> 1.0.104
sha2 workspace.dependencies patch 0.10.6 -> 0.10.7
shell-escape workspace.dependencies patch 0.1.4 -> 0.1.5
snapbox (source) workspace.dependencies patch 0.4.0 -> 0.4.11
strip-ansi-escapes workspace.dependencies patch 0.1.0 -> 0.1.1
syn workspace.dependencies patch 2.0.14 -> 2.0.28
tar workspace.dependencies patch 0.4.38 -> 0.4.39
tempfile (source) workspace.dependencies minor 3.1.0 -> 3.7.0
termcolor workspace.dependencies minor 1.1.2 -> 1.2.0
thiserror workspace.dependencies patch 1.0.40 -> 1.0.44
toml workspace.dependencies patch 0.7.0 -> 0.7.6
toml_edit workspace.dependencies patch 0.19.0 -> 0.19.14
unicode-width workspace.dependencies patch 0.1.5 -> 0.1.10
unicode-xid workspace.dependencies patch 0.2.0 -> 0.2.4
url workspace.dependencies minor 2.2.2 -> 2.4.0
varisat (source) workspace.dependencies patch 0.2.1 -> 0.2.2
walkdir workspace.dependencies patch 2.3.1 -> 2.3.3

Release Notes

dtolnay/anyhow (anyhow)

v1.0.72

Compare Source

  • Documentation improvements

v1.0.71

Compare Source

  • Documentation improvements

v1.0.70

Compare Source

  • Update syn dependency to 2.x

v1.0.69

Compare Source

  • Documentation improvements

v1.0.68

Compare Source

  • Opt out of -Zrustdoc-scrape-examples on docs.rs for now

v1.0.67

Compare Source

  • Improve the backtrace captured when context() is used on an Option (#​280)

v1.0.66

Compare Source

  • Reduce unhelpful backtrace frames in backtraces captured during a context call (#​279)

v1.0.65

Compare Source

v1.0.64

Compare Source

  • Correctly propagate Backtrace when using #[source] anyhow::Error with thiserror crate (#​231)

v1.0.63

Compare Source

v1.0.62

Compare Source

  • Fix extra rebuilding when interleaving command-line cargo invocations with IDE builds (#​261)

v1.0.61

Compare Source

  • Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (#​252)

v1.0.60

Compare Source

  • Propagate --target to rustc invocation when deciding about backtrace support (#​249, thanks @​RalfJung)

v1.0.59

Compare Source

  • Update crates.io metadata to include no-std category

v1.0.58

Compare Source

  • Fix some broken links in documentation

v1.0.57

Compare Source

  • Remove a log4rs-specific workaround from bail! macro implementation

v1.0.56

Compare Source

  • Add must_use warning when an Error created by anyhow! is not used, perhaps because the programmer meant to write bail! instead (#​229)

v1.0.55

Compare Source

  • Documentation improvements

v1.0.54

Compare Source

  • Construct more helpful error message from ensure! when the expression involves a negative literal const generic as the first generic argument of a method call (#​224)

v1.0.53

Compare Source

v1.0.52

Compare Source

  • Reduce overhead of backtrace capture in the case that backtraces are not enabled (#​212)

v1.0.51

Compare Source

  • Show doc for Ok fn

v1.0.50

Compare Source

v1.0.49

Compare Source

  • Add a function anyhow::Ok(v) equivalent to Ok::<_, anyhow::Error>(v) (#​192)

v1.0.48

Compare Source

Example:
```rust
ensure!(flags.len() <= 40);
```

```rust
ensure!(kind == Kind::File);
```

Before:

```console
Condition failed: `flags.len() <= 40`
Condition failed: `kind == Kind::File`
```

After:

```console
Condition failed: `flags.len() <= 40` (99 vs 40)
Condition failed: `kind == Kind::File` (Symlink vs File)
```
marshallpierce/rust-base64 (base64)

v0.21.2

Compare Source

  • Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code

v0.21.1

Compare Source

  • Remove the possibility of panicking during decoded length calculations
  • DecoderReader no longer sometimes erroneously ignores padding #​226

Breaking changes

  • Engine.internal_decode return type changed
  • Update MSRV to 1.60.0
hyunsik/bytesize (bytesize)

v1.2.0: Release 1.2.0

Compare Source

Changes

v1.1.0: Release 1.1.0

Changes

v1.0.1

Compare Source

clap-rs/clap (clap)

v4.3.19

Compare Source

Fixes
  • (parse) Respect value_terminator even in the presence of later multiple-value positional arguments

v4.3.18

Compare Source

Fixes
  • (parse) Suggest -- in fewer places where it won't work

v4.3.17

Compare Source

Fixes
  • (help) Address a regression in wrapping PossibleValue descriptions in --help

v4.3.16

Compare Source

Fixes
  • Don't assert when stateful value parsers fail on defaults (e.g. checking if a path exists)

v4.3.15

Compare Source

Features
  • (unstable-styles) Re-export anstyle
Documentation
  • (unstable-styles) Provide more examples

v4.3.14

Compare Source

Features
  • ArgAction::HelpShort and ArgAction::HelpLong for explicitly specifying which style of help to display
Fixes
  • Skip [OPTIONS] in usage if a help or version ArgAction is used

v4.3.13

Compare Source

v4.3.12

Compare Source

Fixes
  • (derive) Don't error on enum variant field attributes

v4.3.11

Compare Source

Features
  • (derive) Support fields wrapped in num::Wrapping, Box, or Arc
  • (derive) Support Box<str>, Box<OsStr>, and Box<Path>

v4.3.10

Compare Source

Performance
  • Drop a dependency, reducing binary size by 1.3 KiB

v4.3.9

Compare Source

Fixes
  • Command::ignore_errors no longer masks help/version

v4.3.8

Compare Source

Fixes
  • Error on ambiguity with infer_long_arg, rather than arbitrarily picking one, matching the documentation and subcommand's behavior

v4.3.7

Compare Source

Documentation
  • Further clarify magic behavior in derive tutorial
  • Further clarify derive API's relationship to builder within the tutorial

v4.3.6

Compare Source

Documentation
  • Suggest clio

v4.3.5

Compare Source

  • ColorChoice::possible_values is added to simplify things for builder users
Fixes
  • ColorChoice::to_possible_value no longer includes descriptions, encouraging shorter help where possible

v4.3.4

Compare Source

Features
  • Add Error::exit_code

v4.3.3

Compare Source

Features
  • Command::defer for delayed initialization of subcommands to reduce startup times of large applications like deno

v4.3.2

Compare Source

Fixes
  • (derive) Don't produce unused_equalifications warnings when someone brings a clap type into scope

v4.3.1

Compare Source

Fixes
  • (parse) Respect value_terminator even in the presence of later multiple-value positional arguments

v4.3.0

Compare Source

Fixes
  • (assert) Allow multiple, value-terminated, positional arguments
  • (assert) Clear up language on last assertion
  • (parser) Correctly assign values to arguments when using multiple, value-termianted, positional arguments
  • (parser) Ensure value_terminator has higher precedence than allow_hyphen_values
  • (help) Only use next-line-help on subcommand list when explicitly specified, not just with --help
  • (help) Correctly align possible values list
  • (help) Don't waste code, vertical space in moving possible value descriptions to next line

v4.2.7

Compare Source

Fixes
  • Correctly track remaining length for iterators provided by ArgMatches

v4.2.6

Compare Source

Features
  • impl Eq<std::any::TypeId> for clap_builder::util::AnyValueId

v4.2.5

Compare Source

Fixes
  • Improve panic when a group requires a non-existent ID

v4.2.4

Compare Source

Documentation
  • Corrected docs for Command::style

v4.2.3

Compare Source

Features
  • Command::styles for theming help/errors (behind unstable-styles)

v4.2.2

Compare Source

Internal
  • Update dependencies

v4.2.1

Compare Source

Fixes
  • Don't highlight uninteresting parts of the error message
servo/core-foundation-rs (core-foundation)

v0.9.3

Compare Source

v0.9.2

Compare Source

v0.9.1

Compare Source

alexcrichton/filetime (filetime)

v0.2.21

Compare Source

v0.2.20

Compare Source

v0.2.19

Compare Source

v0.2.18

Compare Source

v0.2.14

Compare Source

v0.2.13

Compare Source

v0.2.12

Compare Source

v0.2.11

Compare Source

v0.2.10

Compare Source

rust-lang/flate2-rs (flate2)

v1.0.26

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.25...1.0.26

v1.0.25

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.24...1.0.25

v1.0.24

Compare Source

v1.0.23

Compare Source

v1.0.22

Compare Source

v1.0.21

Compare Source

v1.0.20

Compare Source

v1.0.19

Compare Source

v1.0.18

Compare Source

v1.0.17

Compare Source

v1.0.16

Compare Source

v1.0.14

Compare Source

v1.0.13

Compare Source

v1.0.12

Compare Source

v1.0.11

Compare Source

v1.0.10

Compare Source

v1.0.9

Compare Source

v1.0.8

Compare Source

v1.0.7

Compare Source

v1.0.6

Compare Source

v1.0.5

Compare Source

v1.0.4

Compare Source

rust-lang/git2-rs (git2)

v0.17.2

Compare Source

0.17.1...0.17.2

Added
  • Added support for stashing with options (which can support partial stashing).
    #​930
rust-lang/glob (glob)

v0.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/glob@0.3.0...0.3.1

sunng87/handlebars-rust (handlebars)

v3.5.5

Compare Source

  • [Fixed] Panic on reporting invalid tag name [#​427]

v3.5.4

Compare Source

  • [Fixed] Json string literal with escape char [#​422]

v3.5.3

Compare Source

  • [Fixed] value access issue when upper block has a base value [#​419]

v3.5.2

Compare Source

  • [Fixed] allow / as trailing separator on Windows, backported from master [#​405]

v3.5.1

Compare Source

  • [Fixed] dir source path separator bug on windows [#​389]

v3.5.0

Compare Source

  • [Changed] #each helper now renders else block for non-iterable data [#​380]
  • [Fixed] reference starts with null, true and false were parsed incorrectly [#​382]

v3.4.0

Compare Source

  • [Added] Debug log that can be turned on by using envlog or other implementation, to trace data resolution during rendering [#​369]
  • [Fixed] Derived value as block context base value [#​343, #​353]
  • [Fixed] Partial name aligned with handlebars.js, added support for ., escape [] and string '' name
  • [Changed] HTML escape aligned with handlebars.js, added =, \ and ``` [#​366]
  • [Changed] Update rhai to 0.18 [#​370]
  • [Fixed] Result of simple helper is now escaped [#​373]

v3.3.0

Compare Source

  • [Added] Added two new APIs to reuse Context for rendering [#​352]
  • [Changed] Update rhai to 0.17 [#​354]
  • [Fixed] Fixed mustache.js html expression support, which is "&" instead of "$"
KokaKiwi/rust-hex (hex)

v0.4.3

Compare Source

scottlamb/http-auth (http-auth)

v0.1.8

Compare Source

  • upgrade base64 dependency from 0.20 to 0.21.

v0.1.7

Compare Source

  • bump minimum Rust version to 1.57.
  • upgrade base64 dependency from 0.13 to 0.20.
tailhook/humantime (humantime)

v2.1.0

Compare Source

v2.0.1

Compare Source

BurntSushi/ripgrep (ignore)

v0.4.20

Compare Source

v0.4.19

Compare Source

v0.4.18

Compare Source

v0.4.17

Compare Source

v0.4.16

Compare Source

v0.4.15

Compare Source

v0.4.14

Compare Source

v0.4.13

Compare Source

v0.4.12

Compare Source

v0.4.11

Compare Source

v0.4.10

Compare Source

v0.4.9

Compare Source

v0.4.8

Compare Source

bodil/im-rs (im-rc)

v15.1.0

Compare Source

Added
  • HashSet now implements From<Vector<A>> and From<&Vector<A>> where A: Clone.
Fixed
  • Fixed a long standing crash bug in OrdMap/OrdSet. (#​154, #​143, #​152, #​124)
  • The union method on maps/sets will now prefer to mutate the larger set (which leads to less
    work) rather than the first set. (#​163)
  • Ensure TreeFocus only implements Send/Sync when the underlying type does. (#​157, #​158)
  • There was an issue where nodes in very large OrdMaps could overflow when removing an element
    and cause a panic, which has now been fixed. (#​141)
  • Assorted doc cleanup. (#​150, #​173, #​186, #​194)
rust-lang-nursery/lazy-static.rs (lazy_static)

v1.4.0

Compare Source

Bumps the minimum supported version of rustc to 1.27.2

indiv0/lazycell (lazycell)

v1.3.0

Bug Fixes
  • Add custom impl Default to support non-Default-able <T> types (b49f4eab)
  • lazycell: Fix unsound aliasing in LazyCell::fill (e789ac1a, closes #​98)
Features
Documentation

v1.2.1

Compare Source

Features
  • Implement Clone for LazyCell and AtomicLazyCell (30fe4a8f)
rust-lang/libc (libc)

v0.2.147

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.146...0.2.147

v0.2.146

Compare Source

What's Changed

Full Changelog: rust-lang/libc@0.2.145...0.2.146

v0.2.145

Compare Source

This version has been yanked on crates.io.

What's Changed


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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 has been generated by Mend Renovate. View repository job log here.

@rustbot
Copy link
Collaborator

rustbot commented Aug 1, 2023

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @epage (or someone else) soon.

Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (S-waiting-on-review and S-waiting-on-author) stays updated, invoking these commands when appropriate:

  • @rustbot author: the review is finished, PR author should check the comments and take action accordingly
  • @rustbot review: the author is ready for a review, this PR will be queued again in the reviewer's queue

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Aug 1, 2023
@epage
Copy link
Contributor

epage commented Aug 1, 2023

Looking through the changelogs, not seeing anything of concern

@bors r+

@bors
Copy link
Collaborator

bors commented Aug 1, 2023

📌 Commit 599fe4c has been approved by epage

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 1, 2023
@bors
Copy link
Collaborator

bors commented Aug 1, 2023

⌛ Testing commit 599fe4c with merge 772fd5f...

@bors
Copy link
Collaborator

bors commented Aug 1, 2023

☀️ Test successful - checks-actions
Approved by: epage
Pushing 772fd5f to master...

@bors bors merged commit 772fd5f into master Aug 1, 2023
39 checks passed
@bors bors deleted the renovate/compatible branch August 1, 2023 15:20
lazy_static = "1.4.0"
lazycell = "1.3.0"
libc = "0.2.147"
libgit2-sys = "0.15.2+1.6.4"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We usually don't include build metadata, no? Anyway it's fine.

Nilstrieb added a commit to Nilstrieb/rust that referenced this pull request Aug 2, 2023
Update cargo

8 commits in c91a693e7977e33a1064b63a5daf5fb689f01651..6dc1deaddf62c7748c9097c7ea88e9ec77ff1a1a
2023-07-31 00:26:46 +0000 to 2023-08-02 00:23:54 +0000
- `#[allow(internal_features)]` in RUSTC_BOOTSTRAP test (rust-lang/cargo#12429)
- ci: rewrite bump check and respect semver (rust-lang/cargo#12395)
- fix(update): Tweak CLI behavior (rust-lang/cargo#12428)
- chore(deps): update compatible (rust-lang/cargo#12426)
- Display crate version on timings graph (rust-lang/cargo#12420)
- chore(deps): update alpine docker tag to v3.18 (rust-lang/cargo#12427)
- Use thiserror for credential provider errors (rust-lang/cargo#12424)
- Clarify in `--help` that `cargo test --all-targets` excludes doctests (rust-lang/cargo#12422)

r? `@ghost`
Nilstrieb added a commit to Nilstrieb/rust that referenced this pull request Aug 2, 2023
Update cargo

8 commits in c91a693e7977e33a1064b63a5daf5fb689f01651..6dc1deaddf62c7748c9097c7ea88e9ec77ff1a1a
2023-07-31 00:26:46 +0000 to 2023-08-02 00:23:54 +0000
- `#[allow(internal_features)]` in RUSTC_BOOTSTRAP test (rust-lang/cargo#12429)
- ci: rewrite bump check and respect semver (rust-lang/cargo#12395)
- fix(update): Tweak CLI behavior (rust-lang/cargo#12428)
- chore(deps): update compatible (rust-lang/cargo#12426)
- Display crate version on timings graph (rust-lang/cargo#12420)
- chore(deps): update alpine docker tag to v3.18 (rust-lang/cargo#12427)
- Use thiserror for credential provider errors (rust-lang/cargo#12424)
- Clarify in `--help` that `cargo test --all-targets` excludes doctests (rust-lang/cargo#12422)

r? ``@ghost``
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 2, 2023
Update cargo

10 commits in c91a693e7977e33a1064b63a5daf5fb689f01651..020651c52257052d28f6fd83fbecf5cfa1ed516c
2023-07-31 00:26:46 +0000 to 2023-08-02 16:00:37 +0000
- Update rustix to 0.38.6 (rust-lang/cargo#12436)
- replace `master` branch by default branch in documentation (rust-lang/cargo#12435)
- `#[allow(internal_features)]` in RUSTC_BOOTSTRAP test (rust-lang/cargo#12429)
- ci: rewrite bump check and respect semver (rust-lang/cargo#12395)
- fix(update): Tweak CLI behavior (rust-lang/cargo#12428)
- chore(deps): update compatible (rust-lang/cargo#12426)
- Display crate version on timings graph (rust-lang/cargo#12420)
- chore(deps): update alpine docker tag to v3.18 (rust-lang/cargo#12427)
- Use thiserror for credential provider errors (rust-lang/cargo#12424)
- Clarify in `--help` that `cargo test --all-targets` excludes doctests (rust-lang/cargo#12422)

r? `@ghost`
github-actions bot pushed a commit to rust-lang/miri that referenced this pull request Aug 3, 2023
Update cargo

10 commits in c91a693e7977e33a1064b63a5daf5fb689f01651..020651c52257052d28f6fd83fbecf5cfa1ed516c
2023-07-31 00:26:46 +0000 to 2023-08-02 16:00:37 +0000
- Update rustix to 0.38.6 (rust-lang/cargo#12436)
- replace `master` branch by default branch in documentation (rust-lang/cargo#12435)
- `#[allow(internal_features)]` in RUSTC_BOOTSTRAP test (rust-lang/cargo#12429)
- ci: rewrite bump check and respect semver (rust-lang/cargo#12395)
- fix(update): Tweak CLI behavior (rust-lang/cargo#12428)
- chore(deps): update compatible (rust-lang/cargo#12426)
- Display crate version on timings graph (rust-lang/cargo#12420)
- chore(deps): update alpine docker tag to v3.18 (rust-lang/cargo#12427)
- Use thiserror for credential provider errors (rust-lang/cargo#12424)
- Clarify in `--help` that `cargo test --all-targets` excludes doctests (rust-lang/cargo#12422)

r? `@ghost`
@ehuss ehuss added this to the 1.73.0 milestone Aug 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants