Skip to content

chore(deps): update all non-major dependencies - #185

Open
terraform-bgdi wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

terraform-bgdi wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@terraform-bgdi

@terraform-bgdi terraform-bgdi commented Sep 13, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 24.13.324.13.5 age confidence
markdown-it 15.0.115.0.2 age confidence
prettier (source) 3.9.63.9.7 age confidence
vitepress-mermaid-renderer (source) 1.2.11.2.2 age confidence

Release Notes

markdown-it/markdown-it (markdown-it)

v15.0.2

Compare Source

Security
  • Fixed quadratic complexity in smartquotes when quote types don't match, #​1209.
    Also limited the smartquotes stack to 1000 unmatched openers.
prettier/prettier (prettier)

v3.9.7

Compare Source

diff

Markdown: Prevent indentation drift in list-item code blocks (#​19647, #​19990 by @​Austin1serb, @​giaBaoJS)
<!-- Input -->
- [x] short first line.

      second paragraph at six spaces that wraps
      onto another line here.

<!-- Prettier 3.9.6 -->
- [x] short first line.

      second paragraph at six spaces that wraps
          onto another line here.

<!-- Prettier 3.9.7 -->
- [x] short first line.

      second paragraph at six spaces that wraps
      onto another line here.
JavaScript: Fix embedded template literal idempotency (#​19725 by @​fisker)
// Input
const foo = html`
            <div>${getText({
            value,
            })}</div>
`;

// Prettier 3.9.6 (first format)
const foo = html`
  <div>
    ${getText({
              value,
            })}
  </div>
`;

// Prettier 3.9.6 (second format)
const foo = html`
  <div>
    ${getText({
      value,
    })}
  </div>
`;

// Prettier 3.9.7
const foo = html`
  <div>
    ${getText({
      value,
    })}
  </div>
`;
Markdown: Preserve Liquid blocks after Markdown tables (#​19730 by @​wanxiankai, @​seiyab)
<!-- Input -->
| Argument | Type |
| -------- | ---- |
{% set default_params = {
    "model": ["str"],
} %}

<!-- Prettier 3.9.6 -->
| Argument                  | Type |
| ------------------------- | ---- |
| {% set default_params = { |

    "model": ["str"],

} %}

<!-- Prettier 3.9.7 -->
| Argument | Type |
| -------- | ---- |
{% set default_params = {
    "model": ["str"],
} %}
Markdown: Preserve single tildes in Markdown (#​19739 by @​lazerg)

Since 3.9.0, single-tilde spans like H~2~O were rewritten to double tildes, turning subscript syntax into strike-through. Only double tildes are treated that way now, matching GitHub.

<!-- Input -->
H~2~O

<!-- Prettier 3.9.6 -->
H~~2~~O

<!-- Prettier 3.9.7 -->
H~2~O
Markdown: Fix Markdown blockquote containing > characters (#​19802 by @​seiyab)
<!-- Input -->
> **test**\>

<!-- Prettier 3.9.6 -->
> **test**>\>

<!-- Prettier 3.9.7 -->
> **test**\>
Markdown: Strip blockquote markers from a setext heading's continuation lines (#​19878 by @​Kjubikstronk)

A setext heading spanning multiple lines inside a blockquote kept the > marker of its continuation lines as literal text.

<!-- Input -->
> Multi
> Line
> ===

<!-- Prettier 3.9.6 -->
> Multi > Line
> ===

<!-- Prettier 3.9.7 -->
> Multi
> Line
> ===
Markdown: Fix HTML block indentation drift in markdown list items (#​19987 by @​lazerg)
<!-- Input -->
1. Enable images:

    <p align="center">
      <img alt="example">
    </p>

<!-- Prettier 3.9.6 (--tab-width=4) -->
1. Enable images:

     <p align="center">
       <img alt="example">
     </p>

<!-- Prettier 3.9.7 (--tab-width=4) -->
1. Enable images:

    <p align="center">
      <img alt="example">
    </p>
Angular: Support @boundary error boundaries (#​20014 by @​Yahiro025)
<!-- Input -->
@boundary {
<complex-chart [data]="data"/>
}
@error (let err) {
<p>{{err.message}}</p>
}

<!-- Prettier 3.9.6 -->
SyntaxError: Unexpected character "EOF" (Do you have an unescaped "{" in your template? Use "{{ '{' }}") to escape it.) (6:1)

<!-- Prettier 3.9.7 -->
@boundary {
  <complex-chart [data]="data" />
} @error (let err) {
  <p>{{ err.message }}</p>
}
sametcn99/vitepress-mermaid-renderer (vitepress-mermaid-renderer)

v1.2.2

Compare Source

Changed in 1.2.2
  • Made @mermaid-js/mermaid-zenuml an optional, lazily loaded plugin. It moved
    from dependencies to an optional peerDependencies entry, is marked
    external in the library build, and is imported only when a zenuml diagram
    is actually rendered. The published bundle no longer ships the ~1.6MB ZenUML
    chunk, and a missing plugin no longer breaks other diagram types. ZenUML users
    install it with npm i @mermaid-js/mermaid-zenuml; the English, Turkish, and
    Chinese advanced examples now document this requirement.
  • Widened the mermaid peer range from ^11.0.0 to ^11.0.0 || ^12.0.0,
    matching the versions the library is developed and tested against.
  • Added a resetExternalDiagramRegistration helper (also re-exported from the
    components barrel) that clears the cached external-diagram registration.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Only on Sunday and Monday (* * * * 0,1)
  • 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 CLI.

Test link

@github-actions github-actions Bot added the dependencies Pull requests that update a dependency file label Sep 13, 2026
@terraform-bgdi
terraform-bgdi force-pushed the renovate/all-minor-patch branch from f55abf2 to 560ffd5 Compare September 13, 2026 05:01
@terraform-bgdi terraform-bgdi changed the title chore(deps): update dependency @types/node to v24.13.4 chore(deps): update all non-major dependencies Sep 13, 2026
@terraform-bgdi
terraform-bgdi force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8d2f36d to 86e41c5 Compare September 17, 2026 22:01
@terraform-bgdi
terraform-bgdi force-pushed the renovate/all-minor-patch branch from 86e41c5 to fa65ddf Compare September 18, 2026 09:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant