Commit Graph
72 Commits
Author SHA1 Message Date
Martin Donath b60354ccb3 chore: release v0.0.55
## Summary

This version fixes two false positives in the reference extractor and reverts Zensical's bootstrapped `zensical.toml` to TOML 1.0, since most editor tooling does not yet support TOML 1.1. Zensical understands both, TOML 1.0 and TOML 1.1, so this change does not affect the functionality of Zensical itself.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-08-16 12:12:40 +02:00
Martin Donath cfdf18f19b chore: release v0.0.54
## Summary

This version significantly reduces peak memory usage by 8–10×, making builds of large documentation projects substantially more efficient. It also improves reference validation by preventing false positives for links successfully resolved through autorefs.

Additionally, the [user interface](https://github.com/zensical/ui) is updated to [v0.0.25](https://github.com/zensical/ui/releases/tag/v0.0.25), fixing instant navigation for inline scripts and version aliases created with `mike`. This release also corrects `mike` configuration defaults and updates `webbrowser` to address a security vulnerability.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-08-13 17:48:51 +02:00
squidfunk 8cf761f5db fix: update webbrowser to address CVE
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-08-13 14:12:59 +02:00
Martin Donath 21824d2aec chore: release v0.0.53
## Summary

This version adds support for enabling strict mode directly in `mkdocs.yml` or `zensical.toml`, allowing warnings to fail builds consistently without the `--strict` command-line option. It also reduces memory usage by sharing cross-reference data between navigation clones.

Additionally, the user interface is updated to `v0.0.24`, improving search rendering for right-to-left languages and adding four new Lucide icons. The generated `zensical.toml` now uses TOML 1.1 syntax, and `pymdownx` is updated to version 11.0 to address a vulnerability.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-08-04 16:01:11 +02:00
Martin Donath bf07314a4d chore: release v0.0.52
## Summary

This version adds search support for CJK languages: Chinese, Japanese, and Korean. Search needs to segment text into individual words before it can index and match them. While many languages separate words with spaces, this is not consistently the case for CJK text, particularly Chinese and Japanese. Search now uses locale-aware segmentation to identify meaningful word boundaries, ensuring that content and queries are indexed and matched correctly.

Set the [site language](https://zensical.org/docs/setup/language/#site-language) to `zh`, `zh-Hant`, `zh-TW`, `ja`, or `ko` to enable segmentation.

The search modal is also larger, showing more results and context at once. Additionally, keyboard keys inside admonitions now use the correct background color in the modern theme.

Dependencies and development tooling were updated, including TypeScript 7. The build scripts now use `tsx` instead of `ts-node`, and `npm-run-all2` replaces the unmaintained `npm-run-all`. Updated icon packages add 56 new icons: 23 Font Awesome icons, 21 Lucide icons, 8 Octicons, and 4 Simple Icons.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-30 12:15:52 +02:00
Martin Donath 362bf5d570 chore: release v0.0.51
## Summary

This version improves cached rebuilds by persisting `objects.inv` and autorefs data, fixes stale builds after removing files, and upgrades `soupsieve` to address vulnerabilities.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-17 19:57:19 +02:00
Martin Donath 7989a55dad Update dependencies
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-17 19:52:23 +02:00
Martin Donath 428d0d84de chore: release v0.0.50
## Summary
    
This version fixes a regression introduced in 0.0.48 which broke search.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-09 15:44:56 +02:00
Martin Donath cc688516e9 chore: release v0.0.48
## Summary

This version updates the [user interface](https://github.com/zensical/ui) to [v0.0.21](https://github.com/zensical/ui/releases/tag/v0.0.21), bringing the latest fixes for Pyodide-powered code execution, search, and ANSI color rendering.

It also improves configuration parsing and defaults, and fixes relative and scoped cross-references for `mkdocstrings-python`.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-08 21:37:45 +02:00
Timothée Mazzucotelli d4a3a7b524 chore: update Cargo.lock file
Signed-off-by: Timothée Mazzucotelli <dev@pawamoy.fr>
2026-07-07 14:26:28 +00:00
Martin Donath aa1e93c7fc chore: release v0.0.47
## Summary

This release adds native support for [markdown-exec](https://github.com/pawamoy/markdown-exec), improves compatibility around generated URLs and project configuration, and updates the user interface to `v0.0.20`.

Zensical now supports [markdown-exec], an MkDocs plugin that executes Python code blocks during the build and injects the result into the rendered page. In practice, this makes it easier to build interactive technical documentation, generated examples, and executable snippets that integrate directly with the theme in both `classic` and `modern` variants.

Additionally, the [user interface](https://github.com/zensical/ui) is updated to [v0.0.20](https://github.com/zensical/ui/releases/tag/v0.0.20), which includes client-side support for `markdown-exec` and several styling and interaction fixes. Mermaid diagram colors are now applied correctly for sequence numbers and activations, flow chart arrows, and state diagram arrows. Search filter scrollbars no longer overlap selectable items, and images using `data-gallery` are attributed correctly again.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-07-05 17:43:30 +02:00
Martin Donath c76960ef08 chore: release v0.0.46
## Summary

This version improves search result quality and includes several bug fixes and refactorings.

### Search excerpts

Search results now include excerpts, making it easier to understand why a result matches. Search remains fully client-side and as fast as before, even for projects with thousands of pages. We still consider search an active area of iteration and expect to further improve it and expose more configuration options over time.

### User interface

The [user interface] is updated to [v0.0.19], which includes several navigation and interaction fixes. Search highlighting now ignores single-character tokens, which avoids noisy matches like highlighting every `e` for queries such as `e-mail`. Instant previews now include a hover bridge so moving the cursor from a link to the tooltip no longer drops the popup across the visual gap.

[user interface]: https://github.com/zensical/ui
[v0.0.19]: https://github.com/zensical/ui/releases/tag/v0.0.19

Dependencies were also updated, including TypeScript 6 and SVGO 4 compatibility adjustments. 83 new icons were added, 2 icons were removed, and 19 icons were modified. The Lucide icon set was updated to version v1.21.0.

### Validation defaults

The validation options `unresolved_references`, `unresolved_footnotes`, `unused_definitions`, `unused_footnotes`, `shadowed_definitions`, and `shadowed_footnotes` are now disabled by default. These checks remain available when explicitly enabled, but they have proven too unstable in edge cases with the current reference parser. They will eventually be superseded by the higher-fidelity parser that is already used by [Zensical Studio] and is planned for Open Source release and later integration into Zensical.

[Zensical Studio]: https://zensical.org/studio/

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-06-21 20:46:18 +02:00
Martin Donath 0f11c7fe99 fix: update pyo3 to 0.29.0 to mitigate 2 vulnerabilities
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-06-13 11:56:13 +02:00
Martin Donath 4cd38f3a0c chore: release v0.0.45
## Summary

This version reverts a behavior change in link validation that was introduced in 0.0.44 which is causing false positives.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-06-09 13:16:32 +02:00
Martin Donath 35ff260bcd chore: update dependencies (#733)
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-06-04 19:50:16 +02:00
Martin Donath c7fe3e78a5 chore: release v0.0.44
## Summary

This version fixes several bugs related to link validation and macros, and ensures that dotfiles are not removed from the site directory during generation.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-06-04 19:20:35 +02:00
Timothée Mazzucotelli a212c59578 fix: don't remove dotfiles from site dir (#728)
Signed-off-by: Timothée Mazzucotelli <dev@pawamoy.fr>
2026-06-03 10:39:18 +00:00
Martin Donath 7d2178a8a9 chore: release v0.0.43
## Summary

This version fixes further edge cases in link validation, and adds support for UTF-8 encoding with byte-order-marks.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-05-19 11:34:52 +02:00
Martin Donath 7a141c5678 chore: release v0.0.42
## Summary

This version includes a number of bug fixes and refactorings to improve the stability and accuracy of link validation, and fixes a reload loop when the `custom_dir`, which is auto-watched, is explicitly added to `watch`. Moreover, GLightbox is now only downloaded when needed, which fixes an issue when using Zensical in air-gapped environments.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-05-15 12:11:25 +02:00
Martin Donath 84adc6f290 chore: release v0.0.41
## Summary

This version adds support for [integrating tabular data] as Markdown tables, covering the functionality of the [mkdocs-table-reader-plugin], as well as the [`watch`][watch] option to automatically rebuild on changes in unmonitored files. Table reading is implemented as part of [macros], which we shipped in [0.0.40]. You can now embed CSV and other file formats with:

```
{{ read_csv("data/team.csv") }}
```

Additionally, the stability of link [validation] has been drastically improved, reducing the rate for false positives. We're working on support for validating links using [autorefs], which we'll provide in one of the next versions.

[integrating tabular data]: https://zensical.org/docs/setup/extensions/macros/#reading-tabular-data
[mkdocs-table-reader-plugin]: https://pypi.org/project/mkdocs-table-reader-plugin/
[macros]: https://zensical.org/docs/setup/extensions/macros/
[0.0.40]: https://github.com/zensical/zensical/releases/tag/v0.0.40
[validation]: https://zensical.org/docs/setup/validation/
[watch]: https://zensical.org/docs/setup/basics/#watch
[autorefs]: https://mkdocstrings.github.io/autorefs/

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-05-09 16:29:39 +02:00
Martin Donath bc3e017c30 chore: release v0.0.40
## Summary

This version adds support for [macros], covering the functionality of the `mkdocs-macros-plugin`. Macros allow you to define custom variables and functions that can be used in your Markdown files, making it easier to manage and reuse content across your documentation.

We've implemented macros support as a Python Markdown extension, since it's essentially a Markdown preprocessor that doesn't need to be aware of the rest of Zensical's rendering process, except for the current page and configuration. The benefit is that it can now also be used in Python docstrings to build API documentation with [mkdocstrings].

[macros]: https://zensical.org/docs/setup/extensions/macros/
[mkdocstrings]: https://mkdocstrings.github.io

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-05-04 17:49:13 +02:00
Martin Donath 0291ad5360 chore: release v0.0.39
## Summary

This version fixes several bugs related to link validation and lightbox configuration.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-05-01 18:24:15 +02:00
Martin Donath 0e7f1d8cf8 chore: release v0.0.38
## Summary

This version adds [link and footnote validation] and [strict mode] – two of the most frequently requested features. Zensical now checks all internal references at build time and reports issues with precise source locations, so broken links don't make it into your published documentation. Unlike MkDocs, which only validates final rendered links, Zensical also checks for unresolved references,  as well as unused and shadowed definitions – covering the full lifecycle of a reference from definition to use.

[link and footnote validation]: https://zensical.org/docs/setup/validation/
[strict mode]: https://zensical.org/docs/setup/validation/#strict-mode

### Validation

Zensical scans every Markdown file in your project and resolves all internal references against each other: inline links, reference-style links, footnotes, link definitions, and anchor targets. Every check is individually configurable and enabled by default.

``` console
$ zensical build
...
Warning: page does not exist
   ╭─[ index.md:3:14 ]
   │
 3 │ [this page]: non-existent.md
   │              ───────┬───────
   │                     ╰───────── page does not exist
───╯
```

The following checks for links and footnotes are now available:

- [`unresolved_references`](https://zensical.org/docs/setup/validation/#unresolved_references)
- [`unresolved_footnotes`](https://zensical.org/docs/setup/validation/#unresolved_footnotes)
- [`unused_definitions`](https://zensical.org/docs/setup/validation/#unused_definitions)
- [`unused_footnotes`](https://zensical.org/docs/setup/validation/#unused_footnotes)
- [`shadowed_definitions`](https://zensical.org/docs/setup/validation/#shadowed_definitions)
- [`shadowed_footnotes`](https://zensical.org/docs/setup/validation/#shadowed_footnotes)
- [`invalid_links`](https://zensical.org/docs/setup/validation/#invalid_links)
- [`invalid_link_anchors`](https://zensical.org/docs/setup/validation/#invalid_link_anchors)

### Strict mode

The new `--strict` command line flag causes the build to fail when any enabled validation check triggers, turning warnings into errors. This is useful for CI pipelines where you want to enforce link integrity and prevent broken documentation from being published:

``` console
$ zensical build --strict
...
Warning: unresolved link reference
   ╭─[ index.md:1:35 ]
   │
 1 │ This is an [unresolved reference][id].
   │                                   ─┬
   │                                    ╰── unresolved link reference
───╯
1 issue found
Aborted because --strict flag is set
```

## Upgrading

No changes to your configuration are required – all checks are enabled by default. It's quite likely that you'll run into at least some warnings – [as we did] – when upgrading, since before, it was easy to miss unused link definitions or unresolved references. If you want to [disable validation entirely](https://zensical.org/docs/setup/validation/), you can use:

``` toml
[project]
validation = false
```

As always, if you run into any problems, please [open an issue](https://github.com/zensical/zensical/issues).

[as we did]: https://github.com/zensical/docs/commit/facabcce36977468ef6465f2ac19ff68b692ada2
[disable validation entirely]: https://zensical.org/docs/setup/validation/#configuration-zensicaltoml_1

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-30 13:56:34 +02:00
Martin Donath 201c615cd0 feature: add link and footnote validation and --strict mode (#175)
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-30 13:17:23 +02:00
Martin Donath ce8cbf817c refactor: simplify function definitions after zrx upgrade
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-27 16:56:48 +02:00
Martin Donath 55c9d26e91 chore: release v0.0.37
## Summary

This version adds support for installable themes. You can now bundle your theme overrides and package them into a custom theme which can be installed via `pip`.

As of now, we closely mirror the process used by MkDocs, where themes just need to register themselves in the `mkdocs.themes` entrypoint, to allow users that already have derivations of Material for MkDocs to run them on Zensical. In the coming months, with the advent of the [component system], we'll make this process much more flexible and foster reuse at the component level. For now, this is a first step to allow sharing of theme overrides and default configurations inside organizations with dozens or even thousands of projects.

> [!TIP]
>
> If your organization has been a happy user of Material for MkDocs and is considering switching to Zensical, please support our work through [Zensical Spark]. Your financial contribution helps us achieve full compatibility with MkDocs much faster, gives you access to hands-on support by the core team, and allows you to shape Zensical together with us.

[component system]: https://zensical.org/about/roadmap/#component-system
[Zensical Spark]: https://zensical.org/spark/

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-27 09:54:04 +02:00
Martin Donath 5081de243f chore: release v0.0.36 (#576)
This version adds the missing update of the user interface that should've been included with 0.0.35.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-23 17:29:36 +02:00
Martin Donath ca9743add9 chore: release v0.0.35
## Summary

This version adds native support for [GLightbox], a JavaScript lightbox library to add zoom and gallery features to images. Images can be automatically annotated with the new `glightbox` Markdown extension. Add the following to `zensical.toml`:

``` toml
[project.markdown_extensions.zensical.extensions.glightbox]
```

> [!NOTE]
>
> In order to integrate with configuration in `mkdocs.yml`, where [GLightbox] is implemented as a plugin, a compatibility shim is included, so no re-configuration is necessary if you're already using the plugin. Note that our extension is more efficient and faster than the plugin, as it does not re-parse the entire HTML of each page, but instead uses Python Markdown's native extension API.

### HTML in the table of contents

Additionally, __section titles in the table of contents will now render with HTML markup__, so you can use emojis and other inline features in section titles and have them render correctly in the table of contents. In Material for MkDocs, this functionality was implemented with the `typeset` plugin. Zensical now supports this natively.

### Relative links in raw HTML

Relative links in raw HTML are now correctly resolved. Initially, we carried over the link processing and resolution logic from MkDocs, which does not support relative links in raw HTML to this day. We implemented a Python Markdown postprocessor, to ensure that relative links in raw HTML are handled as well.

[GLightbox]: https://biati-digital.github.io/glightbox/

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-23 17:03:57 +02:00
Martin Donath f85eaf42a2 chore: release v0.0.34
## Summary

This version ships support for usage of TOML v1.1.0 in `zensical.toml`, which allows new lines in inline tables. Thus, configuration files can now be made more readable, especially when they contain long lists of items. For example:

__Prior to this version__

``` toml
palette = [
  { scheme = "default", toggle = { icon = "lucide/sun", name = "Switch to dark mode" } },
  { scheme = "slate", toggle = { icon = "lucide/moon", name = "Switch to light mode" } },
]
```

__With this version__

``` toml
palette = [
  {
    scheme = "default",
    toggle = {
      icon = "lucide/sun",
      name = "Switch to dark mode"
    }
  },
  {
    scheme = "slate",
    toggle = {
      icon = "lucide/moon",
      name = "Switch to light mode"
    }
  },
]
```

Additionally, Markdown pages with snippets are now rebuilt when snippets are updated, and an issue with breadcrumbs was fixed when the top-level `index.md` was not at the root of `nav` defined explicitly.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-21 11:04:03 +02:00
Martin Donath 50aa8a5eb8 refactor: update to zrx to v0.0.21
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-18 12:21:23 +02:00
Martin Donath 7251f08f39 chore: update dependencies to latest
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-15 12:23:46 +02:00
dependabot[bot]anddependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 25f9ad6b30 fix: bump rand to 0.9.4 to mitigate CVE
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-14 13:11:38 +02:00
Martin Donath 5af6512054 chore: release v0.0.33
## Summary

This version updates our official [Docker image] to be based on Alpine Linux for better compatibility and ease of use. It also adds all recommended Markdown Extensions to the generated `zensical.toml` file when bootstrapping a project with `zensical new`, ensuring a smoother setup experience. Additionally, the [user interface] is updated to [v0.0.13], which includes two bug fixes for anchor links in the table of contents.

[Docker image]: https://hub.docker.com/r/zensical/zensical
[user interface]: https://github.com/zensical/ui
[v0.0.13]: https://github.com/zensical/ui/releases/tag/v0.0.13

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-14 13:00:12 +02:00
Martin Donath ce00f3863b chore: release v0.0.32
## Summary

This version fixes a bug where Markdown files used as snippets were included into auto-generated navigation, and a bug with prefix stripping when the site URL contains a path component. Additionally, the Pygments dependency was updated to mitigate a vulnerability.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-07 13:33:21 +02:00
Martin Donath 62ca63b6f7 chore: release v0.0.31
## Summary

This version updates the [user interface] to [v0.0.12], which includes the [removal of 19 brand icons] due to the update of Lucide to v1, and the addition of 166 new icons, most of them in SimpleIcons and FontAwesome. Additionally, there are bug fixes related to the latest changes of the table of contents in the modern theme and instant navigation on anchor links.

[user interface]: https://github.com/zensical/ui
[v0.0.12]: https://github.com/zensical/ui/releases/tag/v0.0.12
[removal of 19 brand icons]: https://lucide.dev/guide/version-1

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-04-01 13:21:43 +02:00
Martin Donath 76d87b9036 chore: release v0.0.30
## Summary

This version adds support for [mike], a tool for managing multiple versions of MkDocs projects on GitHub Pages. We created [a tailored fork of mike] for Zensical – all mike commands should work as expected. See the [mike documentation] for usage instructions.

Note that this is a temporary solution. Zensical will ship [native support for versioning] in the near future, which will remove the GitHub Pages constraint and offer more flexibility in how versions are deployed and served.

The [user interface] is updated to [v0.0.11], which adds a floating table of contents for mobile to the modern theme. The toggle sits at the bottom of the screen for easy thumb access, and the sidebar scrolls to accommodate arbitrarily long tables of contents. This release also includes several improvements: snappier sidebar animations, better tooltip readability, and improved inline code block sizing.

[mike]: https://github.com/jimporter/mike
[a tailored fork of mike]: https://github.com/squidfunk/mike
[native support for versioning]: https://zensical.org/about/roadmap/#versioning
[mike documentation]: https://github.com/jimporter/mike#readme
[user interface]: https://github.com/zensical/ui
[v0.0.11]: https://github.com/zensical/ui/releases/tag/v0.0.11

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-28 18:49:44 +01:00
Martin Donath b8f21fb1e7 chore: release v0.0.29
## Summary

This version fixes an issue with absolute paths in links, as well as changed files not being picked up by Zensical on Windows 11.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-24 14:29:43 +01:00
Martin Donath 990a020eb4 chore: release v0.0.28
## Summary

This version updates the [user interface] to [v0.0.10], which fixes a couple of bugs related to search and code annotation rendering. Additionally, it adds support for version selectors in the modern theme, paving the way for adding support for [mike] to manage multiple versions of documentation on GitHub Pages.

In addition, this release adds new configuration options for the file watcher to improve compatibility in certain environments.

### File watcher

You can now opt into using a **polling-based file watcher**, which is particularly useful when running Docker on Windows, where filesystem event limitations (e.g., inotify constraints) can cause issues.

To enable the polling watcher:

``` bash
export ZENSICAL_POLL_WATCHER=1
```

The polling interval is configurable and defaults to `500` milliseconds (aligned with MkDocs behavior):

``` bash
export ZENSICAL_POLL_INTERVAL=500
```

[user interface]: https://github.com/zensical/ui
[v0.0.10]: https://github.com/zensical/ui/releases/tag/v0.0.10
[mike]: https://github.com/jimporter/mike

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-19 15:19:58 +01:00
Martin Donath 83cd642724 chore: release v0.0.27
## Summary

This version fixes a reload loop for when auto-appended snippets are located inside of the `docs` directory, and auto-reload for pages with Chinese path segments.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-13 18:48:02 +01:00
Martin Donath 062a972cc3 fix: printed URLs of built pages shouldn't be percent-encoded
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-13 18:42:47 +01:00
Martin Donath 824410c129 chore: release v0.0.26
# Summary

This version fixes a regression introduced in 0.0.25 where the wheels built for manylinux x86 would be based on Python 3.8 instead of Python 3.10, making Zensical unusable on those architectures. This is
related to a [recent bug] in our upstream dependency [maturin], which was introduced in version 1.12.5. Additionally, it fixes a deprecation warning on Python 3.14 when using the emoji extension.

[recent bug]: https://github.com/PyO3/maturin/issues/3059
[maturin]: https://github.com/PyO3/maturin

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-11 10:44:03 +01:00
Martin Donath 88caefa8be chore: release v0.0.25
## Summary

This version updates the [user interface] to [v0.0.9], which improves on accessibility and fixes some minor rendering issues. Additionally, it fixes some bugs related to configuration parsing and plugin handling in `zensical serve`, ensuring a smoother development experience.

[user interface]: https://github.com/zensical/ui
[v0.0.9]: https://github.com/zensical/ui/releases/tag/v0.0.9

### Highlights

- `zensical serve` now keeps running on configuration parsing errors
- Auto-appended `pymdownx.snippets` files are now watched for changes
- Search highlighting now works with keyboard navigation

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-03-10 20:24:42 +01:00
Martin Donath 0ca44a6abc chore: release v0.0.24
## Summary

This version updates the [user interface] to [v0.0.8], which fixes issues with instant previews for Chinese and other non-ASCII languages, and layout shifts when switching from short to long pages in the modern theme. Additionally, same-page links for when directory URLs are disabled where not resolved correctly, which is fixed as well.

[user interface]: https://github.com/zensical/ui
[v0.0.8]: https://github.com/zensical/ui/releases/tag/v0.0.8

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-26 10:35:47 +01:00
Martin Donath d9462afc01 chore: release v0.0.23
# Summary

This version fixes a regression introduced in 0.0.22, where builds would error with mkdocstrings being not found, although the plugin wasn't configured.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-11 22:16:43 +01:00
Martin Donath 7b845d9212 chore: release v0.0.22
## Summary

This version adds support for the [autorefs] plugin, and further improves performance for large mkdocstrings projects. The [user interface] is updated to [v0.0.7], which fixes some isses with the mobile browsering experience.

[autorefs]: https://github.com/mkdocstrings/autorefs
[user interface]: https://github.com/zensical/ui
[v0.0.7]: https://github.com/zensical/ui/releases/tag/v0.0.7

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-11 19:22:20 +01:00
Martin Donath 8352b1a14f chore: update zrx to v0.0.12
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-11 13:47:47 +01:00
Martin Donath d9623c3d95 chore: release v0.0.21
This version updates the [user interface] to [v0.0.6], which fixes excessive memory usage for pages with hundreds of links that are marked with data-preview (for instant previews), among several other improvements and bug fixes.

[user interface]: https://github.com/zensical/ui
[v0.0.6]: https://github.com/zensical/ui/releases/tag/v0.0.6

- Back-to-top button was moved to the bottom for `modern` theme
- Several fixes for instant previews, improving memory usage and usability

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-04 18:39:25 +01:00
Martin Donath 97f5c3d22c chore: update bytes to 1.11.1 to mitigate CVE
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-02-04 18:24:12 +01:00
Martin Donath 4b0f158fd5 chore: release v0.0.20
## Summary

This version fixes excessive memory usage when building large mkdocstrings-powered documentation sites. Additionally, it fixes an issue where the build sometimes terminates prematurely. We're working on further improvements to memory consumption and stability in upcoming releases, as we're currently refactoring a significant part of the runtime.

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-01-29 13:32:27 +01:00
Martin Donath ce2b87f575 chore: release v0.0.19 (#302)
This version adds support for the generation of `objects.inv` for your [mkdocstrings]-powered documentation site, allowing external tools to discover and link to your API documentation. No changes to your configuration are necessary.

Please also update to mkdocstrings v1.0.2.

[mkdocstrings]: https://mkdocstrings.github.io/

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
2026-01-24 17:12:48 +01:00