Skip to content

Commit

Permalink
build(deps): update mkdocs-git-revision-date-localized-plugin require…
Browse files Browse the repository at this point in the history
…ment from <1.3,>=1 to >=1,<1.4 (#1218)

Updates the requirements on
[mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin)
to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases">mkdocs-git-revision-date-localized-plugin's
releases</a>.</em></p>
<blockquote>
<h2>revision-date-localized v1.3.0</h2>
<h2>What's Changed</h2>
<p>🟠 Minor breaking changes: This release will change some of the git
revision dates:</p>
<ul>
<li>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 <code>git log --ignore_all_space
--ignore_blank_lines</code>.</li>
<li>We now ignore rename commits for determining the last revision date,
as these are not 'real' revisions to the content. This maps to the
<code>git log diff-filter=r</code> command (see <a
href="https://git-scm.com/docs/git-log#Documentation/git-log.txt---diff-filterACDMRTUXB82308203">git
log docs</a>)</li>
<li>We will now follow changes to a file across file renames (including
moving files around). This maps to <code>git log --follow</code>. 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 <a href="https://blog.plover.com/prog/git-log-follow.html">this
blogpost</a>. You can opt-out of this behavior by using the new option
<code>enable_git_follow</code> (which defaults to <code>True</code>). If
you still hit inaccurate revision dates for specific files, consider <a
href="https://github.com/squidfunk/mkdocs-material/discussions/7135">manually
defining them</a>.</li>
</ul>
<p>Pull requests:</p>
<ul>
<li>Option for excluding rename commits from last update by <a
href="https://github.com/skywarth"><code>@​skywarth</code></a> in <a
href="https://redirect.github.com/timvink/mkdocs-git-revision-date-localized-plugin/pull/148">timvink/mkdocs-git-revision-date-localized-plugin#148</a></li>
<li>Support for python 3.13 by <a
href="https://github.com/timvink"><code>@​timvink</code></a> in
1e6924730f5b1909bd7b9b8a1b87d8fddf108b0b</li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/skywarth"><code>@​skywarth</code></a>
made their first contribution in <a
href="https://redirect.github.com/timvink/mkdocs-git-revision-date-localized-plugin/pull/148">timvink/mkdocs-git-revision-date-localized-plugin#148</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/compare/v1.2.9...v1.3.0">https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/compare/v1.2.9...v1.3.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/2e7646ee3405d8793e5ebb83eb45f7aa9407b205"><code>2e7646e</code></a>
update to v1.3</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/1e6924730f5b1909bd7b9b8a1b87d8fddf108b0b"><code>1e69247</code></a>
support python 3.13</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/9e064cd64a184484c12253525d81f6e7a32a7316"><code>9e064cd</code></a>
Merge pull request <a
href="https://redirect.github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/148">#148</a>
from skywarth/master</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/36b2159e63dea1f7d9eb1759a8ecdc5ecd215c03"><code>36b2159</code></a>
chore: rename option, add documentation</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/f848ea1e43ba61e131c26b5146bfb74cf14d9456"><code>f848ea1</code></a>
feat: reverted previous changes about exclude option, new option for
follow i...</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/466e57767784a635f159e9bfcf5b03de6b5ed35d"><code>466e577</code></a>
feat: option for excluding renames and move operations for last update
date</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/3f39e6558213de330b4fbb5e6473aaf95a07713c"><code>3f39e65</code></a>
bump to v1.2.9</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/a1df0236ac65027dc51414b85afa0af84b15a1fb"><code>a1df023</code></a>
Merge pull request <a
href="https://redirect.github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/144">#144</a>
from YigesMx/fix_var_warning</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/95fb5fdf3a2dc4ea7bdb05d6d85f58152bf753ad"><code>95fb5fd</code></a>
Update plugin.py</li>
<li><a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/commit/407346e21fde2982156189d357b6ee05cba7dca4"><code>407346e</code></a>
add sitemap override example, closes <a
href="https://redirect.github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/120">#120</a></li>
<li>Additional commits viewable in <a
href="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/compare/v1.0.0...v1.3.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
  • Loading branch information
Guts authored Nov 1, 2024
2 parents aa6df3b + 03d8ee8 commit 36f6fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mkdocs-awesome-pages-plugin>=2.6,<2.10
mkdocs-exclude>=1.0,<1.1
mkdocs-git-authors-plugin<0.10
mkdocs-git-committers-plugin-2>=2.2.3,<2.5
mkdocs-git-revision-date-localized-plugin>=1,<1.3
mkdocs-git-revision-date-localized-plugin>=1,<1.4
mkdocs-glightbox>=0.3,<0.5
mkdocs-macros-plugin>=0.5,<1.3
mkdocs-minify-plugin<0.9
Expand Down

0 comments on commit 36f6fbf

Please sign in to comment.