Skip to content

chore(deps): update dependency katex to ^0.13.3 || ^0.16.0 [security]#39357

Closed
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/npm-katex-vulnerability
Closed

chore(deps): update dependency katex to ^0.13.3 || ^0.16.0 [security]#39357
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/npm-katex-vulnerability

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Aug 13, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
katex (source) ^0.13.3^0.13.3 || ^0.16.0 age confidence

GitHub Vulnerability Alerts

CVE-2024-28245

Impact

KaTeX users who render untrusted mathematical expressions could encounter malicious input using \includegraphics that runs arbitrary JavaScript, or generate invalid HTML.

Patches

Upgrade to KaTeX v0.16.10 to remove this vulnerability.

Workarounds

  • Avoid use of or turn off the trust option, or set it to forbid \includegraphics commands.
  • Forbid inputs containing the substring "\\includegraphics".
  • Sanitize HTML output from KaTeX.

Details

\includegraphics did not properly quote its filename argument, allowing it to generate invalid or malicious HTML that runs scripts.

For more information

If you have any questions or comments about this advisory:

CVE-2024-28246

Impact

Code that uses KaTeX's trust option, specifically that provides a function to block-list certain URL protocols, can be fooled by URLs in malicious inputs that use uppercase characters in the protocol. In particular, this can allow for malicious input to generate javascript: links in the output, even if the trust function tries to forbid this protocol via trust: (context) => context.protocol !== 'javascript'.

Patches

Upgrade to KaTeX v0.16.10 to remove this vulnerability.

Workarounds

  • Allow-list instead of block protocols in your trust function.
  • Manually lowercase context.protocol via context.protocol.toLowerCase() before attempting to check for certain protocols.
  • Avoid use of or turn off the trust option.

Details

KaTeX did not normalize the protocol entry of the context object provided to a user-specified trust-function, so it could be a mix of lowercase and/or uppercase letters.

It is generally better to allow-list by protocol, in which case this would normally not be an issue. But in some cases, you might want to block-list, and the KaTeX documentation even provides such an example:

Allow all commands but forbid specific protocol: trust: (context) => context.protocol !== 'file'

Currently KaTeX internally sees file: and File: URLs as different protocols, so context.protocol can be file or File, so the above check does not suffice. A simple workaround would be:

trust: (context) => context.protocol.toLowerCase() !== 'file'

Most URL parsers normalize the scheme to lowercase. For example, RFC3986 says:

Although schemes are case-insensitive, the canonical form is lowercase and documents that specify schemes must do so with lowercase letters. An implementation should accept uppercase letters as equivalent to lowercase in scheme names (e.g., allow "HTTP" as well as "http") for the sake of robustness but should only produce lowercase scheme names for consistency.


Release Notes

KaTeX/KaTeX (katex)

v0.16.28

Compare Source

