Update dependency zero-md to v3 #11

Merged
Aroy merged 1 commit from renovate/zero-md-3.x into dev 2025-12-26 21:01:24 +01:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
zero-md (source) ^2.5.4^3.0.0 age confidence

Release Notes

zerodevx/zero-md (zero-md)

v3.1.7

Compare Source

  • Correctly handle newlines during katex rendering (fixes #​132)
  • Upgrade to marked@15

v3.1.6

Compare Source

  • Remove markdown-alert padding workaround (fixes #​125)

v3.1.5

Compare Source

  • Update dependencies (fixes #​124)

v3.1.4

Compare Source

  • Upgrade to mermaid@11

v3.1.3

Compare Source

  • Allow no-shadow to be set globally (fixes #​120)
<script type="module">
  import ZeroMd from 'https://cdn.jsdelivr.net/npm/zero-md@3'
  customElements.define('zero-md', class extends ZeroMd {
    async load() {
      await super.load()
      this.setAttribute('no-shadow', '')
    }
  })
</script>

v3.1.2

Compare Source

  • Fix Cyrillic headings hash-link scroll (fixes #​78)

v3.1.1

Compare Source

  • Performance improvements

v3.1.0

Compare Source

  • Upgrade to marked@14
  • Add theme presets
<script type="module">
  import ZeroMd, { STYLES } from 'https://cdn.jsdelivr.net/npm/zero-md@3'

  customElements.define('zero-md', class extends ZeroMd {
    async load() {
      await super.load()
      this.template = STYLES.preset('light') // or STYLES.preset('dark')
    }
  })
</script>

v3.0.0

Compare Source

V3 is released! 🎉

There are breaking changes. If you're migrating from V2 to V3, please read the migration guide. V2 has been moved into its separate tree - a final maintenance release is published, but in general no more updates will be done. It is highly recommended to upgrade to V3 (it has a new CDN URL now) - it is simpler, faster and spec-compliant.

V3 features include:

  • Math rendering via KaTeX
  • Mermaid diagrams
  • Syntax highlighting via highlight.js
  • Language detection for unhinted code blocks
  • Hash-link scroll handling
  • FOUC prevention
  • Auto re-render on input changes
  • Light and dark themes
  • Spec-compliant extensibility

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [zero-md](https://zerodevx.github.io/zero-md/) ([source](https://github.com/zerodevx/zero-md)) | [`^2.5.4` → `^3.0.0`](https://renovatebot.com/diffs/npm/zero-md/2.5.4/3.1.7) | ![age](https://developer.mend.io/api/mc/badges/age/npm/zero-md/3.1.7?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zero-md/2.5.4/3.1.7?slim=true) | --- ### Release Notes <details> <summary>zerodevx/zero-md (zero-md)</summary> ### [`v3.1.7`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.7) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.6...v3.1.7) - Correctly handle newlines during `katex` rendering (fixes [#&#8203;132](https://github.com/zerodevx/zero-md/issues/132)) - Upgrade to `marked@15` ### [`v3.1.6`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.6) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.5...v3.1.6) - Remove `markdown-alert` padding workaround (fixes [#&#8203;125](https://github.com/zerodevx/zero-md/issues/125)) ### [`v3.1.5`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.5) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.4...v3.1.5) - Update dependencies (fixes [#&#8203;124](https://github.com/zerodevx/zero-md/issues/124)) ### [`v3.1.4`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.4) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.3...v3.1.4) - Upgrade to `mermaid@11` ### [`v3.1.3`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.3) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.2...v3.1.3) - Allow `no-shadow` to be set globally (fixes [#&#8203;120](https://github.com/zerodevx/zero-md/issues/120)) ```html <script type="module"> import ZeroMd from 'https://cdn.jsdelivr.net/npm/zero-md@3' customElements.define('zero-md', class extends ZeroMd { async load() { await super.load() this.setAttribute('no-shadow', '') } }) </script> ``` ### [`v3.1.2`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.2) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.1...v3.1.2) - Fix Cyrillic headings hash-link scroll (fixes [#&#8203;78](https://github.com/zerodevx/zero-md/issues/78)) ### [`v3.1.1`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.1) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.1.0...v3.1.1) - Performance improvements ### [`v3.1.0`](https://github.com/zerodevx/zero-md/releases/tag/v3.1.0) [Compare Source](https://github.com/zerodevx/zero-md/compare/v3.0.0...v3.1.0) - Upgrade to `marked@14` - Add theme presets ```html <script type="module"> import ZeroMd, { STYLES } from 'https://cdn.jsdelivr.net/npm/zero-md@3' customElements.define('zero-md', class extends ZeroMd { async load() { await super.load() this.template = STYLES.preset('light') // or STYLES.preset('dark') } }) </script> ``` ### [`v3.0.0`](https://github.com/zerodevx/zero-md/releases/tag/v3.0.0) [Compare Source](https://github.com/zerodevx/zero-md/compare/v2.5.4...v3.0.0) **V3 is released!** 🎉 There are breaking changes. If you're migrating from V2 to V3, please read the [migration guide](https://zerodevx.github.io/zero-md/?a=migration.md). V2 has been moved into [its separate tree](https://github.com/zerodevx/zero-md/tree/v2) - a final [maintenance release](https://github.com/zerodevx/zero-md/tree/v2.5.4) is published, but in general no more updates will be done. It is highly recommended to upgrade to V3 (it has a new CDN URL now) - it is simpler, faster and spec-compliant. V3 features include: - Math rendering via [KaTeX](https://github.com/KaTeX/KaTeX) - [Mermaid](https://github.com/mermaid-js/mermaid) diagrams - Syntax highlighting via [highlight.js](https://github.com/highlightjs/highlight.js) - Language detection for unhinted code blocks - Hash-link scroll handling - FOUC prevention - Auto re-render on input changes - Light and dark themes - Spec-compliant extensibility </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42NC4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjYuNiIsInRhcmdldEJyYW5jaCI6ImRldiIsImxhYmVscyI6W119-->
Update dependency zero-md to v3
All checks were successful
Validate Docker Compose / validate (push) Successful in 13s
Validate Docker Compose / validate (pull_request) Successful in 14s
c0bd71104c
Author
Collaborator

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

### Edited/Blocked Notification Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠️ **Warning**: custom changes will be lost.
Renovate changed target branch from main to dev 2025-12-25 21:31:32 +01:00
Renovate force-pushed renovate/zero-md-3.x from c0bd71104c
All checks were successful
Validate Docker Compose / validate (push) Successful in 13s
Validate Docker Compose / validate (pull_request) Successful in 14s
to 97ad38dce1
All checks were successful
Validate Docker Compose / validate (push) Successful in 13s
Validate Docker Compose / validate (pull_request) Successful in 14s
2025-12-25 21:31:33 +01:00
Compare
Aroy force-pushed renovate/zero-md-3.x from 97ad38dce1
All checks were successful
Validate Docker Compose / validate (push) Successful in 13s
Validate Docker Compose / validate (pull_request) Successful in 14s
to 49831ea60b
All checks were successful
Validate Docker Compose / validate (pull_request) Successful in 14s
Build Docker Image / build (push) Successful in 33s
Validate Docker Compose / validate (push) Successful in 20s
2025-12-26 21:00:32 +01:00
Compare
Aroy merged commit 49831ea60b into dev 2025-12-26 21:01:24 +01:00
Aroy deleted branch renovate/zero-md-3.x 2025-12-26 21:01:24 +01:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
Aroy/ISO-Share!11
No description provided.