Update dependency mkdocs-git-revision-date-localized-plugin to v1.6.0 - #60
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x
branch
from
March 13, 2026 12:05
d17f760 to
f33cc73
Compare
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x
branch
from
May 13, 2026 08:42
f33cc73 to
998c61a
Compare
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x
branch
from
June 1, 2026 23:03
998c61a to
828467b
Compare
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x
branch
from
August 21, 2026 11:08
828467b to
c6263ea
Compare
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x
branch
from
September 14, 2026 13:48
c6263ea to
88ca74c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.5.0→==1.6.0Release Notes
timvink/mkdocs-git-revision-date-localized-plugin (mkdocs-git-revision-date-localized-plugin)
v1.6.0Compare Source
Highlights
Faster builds
Every page asked git which tag pointed at its commit, and asked again for the site-wide revision commit — the same answer, recomputed for each page. Those lookups are now cached.
The bigger your site, the more you save: on a 1000 page site this removes roughly 18 seconds of build time.
custom_formatkeeps your own wordsIf your format had any text around the date directives, that text came out scrambled:
Any format that was made up purely of
%directives (including the%d. %B %Ydefault) was unaffected and still renders exactly as before. Unrecognised directives such as%Qare now left alone instead of being quietly reinterpreted as a different date field.Creation date commit hash and tag now work
page.meta.git_creation_date_localized_hashandpage.meta.git_creation_date_localized_tagwere documented but always came back empty. If you use them in a theme override to link back to the commit or release that introduced a page, they now contain what you expect.Shallow clone warnings reach more setups
The warning that tells you your dates will be wrong because CI only fetched part of the history was silently skipped whenever your
.gitwas not in the directory you ranmkdocsfrom — a repository insidedocs/, or a temporary checkout made by plugins such asmonorepo. It now fires there too.Clearer messages when something goes wrong
type:now produces a proper MkDocs config error listing the valid values, instead of a bareAssertionError.enable_parallel_processing: falseactually does, rather than suggesting a fallback it never attempted.Type hints are now visible
The package ships
py.typed, so mypy, pyright and ty can see the plugin's annotations.Upgrading
mkdocs build --strictis now stricter. Warnings from this plugin previously bypassed MkDocs' warning counter, so--strictignored them. They now count.In practice this means a build that combines
--strictwith a shallow clone will start failing where it used to pass — most commonly GitHub Actions, which checks out withfetch-depth: 1by default. The dates in that build really are wrong, so the right fix is to fetch the full history:If you would rather keep the build passing as-is, set
strict: falsein the plugin config to downgrade these messages:Minimum MkDocs version is now 1.4. The plugin already required MkDocs 1.4 APIs to import at all; the metadata said
>=1.0, which meant a resolver could install a combination that could never work. Nothing changes for anyone on 1.4 or newer.v1.5.4Compare Source
Security
Raises the
gitpythonfloor from>=3.1.44to>=3.1.59.Earlier dependabot bumps only touched this repo's
uv.lock, which pins the CIenvironment and nothing else. Downstream users installing from PyPI resolved
against
pyproject.toml, so they could still land on a GitPython carrying the2026 option-injection advisories — GHSA-wvpp-8hx9-p66j and GHSA-jm78-9fvv-mhgr
among them, all patched by 3.1.58, with further option hardening in 3.1.59.
This plugin never passes user input as git options, so it was not exploitable
through those. The floor bump forces the upgrade in environments that already
hold an older GitPython, and clears the warnings downstream scanners report.
Thanks to @nucleus-ffm for reporting it in #222.
Maintenance
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.5.3...v1.5.4
v1.5.3Compare Source
What's Changed
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.5.2...v1.5.3
v1.5.2Compare Source
What's Changed
Bug fixes
page is Nonein mkdocs theme override Jinja2 templates by @Copilot in #202Dependency updates (security)
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.5.1...v1.5.2
v1.5.1: revision-date-localized v1.5.1Compare Source
What's Changed
prek(https://prek.j178.dev/)New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.5.0...v1.5.1
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.