[PR #94] [MERGED] Bump testfixtures from 6.18.5 to 7.0.0 #95

Closed
opened 2026-02-27 11:09:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa-postfix-autoreply/pull/94
Author: @dependabot[bot]
Created: 7/7/2022
Status: Merged
Merged: 9/30/2022
Merged by: @tonioo

Base: masterHead: dependabot/pip/testfixtures-7.0.0


📝 Commits (1)

  • a9ea38c Bump testfixtures from 6.18.5 to 7.0.0

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 test-requirements.txt (+1 -1)

📄 Description

Bumps testfixtures from 6.18.5 to 7.0.0.

Changelog

Sourced from testfixtures's changelog.

7.0.0 (6 Jul 2022)

  • Refresh documentation.

  • Add type annotations.

  • Drop support for Python 2. The minimum supported Python version is now 3.6.

  • Sybil 3 is now the minimum supported version if you use :class:~.sybil.FileParser.

  • Rename and refactor the date and time mocks, they are now :any:mock_date, :any:mock_datetime and :any:mock_time. :func:test_date, :func:test_datetime and :func:test_time are still present as aliases but are now deprecated.

  • Add :meth:TempDirectory.as_string, :meth:TempDirectory.as_path and :meth:TempDirectory.as_local. :meth:TempDirectory.getpath is now deprecated.

  • :class:TempDirectory can now be used to wrap existing directories.

  • Fixed a bug where :any:OutputCapture.captured returned bytes instead of a string with fd=True.

  • The deprecated strict option to :class:Comparison has been removed, use the partial option instead.

  • The deprecated :meth:TempDirectory.check, :meth:TempDirectory.check_dir and :meth:TempDirectory.check_all methods have been removed.

Commits
  • 97622bf Prepare for 7.0.0 release.
  • a5cfbf6 Add type annotations.
  • c7a29d2 Remove unused parameter
  • 2685edf Include call in docs.
  • 2567aa6 Fix bug here OutputCapture.captured returned bytes instead of a string when f...
  • 158b52c Add as_path and as_local helpers.
  • 8dc39cf Support for TempDirectory to wrap existing directories.
  • 829bc76 Rename getpath to as_string.
  • 340e64c Move mock_(date|time) API documentation to where the code is.
  • 2574fe3 Rename test_(date|time) to mock_(date|time).
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/modoboa/modoboa-postfix-autoreply/pull/94 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/7/2022 **Status:** ✅ Merged **Merged:** 9/30/2022 **Merged by:** [@tonioo](https://github.com/tonioo) **Base:** `master` ← **Head:** `dependabot/pip/testfixtures-7.0.0` --- ### 📝 Commits (1) - [`a9ea38c`](https://github.com/modoboa/modoboa-postfix-autoreply/commit/a9ea38cf6c893ebe12e0bbfd4bdc46dc626474b9) Bump testfixtures from 6.18.5 to 7.0.0 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `test-requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [testfixtures](https://github.com/Simplistix/testfixtures) from 6.18.5 to 7.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simplistix/testfixtures/blob/master/CHANGELOG.rst">testfixtures's changelog</a>.</em></p> <blockquote> <h2>7.0.0 (6 Jul 2022)</h2> <ul> <li> <p>Refresh documentation.</p> </li> <li> <p>Add type annotations.</p> </li> <li> <p>Drop support for Python 2. The minimum supported Python version is now 3.6.</p> </li> <li> <p>Sybil 3 is now the minimum supported version if you use :class:<code>~.sybil.FileParser</code>.</p> </li> <li> <p>Rename and refactor the date and time mocks, they are now :any:<code>mock_date</code>, :any:<code>mock_datetime</code> and :any:<code>mock_time</code>. :func:<code>test_date</code>, :func:<code>test_datetime</code> and :func:<code>test_time</code> are still present as aliases but are now deprecated.</p> </li> <li> <p>Add :meth:<code>TempDirectory.as_string</code>, :meth:<code>TempDirectory.as_path</code> and :meth:<code>TempDirectory.as_local</code>. :meth:<code>TempDirectory.getpath</code> is now deprecated.</p> </li> <li> <p>:class:<code>TempDirectory</code> can now be used to wrap existing directories.</p> </li> <li> <p>Fixed a bug where :any:<code>OutputCapture.captured</code> returned bytes instead of a string with <code>fd=True</code>.</p> </li> <li> <p>The deprecated <code>strict</code> option to :class:<code>Comparison</code> has been removed, use the <code>partial</code> option instead.</p> </li> <li> <p>The deprecated :meth:<code>TempDirectory.check</code>, :meth:<code>TempDirectory.check_dir</code> and :meth:<code>TempDirectory.check_all</code> methods have been removed.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simplistix/testfixtures/commit/97622bfe41ae2c7c02ba77c87197f5ec741d27fe"><code>97622bf</code></a> Prepare for 7.0.0 release.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/a5cfbf618582be6279242a98162c8d5c6b60d93e"><code>a5cfbf6</code></a> Add type annotations.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/c7a29d26c3f24ad57b5bec032ba935e387a4a52c"><code>c7a29d2</code></a> Remove unused parameter</li> <li><a href="https://github.com/simplistix/testfixtures/commit/2685edf36df6b0526c0694ce26a4b7bb0e5d9c53"><code>2685edf</code></a> Include <strong>call</strong> in docs.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/2567aa6fc31d20c68849c8204a16b9c0c42e6ec7"><code>2567aa6</code></a> Fix bug here OutputCapture.captured returned bytes instead of a string when f...</li> <li><a href="https://github.com/simplistix/testfixtures/commit/158b52c0a902b36340df634bc5f525ac845c38a2"><code>158b52c</code></a> Add as_path and as_local helpers.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/8dc39cf0c5eb27f5d8a7d1328b8a815bbe5ba091"><code>8dc39cf</code></a> Support for TempDirectory to wrap existing directories.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/829bc76358855b0923c47f51d1ed4a765d05022a"><code>829bc76</code></a> Rename getpath to as_string.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/340e64cfe23961f4ee10e12b866d4c1fff014ab5"><code>340e64c</code></a> Move mock_(date|time) API documentation to where the code is.</li> <li><a href="https://github.com/simplistix/testfixtures/commit/2574fe341d244eb2466a0c549353747cd4167436"><code>2574fe3</code></a> Rename test_(date|time) to mock_(date|time).</li> <li>Additional commits viewable in <a href="https://github.com/Simplistix/testfixtures/compare/6.18.5...7.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=testfixtures&package-manager=pip&previous-version=6.18.5&new-version=7.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 11:09:21 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/modoboa-postfix-autoreply-modoboa#95
No description provided.