Skip to content

deps(deps): bump mdex from 0.12.2 to 0.13.0#32

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/mdex-0.13.0
Open

deps(deps): bump mdex from 0.12.2 to 0.13.0#32
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/mdex-0.13.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Bumps mdex from 0.12.2 to 0.13.0.

Release notes

Sourced from mdex's releases.

v0.13.0

0.13.0 (2026-06-09)

⚠ BREAKING CHANGES

  • optional lumis (#362)

Documentation

v0.12.5

0.12.5 (2026-06-08)

Features

v0.12.4

0.12.4 (2026-06-06)

Features

  • add syntect engine on syntax highlighting (#358) (7aa8a0a)
  • support :engine in syntax highlighter (#357) (9a18f3f)

Bug Fixes

  • disable syntax highlight with syntax_highlight: false (#355) (c5d28bb)

Documentation

  • improve syntax highlight example (cf5f5a6)
  • syntax highlight options in example (#356) (16c555a)

v0.12.3

0.12.3 (2026-06-05)

Features

  • extract mdex native into mdex_native (#351) (6ed94d9)

... (truncated)

Changelog

Sourced from mdex's changelog.

0.13.0 (2026-06-09)

⚠ BREAKING CHANGES

  • optional lumis and disable syntax highlighting by default (#362)

Syntax Highlighting Migration Guide

Syntax highlighting is no longer enabled by default. If you use Lumis, add it in deps and opt in before compiling dependencies:

# mix.exs
defp deps do
  [
    {:lumis, "~> 0.1"}
  ]
end
config/config.exs
import Config
config :mdex_native, syntax_highlighter: :lumis

The old Lumis-only :syntax_highlight API still works but is no longer recommended:

MDEx.to_html!(markdown,
  syntax_highlight: [formatter: {:html_inline, theme: "github_light"}]
)

For new code, prefer engine: :lumis and move Lumis options under opts::

- MDEx.to_html!(markdown,
-   syntax_highlight: [formatter: {:html_inline, theme: "github_light"}]
- )
+ MDEx.to_html!(markdown,
+   syntax_highlight: [
+     engine: :lumis,
+     opts: [formatter: {:html_inline, theme: "github_light"}]
+   ]
+ )

For ~MD, pass the same options to use MDEx, and the old Lumis-only shape still works:

- use MDEx,
</tr></table> 

... (truncated)

Commits

@dependabot dependabot Bot added the dependencies Dependency updates label Jun 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: elixir. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@mikehostetler

Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps [mdex](https://github.com/leandrocp/mdex) from 0.12.2 to 0.13.0.
- [Release notes](https://github.com/leandrocp/mdex/releases)
- [Changelog](https://github.com/leandrocp/mdex/blob/main/CHANGELOG.md)
- [Commits](leandrocp/mdex@v0.12.2...v0.13.0)

---
updated-dependencies:
- dependency-name: mdex
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/hex/mdex-0.13.0 branch from 0ec3021 to dced3f8 Compare June 13, 2026 13:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant