Skip to content

Latest commit

 

History

History
79 lines (54 loc) · 3.19 KB

CHANGELOG.md

File metadata and controls

79 lines (54 loc) · 3.19 KB

Changelog & Release Notes

Upgrading

To upgrade to the latest version of mkdocs-exclude-search use pip:

pip install mkdocs-exclude-search --upgrade

You can determine your currently installed version using this command:

pip show mkdocs-exclude-search

Versions

0.6.6 (2023-11-20)

  • Prevents long mkdocs logger deprecation warning (#45).

0.6.5 (2023-02-04)

  • Fixes issue of search-plugin not being recognized, mkdocs-material adjusted search namespace (#42).

0.6.4 (2022-01-05)

  • Fixes issue when mkdocs navigation is provided without chapter names.

0.6.3 (2021-12-23)

  • Fixes issue in 0.6.2 when building with no navigation.
  • Providing non-header entries to ignore is now ignored instead of failing.
  • Extended tests and established testing pipeline on various used-by repos.

0.6.2 (2021-12-23)

  • Fixes issue in 0.6.1 when building with no ignored files defined.

0.6.1 (2021-12-22)

  • Fixes issue in 0.6.0 when building with multiple subchapters in the navigation.

0.6.0 (2021-12-22)

  • Add exclude_unreferenced option to exclude files that are not listed in the mkdocs.yml nav section.

0.5.4 (2021-12-01)

  • Avoid installing "tests" package with installation.

0.5.2 (2021-04-28)

  • Reduced logger messages, verbose file exclusion log now available with mkdocs serve -v

0.5.1 (2021-04-19)

  • Require >= Python 3.6 for installing

0.5.0 (2021-04-05)

  • Breaking changes to specification of excluded and ignored files and directories, see new examples in the readme.
  • Removed not explicitly set wildcard matching of filenames in directory.
  • Clarified examples and wildcard matching in readme.

0.4.0 (2021-03-01)

  • Adds recursive exclusions of directories and child-directories by utilizing fnmatch, many thanks to @seppi91 #5
  • All entries (files, headers, dirs) have to be provided as a list (each entry on a new row) in the plugin configuration, see the example in the readme.
  • Refactor and code improvements

0.3.1 (2020-02-13)

  • Fix bug deactivating the addon when not configuring exclude_tags
  • Refactor, add tests
  • Add (undocumented) option to exclude the tags search entries generated by mkdocs-plugin-tags
  • Refactorings
  • Fixes bug where path unpacking failed for non .md files.
  • Add exclude folder structures
  • Initial release