[PR #120] [CLOSED] Bump testfixtures from 7.2.2 to 8.2.0 #120

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

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa-postfix-autoreply/pull/120
Author: @dependabot[bot]
Created: 5/2/2024
Status: Closed

Base: masterHead: dependabot/pip/testfixtures-8.2.0


📝 Commits (1)

  • b8a917a Bump testfixtures from 7.2.2 to 8.2.0

📊 Changes

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

View changed files

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

📄 Description

Bumps testfixtures from 7.2.2 to 8.2.0.

Changelog

Sourced from testfixtures's changelog.

8.2.0 (1 May 2024)

  • The strict option is now correctly respected when :doc:comparing <comparing> nested objects.

  • When comparing :class:~datetime.datetime or :class:~datetime.time instances, if the fold is the only thing that's different, it's now shown in the output.

  • A more detailed exception is now raised when resolving a :doc:replacement <mocking> doesn't give what's expected.

  • :doc:Replacement <mocking> of methods on instances is now prevented when strict=True.

  • An exception is now raised when :doc:mocking <mocking> and the original is not in the __dict__ of its containing objects.

8.1.0 (1 Mar 2024)

  • Fix bug where replacement of methods on subclasses failed when using :meth:Replacer.on_class.

  • Implement :ref:strict comparison <compare-datetime> as an option for :class:~datetime.datetime and :class:~datetime.time.

8.0.0 (16 Feb 2024)

  • Retire zope.component helpers.

  • Support :class:bytes in :class:popen.MockPopen commands.

  • Allow :class:TempDirectory instances to be traversed as :class:~pathlib.Path objects.

  • Use the system default encoding where possible in :class:TempDirectory.

  • Add :class:TempDirectory option to manage current working directory.

  • Allow string class attributes to be replaced with :class:Replacer and friends.

  • Fix nasty bug meaning some :meth:~Replacer.on_class and :meth:~Replacer.in_module replacements weren't restored.

  • Allow an alternative separator to be used for traversal during replacement with :class:Replacer and friends.

  • Officially support Python 3.12.

  • Drop support Python 3.6.

Commits
  • 8c1c448 Prepare for 8.2.0 release
  • 55fcbb9 Raise exception where original is not in the dict of an object
  • 6085dd3 Prevent replacement of methods on instances when strict=True
  • cb19408 Clearer variable name during restoration of originals
  • def1528 More detailed exception when resolving a replacement doesn't give what's expe...
  • 0fdadc0 Make cases where found is not_there more explicit
  • 5d752e4 Respect strict comparison when inside a nested comparison
  • f7c09f0 Show fold if the repr is otherwise identical
  • e1b719f Prepare for 8.1.0 release
  • ebf80f0 zoneinfo module only arrived in Python 3.9
  • 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 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)

