Skip to content

chore(deps): update weekly non-major updates#77

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/weekly-non-major-updates
Open

chore(deps): update weekly non-major updates#77
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/weekly-non-major-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 18, 2026

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 25.7.025.9.1 age confidence
@typescript-eslint/parser (source) 8.59.38.60.0 age confidence
oxfmt (source) ^0.49.0^0.52.0 age confidence
oxlint (source) 1.64.01.67.0 age confidence
oxlint-tsgolint ^0.22.0^0.23.0 age confidence
taze 19.11.019.14.1 age confidence
vitepress-mermaid-renderer (source) 1.1.241.1.26 age confidence
vitepress-sidebar (source) 1.33.21.36.1 age confidence
vue (source) 3.5.343.5.35 age confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.60.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.4

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

oxc-project/oxc (oxfmt)

v0.52.0

Compare Source

🚀 Features
  • 16b8058 oxfmt: Support vite-plus/resolveConfig for vite.config.ts (#​22454) (leaysgur)

v0.51.0

Compare Source

v0.50.0

Compare Source

🐛 Bug Fixes
  • 43b9978 formatter/sort_imports: Treat subpath imports as internal (#​22440) (leaysgur)
oxc-project/oxc (oxlint)

v1.67.0

Compare Source

🚀 Features

v1.66.0

Compare Source

🚀 Features
  • 0440b0f linter/eslint: Implement id-match rule (#​22379) (Vladislav Sayapin)
  • 65bf119 linter: Implement react no-object-type-as-default-prop (#​22481) (uhyo)
  • 2a6ddce linter/eslint: Implement no-implied-eval rule (#​22391) (Vladislav Sayapin)
  • 625758a linter/vitest: Implement padding-around-after-all-blocks rule (#​21788) (kapobajza)
  • 37680b0 linter: Implement react no-unstable-nested-components (#​22248) (Jovi De Croock)
  • d8d9c74 linter: Implement import/newline-after-import rule (#​19142) (Ryuya Yanagi)

v1.65.0

Compare Source

🚀 Features
  • 5478fb5 linter/jsdoc: Implement require-throws-description rule (#​22386) (Mikhail Baev)
  • c73225e linter/eslint: Implement prefer-arrow-callback rule (#​22312) (박천(Cheon Park))
  • de82b59 linter: Add support for eslint-plugin-jsx-a11y-x (#​22356) (mehm8128)
  • f44b6c8 linter: Fill schemas DummyRuleMap with built-in rules (#​22288) (Sysix)
oxc-project/tsgolint (oxlint-tsgolint)

v0.23.0

Compare Source

What's Changed

Full Changelog: oxc-project/tsgolint@v0.22.1...v0.23.0

antfu-collective/taze (taze)

v19.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v19.14.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v19.13.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v19.12.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sametcn99/vitepress-mermaid-renderer (vitepress-mermaid-renderer)

v1.1.26

Compare Source

  • Install size minification

v1.1.25

Compare Source

Changed
  • Security: securityLevel default changed from 'loose' to 'strict'.
    Inline HTML inside Mermaid diagrams is now disabled by default to prevent XSS
    when rendering user-controlled or external Markdown content. If you need
    inline HTML features (e.g. clickable links in flowchart nodes), opt in
    explicitly: createMermaidRenderer({ securityLevel: 'loose' }).
  • Simplified diagram discovery — replaced the two-step
    getElementsByClassName + fallback querySelectorAll('pre') scan with a
    single querySelectorAll('pre > code.mermaid, pre > code.language-mermaid')
    selector, eliminating the full-page <pre> iteration and the custom
    HTMLCollectionOf shim.
  • Early retry terminationrenderWithRetry() now stops the
    exponential-backoff loop immediately when the MutationObserver is active,
    since it will pick up any late-arriving Mermaid blocks. Reduced
    maxRenderAttempts from 15 to 5 accordingly.
  • IntersectionObserver-based lazy rendering — offscreen Mermaid diagrams are
    no longer rendered immediately; they are observed with an
    IntersectionObserver (200 px root margin) and enqueued only when they scroll
    near the viewport, significantly reducing initial page-load cost on long
    documents.
  • requestAnimationFrame instead of fixed delays — replaced the
    setTimeout(resolve, 200) delay in renderMermaidDiagram() and the 150 ms /
    50 ms production/cap delays in useMermaidRenderer with
    requestAnimationFrame-based paint waits, ensuring the SVG is settled without
    arbitrary timing guesses.
  • MutationObserver scoped to attributes: false — the DOM observer now
    explicitly opts out of attribute-change notifications, reducing unnecessary
    callback invocations for style/class mutations unrelated to Mermaid content.
  • Duplicate-render prevention — discovered <pre> elements are immediately
    marked with data-mermaid-processed so that concurrent MutationObserver
    triggers and retry passes cannot re-queue the same element.
  • Shared Vue context for diagram rendering — replaced per-diagram
    createApp().mount() with render(h(MermaidDiagram), wrapper). Each diagram
    now mounts into a lightweight render call instead of creating a full Vue app
    instance, reducing memory pressure on pages with many diagrams.
  • Singleton fullscreen event manager — extracted fullscreen-change listeners
    into useFullscreenManager.ts. Instead of each diagram registering 4 event
    listeners (fullscreenchange + vendor prefixes), a single shared manager
    attaches exactly 4 listeners regardless of how many diagrams are on the page.
  • CSS-only controls visibility — removed the onMounted inline style hack
    that forced .controls { opacity: 1; visibility: visible } via JavaScript.
    Controls now default to opacity: 1; visibility: visible in CSS and are
    shown/hidden purely through CSS classes and transitions.
  • IntersectionObserver reuseobserveOffscreenElements() now reuses the
    existing lazyObserver instead of disconnecting and recreating it on every
    call, eliminating unnecessary observer churn during route transitions.
  • SVG download sanitizationuseMermaidDownload now strips <script>,
    <iframe>, <object>, <embed>, stylesheet <link> elements, and all on*
    event-handler attributes from the cloned SVG before serialisation, preventing
    malicious content from being exported even when securityLevel: 'loose' is
    used.
  • requestAnimationFrame throttle for high-frequency eventswheel and
    mousemove handlers now coalesce rapid events via requestAnimationFrame,
    limiting reactive style updates to the browser's frame rate instead of firing
    on every event (60+ per second).
  • Config deep mergeMermaidRenderer.setConfig() now deep-merges nested
    objects instead of shallow-spread, so flowchart: { useMaxWidth: true }
    merges with defaults instead of replacing the entire flowchart section.
  • CSS custom properties (design tokens) — introduced --mermaid-control-bg,
    --mermaid-control-text, --mermaid-control-border,
    --mermaid-control-shadow, --mermaid-control-radius,
    --mermaid-control-padding, --mermaid-control-gap,
    --mermaid-spinner-duration, --mermaid-notification-duration,
    --mermaid-error-bg, --mermaid-error-border, and --mermaid-error-text.
    All hardcoded colour, spacing, and timing values in style.css now use these
    variables with fallbacks to the VitePress --vp-c-* tokens, allowing theme
    customisation without overriding the entire stylesheet.
  • Dialog backdrop progressive enhancement.mermaid-dialog-backdrop now
    uses rgba(0,0,0,0.5) as a solid fallback; backdrop-filter: blur(4px) is
    applied only in browsers that support it via @supports, fixing the invisible
    backdrop in Firefox and older browsers.
  • Configurable zoom limitsMIN_SCALE (0.2), MAX_SCALE (10), and
    ZOOM_STEP (1.2) are now configurable via the MermaidNavigationOptions
    parameter of useMermaidNavigation(), enabling accessibility and
    diagram-specific customisation.
Added
  • Security section in README — documents the securityLevel setting, its
    impact on inline HTML, and when to use 'loose' vs 'strict'.
  • MermaidRenderer.resetInstance() + destroy() — static resetInstance()
    method and private destroy() for proper cleanup of observers, timers, DOM
    references, and event listeners (including popstate and
    vitepress:routeChanged). Useful in test teardown and SPA route transitions.
  • useMermaidDownload composable — extracted the download logic (SVG / PNG
    / JPEG export) from MermaidDiagram.vue into a dedicated composable for
    better testability and separation of concerns.
  • Accessibility improvements:
    • role="img" and aria-label on the diagram wrapper so screen readers
      announce the diagram purpose.
    • Keyboard navigation: +/- for zoom, 0 for reset, arrow keys for pan,
      f for fullscreen — all when the diagram wrapper has focus
      (tabindex="0").
    • role="status" + aria-live="polite" on a visually-hidden element that
      announces "Loading diagram…" and "Diagram loaded" states.
    • role="alert" on the error container (MermaidError.vue) so screen readers
      immediately announce rendering failures.
    • .sr-only utility class in style.css for visually-hidden but
      screen-reader-accessible content.
  • _resetFullscreenManager() — internal test helper for resetting the
    singleton fullscreen manager state between test runs.
  • resetRenderPipeline() — exported from useMermaidRenderer so that
    MermaidRenderer.handleRouteChange() can reset the global promise chain,
    preventing stale promise accumulation across SPA route changes.
  • prefers-reduced-motion support — animations and transitions are disabled
    via @media (prefers-reduced-motion: reduce) for users who have requested
    reduced motion in their OS settings.
  • Error message i18nMermaidError.vue now accepts errorText,
    showDetailsText, and hideDetailsText props that flow from the toolbar i18n
    system (resolvedToolbar.i18n.tooltips), enabling localised error messages
    and toggle button text.
  • CSS design tokens — see "Changed" section above for the full list of new
    custom properties.
Fixed
  • Memory leak: event listeners not cleaned uppopstate and
    vitepress:routeChanged listeners added in MermaidRenderer.initialize() are
    now properly removed in destroy().
  • Memory leak: retry setTimeout not cleared on unmount — the 1-second retry
    timeout in useMermaidRenderer is now tracked and cleared in onUnmounted,
    preventing callbacks on unmounted components.
  • NodeJS.Timeout type in browser code — replaced with
    ReturnType<typeof setTimeout> so the correct number type is used in
    browser bundles (previously masked by skipLibCheck).
Removed
  • Unused createApp import from MermaidRenderer.ts.
  • Unused DownloadFormat type import from MermaidDiagram.vue.
jooy2/vitepress-sidebar (vitepress-sidebar)

v1.36.1

Compare Source

  • Fixed execution issues in versions 1.35.0 through 1.36.0

v1.36.0

Compare Source

NOTE: This version is broken. Please use 1.36.1 or later.

  • Add collapseFromLevel option (#​225)

v1.35.0

Compare Source

NOTE: This version is broken. Please use 1.36.1 or later.

  • HMR is now supported so that the sidebar automatically refreshes when documents are added or updated in the development environment. (You must use withSidebar) (#​159)

v1.34.0

Compare Source

  • Fix the capitalize option behaves in such a way that it ignores the prefix (#​231)
  • If the h1 heading in the Markdown file cannot be retrieved, the file name is used instead of Unknown.
  • Add sortMenusByFileModifyDate option (#​229)
  • Add sortMenusByFileCreateDate option
vuejs/core (vue)

v3.5.35

Compare Source

Bug Fixes
Performance Improvements

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/weekly-non-major-updates branch 8 times, most recently from 60e5f5f to e63d52e Compare May 25, 2026 05:30
@renovate renovate Bot force-pushed the renovate/weekly-non-major-updates branch 4 times, most recently from ec0d6e6 to 0746222 Compare May 28, 2026 18:05
@renovate renovate Bot force-pushed the renovate/weekly-non-major-updates branch from 0746222 to 068a5ee Compare May 30, 2026 21:42
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