Skip to content

Comments

Update dependency highlight.js to v10 [SECURITY]#23

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/npm-highlight.js-vulnerability
Open

Update dependency highlight.js to v10 [SECURITY]#23
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/npm-highlight.js-vulnerability

Conversation

@renovate
Copy link

@renovate renovate bot commented Apr 26, 2021

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
highlight.js (source) ^9.12.0^10.4.1 age confidence

GitHub Vulnerability Alerts

GHSA-7wwv-vh3v-89cq

Impact: Potential ReDOS vulnerabilities (exponential and polynomial RegEx backtracking)

oswasp:

The Regular expression Denial of Service (ReDoS) is a Denial of Service attack, that exploits the fact that most Regular Expression implementations may reach extreme situations that cause them to work very slowly (exponentially related to input size). An attacker can then cause a program using a Regular Expression to enter these extreme situations and then hang for a very long time.

If are you are using Highlight.js to highlight user-provided data you are possibly vulnerable. On the client-side (in a browser or Electron environment) risks could include lengthy freezes or crashes... On the server-side infinite freezes could occur... effectively preventing users from accessing your app or service (ie, Denial of Service).

This is an issue with grammars shipped with the parser (and potentially 3rd party grammars also), not the parser itself. If you are using Highlight.js with any of the following grammars you are vulnerable. If you are using highlightAuto to detect the language (and have any of these grammars registered) you are vulnerable. Exponential grammars (C, Perl, JavaScript) are auto-registered when using the common grammar subset/library require('highlight.js/lib/common') as of 10.4.0 - see https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@10.4.0/build/highlight.js

All versions prior to 10.4.1 are vulnerable, including version 9.18.5.

Grammars with exponential backtracking issues:

  • c-like (c, cpp, arduino)
  • handlebars (htmlbars)
  • gams
  • perl
  • jboss-cli
  • r
  • erlang-repl
  • powershell
  • routeros
  • livescript (10.4.0 and 9.18.5 included this fix)
  • javascript & typescript (10.4.0 included partial fixes)

And of course any aliases of those languages have the same issue. ie: hpp is no safer than cpp.

Grammars with polynomial backtracking issues:

  • kotlin
  • gcode
  • d
  • aspectj
  • moonscript
  • coffeescript/livescript
  • csharp
  • scilab
  • crystal
  • elixir
  • basic
  • ebnf
  • ruby
  • fortran/irpf90
  • livecodeserver
  • yaml
  • x86asm
  • dsconfig
  • markdown
  • ruleslanguage
  • xquery
  • sqf

And again: any aliases of those languages have the same issue. ie: ruby and rb share the same ruby issues.

Patches

  • Version 10.4.1 resolves these vulnerabilities. Please upgrade.

Workarounds / Mitigations

  • Discontinue use the affected grammars. (or perhaps use only those with poly vs exponential issues)
  • Attempt cherry-picking the grammar fixes into older versions...
  • Attempt using newer CDN versions of any affected languages. (ie using an older CDN version of the library with newer CDN grammars). Your mileage may vary.

References

For more information

If you have any questions or comments about this advisory:


Release Notes

highlightjs/highlight.js (highlight.js)

v10.4.1

Compare Source

Security

  • (fix) Exponential backtracking fixes for: Josh Goebel
    • cpp
    • handlebars
    • gams
    • perl
    • jboss-cli
    • r
    • erlang-repl
    • powershell
    • routeros
  • (fix) Polynomial backtracking fixes for: Josh Goebel
    • asciidoc
    • reasonml
    • latex
    • kotlin
    • gcode
    • d
    • aspectj
    • moonscript
    • coffeescript/livescript
    • csharp
    • scilab
    • crystal
    • elixir
    • basic
    • ebnf
    • ruby
    • fortran/irpf90
    • livecodeserver
    • yaml
    • x86asm
    • dsconfig
    • markdown
    • ruleslanguage
    • xquery
    • sqf

Very grateful to Michael Schmidt for all the help.

v10.4.0

Compare Source

A largish release with many improvements and fixes from quite a few different contributors. Enjoy!