🔄 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/120 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/2/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/pip/testfixtures-8.2.0` --- ### 📝 Commits (1) - [`b8a917a`](https://github.com/modoboa/modoboa-postfix-autoreply/commit/b8a917aceb94c444c5397870952efeb1bcd92b93) Bump testfixtures from 7.2.2 to 8.2.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 7.2.2 to 8.2.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>8.2.0 (1 May 2024)</h2> <ul> <li> <p>The <code>strict</code> option is now correctly respected when :doc:<code>comparing &lt;comparing&gt;</code> nested objects.</p> </li> <li> <p>When comparing :class:<code>~datetime.datetime</code> or :class:<code>~datetime.time</code> instances, if the fold is the only thing that's different, it's now shown in the output.</p> </li> <li> <p>A more detailed exception is now raised when resolving a :doc:<code>replacement &lt;mocking&gt;</code> doesn't give what's expected.</p> </li> <li> <p>:doc:<code>Replacement &lt;mocking&gt;</code> of methods on instances is now prevented when <code>strict=True</code>.</p> </li> <li> <p>An exception is now raised when :doc:<code>mocking &lt;mocking&gt;</code> and the original is not in the <code>__dict__</code> of its containing objects.</p> </li> </ul> <h2>8.1.0 (1 Mar 2024)</h2> <ul> <li> <p>Fix bug where replacement of methods on subclasses failed when using :meth:<code>Replacer.on_class</code>.</p> </li> <li> <p>Implement :ref:<code>strict comparison &lt;compare-datetime&gt;</code> as an option for :class:<code>~datetime.datetime</code> and :class:<code>~datetime.time</code>.</p> </li> </ul> <h2>8.0.0 (16 Feb 2024)</h2> <ul> <li> <p>Retire <code>zope.component</code> helpers.</p> </li> <li> <p>Support :class:<code>bytes</code> in :class:<code>popen.MockPopen</code> commands.</p> </li> <li> <p>Allow :class:<code>TempDirectory</code> instances to be traversed as :class:<code>~pathlib.Path</code> objects.</p> </li> <li> <p>Use the system default encoding where possible in :class:<code>TempDirectory</code>.</p> </li> <li> <p>Add :class:<code>TempDirectory</code> option to manage current working directory.</p> </li> <li> <p>Allow string class attributes to be replaced with :class:<code>Replacer</code> and friends.</p> </li> <li> <p>Fix nasty bug meaning some :meth:<code>~Replacer.on_class</code> and :meth:<code>~Replacer.in_module</code> replacements weren't restored.</p> </li> <li> <p>Allow an alternative separator to be used for traversal during replacement with :class:<code>Replacer</code> and friends.</p> </li> <li> <p>Officially support Python 3.12.</p> </li> <li> <p>Drop support Python 3.6.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simplistix/testfixtures/commit/8c1c44855673aa94d0919551a01e75c37594b1bc"><code>8c1c448</code></a> Prepare for 8.2.0 release</li> <li><a href="https://github.com/simplistix/testfixtures/commit/55fcbb997ea7a88ac85162fb32fda546c3818d4d"><code>55fcbb9</code></a> Raise exception where original is not in the <strong>dict</strong> of an object</li> <li><a href="https://github.com/simplistix/testfixtures/commit/6085dd32dacef4c4671b1b04b19de8c458423543"><code>6085dd3</code></a> Prevent replacement of methods on instances when strict=True</li> <li><a href="https://github.com/simplistix/testfixtures/commit/cb19408efae5c446094b6d1d0feb276d8d016c77"><code>cb19408</code></a> Clearer variable name during restoration of originals</li> <li><a href="https://github.com/simplistix/testfixtures/commit/def15285e5cc15ee95efd72c4f3688971338dd64"><code>def1528</code></a> More detailed exception when resolving a replacement doesn't give what's expe...</li> <li><a href="https://github.com/simplistix/testfixtures/commit/0fdadc0afbecc96f8fda3b612bba1806a8099ddf"><code>0fdadc0</code></a> Make cases where found is not_there more explicit</li> <li><a href="https://github.com/simplistix/testfixtures/commit/5d752e45c6f8c5165a2d5c495029f0512733c888"><code>5d752e4</code></a> Respect strict comparison when inside a nested comparison</li> <li><a href="https://github.com/simplistix/testfixtures/commit/f7c09f0d7cdd874db5f4e8cee87955a48d7294d7"><code>f7c09f0</code></a> Show fold if the repr is otherwise identical</li> <li><a href="https://github.com/simplistix/testfixtures/commit/e1b719f6c79156effd5935f90bcf06e2fbf5382a"><code>e1b719f</code></a> Prepare for 8.1.0 release</li> <li><a href="https://github.com/simplistix/testfixtures/commit/ebf80f0b859ad2cc13ef6d5d2fa2265edbb5682a"><code>ebf80f0</code></a> zoneinfo module only arrived in Python 3.9</li> <li>Additional commits viewable in <a href="https://github.com/Simplistix/testfixtures/compare/7.2.2...8.2.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=7.2.2&new-version=8.2.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 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> --- <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:26 +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#120
No description provided.