onokatio / blog.katio.net

my blog script
1 stars 1 forks source link

Update dependency highlight.js to v11 [SECURITY] #130

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
highlight.js (source) ^9.18.3 -> ^11.0.0 age adoption passing 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:

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

Grammars with polynomial backtracking issues:

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

Patches

Workarounds / Mitigations

References

For more information

If you have any questions or comments about this advisory:


Release Notes

highlightjs/highlight.js ### [`v11.5.1`](https://togithub.com/highlightjs/highlight.js/releases/tag/11.5.1) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.5.0...11.5.1) Just a tiny release to hopefully fix the issues some are having with CSS not seen as having side effects with web pack, etc... *** Packaging: - (chore) explicitly set `sideEffect` for css and scss files, fixes [#​3504](https://togithub.com/highlightjs/highlight.js/issues/3504) ### [`v11.5.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1150) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.4.0...11.5.0) Themes: - Added `Tokyo-Night-dark` theme [Henri Vandersleyen][] - Added `Tokyo-Night-light` theme [Henri Vandersleyen][] - Added `panda-syntax-dark` theme [Annmarie Switzer][] - Added `panda-syntax-light` theme [Annmarie Switzer][] New Grammars: - Added GraphQL to SUPPORTED_LANGUAGES [John Foster][] - Added Macaulay2 to SUPPORTED_LANGUAGES [Doug Torrance][] Grammars: - enh(ruby) lots of small Ruby cleanups/improvements [Josh Goebel][] - enh(objectivec) add `type` and `variable.language` scopes [Josh Goebel][] - enh(xml) support processing instructions ([#​3492](https://togithub.com/highlightjs/highlight.js/issues/3492)) [Josh Goebel][] - enh(ruby ) better support multi-line IRB prompts - enh(bash) improved keyword `$pattern` (numbers allowed in command names) [Martin Mattel][] - add `meta.prompt` scope for REPL prompts, etc [Josh Goebel][] - fix(markdown) Handle `***Hello world***` without breaking [Josh Goebel][] - enh(php) add support for PHP Attributes [Wojciech Kania][] - fix(java) prevent false positive variable init on `else` [Josh Goebel][] - enh(php) named arguments [Wojciech Kania][] - fix(php) PHP constants [Wojciech Kania][] - fix(angelscript) incomplete int8, int16, int32, int64 highlighting [Melissa Geels][] - enh(ts) modify TypeScript-specific keywords and types list [anydonym][] - fix(brainfuck) fix highlighting of initial ++/-- [Christina Hanson][] - fix(llvm) escaping in strings and number formats [Flakebi][] - enh(elixir) recognize references to modules [Mark Ericksen][] - enh(css): add support for more properties [Nicolaos Skimas][] [Martin Mattel]: https://togithub.com/mmattel [John Foster]: https://togithub.com/jf990 [Wojciech Kania]: https://togithub.com/wkania [Melissa Geels]: https://togithub.com/codecat [anydonym]: https://togithub.com/anydonym [henri Vandersleyen]: https://togithub.com/Vanderscycle [Christina Hanson]: https://togithub.com/LyricLy [Flakebi]: https://togithub.com/Flakebi [Josh Goebel]: https://togithub.com/joshgoebel [Mark Ericksen]: https://togithub.com/brainlid [Nicolaos Skimas]: https://togithub.com/dev-nicolaos [Doug Torrance]: https://togithub.com/d-torrance [Annmarie Switzer]: https://togithub.com/annmarie-switzer ### [`v11.4.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1140) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.3.1...11.4.0) New Language: - Added 3rd party Pine Script grammar to SUPPORTED_LANGUAGES [Jeylani B][] - Added 3rd party cURL grammar to SUPPORTED_LANGUAGES [highlightjs-curl](https://togithub.com/highlightjs/highlightjs-curl) Themes: - `Default` is now much closer WCAG AA (contrast) ([#​3402](https://togithub.com/highlightjs/highlight.js/issues/3402)) [Josh Goebel] - `Dark` now meets WCAG AA (contrast) ([#​3402](https://togithub.com/highlightjs/highlight.js/issues/3402)) [Josh Goebel] - Added `intellij-light` theme [Pegasis] - Added `felipec` theme [Felipe Contreras] These changes should be for the better and should not be super noticeable but if you're super picky about your colors you may want to intervene here or copy over the older themes from 11.3 or prior. Grammars: - enh(twig) update keywords list for symfony ([#​3453](https://togithub.com/highlightjs/highlight.js/issues/3453)) [Matthieu Lempereur][] - enh(arcade) updated to ArcGIS Arcade version 1.16 [John Foster][] - enh(php) Left and right-side of double colon [Wojciech Kania][] - enh(php) add PHP constants [Wojciech Kania][] - enh(php) add PHP 8.1 keywords [Wojciech Kania][] - fix(cpp) fix `vector<<` template false positive ([#​3437](https://togithub.com/highlightjs/highlight.js/issues/3437)) [Josh Goebel][] - enh(php) support First-class Callable Syntax ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Wojciech Kania][] - enh(php) support class constructor call ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Wojciech Kania][] - enh(php) support function invoke ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Wojciech Kania][] - enh(php) Switch highlighter to partially case-insensitive ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Wojciech Kania][] - enh(php) improve `namespace` and `use` highlighting ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Josh Goebel][] - enh(php) `$this` is a `variable.language` now ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Josh Goebel][] - enh(php) add `__COMPILER_HALT_OFFSET__` ([#​3427](https://togithub.com/highlightjs/highlight.js/issues/3427)) [Josh Goebel][] - enh(js/ts) fix => async function title highlights ([#​3405](https://togithub.com/highlightjs/highlight.js/issues/3405)) [Josh Goebel][] - enh(twig) update keywords list ([#​3415](https://togithub.com/highlightjs/highlight.js/issues/3415)) [Matthieu Lempereur][] - fix(python) def, class keywords detected mid-identifier ([#​3381](https://togithub.com/highlightjs/highlight.js/issues/3381)) [Josh Goebel][] - fix(python) Fix recognition of numeric literals followed by keywords without whitespace ([#​2985](https://togithub.com/highlightjs/highlight.js/issues/2985)) [Richard Gibson][] - enh(swift) add SE-0290 unavailability condition ([#​3382](https://togithub.com/highlightjs/highlight.js/issues/3382)) [Bradley Mackey][] - fix(fsharp) Highlight operators, match type names only in type annotations, support quoted identifiers, and other smaller fixes. [Melvyn Laïly][] - enh(java) add `sealed` and `non-sealed` keywords ([#​3386](https://togithub.com/highlightjs/highlight.js/issues/3386)) [Bradley Mackey][] - enh(js/ts) improve `CLASS_REFERENCE` ([#​3411](https://togithub.com/highlightjs/highlight.js/issues/3411)) [Josh Goebel][] - enh(nsis) Update defines pattern to allow `!` ([#​3417](https://togithub.com/highlightjs/highlight.js/issues/3417)) [idleberg][] - enh(nsis) Update language strings pattern to allow `!` ([#​3420](https://togithub.com/highlightjs/highlight.js/issues/3420)) [idleberg][] - fix(stan) Updated for Stan 2.28 and other misc. improvements ([#​3410](https://togithub.com/highlightjs/highlight.js/issues/3410)) - enh(nsis) Update variables pattern ([#​3416](https://togithub.com/highlightjs/highlight.js/issues/3416)) [idleberg][] - fix(clojure) Several issues with Clojure highlighting ([#​3397](https://togithub.com/highlightjs/highlight.js/issues/3397)) [Björn Ebbinghaus][] - fix(clojure) `comment` macro catches more than it should ([#​3395](https://togithub.com/highlightjs/highlight.js/issues/3395)) - fix(clojure) `$` in symbol breaks highlighting - fix(clojure) Add complete regex for number detection - enh(clojure) Add character mode for character literals - fix(clojure) Inconsistent namespaced map highlighting - enh(clojure) Add `regex` mode to regex literal - fix(clojure) Remove inconsistent/broken highlighting for metadata - enh(clojure) Add `punctuation` mode for commas. - fix(julia) Enable the `jldoctest` alias ([#​3432](https://togithub.com/highlightjs/highlight.js/issues/3432)) [Fons van der Plas][] Developer Tools: - (chore) add gzip size compression report ([#​3400](https://togithub.com/highlightjs/highlight.js/issues/3400)) [Bradley Mackey][] Themes: - Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][] [John Foster]: https://togithub.com/jf990 [Pegasis]: https://togithub.com/PegasisForever [Wojciech Kania]: https://togithub.com/wkania [Jeylani B]: https://togithub.com/jeyllani [Richard Gibson]: https://togithub.com/gibson042 [Bradley Mackey]: https://togithub.com/bradleymackey [Melvyn Laïly]: https://togithub.com/mlaily [Björn Ebbinghaus]: https://togithub.com/MrEbbinghaus [Josh Goebel]: https://togithub.com/joshgoebel [Samia Ali]: https://togithub.com/samiaab1990 [Matthieu Lempereur]: https://togithub.com/MrYamous [idleberg]: https://togithub.com/idleberg [Fons van der Plas]: https://togithub.com/fonsp [Felipe Contreras]: https://togithub.com/felipec ### [`v11.3.1`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1131) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.3.0...11.3.1) Build: - (fix) Grammar CDN modules not generated correctly. ([#​3363](https://togithub.com/highlightjs/highlight.js/issues/3363)) [Josh Goebel][] [Josh Goebel]: https://togithub.com/joshgoebel ### [`v11.3.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1130) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.2.0...11.3.0) Build: - add `HighlightJS` named export ([#​3295](https://togithub.com/highlightjs/highlight.js/issues/3295)) [Josh Goebel][] - add `.default` named export to CJS builds ([#​3333](https://togithub.com/highlightjs/highlight.js/issues/3333)) [Josh Goebel][] Parser: - add first rough performance testing script ([#​3280](https://togithub.com/highlightjs/highlight.js/issues/3280)) [Austin Schick][] - add `throwUnescapedHTML` to warn against potential HTML injection [Josh Goebel][] - expose `regex` helper functions via `hljs` injection [Josh Goebel][] - concat - lookahead - either - optional - anyNumberOfTimes Grammars: - fix(ts) some complex types would classify as JSX ([#​3278](https://togithub.com/highlightjs/highlight.js/issues/3278)) [Josh Goebel][] - fix(js/ts) less false positives for `class X extends Y` ([#​3278](https://togithub.com/highlightjs/highlight.js/issues/3278)) [Josh Goebel][] - enh(css): add properties from several W3C (Candidate) Recommendations ([#​3308](https://togithub.com/highlightjs/highlight.js/issues/3308)) - fix(js/ts) `Float32Array` highlighted incorrectly ([#​3353](https://togithub.com/highlightjs/highlight.js/issues/3353)) [Josh Goebel][] - fix(css) single-colon psuedo-elements no longer break highlighting ([#​3240](https://togithub.com/highlightjs/highlight.js/issues/3240)) [Josh Goebel][] - fix(scss) single-colon psuedo-elements no longer break highlighting ([#​3240](https://togithub.com/highlightjs/highlight.js/issues/3240)) [Josh Goebel][] - enh(fsharp) rewrite most of the grammar, with many improvements [Melvyn Laïly][] - enh(go) better type highlighting, add `error` type [Josh Goebel][] - fix(js/ts) regex inside `SUBST` is no longer highlighted [Josh Goebel][] - fix(python) added support for unicode identifiers ([#​3280](https://togithub.com/highlightjs/highlight.js/issues/3280)) [Austin Schick][] - enh(css/less/stylus/scss) improve consistency of function dispatch ([#​3301](https://togithub.com/highlightjs/highlight.js/issues/3301)) [Josh Goebel][] - enh(css/less/stylus/scss) detect block comments more fully ([#​3301](https://togithub.com/highlightjs/highlight.js/issues/3301)) [Josh Goebel][] - fix(cpp) switch is a keyword ([#​3312](https://togithub.com/highlightjs/highlight.js/issues/3312)) [Josh Goebel][] - fix(cpp) fix `xor_eq` keyword highlighting. [Denis Kovalchuk][] - enh(c,cpp) highlight type modifiers as type ([#​3316](https://togithub.com/highlightjs/highlight.js/issues/3316)) [Josh Goebel][] - enh(css/less/stylus/scss) add support for CSS Grid properties [monochromer][] - enh(java) add support for Java Text Block ([#​3322](https://togithub.com/highlightjs/highlight.js/issues/3322)) [Teletha][] - enh(scala) add missing `do` and `then` keyword ([#​3323](https://togithub.com/highlightjs/highlight.js/issues/3323)) [Nicolas Stucki][] - enh(scala) add missing `enum`, `export` and `given` keywords ([#​3328](https://togithub.com/highlightjs/highlight.js/issues/3328)) [Nicolas Stucki][] - enh(scala) remove symbol syntax and fix quoted code syntax ([#​3324](https://togithub.com/highlightjs/highlight.js/issues/3324)) [Nicolas Stucki][] - enh(scala) add Scala 3 `extension` soft keyword ([#​3326](https://togithub.com/highlightjs/highlight.js/issues/3326)) [Nicolas Stucki][] - enh(scala) add Scala 3 `end` soft keyword ([#​3327](https://togithub.com/highlightjs/highlight.js/issues/3327)) [Nicolas Stucki][] - enh(scala) add `inline` soft keyword ([#​3329](https://togithub.com/highlightjs/highlight.js/issues/3329)) [Nicolas Stucki][] - enh(scala) add `using` soft keyword ([#​3330](https://togithub.com/highlightjs/highlight.js/issues/3330)) [Nicolas Stucki][] - enh(fsharp) added `f#` alias ([#​3337](https://togithub.com/highlightjs/highlight.js/issues/3337)) [Bahnschrift][] - enh(bash) added gnu core utilities ([#​3342](https://togithub.com/highlightjs/highlight.js/issues/3342)) [katzeprior][] - enh(nsis) add new NSIS commands ([#​3351](https://togithub.com/highlightjs/highlight.js/issues/3351)) [idleberg][] - fix(nsis) set `case_insensitive` to `true` ([#​3351](https://togithub.com/highlightjs/highlight.js/issues/3351)) [idleberg][] - fix(css/less/stylus/scss) highlight single-colon psuedo-elements properly ([#​3240](https://togithub.com/highlightjs/highlight.js/issues/3240)) [zsoltlengyelit][] - fix(css) add css hex color alpha support ([#​3360](https://togithub.com/highlightjs/highlight.js/issues/3360)) [ierehon1905][] [Austin Schick]: https://togithub.com/austin-schick [Josh Goebel]: https://togithub.com/joshgoebel [Denis Kovalchuk]: https://togithub.com/deniskovalchuk [monochromer]: https://togithub.com/monochromer [Teletha]: https://togithub.com/teletha [Nicolas Stucki]: https://togithub.com/nicolasstucki [Bahnschrift]: https://togithub.com/Bahnschrift [Melvyn Laïly]: https://togithub.com/mlaily [katzeprior]: https://togithub.com/katzeprior [zsoltlengyelit]: github.com/zsoltlengyelit [Syb Wartna]: https://togithub.com/waarissyb [idleberg]: https://togithub.com/idleberg [ierehon1905]: https://togithub.com/ierehon1905 ### [`v11.2.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1120) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.1.0...11.2.0) Build: - fix: run Node build CSS files thru CSS processor also ([#​3284](https://togithub.com/highlightjs/highlight.js/issues/3284)) [Josh Goebel][] Parser: - fix(csharp) Fix assignments flagging as functions [Josh Goebel][] - fix(types) Fix some type definition issues ([#​3274](https://togithub.com/highlightjs/highlight.js/issues/3274)) [Josh Goebel][] - fix(verilog) Fix directive handling ([#​3283](https://togithub.com/highlightjs/highlight.js/issues/3283)) [Josh Goebel][] - fix(verilog) Fix binary number false positives on `_` ([#​3283](https://togithub.com/highlightjs/highlight.js/issues/3283)) [Josh Goebel][] - enh(verilog) `__FILE__` and `__LINE__` constants ([#​3283](https://togithub.com/highlightjs/highlight.js/issues/3283)) [Josh Goebel][] - enh(verilog) tighten keyword regex ([#​3283](https://togithub.com/highlightjs/highlight.js/issues/3283)) [Josh Goebel][] Grammars: - enh(swift) Add `isolated`/`nonisolated` keywords ([#​3296](https://togithub.com/highlightjs/highlight.js/issues/3296)) [Bradley Mackey][] New Languages: - Added 3rd party X# grammar to SUPPORTED_LANGUAGES [Patrick Kruselburger][] - Added 3rd party MKB grammar to SUPPORTED_LANGUAGES ([#​3297](https://togithub.com/highlightjs/highlight.js/issues/3297)) [Dereavy][] [Josh Goebel]: https://togithub.com/joshgoebel [Patrick Kruselburger]: https://togithub.com/PatrickKru [Bradley Mackey]: https://togithub.com/bradleymackey [Dereavy]: https://togithub.com/dereavy ### [`v11.1.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1110) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.0.1...11.1.0) Grammars: - fix(csharp) add missing `catch` keyword ([#​3251](https://togithub.com/highlightjs/highlight.js/issues/3251)) [Konrad Rudolph][] - add additional keywords to csp.js ([#​3244](https://togithub.com/highlightjs/highlight.js/issues/3244)) [Elijah Conners][] - feat(css) handle css variables syntax ([#​3239](https://togithub.com/highlightjs/highlight.js/issues/3239)) [Thanos Karagiannis][] - fix(markdown) Images with empty alt or links with empty text ([#​3233](https://togithub.com/highlightjs/highlight.js/issues/3233)) [Josh Goebel][] - enh(powershell) added `pwsh` alias ([#​3236](https://togithub.com/highlightjs/highlight.js/issues/3236)) [tebeco][] - fix(r) fix bug highlighting examples in doc comments [Konrad Rudolph][] - fix(python) identifiers starting with underscore not highlighted ([#​3221](https://togithub.com/highlightjs/highlight.js/issues/3221)) [Antoine Lambert][] - enh(clojure) added `edn` alias ([#​3213](https://togithub.com/highlightjs/highlight.js/issues/3213)) [Stel Abrego][] - enh(elixir) much improved regular expression sigil support ([#​3207](https://togithub.com/highlightjs/highlight.js/issues/3207)) [Josh Goebel][] - enh(elixir) updated list of keywords ([#​3212](https://togithub.com/highlightjs/highlight.js/issues/3212)) [Angelika Tyborska][] - fix(elixir) fixed number detection when numbers start with a zero ([#​3212](https://togithub.com/highlightjs/highlight.js/issues/3212)) [Angelika Tyborska][] - fix(ps1) Flag highlighted incorrectly ([#​3167](https://togithub.com/highlightjs/highlight.js/issues/3167)) [Pankaj Patil][] - fix(latex) Allow wider syntax for magic comments ([#​3243](https://togithub.com/highlightjs/highlight.js/issues/3243)) [Benedikt Wilde][] - fix(js/ts) Constants may include numbers [Josh Goebel][] [Stel Abrego]: https://togithub.com/stelcodes [Josh Goebel]: https://togithub.com/joshgoebel [Antoine Lambert]: https://togithub.com/anlambert [Elijah Conners]: https://togithub.com/elijahepepe [Angelika Tyborska]: https://togithub.com/angelikatyborska [Konrad Rudolph]: https://togithub.com/klmr [tebeco]: https://togithub.com/tebeco [Pankaj Patil]: https://togithub.com/patil2099 [Benedikt Wilde]: https://togithub.com/schtandard [Thanos Karagiannis]: https://togithub.com/thanoskrg ### [`v11.0.1`](https://togithub.com/highlightjs/highlight.js/releases/11.0.1) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/11.0.0...11.0.1) - (fix) use console.log for .js.js deprecation warning ([#​3222](https://togithub.com/highlightjs/highlight.js/issues/3222)) [Josh Goebel][] - (fix) do not restrict exports from cdn-assets ([#​3223](https://togithub.com/highlightjs/highlight.js/issues/3223)) [Josh Goebel][] [Josh Goebel]: https://togithub.com/joshgoebel ### [`v11.0.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1100) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.7.3...11.0.0) **This is a major release.** As such it contains breaking changes which may require action from users. Please read [VERSION\_11\_UPGRADE.md](https://togithub.com/highlightjs/highlight.js/blob/main/VERSION\_11\_UPGRADE.md) for a detailed summary of all breaking changes. ##### Potentially breaking changes Unless otherwise attributed items below are thanks to [Josh Goebel][] (ref: [#​2558](https://togithub.com/highlightjs/highlight.js/issues/2558)). *The below list should only be considered to be a high-level summary.* Deprecations / Removals / API Changes: - `initHighlighting()` and `initHighlightingOnLoad()` deprecated. **Use `highlightAll()`.** - `highlightBlock(el)` deprecated. **Use `highlightElement(el)`** - `before:highlightBlock` & `after:highlightBlock` callbacks deprecated. **Use equivalent `highlightElement` callbacks.** - `highlight(languageName, code, ignoreIllegals, continuation)` signature deprecated. **Use `highlight(code, {language, ignoreIllegals})`.** - Deprecated `highlight()` signature no longer supports `continuation` argument. - `tabReplace` option removed. Consider a plugin. - `useBR` option removed. Consider a plugin or CSS. - `requireLanguage()` removed. **Use `getLanguage()`.** - `endSameAsBegin` mode key removed. **Use `hljs.END_SAME_AS_BEGIN`.** - `lexemes` mode key removed. **Use `keywords.$pattern`.** - The return values/keys of some APIs have changed slightly. Security: - HTML auto-passthru has been removed. Consider a plugin. - Unescaped HTML is now stripped (for security). A warning is logged to the console. ([#​3057](https://togithub.com/highlightjs/highlight.js/issues/3057)) [Josh Goebel][] Themes: - The default padding of all themes increases (0.5em => 1em). - `schoolbook` has been updated to remove the lined background. - `github` updated to better match modern GitHub ([#​1616](https://togithub.com/highlightjs/highlight.js/issues/1616)) [Jan Pilzer][] - `github-gist` has been removed in favor of `github` [Jan Pilzer][] - Base16 named themes have been updated to their "canonical" versions - `nnfx` updated for v11 xml styles and improved css support Language Grammars: - Default CDN build drops support for several languages. - Some language grammar files have been removed. - Some redundant language aliases have been removed. ##### Other changes Parser: - enh(vala) improve language detection for Vala ([#​3195](https://togithub.com/highlightjs/highlight.js/issues/3195)) \[Konrad Rudolph]\[] - enh(r) add support for operators, fix number highlighting bug ([#​3194](https://togithub.com/highlightjs/highlight.js/issues/3194), [#​3195](https://togithub.com/highlightjs/highlight.js/issues/3195)) \[Konrad Rudolph]\[] - enh(parser) add `beginScope` and `endScope` to allow separate scoping begin and end ([#​3159](https://togithub.com/highlightjs/highlight.js/issues/3159)) [Josh Goebel][] - enh(parsed) `endScope` now supports multi-class matchers as well ([#​3159](https://togithub.com/highlightjs/highlight.js/issues/3159)) [Josh Goebel][] - enh(parser) `highlightElement` now always tags blocks with a consistent `language-[name]` class [Josh Goebel][] - subLanguage `span` tags now also always have the `language-` prefix added - enh(parser) support multi-class matchers ([#​3081](https://togithub.com/highlightjs/highlight.js/issues/3081)) [Josh Goebel][] - enh(parser) Detect comments based on english like text, rather than keyword list [Josh Goebel][] - adds `title.class.inherited` sub-scope support [Josh Goebel][] - adds `title.class` sub-scope support ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - adds `title.function` sub-scope support ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - adds `beforeMatch` compiler extension ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - adds ` cssSelector ` configuration option ([#​3180](https://togithub.com/highlightjs/highlight.js/issues/3180)) [James Edington][] Grammars: - enh(all) `.meta-keyword` => `.meta .keyword` (nested scopes) ([#​3167](https://togithub.com/highlightjs/highlight.js/issues/3167)) [Josh Goebel][] - enh(all) `.meta-string` => `.meta .string` (nested scopes) ([#​3167](https://togithub.com/highlightjs/highlight.js/issues/3167)) [Josh Goebel][] - enh(swift) add `actor` keyword ([#​3171](https://togithub.com/highlightjs/highlight.js/issues/3171)) [Bradley Mackey][] - enh(crystal) highlight variables ([#​3154](https://togithub.com/highlightjs/highlight.js/issues/3154)) [Josh Goebel][] - fix(ruby) Heredoc without interpolation ([#​3154](https://togithub.com/highlightjs/highlight.js/issues/3154)) [Josh Goebel][] - enh(swift) add `@resultBuilder` attribute ([#​3151](https://togithub.com/highlightjs/highlight.js/issues/3151)) [Bradley Mackey][] - enh(processing) added `pde` alias ([#​3142](https://togithub.com/highlightjs/highlight.js/issues/3142)) [Dylan McBean][] - enh(thrift) Use proper scope for types [Josh Goebel][] - enh(java) Simplified class-like matcher ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(cpp) Simplified class-like matcher ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(rust) Simplified class-like matcher ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(actionscript) Simplified class-like matcher ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(arcade) `function.title` => `title.function` ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(autoit) `function.title` => `title.function` ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(c) `function.title` => `title.function` ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - enh(rust) support function invoke and `impl` ([#​3078](https://togithub.com/highlightjs/highlight.js/issues/3078)) [Josh Goebel][] - chore(properties) disable auto-detection [#​3102](https://togithub.com/highlightjs/highlight.js/issues/3102) [Josh Goebel][] - fix(properties) fix incorrect handling of non-alphanumeric keys [#​3102](https://togithub.com/highlightjs/highlight.js/issues/3102) \[Egor Rogov]\[] - enh(java) support functions with nested template types ([#​2641](https://togithub.com/highlightjs/highlight.js/issues/2641)) [Josh Goebel][] - enh(java) highlight types and literals separate from keywords ([#​3074](https://togithub.com/highlightjs/highlight.js/issues/3074)) [Josh Goebel][] - enh(shell) add alias ShellSession [Ryan Mulligan][] - enh(shell) consider one space after prompt as part of prompt [Ryan Mulligan][] - fix(nginx) fix bug with $ and @​ variables [Josh Goebel][] - enh(nginx) improving highlighting of some sections [Josh Goebel][] - fix(vim) variable names may not be zero length [Josh Goebel][] - enh(sqf) Updated keywords to Arma 3 v2.02 ([#​3084](https://togithub.com/highlightjs/highlight.js/issues/3084)) [R3voA3][] - enh(sqf) Refactored function regex to match CBA component func naming scheme ([#​3181](https://togithub.com/highlightjs/highlight.js/issues/3181)) [JonBons][] - enh(nim) highlight types properly (not as built-ins) [Josh Goebel][] - (chore) throttle deprecation messages ([#​3092](https://togithub.com/highlightjs/highlight.js/issues/3092)) \[Mihkel Eidast]\[] - enh(c) Update keyword list for C11/C18 ([#​3010](https://togithub.com/highlightjs/highlight.js/issues/3010)) [Josh Goebel][] - enh(parser) highlight object properties ([#​3072](https://togithub.com/highlightjs/highlight.js/issues/3072)) [Josh Goebel][] - enh(javascript/typescript) highlight object properties ([#​3072](https://togithub.com/highlightjs/highlight.js/issues/3072)) [Josh Goebel][] - enh(haskell) add support for BinaryLiterals ([#​3150](https://togithub.com/highlightjs/highlight.js/issues/3150)) [Martijn Bastiaan][] - enh(haskell) add support for NumericUnderscores ([#​3150](https://togithub.com/highlightjs/highlight.js/issues/3150)) [Martijn Bastiaan][] - enh(haskell) add support for HexFloatLiterals ([#​3150](https://togithub.com/highlightjs/highlight.js/issues/3150)) [Martijn Bastiaan][] - fix(c,cpp) allow declaring multiple functions and (for C++) parenthetical initializers ([#​3155](https://togithub.com/highlightjs/highlight.js/issues/3155)) \[Erik Demaine]\[] - enh(rust) highlight raw byte string literals correctly ([#​3173](https://togithub.com/highlightjs/highlight.js/issues/3173)) [Nico Abram][] - fix(cpp) fix detection of common functions that are function templates ([#​3178](https://togithub.com/highlightjs/highlight.js/issues/3178)) [Kris van Rens][] - enh(cpp) add various keywords and commonly used types for hinting ([#​3178](https://togithub.com/highlightjs/highlight.js/issues/3178)) [Kris van Rens][] - enh(cpp) cleanup reserved keywords and type lists ([#​3178](https://togithub.com/highlightjs/highlight.js/issues/3178)) [Kris van Rens][] New Languages: - Added 3rd party Glimmer grammar to SUPPORTED_LANGUAGES([#​3123](https://togithub.com/highlightjs/highlight.js/issues/3123)) [NullVoxPopuli][] - Added Wren support [Josh Goebel][] - Added NestedText support [Josh Goebel][] - Added WebAssembly language grammar [Josh Goebel][] - Added 3rd party Splunk search processing language grammar to SUPPORTED_LANGUAGES ([#​3090](https://togithub.com/highlightjs/highlight.js/issues/3090)) [Wei Su][] - Added 3rd party ZenScript grammar to SUPPORTED_LANGUAGES([#​3106](https://togithub.com/highlightjs/highlight.js/issues/3106)) [Jared Luboff][] - Added 3rd party Papyrus grammar to SUPPORTED_LANGUAGES([#​3125](https://togithub.com/highlightjs/highlight.js/issues/3125)) [Mike Watling][] Theme Improvements: - Added all official Base16 themes (over 150 new themes) [Josh Goebel][] - chore(themes) remove `builtin-name` CSS class ([#​3119](https://togithub.com/highlightjs/highlight.js/issues/3119)) [Josh Goebel][] - chore(theme) Update GitHub theme css to match GitHub's current styling ([#​1616](https://togithub.com/highlightjs/highlight.js/issues/1616)) [Jan Pilzer][] - chore(theme) Update Srcery theme css to match its Emacs implementation \[Chen Bin]\[] New Themes: - DeviBeans Dark by [Farzad Sadeghi][] - GitHub Dark and GitHub Dark Dimmed [Jan Pilzer][] Dev Improvements: - (chore) greatly improve match scope visualization in dev tool ([#​3126](https://togithub.com/highlightjs/highlight.js/issues/3126)) [NullVoxPopuli][] - (fix) CSS used for devtool needed an adjustment to fix too wide of content ([#​3133](https://togithub.com/highlightjs/highlight.js/issues/3133)) [NullVoxPopuli][] [Farzad Sadeghi]: https://togithub.com/terminaldweller [Martijn Bastiaan]: https://togithub.com/martijnbastiaan [Bradley Mackey]: https://togithub.com/bradleymackey [Dylan McBean]: https://togithub.com/DylanMcBean [Josh Goebel]: https://togithub.com/joshgoebel [Ryan Mulligan]: https://togithub.com/ryantm [R3voA3]: https://togithub.com/R3voA3 [JonBons]: https://togithub.com/JonBons [Wei Su]: https://togithub.com/swsoyee [Jared Luboff]: https://togithub.com/jaredlll08 [NullVoxPopuli]: https://togithub.com/NullVoxPopuli [Mike Watling]: https://togithub.com/Pickysaurus [Nico Abram]: https://togithub.com/nico-abram [James Edington]: http://www.ishygddt.xyz/ [Jan Pilzer]: https://togithub.com/Hirse [Kris van Rens]: https://togithub.com/krisvanrens ### [`v10.7.3`](https://togithub.com/highlightjs/highlight.js/releases/10.7.3) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.7.2...10.7.3) - fix(parser) Resolves issue with missing TypeScript property [Jacob Swanner][] No other changes. [Jacob Swanner]: https://togithub.com/jswanner ### [`v10.7.2`](https://togithub.com/highlightjs/highlight.js/releases/tag/10.7.2) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.7.1...10.7.2) This is a patch release. The only change is that deprecation messages are throttled and shown only once. - (chore) throttle deprecation messages ([#​3092](https://togithub.com/highlightjs/highlight.js/issues/3092)) [Mihkel Eidast][] [Mihkel Eidast]: https://togithub.com/mihkeleidast ### [`v10.7.1`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1071) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.7.0...10.7.1) - fix(parser) Resolves issues with TypeScript types [Josh Goebel][] ##### Version 10.7.0 Parser: - keywords now have a maximum # of times they provide relevance ([#​3129](https://togithub.com/highlightjs/highlight.js/issues/3129)) [Josh Goebel][] - enh(api) add `unregisterLanguage` method ([#​3009](https://togithub.com/highlightjs/highlight.js/issues/3009)) [Antoine du Hamel][] - enh: Make alias registration case insensitive ([#​3026](https://togithub.com/highlightjs/highlight.js/issues/3026)) [David Ostrovsky][] - fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][] New Languages: - Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES ([#​2988](https://togithub.com/highlightjs/highlight.js/issues/2988)) \[John C]\[] - Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES ([#​3002](https://togithub.com/highlightjs/highlight.js/issues/3002)) [Stef Levesque][] - Added 3rd party Q# grammar to SUPPORTED_LANGUAGES([#​3006](https://togithub.com/highlightjs/highlight.js/issues/3006)) [Vyron Vasileiadis][] Language grammar improvements: - enh(js/ts) class references (CamelCase) are highlighted ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) constants (ALL_CAPS) are highlighted ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) highlights function invokation ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) functions assigned to variables are now highlighted `title.function` ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(parser) smarter detection of comments ([#​2827](https://togithub.com/highlightjs/highlight.js/issues/2827)) [Josh Goebel][] - fix(python) allow keywords immediately following numbers ([#​2985](https://togithub.com/highlightjs/highlight.js/issues/2985)) [Josh Goebel][] - fix(xml) char immediately following tag close mis-highlighted ([#​3044](https://togithub.com/highlightjs/highlight.js/issues/3044)) [Josh Goebel][] - fix(ruby) fix `defined?()` mis-highlighted as `def` ([#​3025](https://togithub.com/highlightjs/highlight.js/issues/3025)) [Josh Goebel][] - fix(c) comments after `#include ` blocks ([#​3041](https://togithub.com/highlightjs/highlight.js/issues/3041)) [Josh Goebel][] - fix(cpp) comments after `#include ` blocks ([#​3041](https://togithub.com/highlightjs/highlight.js/issues/3041)) [Josh Goebel][] - enh(cpp) Highlight all function dispatches ([#​3005](https://togithub.com/highlightjs/highlight.js/issues/3005)) [Josh Goebel][] - enh(python) support type hints and better type support ([#​2972](https://togithub.com/highlightjs/highlight.js/issues/2972)) [Josh Goebel][] - enh(gml) Add additional GML 2.3 keywords ([#​2984](https://togithub.com/highlightjs/highlight.js/issues/2984)) [xDGameStudios][] - fix(cpp) constructor support for initializers ([#​3001](https://togithub.com/highlightjs/highlight.js/issues/3001)) [Josh Goebel][] - enh(php) Add `trait` to class-like naming patterns ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add `mixed` to list of keywords ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add support for Enums ([#​3004](https://togithub.com/highlightjs/highlight.js/issues/3004)) [Ayesh][] - enh(ecmascript) Add built-in types [Vaibhav Chanana][] - enh(kotlin) Add `kts` as an alias for Kotlin ([#​3021](https://togithub.com/highlightjs/highlight.js/issues/3021)) [Vaibhav Chanana][] - enh(css) Add `font-smoothing` to attributes list for CSS ([#​3027](https://togithub.com/highlightjs/highlight.js/issues/3027)) [AndyKIron][] - fix(python) Highlight `print` and `exec` as a builtin ([#​1468](https://togithub.com/highlightjs/highlight.js/issues/1468)) [Samuel Colvin][] - fix(csharp) Fix unit being highlighted instead of uint ([#​3046](https://togithub.com/highlightjs/highlight.js/issues/3046)) \[Spacehamster]\[] - enh(swift) add async/await keywords ([#​3048](https://togithub.com/highlightjs/highlight.js/issues/3048)) \[Bradley Mackey]\[] Deprecations: - `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7 - Please use the newer API which takes `code` and then accepts options as an object - IE: `highlight(code, {language, ignoreIllegals})` - `continuation` is for internal use only and no longer supported - `highlightBlock(el)` deprecated as of 10.7. - Please use `highlightElement(el)` instead. - Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement` - Plugin callback now takes `el` vs `block` attribute - The old API and callbacks will be supported until v12. [Stef Levesque]: https://togithub.com/stef-levesque [Josh Goebel]: https://togithub.com/joshgoebel [John Cheung]: https://togithub.com/Real-John-Cheung [xDGameStudios]: https://togithub.com/xDGameStudios [Ayesh]: https://togithub.com/Ayesh [Vyron Vasileiadis]: https://togithub.com/fedonman [Antoine du Hamel]: https://togithub.com/aduh95 [Vaibhav Chanana]: https://togithub.com/il3ven [David Ostrovsky]: https://togithub.com/davido [AndyKIron]: https://togithub.com/AndyKIron [Samuel Colvin]: https://togithub.com/samuelcolvin ### [`v10.7.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1070) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.6.0...10.7.0) Parser: - keywords now have a maximum # of times they provide relevance ([#​3129](https://togithub.com/highlightjs/highlight.js/issues/3129)) [Josh Goebel][] - enh(api) add `unregisterLanguage` method ([#​3009](https://togithub.com/highlightjs/highlight.js/issues/3009)) [Antoine du Hamel][] - enh: Make alias registration case insensitive ([#​3026](https://togithub.com/highlightjs/highlight.js/issues/3026)) [David Ostrovsky][] - fix(parser) `highlightAll()` now works if the library is lazy loaded [Josh Goebel][] New Languages: - Added 3rd party RiScript grammar to SUPPORTED_LANGUAGES ([#​2988](https://togithub.com/highlightjs/highlight.js/issues/2988)) \[John C]\[] - Added 3rd party HLSL grammar to SUPPORTED_LANGUAGES ([#​3002](https://togithub.com/highlightjs/highlight.js/issues/3002)) [Stef Levesque][] - Added 3rd party Q# grammar to SUPPORTED_LANGUAGES([#​3006](https://togithub.com/highlightjs/highlight.js/issues/3006)) [Vyron Vasileiadis][] Language grammar improvements: - enh(js/ts) class references (CamelCase) are highlighted ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) constants (ALL_CAPS) are highlighted ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) highlights function invokation ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(js/ts) functions assigned to variables are now highlighted `title.function` ([#​3169](https://togithub.com/highlightjs/highlight.js/issues/3169)) [Josh Goebel][] - enh(parser) smarter detection of comments ([#​2827](https://togithub.com/highlightjs/highlight.js/issues/2827)) [Josh Goebel][] - fix(python) allow keywords immediately following numbers ([#​2985](https://togithub.com/highlightjs/highlight.js/issues/2985)) [Josh Goebel][] - fix(xml) char immediately following tag close mis-highlighted ([#​3044](https://togithub.com/highlightjs/highlight.js/issues/3044)) [Josh Goebel][] - fix(ruby) fix `defined?()` mis-highlighted as `def` ([#​3025](https://togithub.com/highlightjs/highlight.js/issues/3025)) [Josh Goebel][] - fix(c) comments after `#include ` blocks ([#​3041](https://togithub.com/highlightjs/highlight.js/issues/3041)) [Josh Goebel][] - fix(cpp) comments after `#include ` blocks ([#​3041](https://togithub.com/highlightjs/highlight.js/issues/3041)) [Josh Goebel][] - enh(cpp) Highlight all function dispatches ([#​3005](https://togithub.com/highlightjs/highlight.js/issues/3005)) [Josh Goebel][] - enh(python) support type hints and better type support ([#​2972](https://togithub.com/highlightjs/highlight.js/issues/2972)) [Josh Goebel][] - enh(gml) Add additional GML 2.3 keywords ([#​2984](https://togithub.com/highlightjs/highlight.js/issues/2984)) [xDGameStudios][] - fix(cpp) constructor support for initializers ([#​3001](https://togithub.com/highlightjs/highlight.js/issues/3001)) [Josh Goebel][] - enh(php) Add `trait` to class-like naming patterns ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add `Stringable`, `UnhandledMatchError`, and `WeakMap` classes/interfaces ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add `mixed` to list of keywords ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add support binary, octal, hex and scientific numerals with underscore separator support ([#​2997](https://togithub.com/highlightjs/highlight.js/issues/2997)) [Ayesh][] - enh(php) Add support for Enums ([#​3004](https://togithub.com/highlightjs/highlight.js/issues/3004)) [Ayesh][] - enh(ecmascript) Add built-in types [Vaibhav Chanana][] - enh(kotlin) Add `kts` as an alias for Kotlin ([#​3021](https://togithub.com/highlightjs/highlight.js/issues/3021)) [Vaibhav Chanana][] - enh(css) Add `font-smoothing` to attributes list for CSS ([#​3027](https://togithub.com/highlightjs/highlight.js/issues/3027)) [AndyKIron][] - fix(python) Highlight `print` and `exec` as a builtin ([#​1468](https://togithub.com/highlightjs/highlight.js/issues/1468)) [Samuel Colvin][] - fix(csharp) Fix unit being highlighted instead of uint ([#​3046](https://togithub.com/highlightjs/highlight.js/issues/3046)) \[Spacehamster]\[] - enh(swift) add async/await keywords ([#​3048](https://togithub.com/highlightjs/highlight.js/issues/3048)) \[Bradley Mackey]\[] Deprecations: - `highlight(languageName, code, ignoreIllegals, continuation)` deprecated as of 10.7 - Please use the newer API which takes `code` and then accepts options as an object - IE: `highlight(code, {language, ignoreIllegals})` - `continuation` is for internal use only and no longer supported - `highlightBlock(el)` deprecated as of 10.7. - Please use `highlightElement(el)` instead. - Plugin callbacks renamed `before/after:highlightBlock` => `before/after:highlightElement` - Plugin callback now takes `el` vs `block` attribute - The old API and callbacks will be supported until v12. [Stef Levesque]: https://togithub.com/stef-levesque [Josh Goebel]: https://togithub.com/joshgoebel [John Cheung]: https://togithub.com/Real-John-Cheung [xDGameStudios]: https://togithub.com/xDGameStudios [Ayesh]: https://togithub.com/Ayesh [Vyron Vasileiadis]: https://togithub.com/fedonman [Antoine du Hamel]: https://togithub.com/aduh95 [Vaibhav Chanana]: https://togithub.com/il3ven [David Ostrovsky]: https://togithub.com/davido [AndyKIron]: https://togithub.com/AndyKIron [Samuel Colvin]: https://togithub.com/samuelcolvin ### [`v10.6.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1060) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.5.0...10.6.0) New Languages: - Added 3rd party Laravel Blade grammar to SUPPORTED_LANGUAGES ([#​2944](https://togithub.com/highlightjs/highlight.js/issues/2944)) [Michael Newton][] Language grammar improvements: - enh(scala) fix triple quoted strings ([#​2987](https://togithub.com/highlightjs/highlight.js/issues/2987)) [Josh Goebel][] - enh(perl) Much improved regex detection ([#​2960](https://togithub.com/highlightjs/highlight.js/issues/2960)) [Josh Goebel][] - enh(swift) Improved highlighting for operator and precedencegroup declarations. ([#​2938](https://togithub.com/highlightjs/highlight.js/issues/2938)) [Steven Van Impe][] - fix(xml) Support single-character namespaces. ([#​2957](https://togithub.com/highlightjs/highlight.js/issues/2957)) [Jan Pilzer][] - enh(ruby) Support for character literals ([#​2950](https://togithub.com/highlightjs/highlight.js/issues/2950)) [Vaibhav Chanana][] - enh(powershell) Add three VALID_VERBS and update the reference link ([#​2981](https://togithub.com/highlightjs/highlight.js/issues/2981)) [davidhcefx][] - fix(php) Highlighting of anonymous functions without {} block [Vaibhav Chanana][] Grammar Deprecations: - Deprecate `c-like`, though you should not be using it directly anyways. - will be removed in v11. - `c` and `cpp` are now wholly unique grammars that will diverge over time Parser: - new simpler `highlightAll()` API ([#​2962](https://togithub.com/highlightjs/highlight.js/issues/2962)) [Josh Goebel][] - this should be a drop-in replacement for both `initHighlighting()` and `initHighlightingOnLoad()` - note: it does not prevent itself from being called multiple times (as the previous API did) - `beginKeyword` no longer bestows double relevance ([#​2953](https://togithub.com/highlightjs/highlight.js/issues/2953)) [Josh Goebel][] - allow `keywords` to be an array of strings [Josh Goebel][] - add `modes.MATCH_NOTHING_RE` that will never match - This can be used with `end` to hold a mode open (it must then be ended with `endsParent` in one of it's children modes) [Josh Goebel][] Deprecations: - `initHighlighting()` and `initHighlightingOnLoad()` deprecated. - Please use the new `highlightAll()` API instead. - Deprecated as of 10.6. - These will both be aliases to `highlightAll` in v11. [Michael Newton]: https://togithub.com/miken32 [Steven Van Impe]: https://togithub.com/svanimpe/ [Josh Goebel]: https://togithub.com/joshgoebel [Vaibhav Chanana]: https://togithub.com/il3ven [davidhcefx]: https://togithub.com/davidhcefx [Jan Pilzer]: https://togithub.com/Hirse ### [`v10.5.0`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1050) [Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.4.1...10.5.0) Build: - Add Subresource Integrity digest lists to `cdn-assets` [Josh Goebel][] - R and VB.net grammars now ship in our default build (`:common`) [Josh Goebel][] Parser: - add `match` as sugar for simple `begin` only matches ([#​2834](https://togithub.com/highlightjs/highlight.js/issues/2834)) [Josh Goebel][] - allow `illegal` to also be an array of regex ([#​2834](https://togithub.com/highlightjs/highlight.js/issues/2834)) [Josh Goebel][] - add `compilerExtensions` allows grammers to influence mode compilation ([#​2834](https://togithub.com/highlightjs/highlight.js/issues/2834)) [Josh Goebel][] - some internal pieces are now simple compiler extensions New Languages: - Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES ([#​2872](https://togithub.com/highlightjs/highlight.js/issues/2872)) [Oldes Huhuman][] Language grammar improvements: - enh: CSS grammars now share common foundation, keywords, etc. ([#​2937](https://togithub.com/highlightjs/highlight.js/issues/2937)) [Josh Goebel][] - enh(css): many consistency improvements - enh(scss): many consistency improvements - enh(stylus): many consistency improvements - enh(less): many consistency improvements - enh(cpp): Support C++ pack expansion in function arguments [Martin Dørum][] - enh(makefile): Add `make` as an alias ([#​2883](https://togithub.com/highlightjs/highlight.js/issues/2883)) [tripleee][] - enh(swift) Improved grammar for strings ([#​2819](https://togithub.com/highlightjs/highlight.js/issues/2819)) [Steven Van Impe][] - enh(swift) Grammar improvements ([#​2908](https://togithub.com/highlightjs/highlight.js/issues/2908)) [Steven Van Impe][] - New grammar for keywords and built-ins - Added support for operator highlighting - New grammar for attributes - Added support for quoted identifiers, implicit parameters, and property wrapper projections - Support for more complex expressions in string interpolation - enh(swift) Improved highlighting for types and generic arguments ([#​2920](https://togithub.com/highlightjs/highlight.js/issues/2920)) [Steven Van Impe][] - enh(swift) Improved highlighting for functions, initializers, and subscripts ([#​2930](https://togithub.com/highlightjs/highlight.js/issues/2930)) [Steven Van Impe][] - fix(http) avoid recursive sublanguage and tighten rules ([#​2893](https://togithub.com/highlightjs/highlight.js/issues/2893)) [Josh Goebel][] - fix(asciidoc): Handle section titles level 5 ([#​2868](https://togithub.com/highlightjs/highlight.js/issues/2868)) [Vaibhav Chanana][] - fix(asciidoc): Support unconstrained emphasis syntax ([#​2869](https://togithub.com/highlightjs/highlight.js/issues/2869)) [Guillaume Grossetie][] - enh(scheme) Allow `[]` for argument lists ([#​2913](https://togithub.com/highlightjs/highlight.js/issues/2913)) [Josh Goebel][] - enh(vb) Large rework of VB.net grammar ([#​2808](https://togithub.com/highlightjs/highlight.js/issues/2808)) [Jan Pilzer][] - Adds support for Date data types, see ([#​2775](https://togithub.com/highlightjs/highlight.js/issues/2775)) - Adds support for `REM` comments and fixes `'''` doctags ([#​2875](https://togithub.com/highlightjs/highlight.js/issues/2875)) ([#​2851](https://togithub.com/highlightjs/highlight.js/issues/2851)) - Custom number mode to support VB.net specific number flags - Hex (\&H), Oct (\&O), and binary (\&B) prefixes - Separating digits with underscores: 90\_946 - Type suffixes: 123UI (unsigned integer) - Improves directives detection and adds support for `Enable`, `Disable`, and `Then` keywords - Adds more markup tests - fix(javascript) Empty block-comments break highlighting ([#​2896](https://togithub.com/highlightjs/highlight.js/issues/2896)) [Jan Pilzer][] - enh(dart) Fix empty block-comments from breaking highlighting ([#​2898](https://togithub.com/highlightjs/highlight.js/issues/2898)) [Jan Pilzer][] - enh(dart) Fix empty doc-comment eating next line [Jan Pilzer][] - enh(asciidoc) Adds support for unconstrained bold syntax ([#​2869](https://togithub.com/highlightjs/highlight.js/issues/2869)) [Guillaume Grossetie][] - enh(c-like) Incorrect highlighting for interger suffix ([#​2919](https://togithub.com/highlightjs/highlight.js/issues/2919)) [Vaibhav Chanana][] - enh(properties) Correctly handle trailing backslash ([#​2922](https://togithub.com/highlightjs/highlight.js/issues/2922)) [Vaibhav Chanana][] Recent Deprecations: - HTML "merging" is deprecated. ([#​2873](https://togithub.com/highlightjs/highlight.js/issues/2873)) [Josh Goebel][] - HTML inside `
` blocks will no longer be magically merged back into the
        highlighted code's HTML result - it will instead be silently removed.
    -   Consider [using a plugin][htmlPlugin] if you truly need this functionality
    -   Deprecated as of 10.5.0 - will be removed in v11.
-   `tabReplace` option deprecated. ([#​2873](https://togithub.com/highlightjs/highlight.js/issues/2873)) [Josh Goebel][]
    -   **Consider:** Use the CSS `tab-size` property, or simply pre-process the
        text yourself before rendering the initial HTML
    -   otherwise, [use a plugin][tabPlugin]
    -   Deprecated as of 10.5.0 - will be removed in v11.
-   `useBR` option deprecated. ([#​2559](https://togithub.com/highlightjs/highlight.js/issues/2559)) [Josh Goebel][]
    -   **Recommended:** You really should just use the HTML `
