build(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.6.0 - #503
Merged
renovate[bot] merged 1 commit intoSep 20, 2026
Conversation
renovate
Bot
force-pushed
the
renovate/mkdocs-git-revision-date-localized-plugin-1.x-lockfile
branch
from
September 20, 2026 09:58
8da7e15 to
8ae071c
Compare
renovate
Bot
deleted the
renovate/mkdocs-git-revision-date-localized-plugin-1.x-lockfile
branch
September 20, 2026 13:06
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.4→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.Configuration
📅 Schedule: (in timezone Africa/Lusaka)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.