Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency highlight.js to ^10.4.1 - autoclosed #306

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 19, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
highlight.js (source) ^10.0.0 -> ^10.4.1 age adoption passing confidence

Release Notes

highlightjs/highlight.js

v10.7.2

Compare Source

This is a patch release. The only change is that deprecation messages
are throttled and shown only once.

v10.7.1

Compare Source

  • fix(parser) Resolves issues with TypeScript types Josh Goebel
Version 10.7.0

Parser:

New Languages:

Language grammar improvements:

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.

v10.7.0

Compare Source

Parser:

New Languages:

Language grammar improvements:

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.

v10.6.0

Compare Source

New Languages:

Language grammar improvements:

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

v10.5.0

Compare Source

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) Josh Goebel
  • allow illegal to also be an array of regex (#​2834) Josh Goebel
  • add compilerExtensions allows grammers to influence mode compilation (#​2834) Josh Goebel
    • some internal pieces are now simple compiler extensions

New Languages:

Language grammar improvements:

  • enh: CSS grammars now share common foundation, keywords, etc. (#​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) tripleee
  • enh(swift) Improved grammar for strings (#​2819) Steven Van Impe
  • enh(swift) Grammar improvements (#​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) Steven Van Impe
  • enh(swift) Improved highlighting for functions, initializers, and subscripts (#​2930) Steven Van Impe
  • fix(http) avoid recursive sublanguage and tighten rules (#​2893) Josh Goebel
  • fix(asciidoc): Handle section titles level 5 (#​2868) Vaibhav Chanana
  • fix(asciidoc): Support unconstrained emphasis syntax (#​2869) Guillaume Grossetie
  • enh(scheme) Allow [] for argument lists (#​2913) Josh Goebel
  • enh(vb) Large rework of VB.net grammar (#​2808) Jan Pilzer
    • Adds support for Date data types, see (#​2775)
    • Adds support for REM comments and fixes ''' doctags (#​2875) (#​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) Jan Pilzer
  • enh(dart) Fix empty block-comments from breaking highlighting (#​2898) Jan Pilzer
  • enh(dart) Fix empty doc-comment eating next line Jan Pilzer
  • enh(asciidoc) Adds support for unconstrained bold syntax (#​2869) Guillaume Grossetie
  • enh(c-like) Incorrect highlighting for interger suffix (#​2919) Vaibhav Chanana
  • enh(properties) Correctly handle trailing backslash (#​2922) Vaibhav Chanana

Recent Deprecations:

  • HTML "merging" is deprecated. (#​2873) Josh Goebel
    • HTML inside <pre> 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 if you truly need this functionality
    • Deprecated as of 10.5.0 - will be removed in v11.
  • tabReplace option deprecated. (#​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
    • Deprecated as of 10.5.0 - will be removed in v11.
  • useBR option deprecated. (#​2559) Josh Goebel
    • Recommended: You really should just use the HTML <pre> tag
    • or perhaps try CSS white-space: pre;
    • otherwise, use a plugin
    • 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 for more information.
    • Deprecated as of 10.4.0 - will be removed in v11.

Configuration

📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.

@github-actions
Copy link

github-actions bot commented Apr 19, 2021

Size Change: 0 B

Total Size: 7.48 kB

ℹ️ View Unchanged
Filename Size Change
dist/currency.es.js 2.07 kB 0 B
dist/currency.js 2.08 kB 0 B
dist/currency.min.js 1.14 kB 0 B
dist/currency.umd.js 2.2 kB 0 B

compressed-size-action

@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling d1c50f2 on renovate/highlight.js-10.x into 66276c8 on master.

@renovate renovate bot force-pushed the renovate/highlight.js-10.x branch from d1c50f2 to d48da56 Compare April 19, 2021 14:57
@renovate renovate bot changed the title Update dependency highlight.js to ^10.4.1 Update dependency highlight.js to ^10.4.1 - autoclosed Apr 19, 2021
@renovate renovate bot closed this Apr 19, 2021
@renovate renovate bot deleted the renovate/highlight.js-10.x branch April 19, 2021 21:40
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.

None yet

2 participants