` tag
    -   or perhaps try CSS `white-space: pre;`
    -   otherwise, [use a plugin][brPlugin]
    -   Deprecated as of 10.3.0 - will be removed in v11.
-   `requireLanguage` API is deprecated, will be removed in v11.0.
    -   **Consider:** Use `getLanguage` (with custom error handling) or built-time dependencies.
    -   See [Library API](https://highlightjs.readthedocs.io/en/latest/api.html#requirelanguage-name) for more information.
    -   Deprecated as of 10.4.0 - will be removed in v11.

[htmlPlugin]: https://togithub.com/highlightjs/highlight.js/issues/2889

[tabPlugin]: https://togithub.com/highlightjs/highlight.js/issues/2874

[brPlugin]: https://togithub.com/highlightjs/highlight.js/issues/2559

[Martin Dørum]: https://togithub.com/mortie

[Jan Pilzer]: https://togithub.com/Hirse

[Oldes Huhuman]: https://togithub.com/Oldes

[Josh Goebel]: https://togithub.com/joshgoebel

[tripleee]: https://togithub.com/tripleee

[Steven Van Impe]: https://togithub.com/svanimpe/

[Vaibhav Chanana]: https://togithub.com/il3ven

[Guillaume Grossetie]: https://togithub.com/mogztter

### [`v10.4.1`](https://togithub.com/highlightjs/highlight.js/blob/HEAD/CHANGES.md#Version-1041-tentative)

[Compare Source](https://togithub.com/highlightjs/highlight.js/compare/10.4.0...10.4.1)

Security

-   (fix) Exponential backtracking fixes for: [Josh Goebel][]
    -   cpp
    -   handlebars
    -   gams
    -   perl
    -   jboss-cli
    -   r
    -   erlang-repl
    - 


Configuration

📅 Schedule: "" (UTC).

🚦 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.



This PR has been generated by WhiteSource Renovate. View repository job log here.

cloudflare-workers-and-pages[bot] commented 2 years ago

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 2afadae
Status:🚫  Build failed.

View logs

netlify[bot] commented 2 years ago

Deploy Preview for blog-katio-net processing.

Name Link
Latest commit 86dad3bdde599affa12ce10fdeab2cc53aaa66a3
Latest deploy log https://app.netlify.com/sites/blog-katio-net/deploys/628ba49efec85d000884e259
renovate[bot] commented 2 years ago

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 11.x releases. But if you manually upgrade to 11.x then Renovate will re-enable minor and patch updates automatically.

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