Deprecations:

  • (chore) requireLanguage is deprecated.
    • Prefer getLanguage (with custom error handling) or built-time dependencies.
    • See Library API for more information.

Parser:

New Languages:

Language Improvements:

  • enh(shell) Recognize prompts which contain tilde ~ (#​2859) Guillaume Grossetie
  • enh(shell) Add support for multiline commands with line continuation \ (#​2861) Guillaume Grossetie
  • enh(autodetect) Over 30+ improvements to auto-detect (#​2745) Josh Goebel
    • 4-5% improvement in auto-detect against large sample set
    • properties, angelscript, lsl, javascript, n1ql, ocaml, ruby
    • protobuf, hy, scheme, crystal, yaml, r, vbscript, groovy
    • python, java, php, lisp, matlab, clojure, csharp, css
  • fix(r) fixed keywords not properly spaced (#​2852) Josh Goebel
  • fix(javascript) fix potential catastrophic backtracking (#​2852) Josh Goebel
  • fix(livescript) fix potential catastrophic backtracking (#​2852) Josh Goebel
  • bug(xml) XML grammar was far too imprecise/fuzzy Josh Goebel
  • enh(xml) Improve precision to prevent false auto-detect positives Josh Goebel
  • fix(js/ts) Prevent for/while/if/switch from falsly matching as functions (#​2803) Josh Goebel
  • enh(julia) Update keyword lists for Julia 1.x (#​2781) Fredrik Ekre
  • enh(python) Match numeric literals per the language reference Richard Gibson
  • enh(ruby) Match numeric literals per language documentation Richard Gibson
  • enh(javascript) Match numeric literals per ECMA-262 spec Richard Gibson
  • enh(java) Match numeric literals per Java Language Specification Richard Gibson
  • enh(swift) Match numeric literals per language reference Richard Gibson
  • enh(php) highlight variables (#​2785) Taufik Nurrohman
  • fix(python) Handle comments on decorators (#​2804) Jonathan Sharpe
  • enh(diff) improve highlighting of diff for git patches [Florian Bezdeka][]
  • fix(llvm) lots of small improvements and fixes (#​2830) Josh Goebel
  • enh(mathematica) Rework entire implementation Patrick Scheibe
    • Correct matching of the many variations of Mathematica's numbers
    • Matching of named-characters aka special symbols like \[Gamma]
    • Updated list of version 12.1 built-in symbols
    • Matching of patterns, slots, message-names and braces
  • fix(swift) Handle keywords that start with # Marcus Ortiz
  • enh(swift) Match some keyword Marcus Ortiz
  • enh(swift) Match @main attribute Marcus Ortiz

Dev Improvements:

  • chore(dev) add theme picker to the tools/developer tool (#​2770) Josh Goebel
  • fix(dev) the Vue.js plugin no longer throws an exception when hljs is not in the global namespace Kyle Brown

New themes:

v10.3.2: - Oops, "Javascript".

Compare Source

Tiny tiny release, just to fix the website incorrectly not listing Javascript
in the list of languages you could choose for a custom build. NPM and CDN
build should not have been affected so 10.3.1 is effectively the same as
10.3.2 for those builds.

If you made a custom build from the website with 10.3 or 10.3.1 you may
want to check and make sure it includes Javascript, and if not, build it again.

v10.3.1

Compare Source

Prior version let some look-behind regex sneak in, which does not work
yet on Safari. This release removes those incompatible regexes.

Fix:

  • fix(Safari) Remove currently unsupported look-behind regex (fix) Josh Goebel

v10.3.0

Compare Source

Language Improvements:

  • enh(latex) Complete ground up rewrite of LaTex grammar schtandard
  • fix(cpp) implement backslash line continuation in comments (#​2757) Konrad Rudolph
  • fix(cpp) improve parsing issues with templates (#​2752) [Josh Goebel][]
  • enh(cpp) add support for enum (struct|class) and union (#​2752) [Josh Goebel][]
  • fix(js/ts) Fix nesting of {} inside template literals SUBST expression (#​2748) [Josh Goebel][]
  • enh(js/ts) Highlight class methods as functions (#​2727) [Josh Goebel][]
  • fix(js/ts) constructor is now highlighted as a function title (not keyword) (#​2727) [Josh Goebel][]
  • fix(c-like) preprocessor directives not detected after else (#​2738) [Josh Goebel][]
  • enh(javascript) allow # for private class fields (#​2701) Chris Krycho
  • fix(js) prevent runaway regex (#​2746) [Josh Goebel][]
  • fix(bash) enh(bash) allow nested params (#​2731) [Josh Goebel][]
  • fix(python) Fix highlighting of keywords and strings (#​2713, #​2715) Konrad Rudolph
  • fix(fsharp) Prevent (*) from being detected as a multi-line comment [Josh Goebel][]
  • enh(bash) add support for heredocs (#​2684) [Josh Goebel][]
  • enh(r) major overhaul of the R language grammar (and fix a few bugs) (#​2680) Konrad Rudolph
  • enh(csharp) Add all C# 9 keywords, and other missing keywords (#​2679) David Pine
  • enh(objectivec) Add objective-c++ and obj-c++ aliases for Objective-C [Josh Goebel][]
  • enh(java) Add support for record (#​2685) [Josh Goebel][]
  • fix(csharp) prevent modifier keywords wrongly flagged as title (#​2683) [Josh Goebel][]
  • enh(axapta) Update keyword list for Axapta (X++) (#​2686) Ryan Jonasson
  • fix(fortran) FORTRAN 77-style comments (#​2677) Philipp Engel
  • fix(javascript) Comments inside params should be highlighted (#​2702) [Josh Goebel][]
  • fix(scala) Comments inside class header should be highlighted (#​1559) [Josh Goebel][]
  • fix(c-like) Correctly highlight modifiers (final) in class declaration (#​2696) [Josh Goebel][]
  • enh(angelscript) Improve heredocs, numbers, metadata blocks (#​2724) Melissa Geels
  • enh(javascript) Implement Numeric Separators (#​2617) Antoine du Hamel
  • enh(typescript) TypeScript also gains support for numeric separators (#​2617) Antoine du Hamel
  • enh(php) Add support for PHP 8 match keyword and add php8 as an alias (#​2733) Ayesh Karunaratne
  • fix(handlebars) Support if else keyboards (#​2659) Tom Wallace

Deprecations:

  • useBR option deprecated and will be removed in v11.0. (#​2559) [Josh Goebel][]

v10.2.1

Compare Source

Parser Engine:

v10.2.0

Compare Source

Parser Engine:

  • (fix) When ignoring a potential match highlighting can terminate early (#​2649) Josh Goebel

New themes:

Deprecations:

Big picture:

Language Improvements:

v10.1.2

Compare Source

Fixes:

  • fix(night) Prevent object prototype values from being returned by getLanguage (#​2636) night

v10.1.1

Compare Source

Fixes:

v10.1.0

Compare Source

New themes:

Parser Engine:

Deprecations:

Language Improvements:

v10.0.3

Compare Source

v10.0.2

Compare Source

Brower build:

Parser Engine Changes:

v10.0.1

Compare Source

Parser Engine Changes:

v10.0.0

Compare Source

New languages:

  • add(php-template) Explicit language to detect PHP templates (vs xml) Josh Goebel
  • enh(python) Added python-repl for Python REPL sessions
  • add(never) Added 3rd party Never language support

New themes:

Parser Engine Changes:

Language Improvements:

Developer Tools:

  • added Dockerfile for optionally developing with a container

v9.18.1

Compare Source

Grammar Improvements:

v9.18.0

Compare Source

New languages:

  • none.

New themes:

  • none.

Core Changes:

  • none.

Language Improvements:

Developer Tools:

v9.17.1

Compare Source

Fixes:

v9.17.0

Compare Source

New languages:

  • none.

New themes:

Core Improvements:

Language Improvements:

v9.16.2

Compare Source

New languages:
none.

New styles:
none.

Improvements:

  • fix(arduino) Resolves issue with arduino.js not being "use strict" safe (#​2247)

v9.16.1

Compare Source

New languages:
none.

New styles:

Improvements:

  • Add CLI tool to quickly check for relevance conflicts Mark Ellis (#​1554)
  • enhance(twig) update list of filter and tags (#​2090)
  • fix(crystal): correctly highlight !~ method definition (#​2222)
  • fix dropping characters if we choke up on a 0-width match (#​2219)
  • (accesslog) improve accesslog relevancy scoring (#​2172)
  • fix(shell): fix parsing of prompts with forward slash (#​2218)
  • improve parser to properly support look-ahead regex in begin matchers (#​2135)
  • blacklist super-common keywords from having relevance (#​2179)
  • fix(swift): support for @dynamicMemberLookup and @propertyWrapper (#​2202)
  • fix: endWithParent inside starts now always works (#​2201)
  • fix(typescript): constructor in declaration doesn't break highlighting
  • fix(typescript): only match function keyword as a separate identifier (#​2191)
  • feature(arduino) make arduino a super-set of cpp grammar
  • fix(javascript): fix object attributes immediately following line comments
  • fix(xml): remove vbscript as potential script tag subLanguage
  • fix(Elixir): improve regex for numbers
  • fix(YAML): improve matching for keys, blocks and numbers
  • fix(Pony): improve regex for numbers
  • fix(handlebars): add support for raw-blocks, and triple-mustaches(#​2175)
  • fix(handlebars): fix parsing of block-comments containing closing mustaches (#​2175)
  • fix(handlebars): add support for segment-literal notation, and escaped mustaches (#​2184)
  • JSON: support for comments in JSON (#​2016)
  • fix(cpp): improve string literal matching
  • fix(highlight.js): omit empty span-tags in the output (#​2182)
  • fix(Go): improve function declaration matching
  • fix(python): added support for f-string literal curly braces (#​2195)
  • fix(cpp): add future built-in (#​1610)
  • fix(python): support comments within function parameters (#​2214)

v9.15.10

Compare Source

New languages:
none.
New styles:
none.
Improvements:

  • support for ruby's squiggly heredoc (#​2049)
  • support css custom properties (#​2082)
  • fix(PureBASIC): update to 5.60 (#​1508)
  • fix(Kotlin): parenthesized types in function declaration (#​2107)
  • fix(Kotlin): nested comment (#​2104)
  • fix(isbl): contains key typo (#​2103)
  • fix(github-gist.css): match Github styles (#​2100)
  • fix(elm): update to latest elm syntax (#​2088)
  • fix: Support highlighting inline HTML and CSS tagged template strings in JS and TS (#​2105)
  • feat(YAML): add YAML to common languages (#​1952)
  • feat(xml): Add support for Windows Script File (.wsf), inline VBScript in XML script tags (#​1690)

v9.15.9

Compare Source

Improvements:

  • fix(AutoHotkey): order and extended highlighting (#​1579)
  • fix(Go): correctly highlight hex numbers, rather than stopping at last 'd' or 'f'. (#​2060)
  • fix(Mathematica): Improvements to language (#​2065)
  • fix(Node): Adds SCSS build (#​2079)
  • fix(Rust): update keywords (#​2052)
  • fix(Stata): Added keywords for the meta-analysis suite introduced in Stata 16 (#​2081)
  • fix(Bash): escape double quotes (#​2048)

v9.15.8

Compare Source

New languages:
none.
New styles:
none.
Improvements:

  • fix(bash): revert escaped double quotes - broke Firefox/Safari.

v9.15.7

Compare Source

New languages:
none.
New styles:
none.
Improvements:

  • fix(powershell): Add cmdlets (#​2022)
  • fix(Bash): escaped double quotes (#​2041)
  • fix(c++): add aliases 'hh', 'hxx', 'cxx' (#​2017)
  • fix(ini/toml): Support comments on the same line. (#​2039)
  • fix(JSX): not rendering well in a function without parentheses. (#​2024)
  • fix(LiveCode): language definition update (#​2021)
  • fix(markdown): indented lists (#​2004)
  • fix(styles/school-book): don't style all the pre, use .hljs instead (#​2034)
  • fix(JSX): Modify JSX tag detection to use XML language regex in place of simplistic \w+

v9.15.6

Compare Source

New languages:
none.
New styles:
none.
Improvements:

  • Move dependencies to be devDependencies.
  • Fixed security issues in dev dependencies.

v9.15.5

Compare Source

New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix: updated build tool.

v9.15.2

Compare Source

New languages:
none.
New styles:
none.
Improvements:
🔥 Hot fix that was preventing highlight.js from installing.

v9.15.1

Compare Source

New languages:
none.
New styles:
none.
Improvements:


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 changed the title Pin dependency highlight.js to v9.18.5 [SECURITY] Pin dependency highlight.js to 9.18.5 [SECURITY] May 9, 2021
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 44894b2 to 5848ab9 Compare May 15, 2021 20:24
@renovate renovate bot changed the title Pin dependency highlight.js to 9.18.5 [SECURITY] Update dependency highlight.js to v10 [SECURITY] May 15, 2021
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 5848ab9 to 814095f Compare June 6, 2021 20:26
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Pin dependency highlight.js to v9.18.5 [SECURITY] Jun 6, 2021
@renovate renovate bot changed the title Pin dependency highlight.js to v9.18.5 [SECURITY] Pin dependency highlight.js to v [SECURITY] Mar 7, 2022
@renovate renovate bot changed the title Pin dependency highlight.js to v [SECURITY] Pin dependency highlight.js to v9.18.5 [SECURITY] Sep 25, 2022
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 814095f to b8ec5c0 Compare September 25, 2022 21:59
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from b8ec5c0 to 44b5254 Compare November 20, 2022 17:36
@renovate renovate bot changed the title Pin dependency highlight.js to v9.18.5 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Nov 20, 2022
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 44b5254 to 0e59c7a Compare March 27, 2023 17:32
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Mar 27, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 0e59c7a to 7c49080 Compare May 29, 2023 19:56
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] May 29, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 7c49080 to edbb22d Compare June 1, 2023 16:09
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jun 1, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from edbb22d to c45ae59 Compare June 10, 2023 02:27
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jun 10, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from c45ae59 to 7757490 Compare June 11, 2023 08:41
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jun 11, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 7757490 to 079c54d Compare June 14, 2023 05:32
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jun 14, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 079c54d to 4e51773 Compare June 17, 2023 05:27
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jun 17, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 4e51773 to b988bf0 Compare June 18, 2023 14:21
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jun 18, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from b988bf0 to a0ddbc8 Compare June 22, 2023 17:59
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jun 22, 2023
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jun 30, 2023
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from a0ddbc8 to dabad97 Compare June 30, 2023 17:48
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Dec 5, 2025
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 46c6b85 to 528559b Compare December 12, 2025 08:11
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Dec 12, 2025
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 528559b to a8581b8 Compare December 13, 2025 19:47
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Dec 13, 2025
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from a8581b8 to d85f792 Compare December 31, 2025 08:00
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Dec 31, 2025
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from d85f792 to d7c7a64 Compare January 2, 2026 08:09
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jan 2, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from d7c7a64 to ba4387c Compare January 9, 2026 11:52
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jan 9, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from ba4387c to 1da1ed2 Compare January 10, 2026 10:20
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jan 10, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 1da1ed2 to 082c70b Compare January 20, 2026 08:11
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Jan 20, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 082c70b to 93289f9 Compare January 21, 2026 11:59
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Jan 21, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 93289f9 to 8618568 Compare February 3, 2026 04:12
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Feb 3, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 8618568 to fd23b5c Compare February 4, 2026 08:05
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Feb 4, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from fd23b5c to 0771bd2 Compare February 13, 2026 23:08
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Feb 13, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 0771bd2 to 2e66dcb Compare February 14, 2026 11:54
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Feb 14, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 2e66dcb to 109c5a5 Compare February 18, 2026 23:31
@renovate renovate bot changed the title Update dependency highlight.js to v10 [SECURITY] Update dependency highlight.js to v11 [SECURITY] Feb 18, 2026
@renovate renovate bot force-pushed the renovate/npm-highlight.js-vulnerability branch from 109c5a5 to 354066e Compare February 19, 2026 20:00
@renovate renovate bot changed the title Update dependency highlight.js to v11 [SECURITY] Update dependency highlight.js to v10 [SECURITY] Feb 19, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants