You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Hashing keys being incorrect when using monorepo, leading to yet another set of git.log() calls
Some inefficiency in multiprocessing setup when using mkdocs serve. State should now be preserved, and mkdocs serve --dirty won't use multiprocessing anymore.
Update to new mkdocs plugin system
Fix bug with double git.log call; plugins should be much faster now by @timvink in #195. Also fixes #188
Fix i18n compatibility bug when using locales with hyphens (see #176) by @timvink in #196
🟠 Minor breaking changes: This release will change some of the git revision dates:
We now ignore changes to files that only contain whitespaces or blanklines, as these are not 'real' revisions to the content. This maps to the git log --ignore_all_space --ignore_blank_lines.
We now ignore rename commits for determining the last revision date, as these are not 'real' revisions to the content. This maps to the git log diff-filter=r command (see git log docs)
We will now follow changes to a file across file renames (including moving files around). This maps to git log --follow. While giving more accurate revision and creation dates, there is an edge case: if you commit empty files, the revision date might wrong. For details see this blogpost. You can opt-out of this behavior by using the new option enable_git_follow (which defaults to True). If you still hit inaccurate revision dates for specific files, consider manually defining them.
Pull requests:
Option for excluding rename commits from last update by @skywarth in #148
Fixed the bug that the configuration option theme.language in mkdocs.yml was not fetched correctly under the mkdocs-material theme by @Xiaokang2022 in #143
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.2.7
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.2.8
Sep 8, 2024
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.2.8
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.2.9
Sep 12, 2024
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.2.9
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.3.0
Oct 22, 2024
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.3.0
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.0
Mar 4, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.0
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.1
Mar 5, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.1
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.2
Mar 9, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.2
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.4
Mar 10, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.4
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.5
Mar 14, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.5
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.6
May 25, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.6
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.7
Jun 1, 2025
renovatebot
changed the title
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.4.7
fix(deps): update dependency mkdocs-git-revision-date-localized-plugin to v1.5.0
Oct 31, 2025
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.2.6→1.5.0Release Notes
timvink/mkdocs-git-revision-date-localized-plugin (mkdocs-git-revision-date-localized-plugin)
v1.5.0: revision-date-localized v1.5.0Compare Source
What's Changed
Fixes
Docs
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.7...v1.5.0
v1.4.7: revision-date-localized v1.4.7Compare Source
What's Changed
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.6...v1.4.7
v1.4.6: revision-date-localized v1.4.6Compare Source
What's Changed
options.mdby @zyv in #179New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.5...v1.4.6
v1.4.5: revision-date-localized v1.4.5Compare Source
What's Changed
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.4...v1.4.5
v1.4.4Compare Source
What's Changed
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.3...v1.4.4
v1.4.2Compare Source
v1.4.1: revision-date-localized v1.4.1Compare Source
What's Changed
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.4.0...v1.4.1
v1.4.0: revision-date-localized v1.4.0Compare Source
What's Changed
New features
enable_parallel_processing(default: True) for a 2-5x speedup by @kunickiaj in #116, and by @timvink in #166ignored_commits_fileenabling you to to ignore specific commits by @allanlw in #114, and @timvink in #157Enhancements
type: custom, thelocaleis now properly respective by @timvink in #165Documentation
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.3.0...v1.4.0
v1.3.0: revision-date-localized v1.3.0Compare Source
What's Changed
🟠 Minor breaking changes: This release will change some of the git revision dates:
git log --ignore_all_space --ignore_blank_lines.git log diff-filter=rcommand (see git log docs)git log --follow. While giving more accurate revision and creation dates, there is an edge case: if you commit empty files, the revision date might wrong. For details see this blogpost. You can opt-out of this behavior by using the new optionenable_git_follow(which defaults toTrue). If you still hit inaccurate revision dates for specific files, consider manually defining them.Pull requests:
1e69247New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.2.9...v1.3.0
v1.2.9: revision-date-localized v1.2.9Compare Source
What's Changed
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.2.8...v1.2.9
v1.2.8: revision-date-localized v1.2.8Compare Source
What's Changed
theme.languagein mkdocs.yml was not fetched correctly under themkdocs-materialtheme by @Xiaokang2022 in #143New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.2.6...v1.2.8
v1.2.7: revision-date-localized v1.2.7Compare Source
What's Changed
New Contributors
Full Changelog: timvink/mkdocs-git-revision-date-localized-plugin@v1.2.6...v1.2.7
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.