Bug Fixes
  • type: add missing types definition path to package.json (#​4125) (0ef8921)

v0.16.27

Compare Source

Features
  • support equals sign and surrounding whitespace in \htmlData attribute values (#​4112) (c77aaec)

v0.16.26

Compare Source

Bug Fixes
  • \mathop followed by integral symbol (6fbad18)

v0.16.25

Compare Source

Features

v0.16.24

Compare Source

Features

v0.16.23

Compare Source

Bug Fixes

v0.16.22

Compare Source

Bug Fixes

v0.16.21

Compare Source

Bug Fixes
  • escape \htmlData attribute name (57914ad)

v0.16.20

Compare Source

Bug Fixes

v0.16.19

Compare Source

Bug Fixes

v0.16.18

Compare Source

Bug Fixes

v0.16.17

Compare Source

Bug Fixes
  • MathML combines multidigit numbers with sup/subscript, comma separators, and multicharacter text when outputting to DOM (#​3999) (7d79e22), closes #​3995

v0.16.16

Compare Source

Features

v0.16.15

Compare Source

Features
  • italic sans-serif in math mode via \mathsfit command (#​3998) (2218901)

v0.16.14

Compare Source

Features

v0.16.13

Compare Source

Bug Fixes

v0.16.12

Compare Source

Features

v0.16.11

Compare Source

Features

v0.16.10

Compare Source

Bug Fixes

v0.16.9

Compare Source

Features

v0.16.8

Compare Source

Features
  • expose error length and raw error message on ParseError (#​3820) (710774a)

v0.16.7

Compare Source

Bug Fixes

v0.16.6

Compare Source

Bug Fixes

v0.16.5

Compare Source

Features

v0.16.4

Compare Source

Bug Fixes

v0.16.3

Compare Source

Bug Fixes

v0.16.2

Compare Source

Features

v0.16.1

Compare Source

Bug Fixes

v0.16.0

Compare Source

Bug Fixes
  • copy-tex: Use JS (instead of CSS) to select full equation, solving display glitches (#​3586) (8c2d852)
BREAKING CHANGES
  • copy-tex: copy-tex extension no longer has (or requires) a CSS file.

0.15.6 (2022-05-20)

Features

0.15.5 (2022-05-20)

Bug Fixes

0.15.4 (2022-05-20)

Features

0.15.3 (2022-03-13)

Bug Fixes

0.15.2 (2022-01-12)

Bug Fixes

0.15.1 (2021-10-31)

Features

v0.15.6

Compare Source

Features

v0.15.5

Compare Source

Bug Fixes

v0.15.4

Compare Source

Features

v0.15.3

Compare Source

Bug Fixes

v0.15.2

Compare Source

Bug Fixes

v0.15.1

Compare Source

Features

v0.15.0

Compare Source

Features
BREAKING CHANGES
  • \relax is now implemented as a function. It'll stop
    expansions and parsing, so the behavior around \relax may change.
    For example, \kern2\relax em will no longer work.

0.14.1 (2021-10-30)

Bug Fixes

v0.14.1

Compare Source

Bug Fixes

v0.14.0

Compare Source

Features
BREAKING CHANGES
  • With module loaders that support conditional exports
    and ECMAScript modules, import katex from 'katex'; will import the
    ECMAScript module.

You can now use:

Before After
require('katex/dist/contrib/[name].js') require('katex/contrib/[name]')
import katex from 'katex/dist/katex.mjs' import katex from 'katex'
import 'katex/dist/contrib/[name].mjs' import 'katex/contrib/[name]'

0.13.24 (2021-10-30)

Bug Fixes

0.13.23 (2021-10-30)

Bug Fixes

0.13.22 (2021-10-30)

Bug Fixes
  • deps: update dependency commander to v8 [skip netlify] (#​3374) (4df1922)

0.13.21 (2021-10-29)

Bug Fixes

0.13.20 (2021-10-26)

Performance Improvements

0.13.19 (2021-10-26)

Features

0.13.18 (2021-09-02)

Features

0.13.17 (2021-09-01)

Bug Fixes

0.13.16 (2021-08-28)

Bug Fixes

0.13.15 (2021-08-28)

Features

0.13.14 (2021-08-28)

Bug Fixes

0.13.13 (2021-07-21)

Bug Fixes
  • add namespace for svg, making output XHTML+SVG+MathML compatible (#​2725) (35ff5ac)

0.13.12 (2021-07-21)

Bug Fixes

0.13.11 (2021-05-14)

Bug Fixes
Features

0.13.10 (2021-05-12)

Bug Fixes
  • Correct for negative margin in integrand lower limits (#​2987) (9b4acc9)

0.13.9 (2021-05-07)

Bug Fixes

0.13.8 (2021-05-06)

Features
  • \operatornamewithlimits (and clean up \operatorname support) (#​2984) (e9b751b)

0.13.7 (2021-05-06)

Bug Fixes

0.13.6 (2021-05-06)

Bug Fixes

0.13.5 (2021-05-02)

Bug Fixes

0.13.4 (2021-05-02)

Bug Fixes

0.13.3 (2021-04-24)

Bug Fixes

0.13.2 (2021-04-06)

Bug Fixes

0.13.1 (2021-04-05)

Bug Fixes

[v0.13.0]

See #​2490 for breaking changes and migration guide!
Bug Fixes
  • fix: Remove topEnv parameter. (#​2712)
  • fix(builder): combine characters together in all expressions (#​2080)
  • fix: Prevent global group from adversely affecting color. (#​2703)
  • fix: Use SVGs to avoid gaps in tall delimiters. (#​2698)
  • fix: rewrite of splitAtDelimiters.js -- new fix for #​2523 (#​2679)
  • fix: Improve MathML for math operators with subscripts (#​2596)
  • fix: Remove premature CD screenshotter images (#​2641)
  • fix: Support Armenian characters (#​2618)
  • fix: MathML \lim\limits in Safari (#​2556)
  • fix: Support MathML \oiint and \oiiint (#​2461)
  • fix: \injlim typo (#​2459)
Features
  • feat: Support \underbar (#​2713)
  • feat: Add {CD} to auto-render. (#​2710)
  • feat: Set Auto-render to recognize AMS environments without $$…$$ delimiters. (#​2701)
  • feat: Support {CD} (#​2396)
  • feat: Support \vcenter and \hbox (#​2452)
  • feat(function): add allowedInArgument instead of greediness property (#​2134)
  • feat: Support matrix*, pmatrix*, bmatrix*, Bmatrix*, vmatrix*, and Vmatrix*. (#​2488)
  • feat(macro): improve argument parsing (#​2085)
  • feat: support AMS log-like symbols (#​2429)
  • feat: support Unicode ◯, U+25EF (#​2430)
  • feat: Support \phase (#​2406)
  • feat: Support \mathstrut (#​2416)
  • feat: support {equation}, {equation*}, and {split} (#​2369)
  • feat(css): use postcss-preset-env (#​2313)
  • feat: support {align}, {align*}, {alignat}, and {alignat*} (#​2341)
  • Support {gather} and {gather*} (#​2183)
  • feat: support MathML \big, \bigg, \Big, and \Bigg (#​2332)
  • feat: support \angl and \angln (#​2334)
  • Support \origof and \imageof (#​2283)
Documentation
  • docs: Add TiddlyWiki to list of users (#​2765)
  • docs: Fix fallback CSS classes (#​2809)
  • docs: Rearrange environment documentation. (#​2700)
  • docs: Explain how to make macros persist. (#​2702)
  • docs: Revise placement of colonequals in Relations table (#​2704)
  • docs: delete stray backtick (#​2680)
  • docs: Add colonequals functions to docs (#​2651)
  • docs: add new user link (#​2597)
  • fix: typo in example on homepage (#​2577)
  • docs: Add \char to support_table. (#​2620)
  • docs: Update \operatorname in supported_table.md 0.12.0 (#​2571)
  • docs: Fix documentation typo in operatorname* (#​2570)
  • docs: add warning re:defer to mhchem documentation (#​2485)
  • docs: update Gatsby logo and link (#​2481)
  • docs: add MonsterWriter to the users page (#​2478)
  • docs: add comment re: \arrowvert (#​2449)
  • docs: add link to Discussions (#​2405)
  • Update \color documentation (#​2370)
  • docs: add Marker as a KaTeX user (#​2329)
Other Changes
  • ci: run screenshotter in container (#​2644)
  • ci: setup CodeQL code scanning (#​2645)
  • fix(browserslist): remove Chrome 49, Samsung 4, and Node (#​2591)
  • chore: add devcontainer.json (#​2545)
  • Configure Renovate (#​2493)
  • ci: don't persist credentials and run scripts (#​2450)
  • build: upgrade Yarn to 2.2.0 (#​2477)
  • build: make vscode work with PnP (#​2444)
  • refactor: Delete obsolete comment re: mn elements (#​2472)
  • test: lint all js files and inline scripts in workflow (#​2442)
  • refactor: Delete obsolete comment re: limsup (#​2464)
  • ci: migrate to GitHub Actions from CircleCI, allow running Browserstack on forked repo via label (#​2417)
  • ci: enable Dependabot for website, submodules, and GitHub Actions (#​2424)
  • test: add missing screenshots for safari (#​2423)
  • ci: fix Dependabot autofix (#​2400)
  • chore: don't include dist in the release commit (#​2385)
  • ci: autofix Dependabot commits (#​2394)
  • chore(screenshotter): support Browserstack and test on Safari 13.1 (#​2306)
  • chore: enable Gitpod (#​2335)
  • chore: migrate to Yarn 2 (#​2316)
  • test: mock console implementation (#​2363)
  • Update LICENSE year (#​2374)
  • test(screenshotter): move coverage to Jest (#​2324)
  • Fix test/symgroups.js (#​2314)
  • Use base revision provided by CircleCI (#​2309)
  • Delete bower.json (#​2372)
  • Enable a MathML option in the KaTeX demo. (#​2371)
  • Create dependabot.yml (#​2311)
  • Run screenshotter using Chrome 83 and Firefox 76 (#​2304)

[v0.12.0]

Added
  • globalGroup option to place definitions in global scope (#​2091)
  • \cal (#​2116)
  • {rcases} and {drcases} (#​2149)
  • HTML extension (#​2082)
    • HTML extension can be enabled using strict and trust setting. See https://katex.org/docs/options.html for more details. Please review its security implication before enabling the extension.
  • \message, \errmessage, and \show for debugging (#​2135)
  • bra-ket notation (#​2162)
  • \expandafter, \noexpand, \edef, \let, and \long (#​2122)
  • Support MathML display mode (#​2220)
  • \minuso (#​2213)
Changed
Removed
  • BREAKING CHANGE: IE 9/10 support (#​2136)
Fixed
  • Set border-collapse: collapse in vlist, fix misalignment in table (#​2103)
  • \@​ifnextchar consumes spaces (#​2118)
  • Add spacing on left of fleqn display math (#​2127)
  • Fix \boxed inherited color (#​2130)
  • Fix laps having visible width in Safari (#​1919)
  • Improve MathML for corners (#​1922)
  • auto-render: ignore "option" tags (#​2180)
  • Fix delimiter error message (#​2186)
  • Fix under accent depth (#​2252)
  • Enable empty environment (#​2258)
  • Enable an empty \substack (#​2278)
  • Fix jagged parentheses (#​2234)
  • \boldsymbol not italic for textords such as Greek (#​2290, #​2299)
  • Protect fraction bars from CSS border-color (#​2292)
  • Reset to leftmost spacing mode after newline (#​1841)
  • Fix missing metrics for space (0x20) and no-break space (0xa0) (#​2298)

[v0.11.1]

Changed
  • [Security] Bump mixin-deep from 1.3.1 to 1.3.2 (#​2090)
  • [Security] Bump eslint-utils from 1.3.1 to 1.4.2 (#​2089)
Fixed
  • Fix parse timing by separating consume() into fetch() and consume() (#​2054)
  • Use current font for accents (#​2066)
  • Fix \gray's macro definition (#​2075)

[v0.11.0]

Added
  • BREAKING CHANGE: trust setting to indicate whether input text is trusted (#​1794)
    • \href and \url will break without adjusting the trust setting
  • Add test for double square brackets to katex-spec (#​1956)
  • Add option to render only MathML so that its visible (#​1966)
  • Support {smallmatrix}, {subarray}, and \substack (#​1969)
  • Enable minRuleThickness in rendering options (#​1964)
  • Add \plim (#​1952)
  • Support Unicode \digamma (#​2010)
  • Support \operatorname* (#​1899)
  • Support \includegraphics, with appropriate trust setting (#​2053)
  • Add render-a11y-string add-on (#​2062)
Changed
  • DOC: Fix path to built file (#​1976)
  • Remove unclosed TODO comment (#​1979)
  • Add "Tutti Quanti Shelf" app to users page (#​1997)
  • Document mhchem \cf not supported (use \ce instead) (#​2008)
  • Replace greenkeeper badge with dependabot badge (#​2022)
  • Add Unicode digamma to documentation (#​2045)
  • Add katex-expression to libs page (#​2049)
  • Suggest in documentation (#​2052)
  • Unicode characters in math render in text mode (#​2040)
Fixed
  • Improve output of fonts in MathML (#​1965)
  • Fix \pmb (#​1924)
  • \color affects following \right, put array cells in their own groups (#​1845)
  • Improve MathML for classes (#​1929)
  • Prevent gaps in tall delimiters (#​1986)
  • Fix \sqrt SVG path (#​2009)
  • Do not force sizing groups to display inline-block (#​2044)
  • Fix font choice in operators like \log (e.g. \boldsymbol{\log}) (#​2041)
  • Fix argument font sizing in \fbox and \raisebox, fix font sizing in \TeX, \LaTeX, \KaTeX (#​1787)

[v0.10.2]

Added
  • Approximate font metrics only when metrics don't exist (#​1898)
  • Add KaTeX version to stylesheet and troubleshooting guide (#​1893)
  • Add symbol double square brackets (#​1947, #​1954)
  • Support double-square curly braces (#​1953)
Changed
Fixed

Configuration

📅 Schedule: Branch creation - "" (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.

🔕 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the topic: automation Related to Circle CI, Peril, Renovate, scripts/*, Github Workflows, Github Actions, or Slackbot label Aug 13, 2025
@gatsbot gatsbot Bot added the status: triage needed Issue or pull request that need to be triaged and assigned to a reviewer label Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 5bd7c70 to b29b193 Compare August 13, 2025 17:08
@renovate renovate Bot changed the title chore(deps): update dependency katex to ^0.16.0 [security] chore(deps): update dependency katex [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from b29b193 to 75d2d19 Compare August 13, 2025 17:33
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 75d2d19 to 8cc0f38 Compare August 13, 2025 19:22
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 8cc0f38 to fed1f08 Compare August 13, 2025 20:46
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from fed1f08 to d801574 Compare August 13, 2025 21:26
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from d801574 to 9ff3987 Compare August 13, 2025 23:11
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 13, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 9ff3987 to bf1d36f Compare August 19, 2025 14:11
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Aug 19, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from bf1d36f to 04f312f Compare August 19, 2025 14:24
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 19, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 04f312f to e1a282a Compare August 27, 2025 12:56
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Aug 27, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from e1a282a to 0f975ba Compare August 27, 2025 17:30
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 27, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 0f975ba to a9d9c8a Compare August 28, 2025 13:55
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Aug 28, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from a9d9c8a to c4799ef Compare August 31, 2025 14:41
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Aug 31, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from c4799ef to a232065 Compare September 25, 2025 14:40
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.21 [security] chore(deps): update dependency katex [security] Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from a232065 to fd49c22 Compare September 28, 2025 12:45
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.21 [security] Sep 28, 2025
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Nov 10, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from af7f7a7 to 222c2c4 Compare November 14, 2025 13:25
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Nov 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 222c2c4 to d5eb352 Compare November 14, 2025 13:56
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Nov 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from d5eb352 to 8ae148f Compare November 14, 2025 14:56
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Nov 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 8ae148f to 664fdf1 Compare November 14, 2025 15:03
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Nov 14, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 664fdf1 to 9d5a63d Compare November 18, 2025 12:35
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Nov 18, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 9d5a63d to 40e4a8e Compare November 19, 2025 01:13
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Nov 19, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 40e4a8e to 6112437 Compare November 27, 2025 13:43
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Nov 27, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch 2 times, most recently from b6f138c to 35fe224 Compare November 27, 2025 18:49
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Nov 27, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 35fe224 to 94bbc70 Compare December 3, 2025 17:46
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 94bbc70 to ca2a1a7 Compare December 3, 2025 22:12
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from ca2a1a7 to 8d3d79d Compare December 10, 2025 15:36
@renovate renovate Bot changed the title chore(deps): update dependency katex to v0.16.10 [security] chore(deps): update dependency katex [security] Dec 10, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 8d3d79d to 3728981 Compare December 10, 2025 17:59
@renovate renovate Bot changed the title chore(deps): update dependency katex [security] chore(deps): update dependency katex to v0.16.10 [security] Dec 10, 2025
@renovate renovate Bot force-pushed the renovate/npm-katex-vulnerability branch from 3728981 to 0b3e3bb Compare December 15, 2025 18:33
@serhalp
Copy link
Copy Markdown
Member

serhalp commented Feb 18, 2026

peer dep

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Feb 18, 2026

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (^0.13.3 || ^0.16.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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

Labels

status: triage needed Issue or pull request that need to be triaged and assigned to a reviewer topic: automation Related to Circle CI, Peril, Renovate, scripts/*, Github Workflows, Github Actions, or Slackbot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant