mirror of
https://github.com/nushell/nushell.git
synced 2025-05-29 14:21:45 +02:00
build(deps): bump miette from 7.5.0 to 7.6.0 (#15667)
Bumps [miette](https://github.com/zkat/miette) from 7.5.0 to 7.6.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/zkat/miette/blob/main/CHANGELOG.md">miette's changelog</a>.</em></p> <blockquote> <h2>7.6.0 (2025-04-27)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>graphical:</strong> prevent leading newline when no link/code (<a href="https://redirect.github.com/zkat/miette/issues/418">#418</a>) (<a href="1e1938a099
">1e1938a0</a>)</li> <li><strong>clippy:</strong> elide lifetimes (<a href="https://redirect.github.com/zkat/miette/issues/423">#423</a>) (<a href="9ba6fad769
">9ba6fad7</a>)</li> <li><strong>highlight:</strong> increase syntax highlighter config priority (<a href="https://redirect.github.com/zkat/miette/issues/424">#424</a>) (<a href="58d9f12411
">58d9f124</a>)</li> <li><strong>deps:</strong> miette can now be used without syn (<a href="https://redirect.github.com/zkat/miette/issues/436">#436</a>) (<a href="521ef91f77
">521ef91f</a>)</li> </ul> <h3>Features</h3> <ul> <li><strong>graphical:</strong> support rendering related diagnostics as nested (<a href="https://redirect.github.com/zkat/miette/issues/417">#417</a>) (<a href="771a07519f
">771a0751</a>)</li> <li><strong>labels:</strong> add support for disabling the primary label line/col information (<a href="https://redirect.github.com/zkat/miette/issues/419">#419</a>) (<a href="f2ef693d1c
">f2ef693d</a>)</li> <li><strong>deps:</strong> update <code>thiserror</code> from 1.0.56 to 2.0.11 (<a href="https://redirect.github.com/zkat/miette/issues/426">#426</a>) (<a href="59c81617de
">59c81617</a>)</li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/zkat/miette/commits/miette-derive-v7.6.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
8352a09117
commit
0beb28e827
9
Cargo.lock
generated
9
Cargo.lock
generated
@ -3232,9 +3232,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "miette"
|
||||
version = "7.5.0"
|
||||
version = "7.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1a955165f87b37fd1862df2a59547ac542c77ef6d17c666f619d1ad22dd89484"
|
||||
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"backtrace-ext",
|
||||
@ -3246,15 +3246,14 @@ dependencies = [
|
||||
"supports-unicode",
|
||||
"terminal_size",
|
||||
"textwrap",
|
||||
"thiserror 1.0.69",
|
||||
"unicode-width 0.1.11",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "miette-derive"
|
||||
version = "7.5.0"
|
||||
version = "7.6.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bf45bf44ab49be92fd1227a3be6fc6f617f1a337c06af54981048574d8783147"
|
||||
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -107,7 +107,7 @@ lsp-types = { version = "0.97.0", features = ["proposed"] }
|
||||
lsp-textdocument = "0.4.2"
|
||||
mach2 = "0.4"
|
||||
md5 = { version = "0.10", package = "md-5" }
|
||||
miette = "7.5"
|
||||
miette = "7.6"
|
||||
mime = "0.3.17"
|
||||
mime_guess = "2.0"
|
||||
mockito = { version = "1.7", default-features = false }
|
||||
|
Loading…
x
Reference in New Issue
Block a user